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

:root {
  /* New palette — deep indigo + electric lime + cream */
  --ink:        #14102B;   /* deep near-black indigo, body text */
  --indigo:     #2D1B69;   /* primary deep indigo */
  --indigo-2:   #3D2C8D;   /* lighter indigo */
  --violet:     #6E56CF;   /* mid violet for accents */
  --lime:       #C5F82A;   /* electric lime — the "AI" pop */
  --lime-soft:  #E8FBA8;
  --coral:      #FF5C39;   /* CTA hot coral */
  --coral-dark: #E8421F;
  --cream:      #FAF7F2;   /* warm off-white background */
  --cream-2:    #F2EDE2;
  --lilac:      #EDE9FE;   /* card backgrounds */
  --sub:        #4B4B6B;   /* sub text */
  --border:     #E5E0F0;
  --shadow-sm:  0 2px 8px rgba(20,16,43,0.06);
  --shadow-md:  0 8px 32px rgba(20,16,43,0.10);
  --shadow-lg:  0 24px 60px rgba(20,16,43,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ───────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 32px; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--sub);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all 0.18s;
  border: none; white-space: nowrap;
}
.btn-coral {
  background: var(--coral); color: #fff;
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,92,57,0.35);
}
.btn-ink {
  background: var(--ink); color: var(--cream);
}
.btn-ink:hover {
  background: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,16,43,0.25);
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink); color: var(--cream);
}
.btn-outline-light {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(250,247,242,0.4);
}
.btn-outline-light:hover {
  background: rgba(250,247,242,0.1); color: var(--cream);
}
.btn-lime {
  background: var(--lime); color: var(--ink);
}
.btn-lime:hover {
  background: #B8EE1C; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197,248,42,0.45);
}
.btn-xl { padding: 16px 32px; font-size: 16px; }

.nav-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 4px;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-toggle .material-icons { font-size: 28px; }
.nav-mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  z-index: 99;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}
.nav-mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu .nav-mobile-cta {
  margin-top: 16px; text-align: center;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--ink); color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 .pop {
  position: relative;
  display: inline-block;
  color: var(--ink);
}
.hero h1 .pop::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 18px;
  background: var(--lime);
  z-index: -1;
  border-radius: 2px;
}
.hero h1 .indigo { color: var(--indigo); }
.hero h1 .italic { font-style: italic; font-weight: 700; }
.hero-lede {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--sub); line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-meta-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px; color: var(--sub);
  letter-spacing: 0.04em;
}

/* Chat bubble visual */
.hero-visual {
  position: relative;
  min-height: 460px;
}
.chat-canvas {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.chat-canvas::before {
  content: "AI TalkCoach";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--ink); color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.chat-row {
  display: flex; gap: 10px; margin-bottom: 14px;
  animation: chatIn 0.6s ease-out both;
}
.chat-row.you { flex-direction: row; }
.chat-row.ai { flex-direction: row-reverse; }
.chat-row:nth-child(1) { animation-delay: 0.1s; }
.chat-row:nth-child(2) { animation-delay: 0.4s; }
.chat-row:nth-child(3) { animation-delay: 0.7s; }
.chat-row:nth-child(4) { animation-delay: 1.0s; }
@keyframes chatIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
}
.chat-avatar.user-a { background: var(--lilac); color: var(--indigo); }
.chat-avatar.ai     { background: var(--ink); color: var(--lime); }
.chat-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px; line-height: 1.6;
}
.chat-row.you .chat-bubble {
  background: var(--cream-2); color: var(--ink);
  border-bottom-left-radius: 4px;
}
.chat-row.ai .chat-bubble {
  background: var(--ink); color: var(--cream);
  border-bottom-right-radius: 4px;
}
.chat-bubble .tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px;
  background: var(--lime); color: var(--ink);
  margin-bottom: 6px;
}
.chat-bubble.ai-suggest {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-2) 100%);
}

