/* =========================================
   AI副業ラボ — Dark Tech Design System
========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #061009;
  --bg2:       #091a0c;
  --bg3:       #0d2210;
  --card:      rgba(74,222,128,0.05);
  --card-hover:rgba(74,222,128,0.09);
  --border:    rgba(74,222,128,0.13);
  --border2:   rgba(74,222,128,0.24);

  --p1: #4ade80;
  --p2: #22c55e;
  --p3: #a3e635;
  --gold: #fbbf24;
  --silver: #94a3b8;
  --bronze: #fb923c;
  --green: #4ade80;
  --red: #f87171;

  --grad: linear-gradient(135deg, #4ade80, #22c55e, #a3e635);
  --grad-text: linear-gradient(90deg, #4ade80, #a3e635, #fbbf24);

  --text:      #f0fdf4;
  --text2:     #bbf7d0;
  --text3:     #86efac;

  --text-primary: #f0fdf4;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-card: 0 0 0 1px rgba(74,222,128,0.1), 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(74,222,128,0.2);
  --glow-gold:   0 0 20px rgba(251,191,36,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 700; }

/* ── なぜinkcraft.aiがおすすめか ── */
.why-inkcraft-box {
  background: rgba(74,222,128,0.07);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 24px;
}
.why-ink-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 700; color: #bbf7d0; margin-bottom: 10px;
}
.why-ink-icon { font-size: 1.2rem; }
.why-ink-lead { font-size: 0.85rem; color: var(--text2); margin-bottom: 14px; line-height: 1.7; }
.why-ink-points { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.why-ink-point {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
  padding: 12px 14px; border: 1px solid var(--border);
}
.wip-num {
  font-size: 0.75rem; font-weight: 900; color: #86efac;
  background: rgba(74,222,128,0.15); border-radius: 4px;
  padding: 2px 6px; white-space: nowrap; margin-top: 2px;
}
.why-ink-point strong { font-size: 0.875rem; display: block; margin-bottom: 4px; color: var(--text); }
.why-ink-point p { font-size: 0.8rem; color: var(--text2); line-height: 1.7; margin: 0; }
.why-ink-free-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(6,182,212,0.07); border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 0.8rem; color: var(--text2); line-height: 1.7;
}
.free-note-icon { font-size: 1rem; margin-top: 1px; }

/* ── ランキング評価基準 ── */
.ranking-criteria {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 28px;
}
.criteria-title {
  font-size: 0.85rem; font-weight: 700; color: var(--text2);
  margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.criteria-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 12px; }
.criteria-item { padding: 10px 12px; background: var(--bg3); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.ci-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  background: rgba(74,222,128,0.15); color: #bbf7d0;
  padding: 2px 8px; border-radius: 999px; margin-bottom: 6px;
}
.criteria-item p { font-size: 0.75rem; color: var(--text3); line-height: 1.6; }
.criteria-note { font-size: 0.72rem; color: var(--text3); line-height: 1.7; padding-top: 10px; border-top: 1px solid var(--border); }

/* ── plan-note ── */
.plan-note { font-size: 0.65rem; color: var(--text3); margin-top: 4px; text-align: center; }

/* ── Gradient Text ── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border: none; transition: all 0.25s; white-space: nowrap;
  font-family: inherit;
}
.btn-gradient {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(74,222,128,0.4);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,222,128,0.5); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover { background: var(--card); border-color: var(--p1); color: var(--p1); }

.btn-lg  { padding: 15px 34px; font-size: 1rem; }
.btn-xl  { padding: 18px 42px; font-size: 1.05rem; border-radius: 12px; }

/* =========================================
   HEADER
========================================= */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,16,9,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 12px; height: 64px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 1.2rem; }
.logo-mark {
  background: var(--grad); color: #fff;
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; font-family: 'Inter', sans-serif;
}
.logo-text { color: var(--text); }

.nav { display: flex; gap: 2px; margin-left: 16px; flex: 1; }
.nav-link {
  padding: 7px 12px; border-radius: 7px;
  font-size: 0.82rem; font-weight: 500; color: var(--text2);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--card); }

