/* ============================================================
   AUREUS — Mont-Noir Design System
   Champagne on warm anthracite. Cormorant + Geist + Mono.
   ============================================================ */

:root {
  /* Deep blue-grey scale (was warm anthracite) */
  --noir-900: #060B16;
  --noir-800: #0B1220;   /* page bg */
  --noir-700: #131A2C;   /* card */
  --noir-600: #1A2236;   /* elevated */
  --noir-500: #232C42;   /* border-strong */
  --noir-400: #2E3850;   /* divider */
  --noir-300: #455067;

  /* Cool neutrals (named warm-* for legacy; carry blue-grey values now) */
  --warm-700: #5A6478;
  --warm-500: #7B8497;
  --warm-400: #98A0B2;
  --warm-300: #BCC2D0;
  --warm-200: #D8DCE6;

  /* Cream / paper → cool off-white */
  --cream-100: #EEF1F8;
  --cream-50:  #F4F6FB;

  /* Accent — electric blue (legacy name champagne) */
  --champagne: #5B8EE8;
  --champagne-deep: #3D6FCC;
  --champagne-bright: #7BA8F0;
  --champagne-soft: rgba(91, 142, 232, 0.10);
  --champagne-line: rgba(91, 142, 232, 0.22);

  /* Semantic */
  --bg: var(--noir-800);
  --bg-elev: var(--noir-700);
  --ink: var(--cream-100);
  --ink-muted: var(--warm-400);
  --ink-soft: var(--warm-500);
  --line: var(--noir-500);
  --line-soft: var(--noir-400);
  --accent: var(--champagne);

  /* Type */
  --font-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-sans:  "Geist", "Inter Tight", "Inter", system-ui, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 2px;
  --radius-lg: 6px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Selection */
::selection { background: var(--champagne); color: var(--noir-800); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--cream-100);
  text-wrap: balance;
}
h1 em, h2 em, h3 em, .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne-bright);
}

.display-xl {
  font-size: clamp(56px, 8.4vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.022em;
  font-weight: 500;
}
.display-l {
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display-m {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}
.display-s {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.muted { color: var(--warm-400); }
.eyebrow.muted::before { background: var(--warm-500); }

.lead {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
  text-wrap: pretty;
  font-weight: 400;
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.tabular { font-variant-numeric: tabular-nums; }

/* Pull-quote / editorial paragraph */
.pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--cream-100);
  max-width: 38ch;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}
.section-tight { padding: clamp(56px, 6vw, 96px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.section-head .lead { margin-top: 20px; }
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  margin-bottom: 64px;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* Hairline divider */
.hairline { border-top: 1px solid var(--line); }
.hairline-warm { border-top: 1px solid var(--champagne-line); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--champagne);
  color: var(--noir-800);
  border-color: var(--champagne);
}
.btn-gold:hover { background: var(--champagne-bright); border-color: var(--champagne-bright); }
.btn-outline {
  background: transparent;
  color: var(--cream-100);
  border-color: var(--noir-400);
}
.btn-outline:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: transparent;
  padding: 8px 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-size: 17px;
}
.btn-ghost:hover { color: var(--champagne); }
.btn .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 12, 9, 0.7);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.scrolled {
  background: rgba(15, 12, 9, 0.88);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream-100);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--champagne-line);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--champagne);
  font-size: 22px;
  line-height: 1;
  position: relative;
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: var(--champagne);
}
.brand-mark::before { top: -1px; left: -1px; width: 6px; height: 1px; }
.brand-mark::after  { bottom: -1px; right: -1px; width: 6px; height: 1px; }
/* Two-letter monogram (MC) — fit inside the same 36px badge */
.brand-mark-mc {
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.brand-text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 5px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 1px;
  align-items: center;
}
.nav-links a {
  padding: 9px 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-300);
  transition: color .2s var(--ease);
  position: relative;
  white-space: nowrap;
}
.nav-dd-toggle { white-space: nowrap; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px; bottom: 4px;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--cream-100); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Dropdown ("Screener") */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--warm-300);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.nav-dd-toggle:hover,
.nav-dd:hover .nav-dd-toggle { color: var(--cream-100); }
.nav-dd-caret {
  width: 11px; height: 11px;
  transition: transform .25s var(--ease);
}
.nav-dd:hover .nav-dd-caret,
.nav-dd:focus-within .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 188px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: rgba(11, 18, 32, 0.96);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dd-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-100);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-dd-menu a::after { display: none; }
.nav-dd-menu a span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-dd-menu a:hover { background: var(--noir-700); color: var(--champagne); }
.nav-dd-menu a:hover span { color: var(--champagne); }