/* Floating sticker */
.hero-sticker {
  position: absolute;
  top: -24px; right: -16px;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  border-radius: 18px;
  transform: rotate(6deg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-sticker::before {
  content: "★";
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ─── TICKER ────────────────────────────────────── */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex; gap: 48px; align-items: center;
  padding: 16px 0;
  animation: ticker 30s linear infinite;
  width: max-content;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.05em;
}
.ticker-item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.ticker-item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lime);
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ONLY ATTUNED (USP) ────────────────────────── */
.usp {
  padding: 120px 32px 80px;
  max-width: 1280px; margin: 0 auto;
}
.usp-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.usp-head h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.usp-head h2 .pop {
  position: relative; display: inline-block; z-index: 1;
}
.usp-head h2 .pop::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 6px;
  height: 14px;
  background: var(--lime);
  z-index: -1;
  border-radius: 2px;
}
.usp-head h2 .italic { font-style: italic; color: var(--indigo); }
.usp-head p {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.85;
  max-width: 440px;
}
.usp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-mark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--violet);
  background: var(--lilac);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pillar h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sub);
}
.pillar.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.pillar.featured .pillar-mark {
  background: rgba(197,248,42,0.14);
  color: var(--lime);
}
.pillar.featured h3 { color: var(--cream); }
.pillar.featured p { color: rgba(250,247,242,0.78); }
.pillar.featured::after {
  content: "★ ATTUNED ONLY";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ─── PROBLEM SECTION ───────────────────────────── */
.problem {
  padding: 120px 32px 100px;
  max-width: 1280px; margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 20px;
}
.section-eyebrow .num {
  font-size: 14px;
  color: var(--ink);
  background: var(--lime);
  padding: 3px 10px;
  border-radius: 4px;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.problem h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.problem h2 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 4px;
  color: var(--sub);
}
.problem-cards {
  display: grid; gap: 16px;
}
.pcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pcard:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pcard-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 700;
  color: var(--lilac);
  line-height: 1;
}
.pcard h3 {
  font-size: 17px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.pcard p {
  font-size: 14px; color: var(--sub);
  line-height: 1.7;
}

/* ─── BIG STATEMENT ─────────────────────────────── */
.statement {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--indigo-2) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.statement-inner {
  max-width: 1280px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 80px;
  align-items: center;
}
.statement-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.statement-quote {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.statement-quote .hl {
  color: var(--lime);
}
.statement-credit {
  margin-top: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(250,247,242,0.6);
}

/* ─── BENTO GRID ────────────────────────────────── */
.features {
  padding: 120px 32px;
  max-width: 1280px; margin: 0 auto;
}
.features-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.features-head h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 720px;
}
.features-head h2 em {
  font-style: italic;
  color: var(--indigo);
}
.features-head p {
  font-size: 15px; color: var(--sub);
  max-width: 340px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tile-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.tile h3 {
  font-size: 20px; font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}
.tile p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.75;
}
.tile-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--lilac);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.tile-icon .material-icons { font-size: 24px; }

/* Bento tile spans */
.tile.t1 { grid-column: span 4; grid-row: span 2; background: var(--ink); color: var(--cream); }
.tile.t1 .tile-tag { color: var(--lime); }
.tile.t1 h3 { color: var(--cream); font-size: 28px; }
.tile.t1 p { color: rgba(250,247,242,0.75); font-size: 15px; }
.tile.t1 .tile-icon { background: var(--lime); color: var(--ink); }
.tile.t1 .demo-suggest {
  margin-top: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 20px;
}
.tile.t1 .demo-suggest .lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.tile.t1 .demo-suggest .ex {
  font-size: 14px; line-height: 1.7;
  color: var(--cream);
}
.tile.t1 .demo-suggest .ex.bad {
  color: rgba(250,247,242,0.45);
  text-decoration: line-through;
}
.tile.t1 .demo-suggest .ex.good {
  margin-top: 6px;
}