.header-cta {
  margin-left: auto;
  padding: 8px 18px; border-radius: 8px;
  background: var(--grad); color: #fff;
  font-size: 0.82rem; font-weight: 700;
  transition: all 0.2s; white-space: nowrap;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,222,128,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  background: rgba(6,16,9,0.98);
}
.mobile-nav a { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text2); font-weight: 500; }
.mobile-nav a:hover { color: var(--text); background: var(--card); }
.mobile-nav.open { display: flex; }

/* =========================================
   HERO
========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg);
}
#particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.glow-1 { width: 600px; height: 600px; background: rgba(34,197,94,0.18); top: -100px; left: -150px; }
.glow-2 { width: 500px; height: 500px; background: rgba(163,230,53,0.13); bottom: -100px; right: -100px; }
.glow-3 { width: 400px; height: 400px; background: rgba(74,222,128,0.1); top: 40%; left: 40%; }

.hero-inner { position: relative; z-index: 1; padding: 100px 20px 80px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.3);
  color: #bbf7d0; font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 28px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #86efac;
  box-shadow: 0 0 8px #86efac; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.2;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--text2);
  line-height: 1.9; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-desc strong { color: var(--text); }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.stat-num { font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; color: var(--text3); }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border2); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text3); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; z-index:1;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--p1), transparent); animation: scrollDown 1.8s infinite; }
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =========================================
   SECTION COMMON
========================================= */
.section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3); color: #bbf7d0;
  font-size: 0.72rem; font-weight: 700; padding: 4px 14px;
  border-radius: 999px; margin-bottom: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 12px; line-height: 1.25; }
.section-desc { color: var(--text2); font-size: 0.95rem; }

/* =========================================
   WHY SECTION
========================================= */
.why-section { background: var(--bg2); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-bottom: 48px; }
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s;
}
.why-card:hover { background: var(--card-hover); border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.why-card p { font-size: 0.85rem; color: var(--text2); line-height: 1.8; }

.ai-wave {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px; padding: 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
}
.wave-item {
  padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
  background: var(--bg3); border: 1px solid var(--border2); color: var(--text2);
}
.wave-item.active { background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.4); color: #bbf7d0; }
.wave-arrow { color: var(--text3); font-size: 0.9rem; }

/* =========================================
   INKCRAFT SECTION
========================================= */
.inkcraft-section { position: relative; background: var(--bg); overflow: hidden; }
.inkcraft-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(74,222,128,0.08) 0%, transparent 70%);
}

.inkcraft-crown {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 40px;
}
.crown-icon { font-size: 1.6rem; }
.crown-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 900; font-size: 1.05rem; letter-spacing: 0.02em;
}

.inkcraft-grid { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }

.inkcraft-logo-area { margin-bottom: 24px; }
.inkcraft-logo-badge {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 2.2rem; font-weight: 900; letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}
.inkcraft-logo-badge .ink  { color: #86efac; }
.inkcraft-logo-badge .craft{ color: #86efac; }
.inkcraft-logo-badge .dot-ai { color: #a3e635; }
.inkcraft-tagline { font-size: 0.85rem; color: var(--text3); font-style: italic; }

.inkcraft-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; line-height: 1.3; margin-bottom: 20px; }
.inkcraft-desc { font-size: 0.95rem; color: var(--text2); line-height: 1.9; margin-bottom: 32px; }

.inkcraft-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.inkcraft-feat {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px;
  transition: all 0.2s;
}
.inkcraft-feat:hover { background: var(--card-hover); border-color: rgba(74,222,128,0.3); }
.feat-icon { font-size: 1.4rem; min-width: 28px; }
.feat-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.feat-body p { font-size: 0.8rem; color: var(--text2); line-height: 1.7; }

.inkcraft-cta-area { display: flex; flex-direction: column; gap: 8px; }
.inkcraft-cta-note { font-size: 0.78rem; color: var(--text3); }

/* Right side */
.inkcraft-card-main {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}
.card-header-bar {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.card-title-bar { font-size: 0.72rem; color: var(--text3); margin-left: 6px; font-family: 'Inter', monospace; }

.card-body-demo { padding: 20px; min-height: 140px; }
.demo-label { font-size: 0.72rem; color: var(--p1); margin-bottom: 8px; font-family: 'Inter', monospace; }
.demo-bar { width: 100%; height: 4px; background: var(--border); border-radius: 999px; margin-bottom: 16px; overflow: hidden; }
.demo-bar-fill { height: 100%; background: var(--grad); border-radius: 999px; width: 0%; transition: width 0.1s; }
.demo-output {
  font-size: 0.82rem; color: var(--text2); line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif; min-height: 80px;
}
.demo-cursor { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Plans */
.inkcraft-plans { margin-bottom: 16px; }
.plans-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--text2); }
.plan-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.plan-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 10px; text-align: center;
  position: relative;
}
.plan-card.plan-popular {
  border-color: rgba(74,222,128,0.5);
  background: rgba(74,222,128,0.08);
  box-shadow: 0 0 20px rgba(74,222,128,0.15);
}
.plan-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 0.72rem; color: var(--text3); margin-bottom: 4px; font-weight: 600; }
.plan-price { font-size: 1rem; font-weight: 900; color: var(--text); margin-bottom: 2px; }
.plan-price span { font-size: 0.7rem; color: var(--text3); }
.plan-chars { font-size: 0.65rem; color: var(--text3); margin-bottom: 8px; }
.plan-features { text-align: left; margin-bottom: 10px; }
.plan-features li {
  font-size: 0.68rem; color: var(--text2); padding: 2px 0 2px 12px; position: relative;
}
.plan-features li::before { content: '·'; position: absolute; left: 2px; }
.plan-features li.disabled { color: var(--text3); text-decoration: line-through; }
.plan-btn {
  display: block; background: var(--grad); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 7px 6px; border-radius: 6px;
  transition: all 0.2s; text-align: center;
}
.plan-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* Verdict */
.inkcraft-verdict {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius); padding: 16px 18px;
}
.verdict-icon { font-size: 1.5rem; }
.verdict-title { font-size: 0.72rem; color: var(--gold); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.verdict-text { font-size: 0.82rem; color: var(--text2); line-height: 1.7; margin-bottom: 8px; }
.verdict-score { display: flex; align-items: center; gap: 8px; }
.score-label { font-size: 0.72rem; color: var(--text3); }
.score-stars { color: var(--gold); font-size: 0.85rem; }
.score-num { font-size: 0.82rem; font-weight: 700; color: var(--gold); }

/* =========================================
   RANKING
========================================= */
.rank-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 16px;
  display: flex; overflow: hidden; transition: all 0.3s;
}
.rank-item:hover { background: var(--card-hover); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.rank-gold   { border-top: 3px solid var(--gold);   box-shadow: var(--glow-gold); }
.rank-silver { border-top: 3px solid var(--silver); }
.rank-bronze { border-top: 3px solid var(--bronze); }

.rank-num-block {
  min-width: 80px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 24px 12px; gap: 2px;
  background: rgba(255,255,255,0.02); border-right: 1px solid var(--border);
}
.rank-crown { font-size: 1.2rem; }
.rank-number { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.rank-gold   .rank-number { color: var(--gold); }
.rank-silver .rank-number { color: var(--silver); }
.rank-bronze .rank-number { color: var(--bronze); }

.rank-body { flex: 1; padding: 24px; }
.rank-top-row { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 12px; flex-wrap: wrap; }
.rank-name-area { flex: 1; min-width: 200px; }
.rank-badge-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 2px 10px; border-radius: 999px; margin-bottom: 6px;
}
.gold   { background: rgba(245,158,11,0.2); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }
.silver { background: rgba(148,163,184,0.15); color: var(--silver); border: 1px solid rgba(148,163,184,0.3); }
.bronze { background: rgba(205,124,58,0.15); color: var(--bronze); border: 1px solid rgba(205,124,58,0.3); }

.rank-tool-name { font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.rank-tool-catch { font-size: 0.82rem; color: var(--text2); }

.rank-scores { display: flex; flex-direction: column; gap: 6px; min-width: 220px; }
.score-item { display: flex; align-items: center; gap: 8px; }
.score-k { font-size: 0.72rem; color: var(--text3); min-width: 72px; }
.score-bar { flex: 1; height: 5px; background: var(--border); border-radius: 999px; overflow: hidden; }
.score-fill { height: 100%; background: var(--grad); border-radius: 999px; width: 0; transition: width 1s ease; }
.score-v { font-size: 0.75rem; font-weight: 700; color: var(--text); min-width: 24px; text-align: right; }

.rank-desc-text { font-size: 0.875rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }

.rank-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.meta-tag {
  font-size: 0.72rem; padding: 3px 10px; border-radius: 999px;
  background: var(--bg3); border: 1px solid var(--border2); color: var(--text3);
}
.meta-price { font-size: 0.82rem; font-weight: 700; color: var(--green); margin-left: auto; }
.rank-cta {
  padding: 7px 16px; border-radius: 7px; font-size: 0.8rem; font-weight: 700;
  background: var(--card); border: 1px solid var(--border2); color: var(--text2);
  transition: all 0.2s;
}
.rank-cta:hover { background: var(--card-hover); color: var(--text); }
.gold-cta { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.3); color: var(--gold); }
.gold-cta:hover { background: rgba(245,158,11,0.25); }

/* Mini ranking grid */
.rank-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 14px; margin-top: 16px;
}
.rank-mini {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; display: flex; gap: 12px; align-items: flex-start;
  transition: all 0.25s;
}
.rank-mini:hover { background: var(--card-hover); border-color: var(--border2); transform: translateY(-2px); }
.mini-num {
  min-width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; color: var(--text2);
}
.mini-emoji { font-size: 1.6rem; line-height: 1; }
.mini-body { flex: 1; }
.mini-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.mini-body p { font-size: 0.78rem; color: var(--text2); line-height: 1.6; margin-bottom: 8px; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.mini-tags span { font-size: 0.65rem; padding: 2px 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: 999px; color: var(--text3); }
.mini-footer { display: flex; justify-content: space-between; align-items: center; }
.mini-price { font-size: 0.78rem; font-weight: 700; color: var(--green); }
.mini-link { font-size: 0.75rem; color: var(--p2); font-weight: 700; transition: color 0.2s; }
.mini-link:hover { color: var(--p1); }

/* =========================================
   CATEGORY / TABS
========================================= */
.category-section { background: var(--bg2); }

.tab-nav {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px;
}
.tab-btn {
  padding: 10px 22px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text2); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; font-family: inherit;
}
.tab-btn:hover { color: var(--text); border-color: var(--border2); }
.tab-btn.active {
  background: rgba(74,222,128,0.2); border-color: rgba(74,222,128,0.5);
  color: #bbf7d0; box-shadow: 0 0 16px rgba(74,222,128,0.2);
}