/* Mobile-menu sub-group */
.mobile-menu .mm-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
.mobile-menu .mm-sub { padding-left: 18px; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 18px; font-size: 13px; }
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--cream-100);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--cream-100);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top:  6px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { top: 0; transform: rotate(45deg); }
.nav-burger.open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 88px 0 0 0;
  background: var(--noir-800);
  z-index: 40;
  padding: 40px var(--pad-x);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}
.mobile-menu .btn { width: 100%; margin-top: 28px; }
@media (max-width: 1410px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 130px;
  overflow: hidden;
  isolation: isolate;
}
/* Hero background video — plays once, then freezes on its last frame */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  opacity: 0.72;
  transition: opacity 1.6s ease;
  pointer-events: none;
}
.hero-bg-video.frozen { opacity: 0.18; }
.hero-bg-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 72% 38%, rgba(6,11,22,0.18) 0%, rgba(6,11,22,0.62) 58%, rgba(6,11,22,0.9) 100%),
    linear-gradient(90deg, rgba(6,11,22,0.9) 0%, rgba(6,11,22,0.56) 46%, rgba(6,11,22,0.4) 100%);
}
.hero .sound-toggle {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eef1f8;
  background: rgba(8,12,22,0.5);
  border: 1px solid rgba(143,227,242,0.32);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hero .sound-toggle:hover { background: rgba(143,227,242,0.16); border-color: rgba(143,227,242,0.6); }

/* Hero content (text + chart) appears after the video has played */
.hero.has-video .hero-copy,
.hero.has-video .hero-chart {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.2s var(--ease, ease), transform 2.2s var(--ease, ease);
  will-change: opacity, transform;
}
.hero.has-video .hero-chart { transition-delay: 0.5s; }
.hero.has-video.content-in .hero-copy,
.hero.has-video.content-in .hero-chart {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero.has-video .hero-copy,
  .hero.has-video .hero-chart { opacity: 1; transform: none; transition: none; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(91, 142, 232, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(91, 142, 232, 0.05), transparent 70%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 245, 220, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 245, 220, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 80%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-copy h1 { margin-top: 18px; font-size: clamp(44px, 5.6vw, 84px); }
.hero-copy .lead { margin-top: 20px; max-width: 52ch; }
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--champagne); border-radius: 50%; }

/* Generative skyline band at the bottom of the hero */
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 188px;
  z-index: -1;
  pointer-events: none;
}
.hero-skyline .skyline-svg {
  display: block; width: 100%; height: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}
/* Real low-poly bull / bear art (clean cutouts from the reference) */
.hero-skyline .sky-animal {
  position: absolute;
  bottom: 4px;
  height: 168px;
  width: auto;
  opacity: 0.98;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
.hero-skyline .sky-bull { left: 1%; }
.hero-skyline .sky-bear { right: 1%; }
@media (max-width: 980px) {
  .hero { padding-bottom: 150px; }
  .hero-skyline { height: 150px; }
  .hero-skyline .sky-animal { height: 112px; opacity: 0.94; }
}

/* Hero visual: typographic plaque */
.hero-plaque {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,245,220,0.02), rgba(0,0,0,0)) ,
    var(--noir-700);
  padding: 36px;
  aspect-ratio: 4/5;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 28px;
  position: relative;
}
.hero-plaque .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--champagne);
}
.hero-plaque .corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.hero-plaque .corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.hero-plaque .corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.hero-plaque .corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.plaque-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plaque-center {
  display: grid;
  place-items: center;
  text-align: center;
}
.plaque-center .roman {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: clamp(96px, 12vw, 168px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.plaque-center .name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--cream-100);
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.plaque-divider { display: flex; align-items: center; gap: 12px; }
.plaque-divider .line { flex: 1; height: 1px; background: var(--champagne-line); }
.plaque-divider .dot { width: 4px; height: 4px; background: var(--champagne); }
.plaque-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plaque-bottom strong {
  color: var(--cream-100);
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-plaque { aspect-ratio: 5/4; }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--noir-900);
}
.stats-band .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--cream-100);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .n em {
  font-style: italic;
  color: var(--champagne);
  font-size: 0.5em;
}
.stat .l {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .stats-band .grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { padding: 36px 24px; }
}

