/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0E1100;
  --bg-card:   rgba(255,255,255,0.05);
  --border:    rgba(255,255,255,0.08);
  --accent:    #C5E84A;
  --accent-glow: rgba(197,232,74,0.15);
  --text:      #ffffff;
  --text-2:    rgba(255,255,255,0.62);
  --text-3:    rgba(255,255,255,0.38);
  --radius:    20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--accent); }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 200;
}
.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 0 32px rgba(197,232,74,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 24px;
  font-size: 15px;
}
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 18px 32px; font-size: 17px; border-radius: 16px; }

/* ── App Store badge ── */
.app-store-badge-link { display: inline-block; }
.app-store-badge { display: block; height: 48px; width: auto; }
.app-store-badge--lg { height: 56px; }

/* ── Section label ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,17,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
}
.logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(197,232,74,0.12);
  border: 1px solid rgba(197,232,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon.small {
  width: 20px; height: 20px;
  border-radius: 5px;
}
.logo-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 32px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(197,232,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
}
.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.hero-points li {
  color: var(--text-2);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}
.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Phone mockup ── */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(197,232,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  background: #0A0D00;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.screen-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 8px;
  font-size: 13px;
  font-weight: 600;
  padding-top: 44px;
}
.status-icons { display: flex; align-items: center; gap: 6px; }
.screen-listening {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px;
}
.listening-label {
  font-size: 15px;
  color: var(--text-2);
  font-weight: 500;
}
.voice-ring {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(197,232,74,0.5), 0 0 60px rgba(197,232,74,0.2);
  animation: ringPulse 2.4s ease-in-out infinite;
  position: relative;
}
.voice-ring::before {
  content: '';
  position: absolute;
  width: 170px; height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(197,232,74,0.15);
  animation: ringPulse 2.4s ease-in-out infinite 0.3s;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(197,232,74,0.5), 0 0 48px rgba(197,232,74,0.15); }
  50% { box-shadow: 0 0 40px rgba(197,232,74,0.7), 0 0 80px rgba(197,232,74,0.25); }
}
.voice-ring-inner { display: flex; align-items: center; justify-content: center; }
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.7;
  animation: wave 1s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height: 8px;  animation-delay: 0.0s; }
.waveform span:nth-child(2)  { height: 14px; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 20px; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 24px; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 18px; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 22px; animation-delay: 0.3s; }
.waveform span:nth-child(7)  { height: 26px; animation-delay: 0.2s; }
.waveform span:nth-child(8)  { height: 16px; animation-delay: 0.1s; }
.waveform span:nth-child(9)  { height: 12px; animation-delay: 0.0s; }
.waveform span:nth-child(10) { height: 8px;  animation-delay: 0.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50%       { transform: scaleY(1); }
}
.transcript-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  text-align: center;
  line-height: 1.5;
}

