/* Baukasten des Verkaufserfolges – Landing Page
   Haus-Design-System nach socialbrands.io / Network Accelerator / kimarkter:
   near-black Flaechenleiter, SF-Pro-Stack mit Regular-Headlines und fetten
   Ink-Ankerwoertern, Geist Mono fuer Labels, ein Akzent (Pietro: Gold). */

@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono-v6-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --font-sans: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Flaechenleiter */
  --paper: #0a0b0d;
  --snow: #0c0e11;
  --mist: #111418;
  --fog: #15191f;
  --hairline: #232830;

  /* Text-Leiter */
  --stone: #6b7482;
  --steel: #9aa4b2;
  --slate: #c3ccd9;
  --ink: #f3f6fa;

  /* Akzent: Gold */
  --gold: #D4AF37;
  --gold-bright: #E8C963;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --gold-glow: rgba(212, 175, 55, 0.35);

  --fs-eyebrow: 0.72rem;
  --fs-small: 0.84rem;

  --r-card: 14px;
  --r-pill: 999px;
  --ease-lift: cubic-bezier(0.16, 1, 0.3, 1);

  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container { width: min(1120px, 100% - 3rem); margin-inline: auto; }
.container.narrow { width: min(760px, 100% - 3rem); }

/* ---------- Headlines: Regular mit fetten Ink-Ankern ---------- */
h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.1;
  color: var(--slate);
  text-wrap: balance;
}
h1 strong, h2 strong, h3 strong, .punch b {
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 1.3rem + 2.9vw, 3.3rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
p, li { text-wrap: pretty; }

/* Sektionskopf: kurze Gold-Rule + zentrierte H2 + Lede */
.header-rule {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--s-9);
}
.header-rule::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 auto var(--s-6);
  background: var(--gold);
}
.header-rule .lede {
  margin-top: var(--s-5);
  font-size: 1.1rem;
  color: var(--steel);
  max-width: 560px;
  margin-inline: auto;
}

.mono-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.punch {
  text-align: center;
  margin-top: var(--s-9);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--slate);
  max-width: 36ch;
  margin-inline: auto;
  text-wrap: balance;
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(5.5rem, 8vw, 8.5rem); }
.section.tint { background: var(--snow); border-block: 1px solid var(--hairline); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: var(--r-pill);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1403;
  box-shadow: 0 10px 30px -8px var(--gold-glow);
  transition: transform 0.3s var(--ease-lift), background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #F0D47A, var(--gold-bright));
  box-shadow: 0 14px 38px -8px var(--gold-glow);
}
.btn .arrow {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26, 20, 3, 0.16);
  font-size: 0.85rem;
}
.cta-note {
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-7) 1.5rem var(--s-9);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(720px 340px at 50% -8%, var(--gold-dim), transparent 70%),
    var(--paper);
}
.topbar {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.logo-mark {
  height: 112px;
  width: auto;
  opacity: 0.95;
}
.offer-logo { height: 88px; margin: 0 auto var(--s-4); display: block; }
.wordmark {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.wordmark b { color: var(--gold); font-weight: 500; }

.hero-inner { max-width: 68rem; margin-inline: auto; }
.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.02));
  margin-bottom: var(--s-6);
}
.hero h1 { margin-bottom: var(--s-5); }
/* Enthueller-Zeile der Reveal-Headline: immer eine eigene, einzeilige Zeile */
.hero h1 .h1-opener { display: block; font-size: 0.78em; margin-bottom: 0.35em; }
.hero-sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--steel);
  max-width: 46rem;
  margin: 0 auto var(--s-7);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; align-items: center; }
.quiz-teaser {
  margin-top: var(--s-4);
  font-size: var(--fs-small);
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.quiz-teaser:hover { color: var(--slate); border-color: var(--stone); }
.hero-results {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-top: var(--s-6);
}
.hr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  background: var(--mist);
  font-size: 0.9rem;
  color: var(--slate);
}
.hr-pill svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.hr-pill b { color: var(--gold-bright); font-weight: 600; }

/* Hero-Media: gerahmte Produkt-Karte statt VSL */
.hero-media {
  max-width: 880px;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--mist);
}
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 42%; }
.hero-media figcaption {
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  border-top: 1px solid var(--hairline);
  text-align: left;
}
.hero-media figcaption b { color: var(--gold); font-weight: 500; }

/* Hero-Load-Choreografie (laeuft immer, nicht scroll-gated) */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero .rise { animation: rise 0.7s var(--ease-lift) both; }
.hero .rise.r1 { animation-delay: 0.05s; }
.hero .rise.r2 { animation-delay: 0.16s; }
.hero .rise.r3 { animation-delay: 0.3s; }
.hero .rise.r4 { animation-delay: 0.45s; }
.hero .rise.r5 { animation-delay: 0.6s; }

