/* Atlas — shared site styles. Palette derived from the app's own brand
   (assets/icon.jpg: near-black + steel + electric blue) and its in-app UI
   accents (core/config.py overlay colors, core/license/gate.py's Tk dialog):
   #4d8dff is literally the app's own "atm stats" overlay color. */

:root {
  --bg: #06070c;
  --bg-1: #0a0c14;
  --bg-2: #0d0f1a;
  --panel: rgba(16, 18, 28, 0.62);
  --panel-solid: #10121c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1fa;
  --text-muted: #9aa3b8;
  --text-dim: #6b7386;

  --accent: #4d8dff;
  --accent-bright: #82b3ff;
  --accent-dim: #2c4f9e;
  --accent-glow: rgba(77, 141, 255, 0.35);

  --gold: #d4a72c;
  --gold-bright: #f0c14b;

  --danger: #ff5b5b;
  --success: #35d07f;

  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 9px;

  --font-sans: "Segoe UI", -apple-system, Inter, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: Consolas, "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

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

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

/* ── Background canvas (particle network, js/site.js) ─────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 15% 10%, var(--accent-glow), transparent 60%),
    radial-gradient(500px 500px at 85% 30%, rgba(212, 167, 44, 0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(77, 141, 255, 0.12), transparent 60%);
}

main, header, footer { position: relative; z-index: 1; }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Fixed padding (never changes) - the nav's own box height must stay
     constant across the transparent<->scrolled toggle. It used to shrink
     here, which (being `position: sticky`, still part of document flow)
     shifted every following pixel of content by the padding delta the
     instant the class flipped - nudging scrollY back across the very
     threshold that triggered the flip, so it flickered on/off every frame
     for as long as the user's wheel/trackpad sat near that scroll position. */
  padding: 14px 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(6, 7, 12, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--border);
}
.nav .row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand span { font-size: 17px; }
.brand .tag { color: var(--accent-bright); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14.5px; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle.btn { display: none; }
/* Only shown inside the mobile dropdown (.nav-links.is-open below) - on desktop
   the primary CTA button in .nav-cta already covers this. */
.nav-links-buy { display: none; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle.btn { display: inline-flex; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 24px 20px;
    background: rgba(6, 7, 12, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.is-open a { padding: 10px 0; width: 100%; }
  .nav-links.is-open .nav-links-buy { display: block; }
  .nav-links.is-open .nav-links-buy a { color: var(--accent-bright); font-weight: 600; }
}

/* Below ~480px, logo + primary CTA + hamburger no longer fit side by side -
   drop the standalone CTA button (still reachable via the hero's own button
   and via the mobile dropdown's "Jetzt kaufen" entry above). */
@media (max-width: 480px) {
  .nav-cta .btn-primary { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  --btn-h: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h);
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #6f5cf0 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 12px 32px -8px rgba(77, 141, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.28); }

.btn-sm { --btn-h: 38px; padding: 0 16px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero { padding: 96px 0 64px; }
/* Give the product UI enough visual weight to read as the hero's proof object,
   without widening every section on the page. */
.hero .container { max-width: 1320px; }
.hero .row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero .row { grid-template-columns: 1fr; }
  .hero-shot { width: min(100%, 760px); }
}

/* ── Kicker (plain data-readout label — deliberately NOT a pill/badge) ────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.kicker-line { width: 26px; height: 1px; flex: none; background: linear-gradient(90deg, var(--accent-bright), transparent); }
.kicker-center { justify-content: center; }

.hero h1 {
  font-size: clamp(2.05rem, 3.6vw + 0.6rem, 3.35rem);
  line-height: 1.16;
  margin: 0 0 22px;
  letter-spacing: -0.015em;
  overflow-wrap: normal;
  hyphens: none;
}
.hero h1 .grad {
  /* background-clip: text crops to the glyph box, and this h1's negative
     letter-spacing pulls that box in tighter than the ink of bold glyphs
     like "P" - the bowl gets sliced off while a thin trailing character
     (the period, which sits outside this span) stays untouched. Giving the
     span its own normal letter-spacing plus inline-block padding restores
     breathing room; the matching negative margin cancels the padding's
     effect on surrounding layout so spacing/kerning look unchanged. */
  display: inline-block;
  letter-spacing: normal;
  padding: 0.06em 0.18em 0.14em 0.02em;
  margin: -0.06em -0.18em -0.14em -0.02em;
  background: linear-gradient(135deg, #f4f6fc 10%, #b9c3da 45%, var(--accent-bright) 75%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero p.lead { font-size: 18px; color: var(--text-muted); max-width: 46ch; margin: 0 0 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; color: var(--text-dim); font-size: 13px; }
.hero-meta li { list-style: none; display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--accent-bright); flex: none; }
.hero-meta ul { display: contents; }

/* Hero screenshot — real Circle-Game-Solver screenshot instead of a
   stylized mockup, framed as a HUD/proof object. */
.hero-shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--panel-solid);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.65);
}
.hero-shot img { display: block; width: 100%; height: auto; }
.hero-shot-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
}
.hero-shot-live { display: flex; align-items: center; gap: 6px; color: var(--success); }
.hero-shot-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); }