/* ============================================================
   COMPAT STRIP
   ============================================================ */
.compat {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.compat-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.compat-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-muted);
  font-size: 14px;
}
.compat-left .label-mono { color: var(--champagne); }
.compat-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.compat-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--warm-300);
}
.compat-tag.gold { color: var(--champagne); border-color: var(--champagne-line); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--noir-900);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.step {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step:last-child { border-right: 0; }
.step .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 96px;
  color: var(--champagne);
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 28px; line-height: 1.05; }
.step p { color: var(--ink-muted); margin: 0; font-size: 15px; max-width: 36ch; line-height: 1.55; }
.step .step-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* ============================================================
   WHY AUREUS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background .25s var(--ease);
}
.why-card:hover { background: var(--noir-700); }
.why-card .label-mono { color: var(--champagne); }
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 4px 0 0;
}
.why-card p { color: var(--ink-muted); margin: 0; font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   METHODS (Wyckoff, VSA, Elliott, Market Profile)
   ============================================================ */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.method-card {
  padding: 56px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  position: relative;
  transition: background .25s var(--ease);
}
.method-card:hover { background: var(--noir-700); }
.method-card .roman {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 72px;
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.method-card .body { display: flex; flex-direction: column; gap: 14px; }
.method-card .body h4 {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.method-card .body .lead-short {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.35;
  color: var(--warm-200);
  margin: 0;
}
.method-card .body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 42ch;
}
@media (max-width: 800px) {
  .methods-grid { grid-template-columns: 1fr; }
  .method-card { padding: 40px 28px; gap: 24px; }
  .method-card .roman { font-size: 56px; }
  .method-card .body h4 { font-size: 26px; }
}

/* ============================================================
   LEITMOTIV / PULL QUOTE BAND
   ============================================================ */
.motif-band {
  padding: clamp(80px, 9vw, 140px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--noir-900);
}
.motif-band .motif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream-100);
  max-width: 22ch;
  margin: 0 auto;
}
.motif-band .motif em {
  color: var(--champagne);
  font-style: italic;
}
.motif-band .attrib {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   DISCORD BANNER
   ============================================================ */
.discord-banner {
  padding: clamp(72px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background: var(--noir-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* ATAS banner grid — four side by side */
.atas-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.atas-banner {
  display: block;
  line-height: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.atas-banner img { width: 100%; height: auto; display: block; }
.atas-banner:hover { transform: translateY(-4px); border-color: rgba(143,227,242,0.5); }
@media (max-width: 760px) {
  .atas-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 420px) {
  .atas-grid { grid-template-columns: 1fr; }
}
.discord-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(91, 142, 232, 0.10), transparent 60%);
}
.discord-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.discord-grid h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.discord-grid .lead { margin-top: 24px; }
.discord-card {
  border: 1px solid var(--champagne-line);
  background: var(--noir-700);
  padding: 40px;
  position: relative;
}
.discord-card .corner {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--champagne);
}
.discord-card .corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.discord-card .corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.discord-card .corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.discord-card .corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.discord-card .label-mono { display: block; margin-bottom: 14px; }
.discord-card h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  margin: 0 0 18px;
}
.discord-card .members {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}
.discord-card .members .dot { display: inline-block; width: 8px; height: 8px; background: var(--champagne); border-radius: 50%; margin-right: 8px; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.discord-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.discord-card ul li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink);
}
.discord-card ul li::before {
  content: "—";
  color: var(--champagne);
  font-weight: 400;
}
.discord-card .btn { width: 100%; }

