/* ── EyaWriter Marketing CSS ──────────────────────────────────────────────
   Shared by: landing.html, pricing.html, features.html, faq.html, help.html
   ─────────────────────────────────────────────────────────────────────── */

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

:root {
  --bg:          #fff1f2;
  --surface:     rgba(255,255,255,.88);
  --surface2:    rgba(255,255,255,.98);
  --border:      rgba(244,63,94,.12);
  --accent:      #f43f5e;
  --accent-glow: rgba(244,63,94,.16);
  --accent2:     #fb7185;
  --text:        #881337;
  --text-muted:  #9f1239;
  --text-faint:  #be123c;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 18px 42px rgba(244,63,94,.12);
  --nav-h:       64px;
}

html[data-theme="cedar"],
html:not([data-theme]) {
  --bg:          #fff1f2;
  --surface:     rgba(255,255,255,.88);
  --surface2:    rgba(255,255,255,.98);
  --border:      rgba(244,63,94,.12);
  --accent:      #f43f5e;
  --accent-glow: rgba(244,63,94,.16);
  --accent2:     #fb7185;
  --text:        #881337;
  --text-muted:  #9f1239;
  --text-faint:  #be123c;
  --shadow:      0 18px 42px rgba(244,63,94,.12);
}

html[data-theme="dark"] {
  --bg:          #1a1a1a;
  --surface:     rgba(40,40,40,.86);
  --surface2:    rgba(24,24,24,.96);
  --border:      rgba(255,255,255,.1);
  --accent:      #4fd1c5;
  --accent-glow: rgba(79,209,197,.18);
  --accent2:     #38b2ac;
  --text:        #f0f0f0;
  --text-muted:  #a0a0a0;
  --text-faint:  #7b7b7b;
  --shadow:      0 18px 42px rgba(0,0,0,.32);
}

html[data-theme="white"] {
  --bg:          #ffffff;
  --surface:     rgba(255,255,255,.96);
  --surface2:    #ffffff;
  --border:      rgba(15,23,42,.08);
  --accent:      #1f7a6b;
  --accent-glow: rgba(31,122,107,.14);
  --accent2:     #2f9b89;
  --text:        #111111;
  --text-muted:  #222222;
  --text-faint:  #475569;
  --shadow:      0 16px 34px rgba(15,23,42,.08);
}

html[data-theme="navy"] {
  --bg:          #0f172a;
  --surface:     rgba(30,41,59,.88);
  --surface2:    rgba(15,23,42,.98);
  --border:      rgba(255,255,255,.1);
  --accent:      #38bdf8;
  --accent-glow: rgba(56,189,248,.18);
  --accent2:     #0ea5e9;
  --text:        #f1f5f9;
  --text-muted:  #cbd5e1;
  --text-faint:  #94a3b8;
  --shadow:      0 18px 42px rgba(0,0,0,.36);
}

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.mkt-nav .container {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  text-decoration: none;
}

.nav-links a:hover { color: var(--text); background: color-mix(in srgb, var(--surface2) 88%, transparent); }
.nav-links a.is-active { color: var(--text); }

/* Navigation Theme Picker */
.nav-theme-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 99px;
  margin-right: 12px;
  flex-shrink: 0;
}

.theme-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 0;
  transition: transform 0.12s, box-shadow 0.12s;
}

.theme-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 6px var(--accent);
}

