/* ============================================================================
   FrameCraft — gradecraft.shop
   Cinematic redesign v2 · Die Seite IST ein Grading-Monitor.
   Bild-first, Cinemascope-Letterbox, editorial-asymmetrisch, monochrom + ein Amber.
   ============================================================================ */

:root {
  /* Near-black, leicht zum Amber getönt (nie #000/#fff) */
  --bg-0: #0a0a0b;
  --bg-1: #101012;
  --bg-2: #17171a;
  --bg-3: #1e1e22;
  --stroke: #2a2a30;
  --stroke-hi: #3a3a42;
  --text-hi: #f4f2ee;
  --text-mid: #a5a4ab;
  --text-lo: #6a6970;
  --text-xlo: #4a4950;

  --accent: #e8a94c;      /* wärmeres Amber, Kino-Tungsten */
  --accent-hi: #f6c476;
  --accent-dim: rgba(232, 169, 76, 0.13);
  --accent-glow: rgba(232, 169, 76, 0.4);
  --good: #74cf9a;
  --bad: #e06a5a;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);       /* ease-out-expo-ish */
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --bar: clamp(26px, 5vh, 64px);  /* Cinemascope-Balkenhöhe */
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── Filmkorn über allem — der EINE globale filmische Effekt ─────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Sanfte Vignette an den Bildschirmrändern → Monitor-Gefühl */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,.55);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-hi);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.mono { font-family: var(--font-mono); font-feature-settings: 'tnum'; }

::selection { background: var(--accent); color: #140c02; }

/* ── Layout-Primitiven ──────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.full { width: 100%; position: relative; z-index: 2; }

section { position: relative; padding: clamp(80px, 12vh, 160px) 0; }
.tint { background: var(--bg-1); }

/* Riesige Sektions-Nummer, halbtransparent, Mono */
.sec-index {
  font-family: var(--font-mono); font-weight: 300;
  font-size: clamp(48px, 9vw, 120px); line-height: 1;
  color: var(--text-hi); opacity: 0.06; letter-spacing: -0.04em;
  position: absolute; top: clamp(40px, 8vh, 90px); left: var(--gutter);
  pointer-events: none; user-select: none; z-index: 1;
}

/* Metadaten-Mikrotypo (Kamera-HUD-Stil) */
.meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-lo);
}
.meta .dot { color: var(--text-xlo); margin: 0 8px; }
.meta .amber { color: var(--accent); }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 22px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); opacity: .6; }

.kicker {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 60px); line-height: 1.02;
  letter-spacing: -0.035em; color: var(--text-hi);
}
.kicker .serif { color: var(--accent-hi); }
.lead { color: var(--text-mid); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; max-width: 60ch; }
strong { color: var(--text-hi); font-weight: 600; }
em { font-style: italic; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 3px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1; position: relative;
  transition: transform .3s var(--ease), background .25s, border-color .25s, box-shadow .3s, color .25s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #140c02; box-shadow: 0 0 0 0 var(--accent-glow); }
.btn-primary:hover { background: var(--accent-hi); box-shadow: 0 12px 40px -8px var(--accent-glow); }
.btn-ghost { background: transparent; color: var(--text-hi); border-color: var(--stroke-hi); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hi); }
.btn-lg { padding: 17px 32px; font-size: 15.5px; }
.btn .rec { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--stroke);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; color: var(--text-hi); font-size: 17px; letter-spacing: -0.02em; }
.brand .mark {
  width: 22px; height: 15px; border-radius: 2px; position: relative;
  background: linear-gradient(120deg, var(--bg-3) 0 50%, var(--accent) 50% 100%);
  box-shadow: 0 0 14px -2px var(--accent-glow); flex: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-mid); font-size: 14px; font-family: var(--font-mono); letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover { color: var(--text-hi); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ════════════════════════════════════════════════════════════════════════
   1 · HERO — Vollbild-Footage, Bild-first, Film-Titelkarte
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; padding: 0;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
/* Der Before/After IST der Hintergrund, vollflächig */
.hero-stage { position: absolute; inset: 0; z-index: 0; user-select: none; touch-action: pan-y; cursor: ew-resize; }
.hero-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero-stage .ba-after { clip-path: inset(0 0 0 50%); will-change: clip-path; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,11,.62) 0%, rgba(10,10,11,.28) 34%, rgba(10,10,11,.34) 62%, rgba(10,10,11,.9) 100%); }
.hero-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; z-index: 3;
  background: rgba(244,242,238,.85); transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 24px 2px rgba(0,0,0,.4);
}
.hero-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px; transform: translate(-50%,-50%); border-radius: 50%;
  background: rgba(10,10,11,.55); border: 1.5px solid rgba(244,242,238,.9); backdrop-filter: blur(4px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23f4f2ee' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M9 7L4 12l5 5M15 7l5 5-5 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 22px;
}