@media (max-width: 900px) {
  .discord-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  background: var(--champagne-soft);
  border: 1px solid var(--champagne-line);
  padding: 8px 14px;
}
.waitlist-callout .dot {
  width: 6px; height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy-section { border-top: 1px solid var(--line); }
.philo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.philo-card {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.philo-card:hover { background: var(--noir-700); }
.philo-card .q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--champagne);
  display: block;
  margin-bottom: 22px;
}
.philo-card h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 10px;
}
.philo-card p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.philo-card p em { color: var(--ink); font-style: normal; }
@media (max-width: 900px) { .philo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .philo-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HERO CHART (animated footprint visualization)
   ============================================================ */
.hero-chart {
  position: relative;
  height: clamp(440px, 66vh, 700px);
  filter: drop-shadow(0 0 32px rgba(91, 142, 232, 0.12));
  overflow: visible;
  opacity: 0.95;
}
.hero-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-chart .fp-cursor {
  pointer-events: none;
}

/* ============================================================
   HERO VIDEO (slot for user video upload)
   ============================================================ */
.hero-video {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  background: var(--noir-700);
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.2), rgba(11, 18, 32, 0.55));
  pointer-events: none;
}
.hero-video .video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
  gap: 14px;
}
.hero-video .video-placeholder .center {
  display: grid;
  gap: 14px;
  justify-items: center;
}
.hero-video .video-placeholder .label-mono { color: var(--champagne); }
.hero-video .video-placeholder .ph-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--cream-100);
  line-height: 1;
}
.hero-video .video-placeholder .ph-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-video .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--champagne);
  z-index: 2;
}
.hero-video .corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.hero-video .corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.hero-video .corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.hero-video .corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.hero-video .stamp {
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 2;
}
.hero-video .stamp-r {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  z-index: 2;
}

/* ============================================================
   PRODUCT BLOCKS (alternating)
   ============================================================ */
.products-section { background: var(--noir-800); }
.product-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.product-block:last-of-type { border-bottom: 0; }
.product-block.reverse .pb-copy { order: 2; }
.product-block.reverse .pb-visual { order: 1; }
.pb-copy .roman {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.pb-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}
.pb-copy h2 small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 16px;
}
.pb-copy .lead { font-size: 18px; max-width: 50ch; }
.pb-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 12px;
}
.pb-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.pb-features li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border: 1px solid var(--champagne);
  transform: rotate(45deg);
}
.pb-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Product visual = floating chart, no frame */
.pb-visual {
  position: relative;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pb-visual .corner,
.pb-visual .stamp,
.pb-visual .stamp-r,
.pb-visual .viz-navi,
.pb-visual .viz-compass { display: none; }

/* Chart caption header (used both in product blocks and gallery) */
.chart-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.chart-caption .roman {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--champagne);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
}
.chart-caption .meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.chart-caption .meta .dot {
  width: 5px; height: 5px;
  background: var(--champagne);
  border-radius: 50%;
  display: inline-block;
}
.chart-caption .accent {
  color: var(--champagne);
}

/* Chart wrapper — sizes the SVG, no frame */
.chart-wrap {
  width: 100%;
  position: relative;
}
.chart-wrap.center {
  display: flex;
  justify-content: center;
}
.chart-wrap svg.chart {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.chart-wrap.center svg.chart {
  max-width: 460px;
}

@media (max-width: 900px) {
  .product-block { grid-template-columns: 1fr; gap: 48px; }
  .product-block.reverse .pb-copy { order: 1; }
  .product-block.reverse .pb-visual { order: 2; }
}

/* ----- LEGACY (kept for fallback, no longer used) ----- */
/* ----- Visual: VSA Navi — nested timeframes ----- */
.viz-navi { padding: 56px; display: grid; place-items: center; }
.viz-navi .frame {
  border: 1px solid var(--noir-400);
  padding: 36px;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.viz-navi .frame::before {
  content: "M";
  position: absolute;
  top: 6px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
}
.viz-navi .f2 { border-color: var(--noir-300); padding: 28px; }
.viz-navi .f2::before { content: "W"; color: var(--warm-400); }
.viz-navi .f3 { border-color: var(--warm-500); padding: 22px; }
.viz-navi .f3::before { content: "D"; color: var(--warm-400); }
.viz-navi .f4 { border-color: var(--warm-400); padding: 16px; }
.viz-navi .f4::before { content: "H4"; color: var(--warm-300); }
.viz-navi .f5 { border-color: var(--champagne); padding: 0; display: grid; place-items: center; aspect-ratio: 4/3; }
.viz-navi .f5::before { content: "M5"; color: var(--champagne); }
.viz-navi .f5 .label {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 32px;
}

/* ----- Visual: Compass — bias dial ----- */
.viz-compass {
  display: grid;
  place-items: center;
  padding: 56px;
}
.viz-compass svg { width: 80%; max-width: 380px; }

/* ----- Visual: Options analyzer — strike chart ----- */
.viz-options {
  padding: 56px;
  display: grid;
  align-items: end;
  gap: 8px;
  grid-template-rows: 1fr auto;
}
.viz-options .bars {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  align-items: end;
  gap: 6px;
  height: 100%;
}
.viz-options .bars span {
  display: block;
  background: var(--warm-500);
}
.viz-options .bars .pos { background: var(--champagne); }
.viz-options .bars .neg { background: var(--warm-400); }
.viz-options .zero {
  position: relative;
  height: 0;
  border-top: 1px dashed var(--champagne);
  margin-top: -20px;
}
.viz-options .zero::after {
  content: "ZERO γ";
  position: absolute;
  right: 0; top: -16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--champagne);
}
.viz-options .axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  margin-top: 8px;
}