.tab-content  { display: none; }
.tab-content.active  { display: block; }
.ctab-content { display: none; }
.ctab-content.active { display: block; }
.compare-tab-nav { margin-bottom: 24px; }

.cat-header { margin-bottom: 24px; }
.cat-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.cat-header p { font-size: 0.875rem; color: var(--text2); }

.cat-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 14px; margin-bottom: 20px;
}
.cat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; position: relative;
  display: flex; flex-direction: column; gap: 12px; transition: all 0.25s;
}
.cat-card:hover { background: var(--card-hover); border-color: var(--border2); transform: translateY(-2px); }
.cat-card.featured { border-color: rgba(74,222,128,0.4); background: rgba(74,222,128,0.06); }
.cat-card-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--grad); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px;
}
.cat-card-top { display: flex; align-items: center; gap: 10px; }
.cat-logo {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.75rem; font-family: 'Inter', sans-serif; color: #fff;
}
.ink-logo    { background: linear-gradient(135deg,#22c55e,#4ade80); }
.gpt-logo    { background: linear-gradient(135deg,#10a37f,#1a7f64); }
.claude-logo { background: linear-gradient(135deg,#d97757,#b45e3e); }
.notion-logo { background: #000; }
.mj-logo     { background: linear-gradient(135deg,#1a1a2e,#16213e); }
.dalle-logo  { background: linear-gradient(135deg,#10a37f,#1a7f64); }
.firefly-logo{ background: linear-gradient(135deg,#e8483a,#f06d38); }
.canva-logo  { background: linear-gradient(135deg,#7c3aed,#00c4cc); }
.runway-logo { background: linear-gradient(135deg,#111,#333); }
.eleven-logo { background: linear-gradient(135deg,#f97316,#ef4444); }
.heygen-logo { background: linear-gradient(135deg,#6366f1,#22c55e); }
.descript-logo{background:linear-gradient(135deg,#2563eb,#22c55e);}
.perp-logo   { background: linear-gradient(135deg,#20b2aa,#008b8b); }
.gamma-logo  { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.make-logo   { background: linear-gradient(135deg,#6d28d9,#4c1d95); }
.deepl-logo  { background: linear-gradient(135deg,#0f4c81,#1a6ea8); }

.cat-card-top h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.cat-price { font-size: 0.75rem; color: var(--green); font-weight: 600; }
.cat-stars { margin-left: auto; font-size: 0.8rem; color: var(--gold); }

.cat-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.7; flex: 1; }

.cat-usecases { display: flex; flex-wrap: wrap; gap: 5px; }
.cat-usecases span { font-size: 0.65rem; padding: 2px 8px; background: var(--bg3); border: 1px solid var(--border); border-radius: 999px; color: var(--text3); }

.cat-btn {
  display: block; text-align: center; padding: 9px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 700; border: 1px solid var(--border2);
  color: var(--text2); transition: all 0.2s;
}
.cat-btn:hover { background: var(--card-hover); color: var(--text); }
.primary-btn { background: var(--grad); border: none; color: #fff; }
.primary-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.cat-tip {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(6,182,212,0.07); border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: 0.85rem; color: var(--text2); line-height: 1.7;
}
.tip-icon { font-size: 1.2rem; }

/* =========================================
   GUIDE
========================================= */
.guide-section { background: var(--bg); }

.guide-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 60px; }
.guide-step {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  font-size: 3.5rem; font-weight: 900; color: var(--p1); opacity: 0.15;
  line-height: 1; min-width: 80px; font-family: 'Inter', sans-serif;
}
.guide-step-body { flex: 1; }
.guide-step-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.guide-step-body p { font-size: 0.875rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.guide-ai-tip {
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 0.8rem; color: var(--text2); line-height: 1.7;
}
.ai-tip-label {
  display: inline-block; background: rgba(74,222,128,0.2); color: #bbf7d0;
  font-size: 0.68rem; font-weight: 700; padding: 1px 8px; border-radius: 999px; margin-right: 8px;
}

.usecase-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.usecase-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 16px;
}
.usecase-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: all 0.25s;
}
.usecase-card:hover { background: var(--card-hover); border-color: var(--border2); transform: translateY(-2px); }
.usecase-icon { font-size: 1.8rem; margin-bottom: 10px; }
.usecase-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.usecase-tools { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.tool-chip { font-size: 0.7rem; padding: 3px 10px; border-radius: 999px; background: var(--bg3); border: 1px solid var(--border); color: var(--text3); }
.tool-chip.main { background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.35); color: #bbf7d0; }
.usecase-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.7; }

/* =========================================
   COMPARE
========================================= */
.compare-section { background: var(--bg2); }

.compare-wrap { overflow-x: auto; margin-bottom: 24px; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
}
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: center; border: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg3); font-weight: 700; font-size: 0.8rem; color: var(--text2); white-space: nowrap;
}
.compare-table th.highlight-col {
  background: rgba(74,222,128,0.12); color: var(--text);
  border-top: 2px solid var(--p1);
}
.th-badge {
  display: inline-block; background: var(--grad); color: #fff;
  font-size: 0.6rem; padding: 1px 6px; border-radius: 999px; margin-left: 4px;
}
.compare-table td { color: var(--text2); }
.compare-table td.highlight-col { background: rgba(74,222,128,0.06); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-label { text-align: left; font-weight: 600; color: var(--text); }
.c-yes     { color: var(--green); font-weight: 700; }
.c-no      { color: var(--text3); }
.c-partial { color: var(--gold); }
.c-green   { color: var(--green); }
.c-stars   { color: var(--gold); }

.compare-conclusion {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius); padding: 18px 22px;
  font-size: 0.875rem; color: var(--text2); line-height: 1.8;
}
.conclusion-icon { font-size: 1.3rem; }
.conclusion-link { color: var(--p1); font-weight: 700; margin-left: 8px; }
.conclusion-link:hover { text-decoration: underline; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonial-section { background: var(--bg); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: all 0.25s;
}
.testimonial-card:hover { background: var(--card-hover); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.testi-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.testi-job { font-size: 0.75rem; color: var(--text3); }
.testi-stars { margin-left: auto; color: var(--gold); font-size: 0.8rem; }
.testi-text { font-size: 0.85rem; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.testi-result {
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm); padding: 7px 12px;
}

/* =========================================
   FAQ
========================================= */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; text-align: left;
  font-family: inherit; color: var(--text); gap: 12px; transition: background 0.2s;
}
.faq-q:hover { background: var(--card-hover); }
.faq-icon { font-size: 1.3rem; color: var(--p1); transition: transform 0.3s; min-width: 20px; text-align: center; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 22px 18px; font-size: 0.85rem;
  color: var(--text2); line-height: 1.8;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.faq-a.open { display: block; }

/* =========================================
   FINAL CTA
========================================= */
.final-cta { position: relative; padding: 100px 20px; text-align: center; overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(74,222,128,0.15) 0%, rgba(74,222,128,0.08) 50%, transparent 100%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-sub { font-size: 0.78rem; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.final-cta-title { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.final-cta-desc { font-size: 1rem; color: var(--text2); line-height: 1.8; margin-bottom: 36px; }
.final-cta-note { font-size: 0.78rem; color: var(--text3); margin-top: 14px; }

/* =========================================
   FOOTER
========================================= */
.footer { background: #040408; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: var(--text3); line-height: 1.8; margin-bottom: 6px; }
.affiliate-notice { font-size: 0.72rem; color: var(--text3); margin-top: 12px; }
.footer-nav-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--text2); margin-bottom: 14px; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 0.78rem; color: var(--text3); transition: color 0.2s; }
.footer-col a:hover { color: var(--text2); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.copyright { font-size: 0.75rem; color: var(--text3); }
.footer-legal { font-size: 0.7rem; color: var(--text3); max-width: 500px; text-align: right; }

/* =========================================
   inkcraft.ai ロゴカラー（テキスト内）
========================================= */
.ink    { color: #86efac; font-weight: 900; }
.craft  { color: #86efac; font-weight: 900; }
.dot-ai { color: #a3e635; font-weight: 900; }

/* =========================================
   EDITORIAL NOTE
========================================= */
.editorial-section { background: var(--bg2); padding: 20px 0; }
.editorial-box {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
}
.editorial-icon { font-size: 1.4rem; line-height: 1; padding-top: 2px; }
.editorial-body { flex: 1; }
.editorial-title { font-size: 0.78rem; font-weight: 700; color: var(--text2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.editorial-body p { font-size: 0.82rem; color: var(--text3); line-height: 1.8; }

/* =========================================
   RANK HONEST (メリット・デメリット)
========================================= */
.rank-honest {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px;
}
.rank-honest-good, .rank-honest-bad {
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.rank-honest-good { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2); }
.rank-honest-bad  { background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.honest-label { font-size: 0.72rem; font-weight: 700; margin-bottom: 6px; }
.good-label { color: var(--green); }
.bad-label  { color: var(--text3); }
.rank-honest-good li,
.rank-honest-bad  li {
  font-size: 0.78rem; color: var(--text2); line-height: 1.6;
  padding: 2px 0 2px 14px; position: relative;
}
.rank-honest-good li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-size: 0.7rem; top: 4px; }
.rank-honest-bad  li::before { content: '△'; position: absolute; left: 0; color: var(--text3); font-size: 0.7rem; top: 4px; }

/* =========================================
   DETAILED REVIEWS
========================================= */
.review-section { background: var(--bg2); }

.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 28px; transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-card); }

.review-header {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.review-tool-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem; font-family: 'Inter', sans-serif;
  color: #fff; flex-shrink: 0;
}
.review-rank-label {
  font-size: 0.7rem; font-weight: 700; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px;
}
.review-tool-name {
  font-size: 1.3rem; font-weight: 900; margin-bottom: 3px;
}
.review-tool-sub { font-size: 0.8rem; color: var(--text3); }
.review-overall {
  margin-left: auto; text-align: center;
}
.review-score-num {
  display: block; font-size: 2.2rem; font-weight: 900;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.review-score-label { font-size: 0.75rem; color: var(--text3); }

.review-body {
  display: grid; grid-template-columns: 1fr 300px; gap: 0;
}
.review-main {
  padding: 28px; border-right: 1px solid var(--border);
}
.review-main h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--p1);
  margin: 22px 0 10px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(74,222,128,0.2);
}
.review-main h4:first-child { margin-top: 0; }
.review-main p {
  font-size: 0.875rem; color: var(--text2); line-height: 1.9; margin-bottom: 10px;
}

.review-verdict {
  margin-top: 20px; padding: 16px;
  background: var(--bg3); border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.verdict-who-title { font-size: 0.78rem; font-weight: 700; color: var(--text2); margin-bottom: 10px; }
.verdict-who-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.verdict-who { padding: 10px 12px; border-radius: var(--radius-sm); }
.verdict-who.good {
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2);
}
.verdict-who.bad  {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
}
.verdict-who p { font-size: 0.78rem; color: var(--text2); line-height: 1.7; padding: 2px 0; }
.verdict-who.good p::before { content: '✓ '; color: var(--green); font-weight: 700; }
.verdict-who.bad  p::before { content: '△ '; color: var(--text3); }

.review-side {
  padding: 20px; display: flex; flex-direction: column; gap: 16px;
  background: rgba(255,255,255,0.01);
}

.review-meta-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; overflow: hidden;
}
.rmc-title {
  font-size: 0.75rem; font-weight: 700; color: var(--text2);
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em;
}
.rmc-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.rmc-table td {
  font-size: 0.75rem; padding: 6px 0;
  border-bottom: 1px solid var(--border); color: var(--text2);
}
.rmc-table td:first-child { color: var(--text3); width: 45%; }
.rmc-table td:last-child  { font-weight: 600; }
.review-cta-btn {
  display: block; text-align: center;
  background: var(--grad); color: #fff;
  padding: 10px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700; transition: all 0.2s;
}
.review-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.review-score-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.rsc-title {
  font-size: 0.75rem; font-weight: 700; color: var(--text2);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em;
}
.rsc-item {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.rsc-item span:first-child { font-size: 0.72rem; color: var(--text3); min-width: 72px; }
.rsc-item span:last-child  { font-size: 0.72rem; font-weight: 700; color: var(--text); min-width: 24px; text-align: right; }
.rsc-item .score-bar { flex: 1; }

/* =========================================
   FINAL CTA BUTTONS
========================================= */
.final-cta-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 0;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
  .inkcraft-grid { grid-template-columns: 1fr; }
  .inkcraft-right { order: -1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav-group { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .criteria-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding: 80px 0 60px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-divider { height: 30px; }

  .rank-item { flex-direction: column; }
  .rank-num-block { flex-direction: row; padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border); gap: 6px; min-width: auto; }
  .rank-number { font-size: 1.8rem; }
  .rank-top-row { flex-direction: column; gap: 16px; }
  .rank-scores { min-width: auto; }

  .guide-step { flex-direction: column; gap: 8px; }
  .guide-step-num { font-size: 2rem; min-width: auto; }

  .review-body { grid-template-columns: 1fr; }
  .review-main { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .review-side { padding: 20px; }
  .verdict-who-grid { grid-template-columns: 1fr; }
  .rank-honest { grid-template-columns: 1fr; }

  .footer-nav-group { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }

  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 16px; flex-direction: column; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .cat-cards { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .footer-nav-group { grid-template-columns: 1fr; }
  .tab-nav { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.78rem; }
}

/* =========================================
   SCROLL ANIMATIONS
========================================= */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   FROG THEME — CASUAL OVERRIDES
========================================= */

/* ── Logo frog ── */
.logo-mark {
  background: linear-gradient(135deg, #22c55e, #4ade80) !important;
  font-size: 1.1rem !important;
}

/* ── Hero frog mascot ── */
.hero-frog-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 0;
  position: relative;
  z-index: 1;
}
.hero-frog {
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 12px 40px rgba(34,197,94,0.35));
  animation: frog-float 3.5s ease-in-out infinite;
}
@keyframes frog-float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-14px) rotate(1deg); }
}

/* ── Frog decorations ── */
.frog-deco {
  display: inline-block;
  font-size: 1.6rem;
  animation: frog-bounce 2.5s ease-in-out infinite;
  margin: 0 6px;
}
@keyframes frog-bounce {
  0%,100% { transform: translateY(0); }
  40%     { transform: translateY(-6px); }
}

/* ── Section tag update ── */
.section-tag {
  background: rgba(74,222,128,0.15) !important;
  border: 1px solid rgba(74,222,128,0.35) !important;
  color: #bbf7d0 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
}

/* ── Hero badge update ── */
.hero-badge {
  background: rgba(74,222,128,0.12) !important;
  border: 1px solid rgba(74,222,128,0.3) !important;
  color: #bbf7d0 !important;
}
.badge-dot {
  background: #4ade80 !important;
  box-shadow: 0 0 8px #4ade80 !important;
}

/* ── Button gradient ── */
.btn-gradient {
  background: linear-gradient(135deg, #22c55e, #4ade80, #a3e635) !important;
  box-shadow: 0 4px 20px rgba(74,222,128,0.4) !important;
}
.btn-gradient:hover {
  box-shadow: 0 8px 30px rgba(74,222,128,0.55) !important;
}
.header-cta {
  background: linear-gradient(135deg, #22c55e, #4ade80) !important;
}
.header-cta:hover {
  box-shadow: 0 4px 16px rgba(74,222,128,0.45) !important;
}

/* ── Cards more rounded / casual ── */
.why-card, .rank-item, .review-card, .cat-card,
.guide-step, .usecase-card, .testimonial-card,
.editorial-box, .ranking-criteria, .review-meta-card,
.review-score-card {
  border-radius: 20px !important;
}

/* ── Rank gold/silver/bronze ── */
.rank-gold   { border-top: 3px solid #fbbf24 !important; box-shadow: 0 0 28px rgba(251,191,36,0.25) !important; }
.rank-silver { border-top: 3px solid #94a3b8 !important; }
.rank-bronze { border-top: 3px solid #fb923c !important; }

/* ── Scroll line ── */
.scroll-line {
  background: linear-gradient(to bottom, #4ade80, transparent) !important;
}

/* ── Tab buttons ── */
.tab-btn.active {
  background: linear-gradient(135deg, #22c55e, #4ade80) !important;
  color: #fff !important;
  border-color: transparent !important;
}

/* ── inkcraft logo colors keep green theme ── */
.inkcraft-logo-badge .ink   { color: #4ade80 !important; }
.inkcraft-logo-badge .craft { color: #a3e635 !important; }
.inkcraft-logo-badge .dot-ai{ color: #fbbf24 !important; }
.ink    { color: #4ade80 !important; }
.craft  { color: #a3e635 !important; }
.dot-ai { color: #fbbf24 !important; }

/* ── Demo bar ── */
.demo-bar-fill {
  background: linear-gradient(90deg, #22c55e, #4ade80, #a3e635) !important;
}

/* ── Lily pad divider ── */
.lilypad-divider {
  text-align: center;
  font-size: 2rem;
  margin: -20px 0;
  opacity: 0.6;
  letter-spacing: 20px;
}

/* ── Floating frogs in background ── */
.bg-frog {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  font-size: 6rem;
  animation: bg-frog-float 8s ease-in-out infinite;
}
.bg-frog-1 { top: 10%; right: 5%; animation-delay: 0s; }
.bg-frog-2 { top: 55%; left: 3%; animation-delay: 2s; font-size: 4rem; }
.bg-frog-3 { bottom: 15%; right: 10%; animation-delay: 4s; font-size: 5rem; }
@keyframes bg-frog-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-20px) rotate(5deg); }
  66%     { transform: translateY(10px) rotate(-3deg); }
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(74,222,128,0.15) !important;
}

/* ── Affiliate notice green ── */
.affiliate-notice {
  border-left: 3px solid #4ade80 !important;
  background: rgba(74,222,128,0.06) !important;
  color: #bbf7d0 !important;
}

/* ── Score fill ── */
.score-fill {
  background: linear-gradient(90deg, #22c55e, #4ade80) !important;
}

/* ── Plan popular card ── */
.plan-card.plan-popular {
  border-color: rgba(74,222,128,0.5) !important;
  background: rgba(74,222,128,0.08) !important;
  box-shadow: 0 0 20px rgba(74,222,128,0.15) !important;
}
.plan-badge {
  background: linear-gradient(135deg, #22c55e, #4ade80) !important;
}
.plan-btn {
  background: linear-gradient(135deg, #22c55e, #4ade80) !important;
}