/* Cinemascope-Letterbox */
.letterbox { position: absolute; left: 0; right: 0; z-index: 4; height: var(--bar); background: var(--bg-0); pointer-events: none; }
.letterbox.top { top: 0; box-shadow: 0 12px 30px -12px rgba(0,0,0,.6); }
.letterbox.bot { bottom: 0; box-shadow: 0 -12px 30px -12px rgba(0,0,0,.6); }

/* HUD-Ecken auf dem Balken */
.hud { position: absolute; z-index: 5; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--text-mid); text-transform: uppercase; pointer-events: none; }
.hud.tl { top: calc(var(--bar) + 16px); left: var(--gutter); display: flex; align-items: center; gap: 9px; }
.hud.tr { top: calc(var(--bar) + 16px); right: var(--gutter); }
.hud.bl { bottom: calc(var(--bar) + 16px); left: var(--gutter); }
.hud.br { bottom: calc(var(--bar) + 16px); right: var(--gutter); text-align: right; color: var(--accent); }
.hud .rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bad); box-shadow: 0 0 10px var(--bad); animation: recBlink 1.8s steps(1) infinite; }
@keyframes recBlink { 0%,55% { opacity: 1; } 56%,100% { opacity: .25; } }

/* Titelkarte */
.hero-inner { position: relative; z-index: 5; width: 100%; padding: 0 var(--gutter); }
.hero-title {
  font-family: var(--font-display); font-weight: 700; color: var(--text-hi);
  font-size: clamp(52px, 11vw, 168px); line-height: 0.9; letter-spacing: -0.045em;
  text-shadow: 0 4px 60px rgba(0,0,0,.5); margin: 0;
}
.hero-title .serif { display: block; font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent-hi); letter-spacing: -0.01em; text-shadow: 0 2px 40px rgba(232,169,76,.25); }
.hero-title .line { display: block; }
.hero-sub { margin: 30px 0 0; max-width: 46ch; font-size: clamp(16px, 1.9vw, 20px); color: var(--text-hi); line-height: 1.5; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.hero-sub strong { color: var(--accent-hi); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-drag-hint { position: absolute; z-index: 5; bottom: calc(var(--bar) + 54px); left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); display: flex; align-items: center; gap: 8px; opacity: .8; }
.hero-drag-hint::before, .hero-drag-hint::after { content: '‹ ›'; letter-spacing: -2px; color: var(--accent); }
@media (max-width: 700px) { .hero-drag-hint { display: none; } .hud.tr, .hud.bl { display: none; } }

/* ════════════════════════════════════════════════════════════════════════
   2 · RESCUE — „Kack Footage? Genau dafür gebaut."
   ════════════════════════════════════════════════════════════════════════ */
.rescue { background: var(--bg-0); }
.rescue-head { max-width: 900px; margin-bottom: clamp(40px, 6vh, 72px); }
.rescue-head h2 { font-size: clamp(34px, 6.4vw, 82px); line-height: 0.98; letter-spacing: -0.04em; margin-top: 6px; }
.rescue-head h2 .serif { color: var(--accent-hi); }
.rescue-head p { margin-top: 22px; max-width: 56ch; }

.rescue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
@media (max-width: 900px) { .rescue-grid { grid-template-columns: 1fr; max-width: 560px; } }

.rcard {
  position: relative; border: 1px solid var(--stroke); border-radius: 6px; overflow: hidden;
  background: var(--bg-1); cursor: pointer; transition: border-color .3s, transform .4s var(--ease);
}
.rcard:hover { border-color: var(--stroke-hi); }
.rcard-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-0); }
.rcard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rcard-media .fixed { opacity: 0; transition: opacity .9s var(--ease); }
.rcard.solved .fixed { opacity: 1; }
/* Diagnose-Tag oben links */
.rcard .diag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 3px; background: rgba(10,10,11,.72); backdrop-filter: blur(6px);
  color: var(--bad); border: 1px solid rgba(224,106,90,.35); display: flex; align-items: center; gap: 6px;
  transition: color .4s, border-color .4s;
}
.rcard .diag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.rcard.solved .diag { color: var(--good); border-color: rgba(116,207,154,.4); }
/* Scan beim „analysieren" */
.rcard .rscan { position: absolute; z-index: 4; left: 0; right: 0; top: 0; height: 2px; opacity: 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 18px 3px var(--accent-glow); }
.rcard .rscan.run { animation: scanSweep .85s var(--ease) forwards; }
@keyframes scanSweep { 0% { top: 0; opacity: .95; } 100% { top: 100%; opacity: 0; } }
/* Analyse-Readout (Panel unten) */
.rcard-foot { padding: 16px 18px 18px; }
.rcard-foot h3 { font-size: 17px; letter-spacing: -0.02em; }
.rcard-foot p { font-size: 13.5px; color: var(--text-lo); margin: 6px 0 0; line-height: 1.5; }
.rbtn {
  margin-top: 16px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 11px; border-radius: 3px; border: 1px solid var(--accent); color: var(--accent);
  background: transparent; cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.rbtn:hover { background: var(--accent-dim); }
.rcard.solved .rbtn { border-color: var(--good); color: var(--good); background: rgba(116,207,154,.08); pointer-events: none; }
.rbtn .ic { font-size: 13px; }
.rreadout { display: flex; gap: 20px; margin-top: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--text-lo); }
.rreadout b { color: var(--accent); font-weight: 500; display: block; font-size: 14px; margin-top: 2px; letter-spacing: -.01em; }
.rreadout .lbl { text-transform: uppercase; letter-spacing: .1em; font-size: 9.5px; }
.rcard.solved .rreadout b { color: var(--good); }