.theme-dot.cedar { background: #f43f5e; }
.theme-dot.dark { background: #4fd1c5; }
.theme-dot.white { background: #ffffff; border-color: rgba(0, 0, 0, 0.25); }
.theme-dot.navy { background: #38bdf8; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .is-session-hidden { display: none !important; }

.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color .15s, border-color .15s, background .15s;
}

.btn-ghost:hover { color: var(--text); border-color: color-mix(in srgb, var(--accent) 26%, var(--border)); background: color-mix(in srgb, var(--surface2) 94%, transparent); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .15s, transform .1s, box-shadow .15s;
}

.btn-primary:hover { background: color-mix(in srgb, var(--accent) 86%, black 14%); box-shadow: 0 4px 16px var(--accent-glow); transform: translateY(-1px); text-decoration: none; }

.btn-primary-lg {
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 10px;
}

.btn-ghost-lg {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  transition: color .15s, border-color .15s, background .15s;
}

.btn-ghost-lg:hover { color: var(--text); border-color: color-mix(in srgb, var(--accent) 22%, var(--border)); background: color-mix(in srgb, var(--surface2) 94%, transparent); text-decoration: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  border: 1px solid rgba(244,63,94,.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: .03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero-note {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.hero-visual {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.hero-mock {
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 28px 32px;
  text-align: left;
  font-family: 'Courier New', monospace;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.mock-int  { color: #818cf8; font-weight: 700; display: block; text-transform: uppercase; }
.mock-act  { color: var(--text-muted); display: block; }
.mock-char { text-align: center; color: #f9a8d4; display: block; }
.mock-dial { max-width: 360px; margin: 0 auto; display: block; color: var(--text); }
.mock-dir  { max-width: 320px; margin: 0 auto; text-align: center; color: #94a3b8; font-style: italic; display: block; }
.mock-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink .7s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Stats bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 24px 48px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Section headings ───────────────────────────────────────────────────── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Feature cards ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover { border-color: rgba(244,63,94,.3); transform: translateY(-2px); }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Two-col split ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-content { }
.split-content h2 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 16px; }
.split-content p { color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.split-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.split-content ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.92rem; }
.split-content ul li::before { content: '✓'; color: var(--accent); flex-shrink: 0; margin-top: 2px; font-weight: 700; }

.split-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── How it works ───────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: .3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 20px;
}

.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Pricing cards ──────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(244,63,94,.06) 100%);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; }

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.04em;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; font-weight: 400; }
.pricing-price sub { font-size: 1rem; font-weight: 400; letter-spacing: 0; }

.pricing-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }

.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.pricing-features li .check { color: var(--accent); flex-shrink: 0; font-weight: 700; }
.pricing-features li .cross { color: var(--text-faint); flex-shrink: 0; }
.pricing-features li.dim { color: var(--text-faint); }

.pricing-cta { width: 100%; text-align: center; padding: 12px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; cursor: pointer; display: block; }

/* ── Waitlist ────────────────────────────────────────────────────────────── */
.waitlist-section {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(129,140,248,.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.waitlist-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.waitlist-input {
  flex: 1;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color .15s;
}

.waitlist-input:focus { border-color: rgba(244,63,94,.5); }
.waitlist-input::placeholder { color: var(--text-faint); }

.waitlist-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .15s;
}

.faq-item.is-open { border-color: rgba(244,63,94,.3); }

.faq-question {
  width: 100%;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .15s;
}

.faq-question:hover { background: var(--surface2); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .25s;
}

.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--bg);
}

.faq-answer-inner {
  padding: 16px 20px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer-inner a { color: var(--accent); }

/* ── Help center ────────────────────────────────────────────────────────── */
.help-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.help-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.help-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 12px;
  margin-bottom: 8px;
}

.help-sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.help-sidebar-nav a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.help-sidebar-nav a:hover { background: var(--surface); color: var(--text); }
.help-sidebar-nav a.is-active { background: var(--accent-glow); color: var(--accent); font-weight: 600; }

.help-content { min-width: 0; }

.help-section { margin-bottom: 64px; scroll-margin-top: calc(var(--nav-h) + 24px); }

.help-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.help-section h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; color: var(--text); }

.help-section p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; font-size: 0.93rem; }

.help-section ul, .help-section ol {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  padding-left: 20px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.help-section a { color: var(--accent); }

.kbd {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom-width: 2px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: monospace;
  padding: 1px 6px;
  color: var(--text);
}

.help-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 12px;
}

.help-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.help-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.shortcuts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.shortcuts-table th {
  text-align: left;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.shortcuts-table td {
  padding: 10px 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.shortcuts-table td:first-child { color: var(--text); }
.shortcuts-table tr:last-child td { border-bottom: none; }

.tip-box {
  background: rgba(129,140,248,.08);
  border: 1px solid rgba(129,140,248,.2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 16px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tip-box::before { content: '💡'; flex-shrink: 0; }

/* ── Features page detail ───────────────────────────────────────────────── */
.feature-detail-section { padding: 64px 0; border-top: 1px solid var(--border); }
.feature-detail-section:first-of-type { border-top: none; padding-top: 48px; }

.feature-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); padding: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.feature-list li::before { content: '✓'; color: var(--accent); flex-shrink: 0; font-weight: 700; margin-top: 1px; }

/* ── Comparison table ───────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.compare-table th { padding: 14px 20px; background: var(--surface); font-size: 0.88rem; font-weight: 700; text-align: left; border-bottom: 2px solid var(--border); }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: var(--surface); }
.compare-table .yes { color: #4ade80; font-weight: 700; }
.compare-table .no  { color: var(--text-faint); }
.compare-table .soon { color: #facc15; font-size: 0.8rem; }

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(244,63,94,.08) 0%, rgba(129,140,248,.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 { font-size: 2rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.mkt-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { font-size: 1.1rem; display: inline-block; margin-bottom: 10px; }
.footer-brand p { color: var(--text-faint); font-size: 0.85rem; line-height: 1.6; max-width: 220px; }

.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a { color: var(--text-faint); text-decoration: none; transition: color .15s; }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .help-sidebar { position: static; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .mkt-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(15,14,23,.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .mkt-nav.is-open .nav-actions {
    display: flex;
    position: absolute;
    top: calc(var(--nav-h) + 120px);
    left: 0; right: 0;
    background: rgba(15,14,23,.97);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
  }
  .mkt-nav { position: relative; }
  .stat-item { padding: 18px 24px; }
  .hero { padding: 72px 0 56px; }
  .section { padding: 56px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .waitlist-form { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
}

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