/* ────────────────────────────────────────────────────────────────
   JIAA — jiaa.codes
   Dark, IDE-flavoured one-pager. No dependencies.
   ──────────────────────────────────────────────────────────────── */

:root {
  --bg: #0a0d13;
  --bg-alt: #0d1119;
  --panel: #131927;
  --line: rgba(255, 255, 255, 0.08);
  --text: #e8ecf3;
  --muted: #98a2b3;
  --accent: #34d399;
  --accent-dark: #06281b;
  --accent2: #818cf8;
  --radius: 14px;
  --maxw: 1100px;
}

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

html { scroll-behavior: smooth; }

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: #0d1117;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  color: #7ee2b8;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 820px; }

.muted { color: var(--muted); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.25);
}
.btn-primary:hover { background: #4ce0a8; box-shadow: 0 10px 36px rgba(52, 211, 153, 0.35); }
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.2); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 38px; font-size: 17px; }

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  align-self: center;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
}
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: 0.04em; }
.brand-sub { color: var(--muted); font-size: 12.5px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--accent); }

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 88px 0 40px;
  background:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(52, 211, 153, 0.13), transparent),
    radial-gradient(ellipse 50% 35% at 80% 0%, rgba(129, 140, 248, 0.10), transparent);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.02);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.grad {
  background: linear-gradient(92deg, var(--accent), #6ee7b7 55%, var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18.5px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-fine { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hero-shot { margin-top: 56px; }

/* ─── Author proof band ─── */
.proof {
  padding: 60px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 90% at 50% 50%, rgba(52, 211, 153, 0.10), transparent),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-mark {
  font-size: 26px;
  margin-bottom: 12px;
  opacity: 0.9;
}
.proof-q {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.proof-quote {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto;
}
.proof-by { margin-top: 18px; color: var(--muted); font-size: 15px; }

/* ─── Shots (screenshot slots) ─── */
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  background: #10141d;
  line-height: 0;
}
.shot svg { width: 100%; height: auto; display: block; }
.shot img, .shot video { width: 100%; height: auto; display: block; }
/* when real media loads, JS adds .loaded — hide the SVG placeholder */
.shot.loaded svg { display: none; }

/* ─── Sections ─── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
  font-weight: 800;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 17px;
}

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* ─── Modes ─── */
.mode {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 48px;
  align-items: center;
  margin-top: 88px;
}
.mode-flip .mode-text { order: 2; }
.mode-flip .shot { order: 1; }
.mode-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mode h3 {
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  margin: 10px 0 18px;
  letter-spacing: -0.01em;
}
.mode ul { list-style: none; }
.mode li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 12px;
}
.mode li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--accent);
}
.mode li strong { color: var(--text); font-weight: 600; }

/* ─── Feature grid ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(52, 211, 153, 0.35); transform: translateY(-2px); }
.card h3 { font-size: 16.5px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ─── Pricing ─── */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
}
.plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.plan-best {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 50px rgba(52, 211, 153, 0.10);
}
.plan-badge {
  position: absolute;
  top: -13px;
  right: 26px;
  background: var(--accent);
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
}
.plan h3 { font-size: 16px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.price { font-size: 46px; font-weight: 800; margin-top: 8px; letter-spacing: -0.02em; }
.price span { font-size: 17px; font-weight: 500; color: var(--muted); }
.price-sub { color: var(--accent); font-size: 14px; margin-top: 2px; }
.plan ul { list-style: none; margin-top: 22px; }
.plan li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px;
}
.plan li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
.pricing-note {
  max-width: 640px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 15px;
}
.pricing-note p + p { margin-top: 10px; font-size: 14px; }
.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 211, 153, 0.4);
}
.pricing-note a:hover { border-bottom-color: var(--accent); }

/* ─── FAQ ─── */
.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  margin-top: 14px;
  overflow: hidden;
}
#faq h2 { margin-bottom: 28px; }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
}
.faq a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 211, 153, 0.4);
}
.faq a:hover { border-bottom-color: var(--accent); }

/* ─── Guide / docs page ─── */
.doc-hero {
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 50% at 50% -20%, rgba(52, 211, 153, 0.10), transparent);
}
.doc-eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.doc-hero h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.doc-lead {
  margin-top: 16px;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}
.doc-lead a:not(.btn), .doc-content a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 211, 153, 0.4);
}
.doc-lead a:not(.btn):hover, .doc-content a:not(.btn):hover { border-bottom-color: var(--accent); }

.doc-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 96px;
  align-items: start;
}

/* sticky table of contents */
.doc-toc {
  position: sticky;
  top: 88px;
  align-self: start;
}
.doc-toc-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.doc-toc nav { display: flex; flex-direction: column; }
.doc-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color 0.15s, border-color 0.15s;
}
.doc-toc a:hover { color: var(--text); border-left-color: var(--line); }
.doc-toc a.sub { padding-left: 26px; font-size: 13.5px; }
.doc-toc a.active { color: var(--accent); border-left-color: var(--accent); }
.doc-toc-group {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 20px 0 6px;
  padding-left: 12px;
}
.doc-toc-group:first-of-type { margin-top: 4px; }

/* part divider banner */
.doc-part {
  margin: 0 0 44px;
  padding: 22px 26px;
  border-radius: 14px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: linear-gradient(100deg, rgba(52, 211, 153, 0.10), rgba(129, 140, 248, 0.05));
  scroll-margin-top: 84px;
}
.doc-part-kicker {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.doc-part-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 6px;
}
.doc-part p { margin: 0; color: var(--muted); font-size: 15px; }