/* ════════════════════════════════════════════════════════════════════════
   3 · MOAT — Gemessen, nicht gemalt (editorial asymmetrisch)
   ════════════════════════════════════════════════════════════════════════ */
.editorial { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }
.editorial .col-text h2 { font-size: clamp(30px, 4.4vw, 56px); margin: 8px 0 22px; letter-spacing: -0.035em; }
.editorial .col-text h2 .serif { color: var(--accent-hi); }
.editorial .lead + .lead { margin-top: 16px; }

.stat-row { display: flex; gap: clamp(28px, 4vw, 56px); margin: 40px 0; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 5vw, 56px); color: var(--accent); line-height: 1; letter-spacing: -0.04em; }
.stat .l { font-size: 13px; color: var(--text-lo); margin-top: 10px; max-width: 20ch; line-height: 1.4; }

.night-fig { position: relative; border-radius: 6px; overflow: hidden; border: 1px solid var(--stroke); }
.night-fig img { width: 100%; display: block; }
.night-fig figcaption { padding: 15px 20px; font-size: 13px; color: var(--text-lo); border-top: 1px solid var(--stroke); background: var(--bg-1); line-height: 1.5; }

/* Demo #2 im „Grading-Monitor"-Rahmen */
.monitor {
  position: relative; border-radius: 8px; overflow: hidden; border: 1px solid var(--stroke-hi);
  background: var(--bg-0); box-shadow: 0 60px 140px -50px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.04);
}
.monitor-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--bg-2); border-bottom: 1px solid var(--stroke); }
.monitor-bar .dots { display: flex; gap: 6px; }
.monitor-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--stroke-hi); }
.monitor-bar .title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-lo); margin-left: 6px; }
.monitor-bar .live { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--accent); }

.demo-stage { position: relative; aspect-ratio: 16/9; background: var(--bg-0); overflow: hidden; }
.demo-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s var(--ease); }
.demo-stage img.on { opacity: 1; }
.demo-cursor { position: absolute; z-index: 6; width: 26px; height: 26px; left: 0; top: 0; pointer-events: none; filter: drop-shadow(0 2px 4px rgba(0,0,0,.7)); transition: transform .75s var(--ease); will-change: transform; }
.demo-cursor.click { animation: cursorClick .3s ease; }
@keyframes cursorClick { 50% { transform: translate(var(--cx), var(--cy)) scale(.78); } }
.scan-line { position: absolute; z-index: 5; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); box-shadow: 0 0 16px 2px var(--accent-dim); opacity: 0; }
.scan-line.run { animation: scanSweep .6s var(--ease) forwards; }