/* ── OVERVIEW ── */
.overview {
  padding: 72px 32px 24px;
}
.overview h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 760px;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.overview-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.overview-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 32px;
  text-align: center;
  position: relative;
}
.problem h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.problem-body {
  font-size: 18px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 32px;
}
.how h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(197,232,74,0.25); }
.step-num {
  font-size: 36px;
  font-weight: 900;
  opacity: 0.8;
  display: block;
  margin-bottom: 16px;
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(197,232,74,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── COMPARISON ── */
.comparison {
  padding: 40px 32px 96px;
}
.comparison h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.comparison-card--accent {
  border-color: rgba(197,232,74,0.25);
  box-shadow: 0 0 0 1px rgba(197,232,74,0.08) inset;
}
.comparison-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}
.comparison-card ol {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: comparison-step;
}
.comparison-card li {
  counter-increment: comparison-step;
  color: var(--text-2);
  font-size: 16px;
  padding-left: 40px;
  position: relative;
}
.comparison-card li::before {
  content: counter(comparison-step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(197,232,74,0.14);
  border: 1px solid rgba(197,232,74,0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.comparison-card p {
  color: var(--text-2);
  margin-top: 18px;
}

/* ── VOICE WEDGE ── */
.voice-wedge {
  padding: 0 32px 100px;
}
.voice-wedge h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 780px;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.voice-card,
.audience-card,
.support-card,
.intent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.voice-card h3,
.audience-card h3,
.support-card h3,
.intent-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.voice-card p,
.audience-card p,
.support-card p,
.intent-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features { padding: 80px 32px; }
.features > .container > .section-label,
.features > .container > p.section-label { margin-bottom: 80px; text-align: center; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.feature-text p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-2);
}
.checklist li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  flex-shrink: 0;
}

/* ── Mini phone ── */
.feature-phone { display: flex; justify-content: center; }
.mini-phone {
  width: 240px;
  background: #111;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 10px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.mini-screen {
  background: #0A0D00;
  border-radius: 28px;
  padding: 28px 14px 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
}
.mini-title-sm {
  font-size: 15px;
  font-weight: 700;
}
.mini-date {
  font-size: 11px;
  color: var(--text-3);
  margin-top: -6px;
}
.mini-transcript {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.5;
}
.mini-result { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.result-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 10px;
}
.result-name { font-size: 12px; font-weight: 600; flex: 1; }
.result-detail { font-size: 11px; color: var(--text-3); }
.check-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-circle.sm { width: 16px; height: 16px; }
.open-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.open-circle.sm { width: 16px; height: 16px; }
.save-btn {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  margin-top: auto;
}

/* Habit list */
.habit-list { display: flex; flex-direction: column; gap: 5px; }
.habit-row {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 11px;
}
.habit-icon { font-size: 12px; }
.habit-row > span:nth-child(2) { flex: 1; font-weight: 600; font-size: 11px; }
.habit-meta { font-size: 10px; color: var(--text-3); }

/* Consistency bar */
.consistency-bar {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin-top: auto;
}
.cons-label { font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}
.bar {
  flex: 1;
  background: rgba(197,232,74,0.3);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.bar.active { background: var(--accent); }
.bar span {
  font-size: 7px;
  color: var(--text-3);
  margin-top: 4px;
  position: absolute;
  bottom: -12px;
}

/* Widget screen */
.widget-screen { gap: 12px; }
.widget-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
}
.widget-habit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0;
}
.widget-log-btn {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 10px;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin-top: 4px;
}

/* ── AUDIENCE / SUPPORTS / SEARCH INTENT ── */
.audience,
.supports,
.search-intent {
  padding: 0 32px 100px;
}
.audience h2,
.supports h2,
.search-intent h2,
.faq h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.audience-grid,
.supports-grid,
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.supports-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ── PRINCIPLES ── */
.principles {
  padding: 100px 32px;
  text-align: center;
}
.principles h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.principle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.3s;
}
.principle-card:hover { border-color: rgba(197,232,74,0.25); }
.principle-icon {
  width: 48px; height: 48px;
  background: rgba(197,232,74,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.principle-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.principle-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── PRIVACY ── */
.privacy {
  padding: 100px 32px;
  text-align: center;
}
.privacy-icon {
  width: 80px; height: 80px;
  background: rgba(197,232,74,0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.privacy h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.privacy-body {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

/* ── FAQ ── */
.faq {
  padding: 0 32px 100px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 20px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 8px 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.75;
  padding: 0 0 20px;
  max-width: 760px;
}

/* ── RESOURCE HUB ── */
.resource-hub {
  padding: 0 32px 100px;
}
.resource-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.resource-head h2,
.page-hero h1,
.hub-hero h1,
.article-hero h1,
.knowledge-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.resource-head p,
.page-hero p,
.hub-hero p,
.article-hero p,
.knowledge-hero p,
.page-section p,
.article-main p,
.hub-card p,
.topic-card p,
.link-card p,
.related-card p,
.stat-card p,
.faq-group p,
.feature-panel p,
.comparison-panel p,
.compare-table td,
.compare-table li,
.timeline-card p,
.audience-panel p,
.trust-panel p {
  color: var(--text-2);
}
.resource-head > div {
  max-width: 720px;
}
.resource-head p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}
.resource-grid,
.hub-grid,
.topic-grid,
.link-grid,
.related-grid,
.stat-grid,
.timeline-grid,
.feature-grid,
.faq-group-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}
.resource-grid,
.hub-grid,
.topic-grid,
.feature-grid,
.faq-group-grid,
.trust-grid {
  grid-template-columns: repeat(2, 1fr);
}
.resource-card,
.hub-card,
.topic-card,
.link-card,
.related-card,
.stat-card,
.timeline-card,
.feature-panel,
.faq-group,
.comparison-panel,
.audience-panel,
.trust-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.resource-kicker,
.card-kicker,
.eyebrow-inline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.resource-card h3,
.hub-card h3,
.topic-card h3,
.related-card h3,
.stat-card h3,
.timeline-card h3,
.feature-panel h3,
.faq-group h3,
.comparison-panel h3,
.audience-panel h3,
.trust-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.resource-card h3 a,
.hub-card h3 a,
.link-card a,
.related-card a {
  color: var(--text);
  text-decoration: none;
}
.resource-card p,
.hub-card p,
.topic-card p,
.related-card p,
.feature-panel p,
.comparison-panel p,
.audience-panel p,
.trust-panel p {
  font-size: 15px;
  line-height: 1.7;
}

/* ── SHARED PAGE SHELL ── */
.page-shell,
.article-shell,
.knowledge-shell,
.hub-shell {
  padding-top: 112px;
}
.page-hero,
.hub-hero,
.article-hero,
.knowledge-hero {
  padding: 0 32px 48px;
}
.page-hero .container,
.hub-hero .container,
.article-hero .container,
.knowledge-hero .container {
  max-width: 1120px;
}
.page-hero p,
.hub-hero p,
.article-hero p,
.knowledge-hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin-top: 18px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
}
.page-section,
.hub-section,
.article-section,
.knowledge-section {
  padding: 0 32px 88px;
}
.page-section h2,
.hub-section h2,
.article-main h2,
.knowledge-shell h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.page-section p,
.hub-section p,
.article-main p,
.knowledge-section p {
  font-size: 17px;
  line-height: 1.8;
}
.page-section a,
.hub-section a,
.article-main a,
.knowledge-section a,
.aside-card a,
.callout a,
.note-card a,
.faq-group a {
  color: var(--accent);
  text-decoration: none;
}
.page-section a:hover,
.hub-section a:hover,
.article-main a:hover,
.knowledge-section a:hover,
.aside-card a:hover,
.callout a:hover,
.note-card a:hover,
.faq-group a:hover {
  text-decoration: underline;
}
.page-stack,
.article-stack {
  display: grid;
  gap: 20px;
}
.split-grid,
.article-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
}
.article-main,
.knowledge-main {
  display: grid;
  gap: 24px;
}
.article-summary {
  background: linear-gradient(180deg, rgba(197,232,74,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(197,232,74,0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.article-summary h2 {
  margin-bottom: 14px;
}
.summary-grid,
.decision-grid,
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.summary-point {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 16px;
}
.summary-point h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.summary-point p {
  font-size: 14px;
  line-height: 1.7;
}
.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.jump-links a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  background: rgba(255,255,255,0.03);
}
.visual-block {
  display: grid;
  gap: 16px;
  margin: 10px 0 6px;
}
.visual-block figcaption,
.visual-caption {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-3);
}
.diagram-shell {
  background:
    radial-gradient(circle at top right, rgba(197,232,74,0.08), transparent 35%),
    rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}
.diagram-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.flow-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-step {
  min-width: 150px;
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px 16px;
  display: grid;
  gap: 8px;
}
.flow-step strong,
.decision-node strong,
.lane-card strong,
.framework-card strong,
.timeline-point strong,
.type-card strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.flow-step span,
.decision-node span,
.lane-card span,
.framework-card span,
.timeline-point span,
.type-card span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
}
.flow-arrow,
.decision-arrow,
.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  min-width: 22px;
}
.flow-arrow::before,
.decision-arrow::before,
.timeline-arrow::before {
  content: '->';
}
.lane-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lane-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 20px 18px;
  display: grid;
  gap: 14px;
}
.lane-card--accent {
  border-color: rgba(197,232,74,0.25);
  box-shadow: 0 0 0 1px rgba(197,232,74,0.08) inset;
}
.lane-card ol,
.lane-card ul {
  margin-left: 18px;
}
.lane-card li {
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.7;
}
.timeline-rail {
  display: grid;
  gap: 12px;
}
.timeline-point {
  position: relative;
  padding: 18px 18px 18px 54px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}