/* ----- Visual: PNL HUB ----- */
.viz-pnl {
  padding: 56px;
  display: grid;
  place-items: center;
}
.viz-pnl .overlay {
  width: 320px;
  background: var(--noir-700);
  border: 1px solid var(--champagne-line);
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.viz-pnl .overlay .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.viz-pnl .overlay .row strong {
  color: var(--cream-100);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 500;
}
.viz-pnl .overlay .row.total strong { color: var(--champagne); font-size: 32px; }

/* ============================================================
   SCREENSHOT GALLERY (Tabs)
   ============================================================ */
.gallery-section { background: var(--noir-900); }
.tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  overflow-x: auto;
}
.tab {
  padding: 22px 28px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--warm-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
  position: relative;
}
.tab:last-child { border-right: 0; }
.tab:hover { color: var(--cream-100); }
.tab.active { color: var(--champagne); background: var(--noir-800); }
.tab.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--champagne);
}
.tab .roman {
  display: inline-block;
  margin-right: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--champagne);
  vertical-align: -1px;
  text-transform: none;
}

/* Gallery stage — frameless, floating */
.gallery-stage {
  border: 0;
  background: transparent;
  position: relative;
  overflow: visible;
  min-height: 0;
}
.gallery-pane {
  display: none;
  flex-direction: column;
  gap: 28px;
}
.gallery-pane.active { display: flex; }
.gallery-pane .stamp,
.gallery-pane .stamp-r,
.gallery-pane .ghost-chart { display: none; }
.gallery-pane .stage-title {
  position: static;
  max-width: 64ch;
  margin: 0;
}
.gallery-pane .stage-title h4 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.012em;
}
.gallery-pane .stage-title p {
  color: var(--ink-muted);
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Combined view — chart + dial side by side */
.combined-view {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .combined-view { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.test-card {
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  background: var(--noir-700);
  transition: border-color .25s var(--ease);
}
.test-card:hover { border-color: var(--champagne-line); }
.test-card .mark {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 56px;
  line-height: 0.4;
  margin-bottom: -10px;
}
.test-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--cream-100);
  font-weight: 400;
}
.test-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
.test-card cite strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}
.test-card cite span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GET STARTED BANNER
   ============================================================ */
