/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --midnight: #1A1A2E;
  --iris:     #5240B8;
  --lavender: #7C6FCD;
  --mist:     #EDE9FF;
  --parchment:#F4F3F0;
  --text:     #1A1A2E;
  --subtle:   #6B7280;
  --border:   #E5E3DF;
  --white:    #FFFFFF;
  --radius:   12px;
  --radius-sm:6px;
  --shadow:   0 1px 4px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg:0 8px 32px rgba(82,64,184,0.12);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--iris); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: #fff; text-decoration: none;
}
.brand-dot {
  width: 20px; height: 20px; border-radius: 6px;
  background: url("favicon.svg") center / contain no-repeat;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color .15s; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-cta {
  background: var(--iris); color: #fff !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600;
  transition: background .15s;
}
.nav-cta:hover { background: var(--lavender) !important; }
.nav-toggle {
  display: none; background: none; border: none; color: #fff;
  cursor: pointer; padding: 8px; margin: -8px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-primary { background: var(--iris); color: #fff; }
.btn-primary:hover { background: var(--lavender); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-outline { background: transparent; color: var(--iris); border: 2px solid var(--iris); }
.btn-outline:hover { background: var(--mist); color: var(--iris); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--midnight);
  padding: 120px 0 96px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(82,64,184,0.35) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(82,64,184,0.25); border: 1px solid rgba(124,111,205,0.4);
  color: var(--lavender); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; letter-spacing: -0.02em;
  max-width: 820px; margin: 0 auto 24px;
}
.hero h1 span { color: var(--lavender); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px; margin: 0 auto 48px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 20px; font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── Hero demo window ────────────────────────────────────────────────────── */
.demo-window {
  margin: 56px auto 0;
  max-width: 940px;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  overflow: hidden;
  text-align: left;
  position: relative;
  padding: 1px;
  background: linear-gradient(135deg, var(--lavender), var(--iris), var(--lavender));
  background-size: 200% 200%;
  animation: demo-glow 6s ease infinite;
}
.demo-window-inner {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
@keyframes demo-glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.demo-titlebar {
  display: flex; align-items: center; gap: 8px;
  background: #EDEBF6; padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot-red    { background: #FF5F57; }
.demo-dot-yellow { background: #FEBC2E; }
.demo-dot-green  { background: #28C840; }
.demo-url {
  margin-left: 10px; font-size: 0.75rem; color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.demo-body {
  display: grid; grid-template-columns: 0.85fr 1.3fr 1fr;
  gap: 0;
}
.demo-codebook {
  padding: 24px; border-right: 1px solid var(--border);
  background: var(--parchment);
}
.demo-codebook-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.demo-codebook-item {
  font-size: 0.78rem; color: var(--subtle); font-weight: 500;
  padding: 8px 10px; border-radius: 6px;
  border: 1px solid transparent;
}
.demo-codebook-item-match {
  background: var(--white); color: var(--iris); font-weight: 700;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(124,111,205,0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.demo-codebook-def {
  font-size: 0.72rem; font-weight: 400; color: var(--subtle);
  line-height: 1.5;
}
.demo-transcript {
  padding: 24px; border-right: 1px solid var(--border);
}
.demo-transcript-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--subtle); margin-bottom: 14px;
}
.demo-line {
  font-size: 0.88rem; color: var(--text);
  margin-bottom: 12px; line-height: 1.55;
}
.demo-line-highlight {
  background: var(--mist);
  border-left: 3px solid var(--lavender);
  padding: 10px 12px; border-radius: 0 8px 8px 0;
  margin: 0;
}
.demo-proposal {
  padding: 24px; background: var(--parchment);
  display: flex; flex-direction: column; gap: 12px;
}
.demo-proposal-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--iris);
}
.demo-ai-icon {
  color: var(--lavender);
  display: inline-block;
  animation: demo-pulse 1.8s ease-in-out infinite;
}
@keyframes demo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.15); }
}
.demo-code-chip {
  display: inline-block; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 0.85rem; font-weight: 600;
  color: var(--text); box-shadow: var(--shadow);
  opacity: 0; transform: translateY(6px);
  animation: demo-reveal 0.5s ease 0.6s forwards;
}
@keyframes demo-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.demo-proposal-note {
  font-size: 0.76rem; color: var(--subtle);
}
.demo-proposal-actions {
  display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap;
}
.demo-btn {
  font-size: 0.78rem; font-weight: 600; padding: 8px 12px;
  border-radius: 8px; border: 1px solid var(--border);
  background: var(--white); cursor: default;
}
.demo-btn-approve { color: #15803D; border-color: #BBF0CD; }
.demo-btn-merge   { color: var(--iris); border-color: var(--mist); }
.demo-btn-reject  { color: #B91C1C; border-color: #FCD5D5; }

@media (max-width: 860px) {
  .demo-body { grid-template-columns: 1fr; }
  .demo-codebook, .demo-transcript { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Logos / trust bar ────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--parchment);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--subtle); font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }
.trust-icon svg, .feature-icon svg { width: 1em; height: 1em; display: block; }
.trust-icon svg { display: inline-block; vertical-align: -0.15em; }

/* ── Section headings ─────────────────────────────────────────────────────── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--iris); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--subtle);
  max-width: 560px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 64px;
}
.step {
  position: relative;
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mist); color: var(--iris);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p  { font-size: 0.88rem; color: var(--subtle); line-height: 1.7; }
.step-connector {
  display: none; /* shown via CSS on wider screens */
}

/* ── Features ─────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 64px;
}
.feature-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-icon {
  font-size: 1.8rem; margin-bottom: 16px;
  color: var(--iris);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 0.875rem; color: var(--subtle); line-height: 1.7; }
.feature-card .feature-tag {
  display: inline-block; margin-top: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em;
  background: var(--mist); color: var(--iris);
  padding: 3px 10px; border-radius: 100px;
}

/* ── Audiences ────────────────────────────────────────────────────────────── */
.audiences { background: var(--parchment); }
.audiences-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.audience-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
}
.audience-priority {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--subtle); margin-bottom: 12px;
}
.audience-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.audience-card p  { font-size: 0.85rem; color: var(--subtle); line-height: 1.7; }
.audience-card ul {
  margin-top: 14px; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.audience-card ul li {
  font-size: 0.83rem; color: var(--subtle);
  display: flex; align-items: flex-start; gap: 8px;
}
.audience-card ul li::before { content: "✓"; color: var(--iris); font-weight: 700; flex-shrink: 0; }

/* ── Comparison ───────────────────────────────────────────────────────────── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  margin-top: 56px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px; text-align: center;
  font-size: 0.88rem; border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--midnight); color: #fff;
  font-weight: 700; font-size: 0.82rem;
}
.comparison-table th.highlight { background: var(--iris); }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--parchment); }
.check { color: var(--iris); font-weight: 700; font-size: 1rem; }
.cross { color: #9CA3AF; font-size: 0.9rem; }
.comparison-table .highlight-col { background: var(--mist) !important; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; align-items: stretch;
}
.pricing-card {
  border-radius: var(--radius); border: 1px solid var(--border);
  padding: 32px 24px; background: var(--white);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--iris); border-width: 2px;
  position: relative; transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--iris); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 10px; }
.pricing-price { font-size: 2.4rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--subtle); }
.pricing-price-quote { font-size: 1.7rem; line-height: 1.2; }
.pricing-desc { font-size: 0.82rem; color: var(--subtle); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pricing-features li { font-size: 0.83rem; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--iris); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note { font-size: 0.72rem; color: var(--subtle); text-align: center; margin-top: 40px; }

/* ── Methods citation ─────────────────────────────────────────────────────── */
.citation-box {
  background: var(--midnight); border-radius: var(--radius);
  padding: 40px 48px; margin-top: 48px;
  position: relative; overflow: hidden;
}
.citation-box::before {
  content: '"';
  position: absolute; top: -20px; left: 32px;
  font-size: 10rem; color: rgba(124,111,205,0.15);
  font-family: Georgia, serif; line-height: 1;
}
.citation-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lavender); margin-bottom: 16px;
}
.citation-text {
  font-size: 0.95rem; color: rgba(255,255,255,0.85);
  line-height: 1.8; font-style: italic;
  position: relative; z-index: 1;
}
.citation-copy-btn {
  margin-top: 20px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
  padding: 8px 18px; border-radius: 8px; cursor: pointer;
  font-size: 0.8rem; font-weight: 500;
  transition: background .15s;
}
.citation-copy-btn:hover { background: rgba(255,255,255,0.18); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { background: var(--parchment); }
.faq-list { max-width: 740px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-size: 0.93rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--iris); }
.faq-chevron { flex-shrink: 0; transition: transform .2s; color: var(--subtle); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 24px; font-size: 0.88rem; color: var(--subtle); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--iris);
  padding: 96px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-band p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--midnight);
  padding: 64px 0 40px;
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-tagline { line-height: 1.7; margin-bottom: 16px; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); text-decoration: none; }

