/* Auralis marketing site — static, self-hosted, no network calls.
   Skin tokens: dark = Noir, light = Paper. Theme mockup tokens (--m-*) are
   set by js/main.js from the shipped palette data. */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-var.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-var.woff2') format('woff2');
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --sbg: #000000;
  --spanel: #0d0d0c;
  --sfg: #e9e4dc;
  --smut: #8f8b83;
  --sline: rgba(255, 255, 255, 0.07);
  --sacc: #ff9550;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}
[data-skin='light'] {
  --sbg: #ede7de;
  --spanel: #f6f1e9;
  --sfg: #352c25;
  --smut: #6b6157;
  --sline: rgba(53, 44, 37, 0.14);
  --sacc: #b93711;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--sbg);
  color: var(--sfg);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  transition: background 0.25s ease, color 0.25s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid #ff9550; outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 10vw, 112px) 0 0; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--smut);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-wrap: balance;
  margin-bottom: 34px;
}
h2 .dim { color: var(--smut); font-weight: 500; }
h3 { font-family: var(--font-body); font-weight: 500; font-size: 19px; line-height: 1.3; letter-spacing: -0.01em; }
p { max-width: 62ch; }
.muted { color: var(--smut); }
.mono { font-family: var(--font-mono); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 30px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: filter 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: #ff9550; color: #201007; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; border-color: var(--sline); color: var(--sfg); }
.btn-ghost:hover { border-color: var(--smut); }
.btn-sm { min-height: 36px; padding: 7px 18px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 62px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--sline);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--sbg) 78%, transparent);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 max(24px, calc(50vw - 560px));
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px; letter-spacing: 0.2em; text-decoration: none; }
.aurora-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, #00d7e4, #a688ff, #ff9550, #00d7e4);
}
.nav-links { display: flex; gap: 22px; margin: 0 auto; }
.nav-links a { font-size: 13.5px; color: var(--smut); text-decoration: none; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--sfg); }
.nav-side { display: flex; align-items: center; gap: 16px; }
.skin-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  color: var(--smut);
  cursor: pointer;
  padding: 6px 4px;
}
.skin-toggle:hover { color: var(--sfg); }
.docs-link { font-size: 13.5px; color: var(--sacc); text-decoration: none; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--sline);
  border-radius: 10px;
  background: none;
  color: var(--sfg);
  font-size: 17px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--sbg);
  border-bottom: 1px solid var(--sline);
  padding: 12px 24px 20px;
}
.mobile-menu a, .mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 4px;
  font-size: 15px;
  color: var(--sfg);
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--sline);
  cursor: pointer;
  font-family: var(--font-body);
}
body.menu-open .mobile-menu { display: block; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding-top: clamp(56px, 8vw, 96px); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero h1 span { white-space: nowrap; display: block; }
.hero-sub { max-width: 52ch; margin: 22px auto 0; color: var(--smut); font-size: 17px; }
.hero-sub .nline { display: block; margin-top: 6px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.hero-ctas .btn-primary { font-size: 16px; box-shadow: 0 0 40px rgba(255, 149, 80, 0.3); }
.trust { font-family: var(--font-mono); font-size: 13px; color: var(--smut); margin-top: 26px; max-width: none; }
.snippet {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 9px 10px 9px 18px;
  border: 1px solid var(--sline);
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--smut);
}
.copy-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border: none;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sfg);
  cursor: pointer;
}
[data-skin='light'] .copy-btn { background: rgba(53, 44, 37, 0.1); }

/* ---------- Hero band + mockup ---------- */
.band {
  position: relative;
  max-width: 1400px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding: clamp(28px, 5vw, 64px) 24px;
  border-radius: 24px;
  background: #030507;
  overflow: hidden;
}
.aurora {
  position: absolute;
  inset: -25%;
  filter: blur(60px);
  pointer-events: none;
  background:
    radial-gradient(38% 44% at 22% 32%, rgba(0, 215, 228, 0.5), transparent 70%),
    radial-gradient(34% 40% at 74% 22%, rgba(166, 136, 255, 0.44), transparent 70%),
    radial-gradient(40% 42% at 55% 85%, rgba(255, 149, 80, 0.4), transparent 70%),
    radial-gradient(30% 36% at 42% 55%, rgba(149, 203, 84, 0.22), transparent 70%);
  animation: aurora-drift 60s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  from { transform: translate(-3%, -2%) rotate(-2deg) scale(1); }
  to { transform: translate(3%, 3%) rotate(2deg) scale(1.08); }
}