.banner {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(91, 142, 232, 0.12), transparent 70%),
    var(--noir-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.banner-inner {
  padding: clamp(64px, 8vw, 120px) 0;
  text-align: center;
  display: grid;
  gap: 28px;
  place-items: center;
}
.banner h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; }
.banner .actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.banner .fine { color: var(--ink-soft); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  margin: 0 auto 56px;
  padding: 4px;
  gap: 4px;
}
.pricing-toggle button {
  background: transparent;
  border: 0;
  color: var(--warm-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.pricing-toggle button.active {
  color: var(--noir-800);
  background: var(--champagne);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.pkg {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pkg:last-child { border-right: 0; }
.pkg.featured {
  background: var(--noir-700);
}
.pkg.featured::before {
  content: "Beliebte Wahl";
  position: absolute;
  top: 0; left: 0;
  background: var(--champagne);
  color: var(--noir-800);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.pkg .pkg-name {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  color: var(--cream-100);
}
.pkg .pkg-sub {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 14px;
}
.pkg .pkg-price {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pkg .pkg-price .amount {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.9;
  color: var(--cream-100);
  letter-spacing: -0.02em;
}
.pkg .pkg-price .cur { font-family: var(--font-mono); color: var(--champagne); font-size: 14px; letter-spacing: 0.14em; }
.pkg .pkg-price .unit { font-family: var(--font-mono); color: var(--ink-soft); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.pkg ul {
  list-style: none;
  padding: 0;
  margin: 36px 0 36px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.pkg li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}
.pkg li::before {
  content: "";
  flex-shrink: 0;
  width: 7px; height: 7px;
  border: 1px solid var(--champagne);
  margin-top: 7px;
  transform: rotate(45deg);
}
.pkg .btn { margin-top: auto; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pkg { border-right: 0; border-bottom: 1px solid var(--line); }
  .pkg:last-child { border-bottom: 0; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--cream-100);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
  transition: color .2s var(--ease);
}
.faq-q:hover { color: var(--champagne); }
.faq-q .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  color: var(--champagne);
  font-size: 14px;
  transition: transform .25s var(--ease), border-color .2s var(--ease);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); border-color: var(--champagne); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 0 0 32px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--noir-900); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: grid; gap: 36px; }
.contact-info .block .label { margin-bottom: 8px; }
.contact-info .block .val {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--cream-100);
}
.contact-info .block .val a:hover { color: var(--champagne); }
.contact-info .socials { display: flex; gap: 10px; margin-top: 10px; }
.contact-info .socials a {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream-100);
  transition: border-color .2s, color .2s;
}
.contact-info .socials a:hover { border-color: var(--champagne); color: var(--champagne); }

.contact-form {
  background: var(--noir-700);
  border: 1px solid var(--line);
  padding: 48px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--noir-800);
  border: 1px solid var(--line);
  color: var(--cream-100);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(91, 142, 232, 0.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field.error input, .field.error textarea, .field.error select { border-color: #C44; }
.field .err { display: none; color: #DAA; font-size: 12px; margin-top: 8px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.field.error .err { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.form-foot .fine { color: var(--ink-soft); font-size: 12px; max-width: 32ch; }
.form-success {
  display: none;
  border: 1px solid var(--champagne-line);
  background: var(--champagne-soft);
  padding: 20px;
  margin-bottom: 24px;
  color: var(--cream-100);
  font-family: var(--font-serif);
  font-size: 18px;
}
.form-success.show { display: block; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px; }
  .row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--noir-900);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  color: var(--ink-muted);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { color: var(--cream-100); }
.footer-brand p {
  margin: 24px 0 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--warm-300); font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   CATALOG
   ============================================================ */
.cat-header {
  padding: 168px 0 80px;
  border-bottom: 1px solid var(--line);
}
.cat-header h1 { font-size: clamp(48px, 6vw, 96px); }
.cat-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 56px;
}
.cat-search {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--noir-700);
  border: 1px solid var(--line);
  padding: 0 18px;
  transition: border-color .2s;
}
.cat-search:focus-within { border-color: var(--champagne); }
.cat-search svg { width: 16px; height: 16px; color: var(--champagne); flex-shrink: 0; }
.cat-search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream-100);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 16px 0;
  outline: none;
}
.cat-search input::placeholder { color: var(--ink-soft); }
.cat-sort {
  background: var(--noir-700);
  border: 1px solid var(--line);
  color: var(--cream-100);
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cat-filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--warm-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cat-filter:hover { color: var(--cream-100); }
.cat-filter.active {
  background: var(--champagne);
  color: var(--noir-800);
  border-color: var(--champagne);
}
.cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 32px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.cat-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background .25s var(--ease);
  cursor: pointer;
  position: relative;
}
.cat-card:hover { background: var(--noir-700); }
.cat-card:nth-child(even) { border-right: 0; }
.cat-card .head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.cat-card .roman {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 36px;
  line-height: 0.9;
}
.cat-card .category {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.015em;
}
.cat-card .short {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
}
.cat-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cat-card .meta .price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--cream-100);
}
.cat-card .meta .price small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-left: 6px;
}
.cat-card .meta .detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cat-empty {
  grid-column: 1 / -1;
  padding: 96px 48px;
  text-align: center;
  border-right: 0;
  border-bottom: 0;
}
.cat-empty h3 { font-family: var(--font-serif); font-size: 36px; color: var(--warm-400); }
.cat-empty p { color: var(--ink-soft); margin-top: 12px; }

@media (max-width: 800px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: 0; }
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.detail-header {
  padding: 168px 0 64px;
  border-bottom: 1px solid var(--line);
}
.detail-crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.detail-crumbs a:hover { color: var(--champagne); }
.detail-crumbs .sep { color: var(--noir-400); }
.detail-crumbs strong { color: var(--cream-100); font-weight: 500; }

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.detail-hero .roman {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 24px;
}
.detail-hero h1 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  margin: 20px 0 28px;
  letter-spacing: -0.022em;
}
.detail-hero .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  color: var(--warm-200);
  max-width: 32ch;
}