/* Above-the-fold intro animation - runs on load, NOT scroll-triggered like
   .reveal (an IntersectionObserver only fires once an element is measured
   against the viewport, which is fragile for content that's already visible
   at paint time). */
.hero-shot-intro { animation: hud-in 0.8s cubic-bezier(.2, .9, .3, 1) both; animation-delay: 0.15s; }
@keyframes hud-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ── Sections ───────────────────────────────────────────────────────────────── */
section { padding: 88px 0; }
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding: 64px 0 40px; }
}
.section-head { max-width: 620px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin: 0 0 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--text-muted); font-size: 16px; margin: 0; }
.section-head-note { margin-top: 8px !important; font-size: 13px !important; }

/* Content remains visible even if IntersectionObserver or JavaScript is unavailable. */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Feature grid (base card — spotlight-follow-cursor glow via js/site.js) ── */
.grid { display: grid; gap: 20px; }

.card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(77, 141, 255, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card:hover::after { opacity: 1; }

/* ── Feature storytelling: one lead module + a data-row list ───────────── */
.feature-index {
  display: block;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--accent-bright); margin-bottom: 12px;
}

.feature-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: stretch; }
@media (max-width: 860px) { .feature-split { grid-template-columns: 1fr; } }

.feature-lead { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.feature-lead h3 { font-size: 24px; margin: 0 0 12px; letter-spacing: -0.01em; }
.feature-lead p { color: var(--text-muted); font-size: 15px; margin: 0; max-width: 40ch; }

.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.feature-list li { display: flex; gap: 18px; padding: 20px 6px; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.feature-list li .feature-index { margin-bottom: 0; flex: none; padding-top: 2px; }
.feature-list h4 { font-size: 15.5px; margin: 0 0 6px; }
.feature-list p { color: var(--text-muted); font-size: 13.5px; margin: 0; }

/* ── Circle-Game spotlight: one module, two use-cases on HomeState RP ────── */
.spotlight { margin-top: 20px; padding: 34px; }
.spotlight-head { display: flex; gap: 18px; margin-bottom: 28px; }
.spotlight-head .feature-index { flex: none; padding-top: 2px; margin-bottom: 0; }
.spotlight-head h3 { font-size: 22px; margin: 0 0 10px; letter-spacing: -0.01em; }
.spotlight-head p { color: var(--text-muted); font-size: 15px; margin: 0; max-width: 62ch; }

.spotlight-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
@media (max-width: 700px) { .spotlight-cases { grid-template-columns: 1fr; } }
.spotlight-case { padding: 22px 26px 4px; }
.spotlight-case + .spotlight-case { border-left: 1px solid var(--border); }
@media (max-width: 700px) {
  .spotlight-case + .spotlight-case { border-left: none; border-top: 1px solid var(--border); padding-top: 22px; }
}
.case-label {
  display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px;
}
.spotlight-case h4 { font-size: 16px; margin: 0 0 6px; }
.spotlight-case p { color: var(--text-muted); font-size: 14px; margin: 0; }

.spotlight-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; }
.spotlight-note a { color: var(--accent-bright); text-decoration: none; }
.spotlight-note a:hover { text-decoration: underline; }

/* ── Spec strip: status-bar list instead of pill row ─────────────────────── */
.spec-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  list-style: none; margin: 40px 0 0; padding: 0;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-dim);
}
.spec-strip li { padding: 4px 20px; border-left: 1px solid var(--border); }
.spec-strip li:first-child { border-left: none; }
@media (max-width: 620px) { .spec-strip li { border-left: none; padding: 4px 12px; } }

/* ── Kompatibilität: one ledger panel, not two equal cards ───────────────── */
.compat-panel { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .compat-panel { grid-template-columns: 1fr; } }
.compat-panel .card {
  background: transparent; border: none; border-radius: 0; padding: 8px 34px;
}
.compat-panel .card::after { border-radius: 0; }
.compat-panel .compat-no { border-left: 1px solid var(--border); }
@media (max-width: 700px) {
  .compat-panel .compat-no { border-left: none; border-top: 1px solid var(--border); padding-top: 30px; margin-top: 8px; }
}

.compat-col h3 { font-size: 16.5px; margin: 0 0 16px; }
.compat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.compat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.compat-list svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }

.compat-yes .compat-list svg { color: var(--success); }
.compat-no .compat-list svg { color: var(--danger); }

.compat-disclaimer {
  max-width: 620px; margin: 28px auto 0; text-align: center;
  color: var(--text-dim); font-size: 13px;
}