/* eingebettetes Panel (Resolve-Inspector) */
.panel { background: var(--bg-2); border: 1px solid var(--stroke); border-radius: 6px; padding: 15px; font-size: 13px; display: flex; flex-direction: column; gap: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.panel-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-lo); display: flex; align-items: center; gap: 7px; }
.panel-title .fc { color: var(--accent); }
.p-row { display: flex; flex-direction: column; gap: 6px; }
.p-label { font-size: 11px; color: var(--text-lo); letter-spacing: .02em; }
.p-select { display: flex; align-items: center; justify-content: space-between; background: var(--bg-0); border: 1px solid var(--stroke); border-radius: 4px; padding: 9px 11px; color: var(--text-hi); font-size: 12.5px; transition: border-color .2s, background .2s; }
.p-select.active { border-color: var(--accent); background: var(--accent-dim); }
.p-select .chev { color: var(--text-lo); }
.p-list { display: flex; flex-direction: column; gap: 2px; background: var(--bg-0); border: 1px solid var(--stroke); border-radius: 4px; padding: 4px; overflow: hidden; }
.p-item { padding: 7px 10px; border-radius: 3px; font-size: 12px; color: var(--text-mid); transition: background .2s, color .2s; opacity: 0; transform: translateY(-3px); }
.p-item.shown { opacity: 1; transform: none; transition: opacity .3s, transform .3s, background .2s, color .2s; }
.p-item.active { background: var(--accent-dim); color: var(--accent-hi); }
.p-item .tag { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-lo); float: right; }
.p-btn { display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--accent); color: var(--accent); background: transparent; border-radius: 4px; padding: 11px; font-size: 12.5px; font-weight: 600; font-family: var(--font-mono); letter-spacing: .04em; transition: background .2s, transform .15s; cursor: pointer; }
.p-btn.pulse { animation: btnPulse 2.4s ease-in-out infinite; }
.p-btn.press { background: var(--accent-dim); transform: scale(.98); }
@keyframes btnPulse { 0%,100% { box-shadow: 0 0 0 0 var(--accent-dim); } 50% { box-shadow: 0 0 0 5px var(--accent-dim); } }
.p-slider { display: flex; align-items: center; gap: 10px; }
.p-track { flex: 1; height: 4px; background: var(--bg-0); border: 1px solid var(--stroke); border-radius: 3px; position: relative; }
.p-thumb { position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); left: 40%; box-shadow: 0 0 10px var(--accent-dim); transition: left .4s var(--ease); }
.p-val { font-family: var(--font-mono); font-size: 11px; color: var(--accent); min-width: 52px; text-align: right; }
.p-readout { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--text-lo); }
.p-readout b { color: var(--accent); font-weight: 500; }

/* Demo #2 Panel-Overlay */
.demo2-panel { position: absolute; left: 16px; bottom: 16px; width: 218px; z-index: 7; }
@media (max-width: 520px) { .demo2-panel { width: 168px; left: 10px; bottom: 10px; } }

details.proof { margin-top: 30px; border: 1px solid var(--stroke); border-radius: 6px; background: var(--bg-1); overflow: hidden; }
details.proof > summary { padding: 15px 20px; cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.proof > summary::-webkit-details-marker { display: none; }
details.proof > summary::after { content: '+'; color: var(--accent); font-size: 18px; }
details.proof[open] > summary::after { content: '–'; }
details.proof .proof-body { padding: 4px 20px 22px; }
details.proof .proof-body p { font-size: 14px; margin: 0 0 12px; }
details.proof .proof-body .mono { color: var(--accent); }

/* ════════════════════════════════════════════════════════════════════════
   4 · FILMSTREIFEN — 46 Looks als scrollbarer Perforationsstreifen
   ════════════════════════════════════════════════════════════════════════ */
.strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 36px; flex-wrap: wrap; }
.strip-head h2 { font-size: clamp(30px, 4.4vw, 56px); letter-spacing: -0.035em; }
.strip-head h2 .serif { color: var(--accent-hi); }
.strip-head .strip-meta { text-align: right; }

.filmstrip-outer { position: relative; }
.filmstrip {
  display: flex; gap: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity;
  padding: 22px 0; -webkit-overflow-scrolling: touch; cursor: grab;
  scrollbar-width: none; background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(0,0,0,.35) 44px 46px);
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip.dragging { cursor: grabbing; scroll-snap-type: none; }
/* Perforationsränder oben/unten */
.filmstrip-outer::before, .filmstrip-outer::after {
  content: ''; position: absolute; left: 0; right: 0; height: 14px; z-index: 3; pointer-events: none;
  background-image: radial-gradient(circle at 12px 50%, var(--bg-0) 3.5px, transparent 4px);
  background-size: 30px 14px; background-repeat: repeat-x;
}
.filmstrip-outer::before { top: 0; }
.filmstrip-outer::after { bottom: 0; }
.filmstrip-outer { border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: var(--bg-2); }