/* Product switcher row */
.switcher {
  margin-top: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.switcher .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.switcher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.switcher-grid a {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background .2s, color .2s;
}
.switcher-grid a:last-child { border-right: 0; }
.switcher-grid a:hover { background: var(--noir-700); }
.switcher-grid a.active {
  background: var(--champagne);
  color: var(--noir-800);
}
.switcher-grid a.active .ro { color: var(--noir-800); }
.switcher-grid a.active .nm { color: var(--noir-800); }
.switcher-grid .ro { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--champagne); line-height: 1; }
.switcher-grid .nm { font-family: var(--font-serif); font-size: 18px; line-height: 1; color: var(--cream-100); }
@media (max-width: 900px) {
  .detail-hero { grid-template-columns: 1fr; gap: 32px; }
  .switcher { grid-template-columns: 1fr; }
  .switcher-grid { grid-template-columns: 1fr 1fr; }
  .switcher-grid a { border-right: 1px solid var(--line); }
  .switcher-grid a:nth-child(2n) { border-right: 0; }
  .switcher-grid a:nth-child(1), .switcher-grid a:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Detail tabs */
.detail-tabs-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-tabs-side {
  position: sticky;
  top: 120px;
}
.detail-tabs-side .label-mono { display: block; margin-bottom: 16px; }
.detail-tabs-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.detail-tab {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--warm-400);
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  transition: color .2s;
}
.detail-tab:hover { color: var(--cream-100); }
.detail-tab.active { color: var(--champagne); }
.detail-tab .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.detail-tab.active .num { color: var(--champagne); }

.detail-pane { display: none; }
.detail-pane.active { display: block; }
.detail-pane h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 28px;
}
.detail-pane p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}
.detail-pane ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.detail-pane li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.detail-pane li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 9px;
  border: 1px solid var(--champagne);
  transform: rotate(45deg);
}

.changelog-list { display: grid; gap: 0; }
.changelog-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.changelog-item .ver {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--champagne);
  letter-spacing: 0.1em;
}
.changelog-item .ver small {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
.changelog-item .body { color: var(--ink-muted); font-size: 15px; line-height: 1.5; }

.buy-block {
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--noir-700);
}
.buy-block .label-mono { display: block; margin-bottom: 20px; }
.buy-block .pr {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.buy-block .pr .amount {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.buy-block .pr .unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.buy-block .pr-alt {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}
.buy-block .pr-alt .gold { color: var(--champagne); }
.buy-block .btn { margin-top: 28px; width: 100%; }
.buy-block .fine {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .detail-tabs-wrap { grid-template-columns: 1fr; gap: 32px; }
  .detail-tabs-side { position: static; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Scrollbar styling (dark) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--noir-900); }
::-webkit-scrollbar-thumb { background: var(--noir-500); }
::-webkit-scrollbar-thumb:hover { background: var(--noir-400); }

/* ============================================================
   LEGAL PAGES (Impressum · Datenschutz · Nutzungsbedingungen)
   ============================================================ */
.legal-header {
  padding: 152px 0 48px;
  border-bottom: 1px solid var(--line);
}
.legal-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.legal-crumbs a { color: var(--ink-soft); }
.legal-crumbs a:hover { color: var(--champagne); }
.legal-crumbs .sep { opacity: 0.5; }
.legal-header h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  margin: 0;
}
.legal-header .sub {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 58ch;
}
.legal-body { padding: 64px 0 96px; }
.legal-wrap {
  max-width: 760px;
}
.legal-section { margin-bottom: 52px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section > h2 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-section h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-muted);
}
.legal-section p { margin: 0 0 14px; }
.legal-section a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.legal-section ul { margin: 0 0 14px; padding-left: 20px; }
.legal-section li { margin-bottom: 7px; }
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-data {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4px 24px;
  margin: 0 0 14px;
}
.legal-data dt {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
}
.legal-data dd {
  margin: 0;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.legal-data dt { border-bottom: 1px solid var(--line); }
.legal-note {
  margin-top: 56px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--noir-700);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal-updated {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .legal-data { grid-template-columns: 1fr; gap: 0; }
  .legal-data dt { border-bottom: none; padding-bottom: 0; }
  .legal-data dd { padding-top: 2px; margin-bottom: 8px; }
}