/* content */
.doc-content { min-width: 0; max-width: 720px; }
.doc-content section { margin-bottom: 56px; scroll-margin-top: 84px; }
.doc-content h2 {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.doc-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 36px 0 14px;
  scroll-margin-top: 84px;
}
.doc-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }

/* figures (screenshots / videos, with SVG mock fallback) */
.doc-figure { margin: 18px 0 26px; }
.doc-figure .shot { background: #10141d; }
.doc-figure .shot svg { display: block; width: 100%; height: auto; }
.shot-caption {
  margin-top: 9px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.shot-caption .shot-tag {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.32);
  border-radius: 999px;
  padding: 1px 8px;
  margin-right: 8px;
  vertical-align: 1px;
}

.doc-content p.doc-substep {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  margin: 26px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

/* plain bullet lists */
.doc-content ul { color: var(--muted); padding-left: 22px; margin-bottom: 22px; }
.doc-content ul li { margin-bottom: 11px; line-height: 1.65; }
.doc-content strong { color: var(--text); font-weight: 600; }

/* numbered step lists — always stacked, with a number badge */
.doc-steps {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 26px;
  counter-reset: step;
}
.doc-steps > li {
  position: relative;
  counter-increment: step;
  padding: 3px 0 3px 48px;
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.65;
}
.doc-steps > li:last-child { margin-bottom: 0; }
.doc-steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.32);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* block code (Terminal commands) */
.doc-content pre {
  background: #0d1117;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  overflow-x: auto;
  margin: 0 0 14px;
}
.doc-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: #c8d3e6;
  font-size: 12.5px;
  line-height: 1.6;
  white-space: pre;
}

/* lightweight manual command-line syntax tokens */
.tok-cmd  { color: #82aaff; }            /* command names / executable paths */
.tok-flag { color: #ffcb6b; }            /* flags (-c, --cask) */
.tok-str  { color: #c3e88d; }            /* quoted strings */
.tok-url  { color: #7ee2b8; }            /* URLs and file paths */
.tok-op   { color: #8d97a8; }            /* operators: $( ) >> */
code .tok-cmd, code .tok-flag, code .tok-str, code .tok-url, code .tok-op { font-weight: 500; }

/* collapsible detail (e.g. how to install Homebrew) */
.doc-details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  margin: 12px 0 4px;
  overflow: hidden;
}
.doc-details summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 40px 12px 16px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  position: relative;
  user-select: none;
}
.doc-details summary::-webkit-details-marker { display: none; }
.doc-details summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}
.doc-details[open] summary::after { content: "\2013"; }
.doc-details-body { padding: 2px 16px 14px; }
.doc-details-body p { font-size: 14.5px; margin-bottom: 10px; }

/* definition-style lists (toolbar, answers, troubleshooting) */
.doc-content .defs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}
.doc-content .defs li {
  margin-bottom: 0;
  padding: 13px 0 13px 16px;
  border-left: 2px solid rgba(52, 211, 153, 0.4);
  line-height: 1.6;
}
.doc-content .defs li + li { border-top: 1px solid var(--line); }

.legal-layout {
  display: block;
  padding-top: 48px;
  padding-bottom: 96px;
}

.legal-content {
  min-width: 0;
  max-width: 820px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.callout {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14.5px;
  margin: 4px 0 16px;
}
.callout strong { color: var(--text); }
.callout-warn {
  background: rgba(254, 188, 46, 0.07);
  border-color: rgba(254, 188, 46, 0.30);
}

.doc-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.doc-cta .btn {
  min-width: 184px;
  justify-content: center;
  text-align: center;
}
.doc-cta .btn-primary {
  background: linear-gradient(135deg, #34d399 0%, #63e6b2 100%);
  color: #06281b;
  box-shadow: 0 12px 30px rgba(52, 211, 153, 0.22);
}
.doc-cta .btn-primary:hover {
  background: linear-gradient(135deg, #46deaa 0%, #7aeabd 100%);
  box-shadow: 0 16px 34px rgba(52, 211, 153, 0.3);
}
.doc-cta .btn-ghost {
  color: #dffaf0;
  border-color: rgba(52, 211, 153, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.doc-cta .btn-ghost:hover {
  color: #f4fff9;
  border-color: rgba(52, 211, 153, 0.45);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.08), rgba(255, 255, 255, 0.03));
}

@media (max-width: 860px) {
  .doc-layout { grid-template-columns: 1fr; gap: 0; }
  .doc-toc {
    position: static;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
}

/* ─── Download CTA ─── */
.download { text-align: center; }
.download .btn { margin-top: 34px; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--text); }
.footer-link-button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}
.footer-link-button:hover { color: var(--text); }
.footer-link-button[hidden] { display: none; }
.footer-copy {
  margin-top: 32px;
  font-size: 12.5px;
  color: rgba(152, 162, 179, 0.6);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(420px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 13, 19, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  padding: 18px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-banner-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 211, 153, 0.4);
}
.cookie-banner-text a:hover { border-bottom-color: var(--accent); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cookie-banner-actions .btn {
  min-width: 128px;
  text-align: center;
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 920px) {
  .mode { grid-template-columns: 1fr; gap: 28px; margin-top: 72px; }
  .mode-flip .mode-text { order: 1; }
  .mode-flip .shot { order: 2; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding-top: 64px; }
  .legal-layout { padding-top: 36px; padding-bottom: 72px; }
  .legal-content { max-width: none; }
  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }
}