/* ── Oberfläche: calm, sequential product tour ───────────────────────────
   Each screenshot gets its own horizontal chapter. Alternating image/copy
   creates rhythm without turning the three interfaces into a collage. */
.shots-feature {
  display: flex;
  flex-direction: column;
  gap: 54px;
  max-width: 1120px;
  margin: 0 auto;
}
.shots-secondary { display: contents; }

.shot {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--panel-solid);
  box-shadow: 0 24px 64px -36px rgba(0, 0, 0, 0.72);
}
.shot-media {
  min-width: 0;
  display: flex;
  align-items: center;
  background: #090b12;
  border-right: 1px solid var(--border);
}
.shot img { display: block; width: 100%; height: auto; }

.shot figcaption {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  align-self: stretch;
  padding: clamp(28px, 3.5vw, 48px);
  justify-content: center;
  flex-direction: column;
}
.cap-index {
  flex: none; padding-top: 2px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--accent-bright);
}
.cap-body h3, .cap-body h4 { margin: 0 0 8px; letter-spacing: -0.005em; }
.cap-body h3 { font-size: 21px; }
.cap-body h4 { font-size: 18px; }
.cap-body p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* Primary: window-chrome bar (mirrors the hero shot's HUD framing) + the
   fullest copy, so it visually anchors the section. */
.shot-bar {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
}
.shot-bar-tag { color: var(--accent-bright); }
.shot-primary figcaption { padding: clamp(28px, 3.5vw, 48px); }
.shot-primary .cap-index { font-size: 13px; }
.shot-primary .cap-body p { max-width: 54ch; }

/* The middle chapter reverses direction; the third returns to the first
   orientation. The result reads as a guided sequence, not stacked cards. */
.shot-story:first-child { grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.45fr); }
.shot-story:first-child .shot-media { order: 2; border-right: 0; border-left: 1px solid var(--border); }
.shot-story:first-child figcaption { order: 1; }
.shot-story-offset { margin-left: 0; }

@media (max-width: 860px) {
  .shots-feature { gap: 30px; }
  .shot,
  .shot-story:first-child { grid-template-columns: 1fr; }
  .shot-media,
  .shot-story:first-child .shot-media {
    order: 1;
    border: 0;
    border-bottom: 1px solid var(--border);
  }
  .shot figcaption,
  .shot-story:first-child figcaption { order: 2; padding: 24px; }
  .shot-bar { grid-column: 1; }
}

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-card {
  max-width: 460px; margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(77, 141, 255, 0.08), rgba(16, 18, 28, 0.75));
  border: 1px solid rgba(77, 141, 255, 0.3);
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset, 0 40px 90px -40px rgba(77, 141, 255, 0.25);
}
@media (max-width: 480px) {
  .pricing-card { padding: 30px 22px; }
  .pricing-card .discount-tag { right: 4px; }
}
.pricing-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #241a02; font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
  box-shadow: 0 8px 20px -6px rgba(212, 167, 44, 0.6);
}
.pricing-card .discount-tag {
  position: absolute; top: 18px; right: -8px;
  background: linear-gradient(135deg, #ff7a5c, #ff3b6b);
  color: #2a0006; font-weight: 800; font-size: 12px; letter-spacing: 0.02em;
  padding: 7px 14px; border-radius: 8px 4px 4px 8px;
  box-shadow: 0 10px 22px -6px rgba(255, 59, 107, 0.55);
  transform: rotate(4deg);
}
.pricing-card h3 { text-align: center; font-size: 15px; color: var(--text-muted); font-weight: 600; margin: 6px 0 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-card .price { text-align: center; margin: 6px 0 26px; }
.pricing-card .price .price-old { display: block; font-family: var(--font-mono); font-size: 15px; color: var(--text-dim); text-decoration: line-through; margin-bottom: 4px; }
.pricing-card .price .amount { font-size: 52px; font-weight: 800; letter-spacing: -0.02em; }
.pricing-card .price .cur { font-size: 22px; color: var(--text-muted); vertical-align: top; position: relative; top: 8px; margin-right: 2px; }
.pricing-card .price .period { display: block; color: var(--text-dim); font-size: 13px; margin-top: 6px; }

.pricing-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text); }
.pricing-list svg { width: 17px; height: 17px; color: var(--success); flex: none; margin-top: 2px; }

.pay-icons { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }
.pay-icons span { display: flex; align-items: center; gap: 6px; }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--panel); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { transition: transform 0.25s ease; color: var(--text-dim); flex: none; width: 18px; height: 18px; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-muted); font-size: 14px; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 44px 0 34px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; color: var(--text-dim); font-size: 13.5px; }
.footer-links a:hover { color: var(--text-muted); }
.footer-note { color: var(--text-dim); font-size: 12.5px; margin-top: 18px; }

/* ── Utility ────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.stack-sm { display: flex; flex-direction: column; gap: 10px; }