.frame { flex: 0 0 auto; scroll-snap-align: center; width: clamp(220px, 26vw, 340px); position: relative; margin: 0 6px; border-radius: 3px; overflow: hidden; border: 1px solid var(--stroke); background: var(--bg-0); }
.frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.frame:hover img { transform: scale(1.04); }
.frame .fcap { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 12px 9px; background: linear-gradient(0deg, rgba(10,10,11,.9), transparent); display: flex; align-items: center; justify-content: space-between; }
.frame .fname { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-hi); letter-spacing: -0.01em; }
.frame .fnum { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: .06em; }
.frame .ftag { position: absolute; top: 9px; right: 9px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-hi); background: rgba(10,10,11,.6); padding: 3px 7px; border-radius: 2px; backdrop-filter: blur(4px); }
/* Randmarker (Filmnegativ-Anmutung) links vom Streifen */
.strip-worlds { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.sw { display: flex; align-items: baseline; gap: 10px; font-size: 13.5px; color: var(--text-mid); }
.sw b { font-family: var(--font-display); color: var(--text-hi); font-weight: 600; }
.sw .cnt { font-family: var(--font-mono); font-size: 11px; color: var(--accent); }
.strip-fade { position: absolute; top: 1px; bottom: 1px; width: clamp(30px, 6vw, 90px); z-index: 2; pointer-events: none; }
.strip-fade.l { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.strip-fade.r { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }

/* ── Problem-Sektion (asymmetrisch) ─────────────────────────────────────── */
.plist { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 15px; }
.plist li { padding-left: 28px; position: relative; font-size: 15.5px; line-height: 1.55; }
.plist li::before { content: '✕'; position: absolute; left: 0; top: 1px; color: var(--bad); font-size: 12px; }
.punch { font-size: clamp(19px, 2.4vw, 26px); color: var(--text-hi); margin-top: 30px; font-family: var(--font-display); font-weight: 600; line-height: 1.28; letter-spacing: -0.02em; }
.punch .serif { color: var(--accent-hi); }

/* ════════════════════════════════════════════════════════════════════════
   5 · STICKY-SCROLL WORKFLOW — Bild bleibt, Text läuft
   ════════════════════════════════════════════════════════════════════════ */
.flow { position: relative; }
.flow-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .flow-grid { grid-template-columns: 1fr; } }
.flow-steps { display: flex; flex-direction: column; }
.flow-step { padding: clamp(30px, 12vh, 100px) 0; opacity: .32; transition: opacity .5s var(--ease); border-top: 1px solid var(--stroke); }
.flow-step:first-child { border-top: none; }
.flow-step.active { opacity: 1; }
.flow-step .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; color: var(--accent); text-transform: uppercase; }
.flow-step h3 { font-size: clamp(24px, 3.2vw, 38px); margin: 14px 0 14px; letter-spacing: -0.03em; }
.flow-step p { font-size: 15.5px; color: var(--text-mid); max-width: 42ch; line-height: 1.6; }
.flow-step .kbd { display: inline-block; font-family: var(--font-mono); font-size: 12px; color: var(--text-hi); background: var(--bg-2); border: 1px solid var(--stroke); border-radius: 3px; padding: 2px 8px; margin: 12px 6px 0 0; }
.flow-sticky { position: sticky; top: 96px; }
@media (max-width: 900px) { .flow-sticky { position: relative; top: 0; margin-bottom: 30px; } .flow-step { padding: 30px 0; opacity: 1; } }
.flow-monitor { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid var(--stroke-hi); box-shadow: 0 60px 140px -50px rgba(0,0,0,.9); }
.flow-monitor .demo-stage { aspect-ratio: 16/10; }
.flow-progress { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--stroke); z-index: 8; }
.flow-progress .bar { position: absolute; top: 0; left: 0; right: 0; height: 25%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); transition: transform .5s var(--ease); }

/* ── Feintuning Demo #3 (im Monitor) ────────────────────────────────────── */
.demo3-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 820px) { .demo3-wrap { grid-template-columns: 1fr; } .demo3-wrap [data-el="stage"] { order: -1; } }
.demo-stage-mon { border-radius: 8px; overflow: hidden; border: 1px solid var(--stroke-hi); box-shadow: 0 50px 120px -50px rgba(0,0,0,.9); }