.timeline-point::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 23px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(197,232,74,0.12);
}
.timeline-point::after {
  content: '';
  position: absolute;
  left: 27px;
  top: calc(23px + 16px);
  bottom: -14px;
  width: 2px;
  background: rgba(197,232,74,0.25);
}
.timeline-point:last-child::after {
  display: none;
}
.decision-tree {
  display: grid;
  gap: 14px;
}
.decision-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
}
.decision-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.decision-branch {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px 14px;
  display: grid;
  gap: 8px;
}
.decision-branch--accent {
  border-color: rgba(197,232,74,0.25);
  background: rgba(197,232,74,0.08);
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.framework-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px 16px;
  display: grid;
  gap: 8px;
}
.framework-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0E1100;
  background: var(--accent);
}
.split-spectrum {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.spectrum-side {
  border-radius: 22px;
  padding: 20px 18px;
  border: 1px solid var(--border);
}
.spectrum-side--soft {
  background: rgba(255,255,255,0.04);
}
.spectrum-side--accent {
  background: rgba(197,232,74,0.08);
  border-color: rgba(197,232,74,0.24);
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.type-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
}
.type-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(197,232,74,0.12);
  border: 1px solid rgba(197,232,74,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}
.visual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.visual-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.article-aside,
.knowledge-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}
.callout,
.aside-card,
.note-card {
  background: rgba(197,232,74,0.08);
  border: 1px solid rgba(197,232,74,0.18);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.callout h3,
.aside-card h3,
.note-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.callout p,
.aside-card p,
.note-card p,
.callout li,
.aside-card li,
.note-card li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}
.article-main ul,
.article-main ol,
.page-section ul,
.page-section ol,
.hub-section ul,
.hub-section ol,
.knowledge-section ul,
.knowledge-section ol,
.faq-group ul,
.feature-panel ul,
.comparison-panel ul,
.audience-panel ul,
.trust-panel ul,
.callout ul,
.aside-card ul,
.note-card ul {
  margin-left: 20px;
}
.article-main li,
.page-section li,
.hub-section li,
.knowledge-section li,
.faq-group li,
.feature-panel li,
.comparison-panel li,
.audience-panel li,
.trust-panel li {
  color: var(--text-2);
  margin-bottom: 10px;
  line-height: 1.75;
}
.link-grid {
  grid-template-columns: repeat(3, 1fr);
}
.link-card {
  text-decoration: none;
}
.link-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0;
  color: var(--text);
}
.link-card span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}
.stat-grid {
  grid-template-columns: repeat(3, 1fr);
}
.stat-card strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.topic-card ul,
.feature-panel ul,
.comparison-panel ul,
.audience-panel ul,
.trust-panel ul {
  margin-top: 12px;
}
.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.faq-category-nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  background: rgba(255,255,255,0.03);
}
.faq-group-grid {
  align-items: start;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  background: rgba(255,255,255,0.03);
}
.compare-table td {
  font-size: 15px;
  line-height: 1.7;
}
.compare-table tr:last-child td {
  border-bottom: 0;
}
.feature-grid {
  align-items: start;
}
.hub-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.hub-list a {
  color: var(--text);
  text-decoration: none;
}
.page-cta {
  margin-top: 12px;
}
.page-cta a {
  text-decoration: none;
}
.article-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 8px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(197,232,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-headline {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-trust {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 28px;
}
.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-right {
  font-size: 13px;
  color: var(--text-2);
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-2);
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .trust-line { justify-content: center; }
  .hero-points { text-align: left; }
  .hero-phone { margin-top: 40px; }
  .overview-grid,
  .comparison-grid,
  .voice-grid,
  .audience-grid,
  .supports-grid,
  .intent-grid,
  .resource-grid,
  .hub-grid,
  .topic-grid,
  .feature-grid,
  .faq-group-grid,
  .trust-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .feature-phone { order: -1; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .resource-head,
  .split-grid,
  .article-grid,
  .knowledge-grid,
  .summary-grid,
  .decision-grid,
  .scenario-grid,
  .triple-grid,
  .lane-compare,
  .framework-grid,
  .split-spectrum,
  .link-grid,
  .stat-grid { grid-template-columns: 1fr; }
  .resource-head {
    align-items: flex-start;
  }
  .article-aside,
  .knowledge-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .principles-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .hero { padding: 100px 20px 60px; }
  .container { padding: 0 20px; }
  .overview,
  .problem,
  .how,
  .comparison,
  .voice-wedge,
  .features,
  .audience,
  .supports,
  .search-intent,
  .privacy,
  .faq,
  .resource-hub,
  .page-hero,
  .hub-hero,
  .article-hero,
  .knowledge-hero,
  .page-section,
  .hub-section,
  .article-section,
  .knowledge-section,
  .cta-section { padding-left: 20px; padding-right: 20px; }
  .comparison-card,
  .voice-card,
  .audience-card,
  .support-card,
  .intent-card,
  .overview-card,
  .resource-card,
  .hub-card,
  .topic-card,
  .link-card,
  .related-card,
  .stat-card,
  .timeline-card,
  .feature-panel,
  .faq-group,
  .comparison-panel,
  .audience-panel,
  .trust-panel { padding: 24px 20px; }
  .flow-track {
    flex-direction: column;
  }
  .flow-arrow,
  .decision-arrow,
  .timeline-arrow {
    min-height: 22px;
  }
  .decision-row,
  .types-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