/* ---------- Statband ---------- */
.statband-wrap { padding-block: var(--s-8); border-block: 1px solid var(--hairline); background: var(--snow); }
.statband {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6) 0;
  text-align: center;
}
.statband .sv {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.9rem);
  color: var(--ink);
  line-height: 1.05;
}
.statband .sl {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Karten-Basis ---------- */
.card-grid { display: grid; gap: var(--s-5); grid-auto-rows: 1fr; }
.why-card {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-7) var(--s-6);
  transition: transform 0.3s var(--ease-lift), border-color 0.3s ease, background 0.3s ease;
}
.why-card:hover { transform: translateY(-3px); border-color: #2e3540; background: var(--fog); }
.why-card .icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: var(--s-5); }
.why-card .icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.2rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin-bottom: var(--s-3); }
.why-card p { color: var(--steel); font-size: 0.98rem; }

/* ---------- These / Zitat ---------- */
.thesis { text-align: center; }
.thesis blockquote p {
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--slate);
  max-width: 24ch;
  margin-inline: auto;
  text-wrap: balance;
}
.thesis blockquote p b { font-weight: 700; color: var(--ink); }
.thesis cite {
  display: block;
  margin-top: var(--s-6);
  font-style: normal;
}
.thesis-body {
  max-width: 58ch;
  margin: var(--s-7) auto 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--steel);
}

/* ---------- Methode: Media-Karten mit Mono-Nummern ---------- */
.method-grid { grid-template-columns: 1fr; }
.method-card {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-lift), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.method-card:hover { transform: translateY(-3px); border-color: #2e3540; }
.method-media { aspect-ratio: 16 / 10; overflow: hidden; }
.method-media img { width: 100%; height: 100%; object-fit: cover; }
.method-body { padding: var(--s-6); flex: 1; display: flex; flex-direction: column; }
.step-num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: var(--s-4);
}
.method-body h3 { font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: var(--s-3); }
.method-quote { color: var(--slate); font-size: 1rem; margin-bottom: var(--s-3); }
.method-body > p:last-child { color: var(--steel); font-size: 0.95rem; }

/* ---------- Freebie-Stack ---------- */
.stack-list { display: grid; gap: var(--s-5); }
.stack-item {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-7);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.stack-item:hover { border-color: #2e3540; background: var(--fog); }
.stack-head .mono-label { display: block; margin-bottom: var(--s-3); }
.stack-head h3 { font-size: 1.6rem; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.gain-list { list-style: none; margin-top: var(--s-5); }
.gain-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: var(--s-3);
  color: var(--slate);
  font-size: 0.98rem;
}
.gain-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.5em;
  width: 0.75rem;
  height: 0.4rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.stack-outcome {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-weight: 500;
}
.includes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-top: var(--s-7);
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  gap: var(--s-7);
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-7);
}
.founder-photo { border-radius: 10px; overflow: hidden; border: 1px solid var(--hairline); }
.founder-photo img { width: 100%; display: block; }
.founder-body .mono-label { display: inline-flex; margin-bottom: var(--s-4); color: var(--steel); }
.founder-body h3 { font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: var(--s-4); letter-spacing: -0.015em; }
.founder-body p { color: var(--steel); margin-bottom: var(--s-4); }
.founder-body p strong { color: var(--ink); font-weight: 600; }

/* ---------- Stimmen ---------- */
.testimonial-grid { grid-template-columns: 1fr; }
.t-card {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
}
.t-card blockquote { color: var(--slate); font-size: 1rem; flex: 1; }
.t-card figcaption {
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Zwei Wege ---------- */
.aw-grid { display: grid; gap: var(--s-5); }
.aw-col {
  border-radius: var(--r-card);
  padding: var(--s-7);
  border: 1px solid var(--hairline);
  background: var(--snow);
}
.aw-col.pos { background: var(--mist); border-color: rgba(212, 175, 55, 0.3); }
.aw-col .tag {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
  color: var(--stone);
}
.aw-col.pos .tag { color: var(--gold); }
.aw-col ul { list-style: none; }
.aw-col li { position: relative; padding-left: 1.9rem; margin-bottom: var(--s-4); font-size: 0.98rem; }
.aw-col.neg li { color: var(--stone); }
.aw-col.neg li::before { content: "\00d7"; position: absolute; left: 0.15rem; top: -1px; color: var(--stone); font-size: 1.05rem; }
.aw-col.pos li { color: var(--slate); }
.aw-col.pos li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.5em;
  width: 0.75rem;
  height: 0.4rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq-list details { border-top: 1px solid var(--hairline); }
.faq-list details:last-child { border-bottom: 1px solid var(--hairline); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-6) var(--s-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease-lift);
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 var(--s-2) var(--s-6); color: var(--steel); max-width: 62ch; }

/* ---------- Offer / Final ---------- */
.offer {
  background:
    radial-gradient(560px 280px at 50% 0%, var(--gold-dim), transparent 70%),
    var(--mist);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}
.offer .mono-label { display: inline-flex; margin-bottom: var(--s-5); }
.offer h2 { margin-bottom: var(--s-5); }
.offer .lede { color: var(--steel); max-width: 50ch; margin: 0 auto var(--s-7); font-size: 1.08rem; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding-block: var(--s-7);
  font-size: var(--fs-small);
  color: var(--stone);
}
.footer-inner { display: flex; flex-direction: column; gap: var(--s-3); align-items: center; text-align: center; }
.footer a { color: var(--steel); text-decoration: none; margin-inline: 0.6rem; }
.footer a:hover { color: var(--gold); }