/* ── Features ───────────────────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stroke); border: 1px solid var(--stroke); border-radius: 6px; overflow: hidden; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-card { background: var(--bg-1); padding: 30px; }
.feat-card h3 { font-size: 12.5px; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.feat-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.feat-card li { font-size: 14.5px; padding-left: 22px; position: relative; color: var(--text-mid); line-height: 1.45; }
.feat-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--stroke); }
.faq summary { padding: 24px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: clamp(17px, 2vw, 21px); color: var(--text-hi); font-weight: 600; letter-spacing: -0.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 24px; font-family: var(--font-body); transition: transform .25s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 26px; font-size: 15.5px; color: var(--text-mid); max-width: 70ch; line-height: 1.6; }
.faq .a .mono { color: var(--text-hi); }

/* ── Preis ──────────────────────────────────────────────────────────────── */
.price-wrap { display: grid; grid-template-columns: 1fr 420px; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; } }
.price-lead h2 { font-size: clamp(32px, 5vw, 60px); margin: 10px 0 20px; letter-spacing: -0.035em; }
.price-lead h2 .serif { color: var(--accent-hi); }
.price-card { position: relative; background: var(--bg-1); border: 1px solid var(--stroke-hi); border-radius: 10px; padding: 36px; box-shadow: 0 60px 140px -50px var(--accent-glow); }
.price-card::before { content: ''; position: absolute; inset: 0; border-radius: 10px; padding: 1px; background: linear-gradient(150deg, var(--accent-dim), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-card .tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.price-amount { display: flex; align-items: baseline; gap: 14px; margin: 16px 0 4px; }
.price-amount .now { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 7vw, 64px); color: var(--text-hi); letter-spacing: -0.04em; line-height: 1; }
.price-amount .was { font-family: var(--font-mono); font-size: 20px; color: var(--text-lo); text-decoration: line-through; }
.price-card .once { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.price-card ul.plist { margin: 0 0 28px; }
.price-card ul.plist li { font-size: 14.5px; padding-left: 28px; }
.price-card ul.plist li::before { content: '✓'; color: var(--good); font-weight: 700; font-size: 13px; }
.price-card .btn { width: 100%; margin-bottom: 10px; }
.price-card .subnote { font-size: 12.5px; color: var(--text-lo); text-align: center; }
.compare { margin-top: 24px; font-size: 13px; color: var(--text-lo); border-top: 1px solid var(--stroke); padding-top: 20px; line-height: 1.7; }
.compare .mono { color: var(--text-mid); }
.compare .win { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--stroke); padding: 54px 0 66px; color: var(--text-lo); font-size: 14px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: center; }
.foot-brand { display: flex; align-items: center; gap: 11px; color: var(--text-hi); font-family: var(--font-display); font-weight: 700; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { color: var(--text-lo); font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; transition: color .18s; }
.foot-links a:hover { color: var(--accent); }
.foot-legal { margin-top: 28px; font-size: 12px; color: var(--text-xlo); max-width: 76ch; line-height: 1.6; }

/* ── Platzhalter-Marker ─────────────────────────────────────────────────── */
.ph { outline: 1px dashed var(--accent); outline-offset: -1px; position: relative; }
.ph::after { content: attr(data-ph); position: absolute; top: 10px; left: 10px; z-index: 9; font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; background: var(--accent); color: #140c02; padding: 4px 8px; border-radius: 3px; font-weight: 600; }
/* Hero-Platzhalter: Marker aus dem Titelbereich raus (unter den oberen Balken, rechts). */
.hero-stage.ph { outline: none; }
.hero-stage.ph::after { top: calc(var(--bar) + 44px); left: auto; right: var(--gutter); z-index: 6; opacity: .82; }
@media (max-width: 700px) { .hero-stage.ph::after { top: calc(var(--bar) + 8px); right: 10px; } }

/* ── Reveal-on-scroll (mit Versatz) ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .demo-cursor, .scan-line, .p-btn.pulse, .hud .rec-dot, .rcard .rscan { animation: none !important; }
  .hero-stage .ba-after { transition: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .sec-index { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   HYBRID — heller Mittelteil (Wow-Hero dunkel → zugänglicher Beweis-Teil hell)
   Isolierter Zusatz: überschreibt nur innerhalb .light, lässt Dark unberührt.
   ════════════════════════════════════════════════════════════════════════ */
:root {
  --bg-light-0: #f4f1ea;   /* warmes Papier */
  --bg-light-1: #ebe6db;   /* Karten/Tint auf hell */
  --bg-light-2: #e2dccf;
  --stroke-light: #dad4c6;
  --stroke-light-hi: #c8c1b0;
  --text-light-hi: #17171a;
  --text-light-mid: #55535a;
  --text-light-lo: #86838c;
  --accent-ink: #a86a16;   /* tiefes Amber — lesbar auf Papier */
}

.light { background: var(--bg-light-0); color: var(--text-light-mid); }
.light h1, .light h2, .light h3, .light h4 { color: var(--text-light-hi); }
.light h2 .serif { color: var(--accent-ink); }
.light .lead { color: var(--text-light-mid); }
.light strong { color: var(--text-light-hi); }
.light em { color: inherit; }
.light .sec-index { color: var(--text-light-hi); opacity: .05; }
.light .eyebrow { color: var(--accent-ink); }
.light .eyebrow::before { background: var(--accent-ink); }
.light .meta { color: var(--text-light-lo); }
.light .meta .amber { color: var(--accent-ink); }
.light .punch { color: var(--text-light-hi); }
.light .punch .serif { color: var(--accent-ink); }

/* Editorial / Moat auf hell */
.light .stat .n { color: var(--accent-ink); }
.light .stat .l { color: var(--text-light-lo); }
.light .night-fig { border-color: var(--stroke-light-hi); }
.light details.proof { background: var(--bg-light-1); border-color: var(--stroke-light); }
.light details.proof > summary { color: var(--text-light-mid); }
.light details.proof .proof-body p { color: var(--text-light-mid); }
.light details.proof .proof-body .mono { color: var(--accent-ink); }

/* Filmstreifen auf hell */
.light .filmstrip-outer { background: var(--bg-light-1); border-color: var(--stroke-light); }
.light .filmstrip-outer::before, .light .filmstrip-outer::after {
  background-image: radial-gradient(circle at 12px 50%, var(--bg-light-0) 3.5px, transparent 4px);
}
.light .strip-fade.l { background: linear-gradient(90deg, var(--bg-light-1), transparent); }
.light .strip-fade.r { background: linear-gradient(270deg, var(--bg-light-1), transparent); }
.light .sw { color: var(--text-light-mid); }
.light .sw b { color: var(--text-light-hi); }

/* Features auf hell */
.light .feat-grid { background: var(--stroke-light); border-color: var(--stroke-light); }
.light .feat-card { background: var(--bg-light-1); }
.light .feat-card h3 { color: var(--accent-ink); }
.light .feat-card li { color: var(--text-light-mid); }

/* FAQ auf hell */
.light .faq details { border-color: var(--stroke-light); }
.light .faq summary { color: var(--text-light-hi); }
.light .faq .a { color: var(--text-light-mid); }
.light .faq .a .mono { color: var(--text-light-hi); }

/* Monitore/Demos bleiben BEWUSST dunkel auf hell (wirken wie echte Screens) —
   nur der innere demo3-wrap-Untergrund bekommt einen hellen Rahmen-Ausgleich */
.light .demo3-wrap { border-radius: 8px; }

/* ── „Deine Kamera"-Strip (dunkle Brücke direkt unter dem Hero) ──────────── */
.camstrip { background: var(--bg-1); border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); padding: clamp(38px, 6vh, 64px) 0; }
.camstrip .cs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 24px; }
.camstrip h2 { font-size: clamp(24px, 3.4vw, 40px); letter-spacing: -.03em; }
.camstrip h2 .serif { color: var(--accent-hi); }
.camstrip .cs-sub { font-size: 14px; color: var(--text-lo); max-width: 40ch; line-height: 1.5; }
.cs-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cs-chip { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--text-hi); background: var(--bg-2); border: 1px solid var(--stroke); border-radius: 4px; padding: 9px 13px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.cs-chip .n { font-size: 9.5px; color: var(--text-lo); letter-spacing: .06em; text-transform: uppercase; }
.cs-chip.hot { border-color: var(--accent); color: var(--accent-hi); background: var(--accent-dim); }
.cs-chip.hot .n { color: var(--accent); }
.cs-chip.more { color: var(--text-lo); }

/* ── Hero-Kompatibilitätszeile (löst Resolve-Studio/macOS-Einwand sofort) ── */
.hero-compat { margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--text-mid); display: flex; flex-wrap: wrap; gap: 8px 14px; text-shadow: 0 1px 12px rgba(0,0,0,.7); }
.hero-compat span { display: inline-flex; align-items: center; gap: 8px; }
.hero-compat span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* ── Preis-Card: Unsigned-Hinweis + Trust-Signale ───────────────────────── */
.unsigned-note { font-size: 12px; color: var(--text-lo); line-height: 1.5; margin: 4px 0 14px; }
.trust-row { display: flex; flex-direction: column; gap: 7px; padding: 15px 0 4px; border-top: 1px solid var(--stroke); margin-bottom: 8px; }
.trust-row .tr-secure { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-mid); }
.trust-row .tr-secure svg { color: var(--good); flex: none; }
.trust-row .tr-pay { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .07em; color: var(--text-lo); }