.tile.t2 { grid-column: span 2; }
.tile.t3 { grid-column: span 2; background: var(--lime); }
.tile.t3 .tile-tag { color: var(--indigo); }
.tile.t3 .tile-icon { background: var(--ink); color: var(--lime); }
.tile.t4 { grid-column: span 3; }
.tile.t5 { grid-column: span 3; background: var(--lilac); }
.tile.t5 .tile-icon { background: #fff; }

/* ─── HOW IT WORKS ──────────────────────────────── */
.how {
  background: var(--cream-2);
  padding: 120px 32px;
}
.how-inner {
  max-width: 1280px; margin: 0 auto;
}
.how h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 96px; font-weight: 700;
  line-height: 0.9;
  color: var(--cream-2);
  letter-spacing: -0.04em;
  margin-bottom: -12px;
  background: linear-gradient(180deg, var(--lilac) 0%, var(--cream-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.4;
}
.step p {
  font-size: 14px; line-height: 1.8;
  color: var(--sub);
}

/* ─── COMPARISON ────────────────────────────────── */
.compare {
  padding: 120px 32px;
  max-width: 1280px; margin: 0 auto;
}
.compare h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin-bottom: 56px;
}
.compare h2 em { font-style: italic; color: var(--indigo); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ccard {
  border-radius: 28px;
  padding: 40px;
  position: relative;
}
.ccard-before {
  background: #fff;
  border: 1px solid var(--border);
}
.ccard-after {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-2) 100%);
  color: var(--cream);
}
.ccard-after::before {
  content: "AI";
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 0 24px rgba(197,248,42,0.5);
}
.ccard-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.ccard-before .ccard-tag { color: var(--coral); }
.ccard-after .ccard-tag { color: var(--lime); }
.ccard-tag::before {
  content: "";
  width: 28px; height: 1px;
}
.ccard-before .ccard-tag::before { background: var(--coral); }
.ccard-after .ccard-tag::before { background: var(--lime); }
.ccard h3 {
  font-size: 24px; font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}
.clist {
  display: grid; gap: 12px;
  list-style: none;
}
.clist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.7;
}
.clist li .material-icons {
  font-size: 20px;
  margin-top: 2px;
}
.ccard-before .clist li .material-icons { color: var(--coral); }
.ccard-after .clist li .material-icons { color: var(--lime); }
.ccard-after .clist li {
  color: rgba(250,247,242,0.92);
}


/* ─── TESTIMONIAL ───────────────────────────────── */
.testimonial {
  background: var(--lime);
  padding: 100px 32px;
}
.testimonial-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.testimonial-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 160px;
  line-height: 0.7;
  color: var(--ink);
  font-weight: 700;
}
.testimonial-quote {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testimonial-credit {
  margin-top: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--ink);
}
.testimonial-credit strong { font-weight: 700; }

/* ─── FAQ ───────────────────────────────────────── */
.faq {
  padding: 120px 32px;
  max-width: 960px; margin: 0 auto;
}
.faq h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 48px;
  text-align: center;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item details {
  padding: 24px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.faq-item details[open] summary .toggle {
  transform: rotate(45deg);
  background: var(--lime);
}
.faq-item .faq-body {
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--sub);
}

/* ─── FINAL CTA ─────────────────────────────────── */
.final {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.final-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative;
  text-align: center;
}
.final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(197,248,42,0.12);
  border: 1px solid rgba(197,248,42,0.3);
  color: var(--lime);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 32px;
}
.final h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.final h2 .hl {
  color: var(--lime);
  font-style: italic;
}
.final p {
  font-size: 17px;
  color: rgba(250,247,242,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.final-cta {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.final-fine {
  margin-top: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(250,247,242,0.45);
  letter-spacing: 0.08em;
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(250,247,242,0.6);
  padding: 48px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.footer-logo img { height: 28px; opacity: 0.85; }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  list-style: none;
  font-size: 13px;
}
.footer-links a { transition: color 0.15s; }
.footer-links a:hover { color: var(--lime); }
.footer-copy {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(250,247,242,0.4);
}


/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero { padding: 60px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: auto; }
  .usp { padding: 80px 24px 60px; }
  .usp-head { grid-template-columns: 1fr; gap: 32px; }
  .usp-pillars { grid-template-columns: 1fr; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .statement { padding: 80px 24px; }
  .statement-inner { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 80px 24px; }
  .features-head { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.t1, .tile.t2, .tile.t3, .tile.t4, .tile.t5 { grid-column: span 2; grid-row: auto; }
  .how { padding: 80px 24px; }
  .steps { grid-template-columns: 1fr; }
  .compare { padding: 80px 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 64px 24px; }
  .testimonial-inner { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .testimonial-mark { font-size: 96px; }
  .faq { padding: 80px 24px; }
  .final { padding: 80px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .nav-inner { padding: 0 20px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; }
  .hero h1 { font-size: 38px; }
  .hero-cta .btn { white-space: normal; }
  .hero-meta { gap: 18px; }
  .pcard { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
  .pcard-num { font-size: 36px; }
  .ccard { padding: 28px; }
  .testimonial-mark { font-size: 72px; }
}