/* ---------- Consent ---------- */
.consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  background: var(--fog);
  border-top: 1px solid var(--hairline);
  color: var(--slate);
  padding: var(--s-5);
  z-index: 50;
  font-size: 0.9rem;
}
.consent-banner a { color: var(--gold); }
.consent-actions { margin-top: var(--s-3); display: flex; gap: var(--s-3); }
.consent-btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  cursor: pointer;
}
.consent-btn.accept { background: var(--gold); color: #1a1403; border-color: transparent; }
.consent-btn.decline { background: transparent; color: var(--slate); }

/* ---------- Scroll-Reveals ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-lift), transform 0.7s var(--ease-lift); }
.card-grid .reveal:nth-child(2), .stack-list .reveal:nth-child(2) { transition-delay: 0.08s; }
.card-grid .reveal:nth-child(3), .stack-list .reveal:nth-child(3) { transition-delay: 0.16s; }
.card-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero .rise { opacity: 1; transform: none; transition: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile ---------- */
@media (max-width: 859px) {
  .btn { width: 100%; justify-content: center; }
  h1 { font-size: clamp(1.65rem, 1.15rem + 2.9vw, 2rem); }
  h1 br, .offer h2 br { display: none; }
  /* Lange Reveal-Headlines: eine Stufe kleiner, sonst stehen 11 Zeilen vor dem CTA */
  .hero h1 { font-size: clamp(1.4rem, 1rem + 2.5vw, 1.75rem); line-height: 1.32; }
}

/* ---------- Desktop ---------- */
@media (min-width: 860px) {
  .statband { grid-template-columns: repeat(4, 1fr); }
  .statband .st + .st { border-left: 1px solid var(--hairline); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .aw-grid { grid-template-columns: 1fr 1fr; }
  .founder { grid-template-columns: 0.8fr 1.2fr; }
  .stack-item { display: grid; grid-template-columns: 0.8fr 1.7fr; gap: var(--s-7); align-items: start; }
  .stack-item .gain-list { margin-top: 0; }
  .stack-item .stack-head { position: sticky; top: var(--s-6); }
}

/* ---------- Struktur-Umbau: No-Brainer, Credibility, Videos, Baukasten ---------- */
.stack-pain {
  margin-top: var(--s-3);
  font-size: 0.92rem;
  color: var(--stone);
  font-style: italic;
}
.cred-list { list-style: none; margin-top: var(--s-5); border-top: 1px solid var(--hairline); padding-top: var(--s-5); }
.cred-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: var(--s-3);
  color: var(--steel);
  font-size: 0.98rem;
}
.cred-list li b { color: var(--ink); font-weight: 600; }
.cred-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.5em;
  width: 0.7rem;
  height: 0.38rem;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.diff-body p { color: var(--steel); font-size: 1.1rem; line-height: 1.7; margin-bottom: var(--s-5); }
.diff-body p strong { color: var(--ink); font-weight: 600; }
.diff-verdict {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 1.25rem !important;
  border-left: none;
  text-align: center;
  margin-top: var(--s-6);
}

/* Video-Platzhalter 9:16 */
.video-grid { grid-template-columns: 1fr; max-width: 1000px; margin-inline: auto; }
.vid-card {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-lift), border-color 0.3s ease;
}
.vid-card:hover { transform: translateY(-3px); border-color: #2e3540; }
.vid-frame {
  aspect-ratio: 9 / 16;
  max-height: 460px;
  width: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(60% 40% at 50% 35%, rgba(212, 175, 55, 0.08), transparent 70%),
    var(--snow);
  border-bottom: 1px solid var(--hairline);
}
.vid-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.1);
  position: relative;
}
.vid-play::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 16px solid var(--gold);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.vid-card figcaption { padding: var(--s-4) var(--s-5); }
.vid-card figcaption p { margin-top: var(--s-2); color: var(--stone); font-size: var(--fs-small); }

/* Baukasten-Bereiche */
.area-grid { display: grid; gap: var(--s-5); }
.area-col {
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card);
  padding: var(--s-6);
}
.area-col .mono-label { display: block; margin-bottom: var(--s-4); }
.area-col ul { list-style: none; }
.area-col li {
  padding-block: var(--s-3);
  color: var(--slate);
  font-size: 0.96rem;
  border-top: 1px solid var(--hairline);
}
.area-col li:last-child { border-bottom: 1px solid var(--hairline); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 1rem 1.9rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  color: var(--slate);
  background: var(--mist);
  transition: transform 0.3s var(--ease-lift), border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--ink); }
.btn-ghost .arrow {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 0.85rem;
}

/* Ohne/Mit: Pos-Seite dominant */
.aw-col.pos {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(212, 175, 55, 0.10), transparent 70%),
    var(--mist);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6), 0 0 44px rgba(212, 175, 55, 0.10);
}
.aw-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1403;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: var(--s-5);
}
.aw-col.pos li { color: var(--slate); }
.aw-cta { margin-top: var(--s-5); }
@media (min-width: 860px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .aw-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