/* ── Mobile: Hero-Slider-Interaktivität andeuten (Drag-Hint ist mobil aus) ── */
@keyframes handleHint { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.16); } }
@media (max-width: 700px) {
  .hero-handle::after { animation: handleHint 1.7s var(--ease) 3; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-handle::after { animation: none !important; }
}

/* ── Mid-Page-CTA (nach den 46 Looks) ───────────────────────────────────── */
.mid-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; margin-top: clamp(40px, 6vh, 68px); }
.mid-cta span { font-size: 13px; color: var(--text-light-lo); font-family: var(--font-mono); letter-spacing: .03em; }

/* ════════════════════════════════════════════════════════════════════════
   EN RELAUNCH — additions for new sections & elements
   ════════════════════════════════════════════════════════════════════════ */

/* Hero kicker (film-title-card lead line above H1) */
.hero-kicker { font-family: var(--font-mono); font-size: clamp(12px, 1.5vw, 14px); letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin: 0 0 20px; text-shadow: 0 1px 14px rgba(0,0,0,.7); display: inline-flex; align-items: center; gap: 12px; }
.hero-kicker::before { content: ''; width: 30px; height: 1px; background: var(--accent); opacity: .7; }

/* ── Auto-Rescue proof block (night-stays-night + clip matching) ─────────── */
.rescue-proof { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-top: clamp(48px, 7vh, 88px); }
@media (max-width: 900px) { .rescue-proof { grid-template-columns: 1fr; gap: 32px; } }
.rescue-proof .rp-copy h3 { font-size: clamp(24px, 3.2vw, 40px); line-height: 1.04; letter-spacing: -.035em; margin: 8px 0 18px; }
.rescue-proof .rp-copy h3 .serif { color: var(--accent-hi); }
.rescue-proof .rp-copy .lead { color: var(--text-mid); }