/* VS Code mockup — every color comes from --m-* custom properties */
.vsc {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--m-border);
  background: var(--m-editor);
  color: var(--m-fg);
  font-size: 13px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: background 0.25s ease;
}
.vsc-title {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--m-titleBar);
  border-bottom: 1px solid var(--m-border);
}
.lights { display: flex; gap: 8px; }
.lights i { width: 12px; height: 12px; border-radius: 50%; opacity: 0.9; }
.lights i:nth-child(1) { background: #fc5855; }
.lights i:nth-child(2) { background: #e9ab2b; }
.lights i:nth-child(3) { background: #6ec272; }
.vsc-search {
  margin: 0 auto;
  padding: 3px 22px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--m-sideBarFg);
  background: color-mix(in srgb, var(--m-editor) 60%, transparent);
  border: 1px solid var(--m-border);
}
.vsc-body { display: grid; grid-template-columns: 48px 230px 1fr; min-height: 0; }
.vsc-activity {
  background: var(--m-activityBar);
  border-right: 1px solid var(--m-border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.act-icon { width: 18px; height: 18px; position: relative; color: var(--m-lineNr); }
.act-icon.on { color: var(--m-fg); }
.act-icon.on::before { content: ''; position: absolute; left: -15px; top: -2px; bottom: -2px; width: 2px; background: var(--m-remoteBg); }
.act-icon svg { width: 18px; height: 18px; display: block; }
.vsc-side { background: var(--m-sideBar); border-right: 1px solid var(--m-border); padding: 12px 0; color: var(--m-sideBarFg); }
.side-head { font-size: 11px; letter-spacing: 0.08em; padding: 0 16px 10px; font-weight: 600; }
.tree-row { height: 24px; display: flex; align-items: center; gap: 8px; padding: 0 16px; white-space: nowrap; }
.tree-row.indent { padding-left: 30px; }
.tree-row.sel { background: color-mix(in srgb, var(--m-remoteBg) 14%, transparent); color: var(--m-fg); }
.fdot { width: 8px; height: 8px; border-radius: 2.5px; flex: none; }
.vsc-main { display: flex; flex-direction: column; min-width: 0; }
.vsc-tabs { height: 36px; display: flex; background: var(--m-tabsBg); border-bottom: 1px solid var(--m-border); }
.vsc-tab { display: flex; align-items: center; gap: 8px; padding: 0 18px; font-size: 12.5px; color: var(--m-sideBarFg); border-right: 1px solid var(--m-border); }
.vsc-tab.on { background: var(--m-tabActive); color: var(--m-fg); border-top: 2px solid var(--m-tabBorder); }
.vsc-crumbs { height: 24px; display: flex; align-items: center; padding: 0 16px; font-size: 12px; color: var(--m-lineNr); border-bottom: 1px solid var(--m-border); }
.vsc-editor { display: grid; grid-template-columns: 1fr 56px; }
.code { font-family: var(--font-mono); font-size: 14px; line-height: 1.72; padding: 10px 0; overflow-x: auto; }
.cl { display: grid; grid-template-columns: 44px 1fr; }
.cl .no { color: var(--m-lineNr); text-align: right; padding-right: 16px; font-variant-numeric: tabular-nums; user-select: none; }
.cl.hl { background: var(--m-lineHl); }
.cl code { white-space: pre; }
.tk-comment { color: var(--m-comment); font-style: italic; }
.tk-keyword { color: var(--m-keyword); }
.tk-string { color: var(--m-string); }
.tk-func { color: var(--m-func); }
.tk-type { color: var(--m-type); }
.tk-number { color: var(--m-number); }
.tk-prop { color: var(--m-prop); }
.tk-punct { color: var(--m-punct); }
.minimap { border-left: 1px solid var(--m-border); padding: 12px 10px; display: flex; flex-direction: column; gap: 4px; }
.minimap i { height: 3px; border-radius: 2px; opacity: 0.5; }
.vsc-panel { background: var(--m-termBg); color: var(--m-termFg); border-top: 1px solid var(--m-border); padding: 10px 18px 14px; }
.panel-tabs { display: flex; gap: 20px; font-size: 11px; letter-spacing: 0.08em; color: var(--m-sideBarFg); font-weight: 600; }
.panel-tabs .on { color: var(--m-fg); border-bottom: 1px solid var(--m-remoteBg); padding-bottom: 3px; }
.prompt { font-family: var(--font-mono); font-size: 13px; margin-top: 10px; }
.prompt .host { color: var(--m-type); font-weight: 700; }
.prompt .git { color: var(--m-keyword); }
.ansi-row { display: flex; gap: 4px; margin: 10px 0 12px; flex-wrap: wrap; }
.ansi-row i { width: 24px; height: 15px; border-radius: 3px; }
.wordmark { display: grid; gap: 1px; width: max-content; }
.wm-row { display: flex; gap: 1px; }
.wm-row i { width: 9px; height: 9px; }
.vsc-status {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 12px 0 0;
  background: var(--m-statusBar);
  color: var(--m-statusFg);
  font-size: 12px;
}
.vsc-status .seg { background: var(--m-remoteBg); color: var(--m-remoteFg); font-weight: 600; height: 100%; display: flex; align-items: center; padding: 0 12px; }
.vsc-status .right { margin-left: auto; display: flex; gap: 14px; }

/* ---------- Variant chips ---------- */
.chips-scroll {
  max-width: 1272px;
  margin: 26px auto 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
  mask: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}
.chips-scroll::-webkit-scrollbar { display: none; }
.chips { display: flex; gap: 10px; padding: 4px 28px; width: max-content; margin: 0 auto; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 16px;
  flex-shrink: 0;
  border-radius: 99px;
  border: 1px solid rgba(140, 140, 140, 0.3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}
.chip .dots { display: flex; gap: 3px; }
.chip .dots i { width: 9px; height: 9px; border-radius: 50%; }
.chip[aria-pressed='true'] { border-width: 2px; }
.band-caption { text-align: center; font-family: var(--font-mono); font-size: 13px; color: #8f8b83; margin-top: 18px; position: relative; max-width: none; }

/* ---------- Cards & sections ---------- */
.card {
  border: 1px solid var(--sline);
  border-radius: 20px;
  background: var(--spanel);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: rgba(255, 149, 80, 0.25); transform: translateY(-2px); }
.split { display: grid; gap: 0; overflow: hidden; padding: 0; }
.split > .copy { padding: 28px; }
.split > .motif { background: #060707; padding: 28px; }
.split-4-8 { grid-template-columns: 4fr 8fr; }
.split-7-5 { grid-template-columns: 7fr 5fr; }
.split > .motif { border-left: 1px solid var(--sline); }
.split.motif-left > .motif { border-left: none; border-right: 1px solid var(--sline); }
[data-skin='light'] .split > .motif { background: #14100c; }
.card h3 { margin: 10px 0 12px; }
.card p { font-size: 15.5px; color: var(--smut); }
.card .kicker { margin-bottom: 0; }

.features-grid { display: grid; gap: 18px; }
.features-2up { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Tune sliders */
.tune-head { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: #8f8b83; margin-bottom: 20px; }
.slider { margin-bottom: 20px; }
.slider .lab { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 12px; color: #c8c4bc; margin-bottom: 8px; }
.slider .track { position: relative; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.1); }
.slider .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 4px; }
.slider .thumb {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e9e4dc;
  transform: translate(-50%, -50%);
}
.tune-foot { font-family: var(--font-mono); font-size: 11.5px; color: #8f8b83; margin-top: 4px; }

/* Environment guard motif */
.guard-mock { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; overflow: hidden; margin-bottom: 16px; background: #0a0c11; font-family: var(--font-mono); font-size: 12px; }
.guard-mock.prod { border-color: rgba(252, 88, 85, 0.45); box-shadow: 0 0 24px rgba(252, 88, 85, 0.12); }
.guard-line { padding: 10px 14px; color: #c8c4bc; }
.guard-line b { font-weight: 500; }
.guard-bar { display: flex; align-items: center; gap: 10px; padding: 6px 14px; font-weight: 600; }
.guard-bar.staging { background: #7a5a10; color: #fff7e6; }
.guard-bar.prod { background: #a1201e; color: #fff1f0; }

/* Team profile code block */
.json-block { font-family: var(--font-mono); font-size: 13px; line-height: 1.8; white-space: pre; color: #c8c4bc; overflow-x: auto; }
.j-key { color: #00d7e4; }
.j-str { color: #ff9550; }
.j-num { color: #a688ff; }

/* Rhythm timeline */
.timeline { display: flex; align-items: center; margin-top: 24px; }
.stop { display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--smut); }
.stop .dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid; }
.tl-line { flex: 1; height: 1px; background: var(--sline); margin: 0 8px 26px; }

/* Review sessions motif */
.review-badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; background: #e9e4dc; color: #201007; border-radius: 99px; padding: 5px 12px; margin-bottom: 18px; }
.heat-row { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--smut); margin-bottom: 10px; }
.heat-bar { height: 10px; border-radius: 5px; }

/* Ports chips */
.port-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.port-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid var(--sline);
  color: var(--sfg);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.port-chip:hover { border-color: var(--sacc); color: var(--sacc); }
.arrow-link { color: var(--sacc); text-decoration: none; font-size: 15px; }
.render-img { border-radius: 12px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.render-caption { font-family: var(--font-mono); font-size: 12px; color: var(--smut); margin-top: 12px; }

/* Icon chips */
.icon-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }

/* ---------- Accessibility section ---------- */
.access-card { background: #f1eae1; color: #352c25; border: none; display: grid; grid-template-columns: 5fr 7fr; gap: 34px; }
.access-card h3 { color: #352c25; }
.access-card p { color: #6b6157; }
.contrast-table { max-width: 560px; margin-left: auto; background: #f7f2ea; border-radius: 14px; padding: 18px 20px; width: 100%; }
.ct-head, .ct-row { display: grid; grid-template-columns: 1fr 90px 84px 56px; align-items: center; gap: 10px; }
.ct-head { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: #6b6157; padding: 4px 0 10px; border-bottom: 1px solid rgba(53, 44, 37, 0.12); }
.ct-row { padding: 8px 0; border-bottom: 1px solid rgba(53, 44, 37, 0.07); font-size: 13.5px; }
.ct-row:last-of-type { border-bottom: none; }
.ct-name { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.ct-name i { width: 13px; height: 13px; border-radius: 50%; flex: none; border: 1px solid rgba(53, 44, 37, 0.2); }
.ct-chip { font-family: var(--font-mono); font-size: 11px; padding: 3px 9px; border-radius: 5px; text-align: center; }
.ct-ratio { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }
.ct-badge { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-align: center; }
.ct-badge.aaa { color: #308639; }
.ct-badge.aa { color: #bb6a00; }
.ct-foot { font-family: var(--font-mono); font-size: 11px; color: #6b6157; margin-top: 14px; line-height: 1.6; }

/* ---------- About the name ---------- */
.about { position: relative; text-align: center; overflow: hidden; padding-bottom: 30px; }
.about-arc {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 1700px;
  height: 1700px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    transparent 63%,
    rgba(0, 215, 228, 0.22) 64.5%,
    rgba(166, 136, 255, 0.26) 67%,
    rgba(255, 149, 80, 0.2) 69.5%,
    transparent 71%
  );
  filter: blur(9px);
}
.about-lead { font-size: 15.5px; color: var(--smut); margin: 0 auto 18px; }
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
  position: relative;
}
.about p.body { margin: 22px auto 0; color: var(--smut); position: relative; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start; }
.price-card { position: relative; }
.price-card.active { border-color: rgba(255, 149, 80, 0.55); box-shadow: 0 0 44px rgba(255, 149, 80, 0.09); }
.price-card.later { opacity: 0.6; }
.price-badge {
  position: absolute;
  top: -11px;
  left: 26px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 99px;
}
.price-badge.now { background: linear-gradient(90deg, #ff9550, #ffb340); color: #201007; }
.price-badge.after { background: var(--spanel); border: 1px solid var(--sline); color: var(--smut); }
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 4px; }
.price-line .amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 2.6vw, 38px); white-space: nowrap; }
.price-line .per { font-size: 13.5px; color: var(--smut); }
.price-sub { font-size: 13.5px; color: var(--smut); min-height: 22px; }
.price-card .btn { width: 100%; margin: 20px 0 22px; }
.checks { list-style: none; padding: 0; display: grid; gap: 10px; font-size: 14px; color: var(--smut); }
.checks li { display: flex; gap: 10px; align-items: start; }
.checks li::before { content: '✓'; color: var(--sacc); font-weight: 700; flex: none; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 34px; }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--sline);
  border-radius: 12px;
  background: var(--spanel);
  padding: 0 20px;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--smut); font-size: 18px; transition: transform 0.15s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 0 18px; font-size: 14.5px; color: var(--smut); }

/* ---------- Closing CTA ---------- */
.closing { position: relative; max-width: 1120px; margin: clamp(64px, 10vw, 112px) auto 0; border-radius: 24px; background: #030507; overflow: hidden; }
.closing .aurora { opacity: 0.72; }
.closing-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; padding: 52px 52px 0; }
.closing h2 { color: #e9e4dc; margin-bottom: 16px; font-size: clamp(26px, 3vw, 36px); font-weight: 600; }
.closing p { color: #9f9a91; margin-bottom: 26px; }
.closing .left { padding-bottom: 52px; }
.closing-img { border-radius: 14px 14px 0 0; display: block; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--sline); margin-top: clamp(64px, 10vw, 112px); padding: 44px 0 34px; font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; }
.footer-brand p { color: var(--smut); margin-top: 12px; font-size: 13px; }
.badges { display: flex; gap: 10px; margin-top: 16px; align-items: center; }
.shield { display: inline-flex; font-family: var(--font-mono); font-size: 10px; font-weight: 700; border-radius: 4px; overflow: hidden; }
.shield .l { background: #201d19; color: #e9e4dc; padding: 4px 8px; }
.shield .r { padding: 4px 8px; color: #201007; }
.shield.amber .r { background: #ff9550; }
.shield.cyan .r { background: #00d7e4; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--smut); font-weight: 700; margin-bottom: 14px; }
.foot-col a { display: block; color: var(--sfg); text-decoration: none; padding: 5px 0; font-size: 13.5px; }
.foot-col a:hover { color: var(--sacc); }
.copyright { text-align: right; color: var(--smut); font-size: 12.5px; margin-top: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .split-4-8, .split-7-5, .access-card, .faq-grid, .closing-grid { grid-template-columns: 1fr; }
  .split > .motif { border-left: none; border-top: 1px solid var(--sline); }
  .split.motif-left > .motif { border-right: none; }
  .pricing-grid, .features-2up { grid-template-columns: 1fr; }
  .contrast-table { margin-left: 0; }
  .vsc-body { grid-template-columns: 48px 1fr; }
  .vsc-side { display: none; }
}
@media (max-width: 760px) {
  .nav-links, .nav-side .skin-toggle, .nav-side .docs-link { display: none; }
  .menu-btn { display: block; }
  .ct-head { display: none; }
  .ct-row { grid-template-columns: 1fr auto; }
  .ct-chip, .ct-badge { display: none; }
  .ct-ratio { font-size: 12.5px; }
  .closing-grid { padding: 34px 24px 0; }
  .closing .left { padding-bottom: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .copyright { text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora { animation: none; }
  *, *::before, *::after { transition: none !important; }
  .card:hover { transform: none; }
}