/* ── Cookie banner ────────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 680px; margin: 0 auto;
  background: var(--midnight); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 9999; transition: opacity .3s;
}
#cookie-banner p { font-size: 0.82rem; flex: 1; line-height: 1.6; min-width: 200px; }
#cookie-banner p a { color: var(--lavender); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--iris); color: #fff; border: none;
  padding: 8px 20px; border-radius: 8px; font-weight: 600;
  font-size: 0.82rem; cursor: pointer;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; cursor: pointer;
}

/* ── Quote request modal ──────────────────────────────────────────────────── */
.quote-modal-overlay {
  position: fixed; inset: 0; background: rgba(26,26,46,0.6);
  z-index: 10000; align-items: center; justify-content: center; padding: 24px;
}
.quote-modal {
  background: var(--white); border-radius: var(--radius);
  max-width: 440px; width: 100%; padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  position: relative; max-height: 90vh; overflow-y: auto;
}
.quote-modal h3 { font-size: 1.3rem; margin-bottom: 6px; padding-right: 24px; }
.quote-modal-sub { font-size: 0.85rem; color: var(--subtle); margin-bottom: 20px; }
.quote-modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.4rem; line-height: 1;
  color: var(--subtle); cursor: pointer; padding: 4px;
}
.quote-modal-close:hover { color: var(--text); }
.quote-modal form { display: flex; flex-direction: column; gap: 14px; }
.quote-modal label { font-size: 0.82rem; font-weight: 600; display: flex; flex-direction: column; gap: 6px; }
.quote-modal input, .quote-modal select, .quote-modal textarea {
  font: inherit; font-weight: 400; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 8px; color: var(--text);
  background: var(--white);
}
.quote-modal input:focus, .quote-modal select:focus, .quote-modal textarea:focus {
  outline: none; border-color: var(--iris); box-shadow: 0 0 0 3px rgba(82,64,184,0.15);
}
.quote-modal textarea { resize: vertical; }
.quote-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-form-error {
  font-size: 0.82rem; color: #B91C1C; background: #FEF2F2;
  border: 1px solid #FECACA; border-radius: 8px; padding: 10px 12px;
}
.quote-form-success { text-align: center; padding: 12px 0; }
.quote-form-success p { font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps, .audiences-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--midnight); border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 8px 20px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin-top: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .citation-box { padding: 28px 24px; }
}