/* ── AI scene-masks visual ──────────────────────────────────────────────── */
.mask-stage { aspect-ratio: 16/9; }
.mask-stage img { opacity: 1; }
.mask-region { position: absolute; z-index: 4; border: 1.5px dashed; border-radius: 6px; pointer-events: none; mix-blend-mode: screen; }
.mask-region .mask-tag { position: absolute; top: -1px; left: -1px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; padding: 3px 6px; border-radius: 4px 0 6px 0; color: #0a0a0b; font-weight: 600; }
.mask-region.sky  { inset: 6% 6% 58% 6%;  border-color: #6fb7ff; background: rgba(111,183,255,.14); }
.mask-region.sky .mask-tag  { background: #6fb7ff; }
.mask-region.skin { top: 40%; left: 38%; width: 24%; height: 46%; border-color: #ffb27a; background: rgba(255,178,122,.16); }
.mask-region.skin .mask-tag { background: #ffb27a; }
.mask-region.bg   { inset: 44% 6% 6% 66%; border-color: #9a8cff; background: rgba(154,140,255,.13); }
.mask-region.bg .mask-tag   { background: #9a8cff; }
@keyframes maskBreathe { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.mask-region { animation: maskBreathe 4s var(--ease) infinite; }
.mask-region.skin { animation-delay: .6s; }
.mask-region.bg { animation-delay: 1.2s; }
@media (prefers-reduced-motion: reduce) { .mask-region { animation: none !important; opacity: .85; } }
.mask-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 16px; }
.mask-meta .mm { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--text-light-mid); letter-spacing: .02em; }
.mask-meta .mm-dot { width: 9px; height: 9px; border-radius: 2px; flex: none; }
.mask-meta .mm-dot.sky  { background: #6fb7ff; }
.mask-meta .mm-dot.skin { background: #ffb27a; }
.mask-meta .mm-dot.bg   { background: #9a8cff; }

/* ── Coming-free roadmap cards ──────────────────────────────────────────── */
.feat-card.soon h3 { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.soon-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); border: 1px solid var(--stroke-light-hi); background: var(--bg-light-0); padding: 3px 7px; border-radius: 3px; font-weight: 600; }
.light .feat-card.soon { position: relative; }
.light .feat-card.soon::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent 0 11px, rgba(168,106,22,.04) 11px 12px); pointer-events: none; }

/* ── Social-proof grid ──────────────────────────────────────────────────── */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; max-width: 420px; } }
.proof-cell { margin: 0; border: 1px solid var(--stroke-light); border-radius: 6px; overflow: hidden; background: var(--bg-light-1); }
.proof-cell img { width: 100%; aspect-ratio: 9/12; object-fit: cover; display: block; }
.proof-cell figcaption { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-top: 1px solid var(--stroke-light); }
.proof-cell .pc-handle { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-light-hi); }
.proof-cell .pc-cam { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--text-light-lo); }

/* ── Price: scarcity line ───────────────────────────────────────────────── */
.price-card .scarcity { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(232,169,76,.28); border-radius: 4px; padding: 8px 11px; margin: 0 0 20px; }

/* ── Final CTA ──────────────────────────────────────────────────────────── */
.final-cta-wrap { text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta-wrap h2 { font-size: clamp(32px, 5.4vw, 66px); line-height: 1.02; letter-spacing: -.035em; margin: 10px 0 20px; }
.final-cta-wrap h2 .serif { color: var(--accent-ink); }
.final-cta-wrap .lead { margin: 0 auto 30px; }
.final-cta-wrap .hero-ctas { justify-content: center; }

/* Placeholder marker: also works on dark demo-stages inside .light sections */
.demo-stage.ph::after { top: 10px; left: 10px; }
