/* ============================================================
   GUNNARSCHUSTER.COM — 8020-OS-DESIGNSYSTEM (originalgetreu)
   Quelle: 8020-os.com live vermessen am 17.07.2026
   Weißer Sticky-Header · dunkler Grid-Hero #080809 · Rot #ff0033
   Inter (Body) + Plus Jakarta Sans 800 (Headlines) · Radius 12/16
   Sektions-Rhythmus: dark → white → gray-50 → … → gray-900 Footer
   ============================================================ */

:root {
  --red: #ff0033;
  --red-hover: #e60030;
  --red-soft: #ff5470;          /* Eyebrow auf Dunkel */
  --ink: #09090b;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --dark: #080809;
  --maxw: 1120px;
  --maxw-text: 768px;
  --font-head: "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap      { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-text { max-width: var(--maxw-text); margin: 0 auto; padding: 0 24px; }
.center    { text-align: center; }

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--gray-900); }
h3 { font-size: 19px; }
.eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--red-soft); }
.eyebrow.muted   { color: var(--gray-500); letter-spacing: .08em; }
.lead { font-size: 18px; color: var(--gray-600); line-height: 1.65; }
.hl { color: var(--red); }
.hero-dark .hl { color: #ff5c79; }
.u-red { background: linear-gradient(transparent 68%, rgba(255, 0, 51, .22) 0); }
.small { font-size: 13px; color: var(--gray-500); }

/* ---------- Header (Vorlage: sticky, weiß 90 %, Blur, 65px) ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
header.site .bar {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.logo .mark { background: var(--ink); color: #fff; border-radius: 6px; padding: 2px 7px; font-size: 15px; }
.logo .os { color: var(--red); }
nav.main { display: flex; gap: 28px; align-items: center; }
nav.main a { color: var(--gray-600); text-decoration: none; font-size: 14px; font-weight: 500; }
nav.main a:hover, nav.main a.active { color: var(--ink); }
nav.main .dd { position: relative; }
nav.main .dd > a::after { content: " ▾"; font-size: 11px; }
nav.main .dd-menu {
  display: none; position: absolute; top: 26px; left: -12px; min-width: 230px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08); padding: 8px;
}
nav.main .dd:hover .dd-menu { display: block; }
nav.main .dd-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; }
nav.main .dd-menu a:hover { background: var(--gray-50); }

/* Nav-Button oben rechts: ROT mit weißer Schrift (wie „KOSTENLOSER CHECK" auf gunnarschuster.com) */
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border-radius: 10px; padding: 11px 20px;
  font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 18px -4px rgba(255, 0, 51, .5);
  transition: background .15s ease, transform .12s ease;
}
.btn-nav:hover { background: var(--red-hover); transform: translateY(-1px); }

/* Ghost-Button (Vorlage: Login-Stil) — für sekundäre Stellen */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gray-200); border-radius: 12px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  color: var(--gray-700); text-decoration: none; background: transparent;
  transition: background .15s ease, border-color .15s ease;
}
.btn-ghost:hover { background: var(--gray-50); border-color: #d1d5db; }
.btn-ghost .ico { font-size: 15px; line-height: 1; }

/* ---------- Primär-Button (Vorlage: Rot, Radius 12, Glow, Icons) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 1.2;
  padding: 16px 32px; border-radius: 12px; border: none; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 30px -5px rgba(255, 0, 51, .5);
  transition: background .15s ease, transform .12s ease;
}
.btn:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn .ico { font-size: 17px; line-height: 1; }
.btn-lg { font-size: 18px; font-weight: 800; padding: 20px 32px; border-radius: 16px; font-family: var(--font-head); }
.btn-block { display: flex; width: 100%; }
.cta-sub { margin-top: 12px; font-size: 13px; color: var(--gray-500); }
.cta-sub.on-dark { color: rgba(255,255,255,.55); }

/* Preis-Pill (Vorlage eBook-Seite: durchgestrichen + rote Pille) */
.price-line { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.price-old { color: var(--gray-500); text-decoration: line-through; font-size: 18px; }
.price-pill { background: var(--red); color: #fff; font-weight: 800; font-size: 14px; padding: 6px 14px; border-radius: 999px; }

/* ---------- Sektionen ---------- */
section { padding: 80px 0; }
.sec-gray { background: var(--gray-50); }
.sec-dark { background: var(--gray-900); color: #fff; }
.sec-dark h2 { color: #fff; }
.sec-dark .lead { color: rgba(255,255,255,.7); }

/* ---------- Hero (Vorlage: #080809 + rotes Grid) ---------- */
.hero-dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 80% 0%, rgba(255, 0, 51, .2), transparent 60%),
    radial-gradient(760px 560px at 10% 100%, rgba(255, 0, 51, .1), transparent 60%),
    #0a0a0c;
  color: #fff;
  padding: 72px 0 90px; text-align: center;
}
.hero-dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1.1px, transparent 1.1px);
  background-size: 26px 26px;
}
.hero-dark > * { position: relative; }
.hero-dark h1 { color: #fff; max-width: 880px; margin: 0 auto 24px; }
.hero-dark .lead { color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 32px; }

/* Kreis-Badge (Vorlage: CRM IM KERN) */
.core-badge {
  width: 132px; height: 132px; margin: 56px auto 0; border-radius: 50%;
  background: #0d0d10; border: 1px solid rgba(255,255,255,.14);
  outline: 2px dashed rgba(255,255,255,.22); outline-offset: 6px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.core-badge .t1 { font-family: var(--font-head); font-weight: 800; font-size: 20px; }
.core-badge .t1 span { color: var(--red); }
.core-badge .t2 { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Dunkle Karten unterm Hero (Vorlage: VERKÄUFER 01–04 · 24/7) */
.dark-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 780px; margin: 34px auto 0; text-align: left; }
.dark-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 18px 20px 34px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.dark-card .lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; }
.dark-card .lbl b { display: block; color: rgba(255,255,255,.92); font-size: 13px; letter-spacing: .06em; margin-top: 5px; }
.dark-card .chip {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--red-soft); border: 1px solid rgba(255,0,51,.35); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.hero-note { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.55); }

/* ---------- Karten hell ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 44px; text-align: left; }
.card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 26px;
}
.card h3 { margin-bottom: 8px; color: var(--gray-900); }
.card p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }
.card .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 10px; display: block; }
.card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; background: var(--gray-900); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 17px; margin-bottom: 14px;
}
.card.locked { background: var(--gray-50); }
.card.locked .lock { color: var(--gray-500); font-size: 14px; font-weight: 600; }
.more { color: var(--red); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }
.more:hover { text-decoration: underline; }

/* Vorher/Nachher-Vergleich (Vorlage: VORHER vs MIT 80/20 OS) */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; text-align: left; }
.comp-box { border-radius: 16px; padding: 28px; }
.comp-box.before { background: var(--gray-50); border: 1px solid var(--gray-200); }
.comp-box.after  { background: var(--gray-900); color: #fff; }
.comp-box .tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; display: block; }
.comp-box.before .tag { color: var(--gray-500); }
.comp-box.after  .tag { color: var(--red-soft); }
.comp-box ul { list-style: none; }
.comp-box li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; }
.comp-box.before li { color: var(--gray-600); }
.comp-box.before li::before { content: "✕"; position: absolute; left: 0; color: #b91c1c; font-weight: 700; }
.comp-box.after li { color: rgba(255,255,255,.85); }
.comp-box.after li::before { content: "✓"; position: absolute; left: 0; color: var(--red-soft); font-weight: 700; }
.comp-box .note { margin-top: 16px; font-size: 13px; }
.comp-box.before .note { color: var(--gray-500); }
.comp-box.after .note { color: rgba(255,255,255,.6); }

/* ---------- Beweis-Leiste ---------- */
.proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 56px; margin-top: 40px; }
.proof .num { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.proof .lbl { font-size: 13px; color: var(--gray-500); }
.hero-dark .proof .num { color: #fff; }
.hero-dark .proof .lbl { color: rgba(255,255,255,.55); }

.press { border-bottom: 1px solid var(--gray-100); padding: 22px 0; background: #fff; }
.press .row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 40px; }
.press .lbl { width: 100%; text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gray-500); font-weight: 700; margin-bottom: 4px; }
.press .logo-txt { font-weight: 700; font-size: 14px; color: #b3b8c2; letter-spacing: .05em; white-space: nowrap; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 44px; text-align: left; }
.quote { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 26px; }
.quote .stars { color: var(--red); letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.quote .h { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--gray-900); }
.quote p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.quote .who { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gray-900); }

/* ---------- FAQ ---------- */
.faq { max-width: var(--maxw-text); margin: 40px auto 0; text-align: left; }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; padding: 18px 34px 18px 0; list-style: none; position: relative; color: var(--gray-900); }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 13px; font-size: 24px; color: var(--red); font-weight: 300; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 20px; color: var(--gray-600); font-size: 15px; line-height: 1.65; }

/* ---------- Countdown (Funnel, Vorlage VSL: rote Flip-Kacheln) ---------- */
.countdown { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 26px 0 10px; }
.cd-sep { color: #9ca3af; font-size: 22px; font-weight: 700; }
.cd-tile { background: var(--red); color: #fff; border-radius: 10px; min-width: 64px; padding: 10px 8px 7px; text-align: center; }
.cd-tile .val { font-size: 26px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-tile .unit { font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; opacity: .92; margin-top: 5px; }
.cd-label { text-align: center; font-size: 15px; color: var(--gray-500); }

/* ---------- Video (Funnel) ---------- */
.vsl-stage { max-width: 860px; margin: 26px auto 0; }
.video-frame {
  position: relative; aspect-ratio: 16/9; background: #000; border-radius: 14px;
  overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}
.play-btn {
  width: 78px; height: 78px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(255,0,51,.2), 0 8px 22px rgba(0,0,0,.5);
  transition: transform .15s ease;
}
.video-frame:hover .play-btn { transform: scale(1.05); }
.play-btn::after { content: ""; margin-left: 6px; border-left: 27px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; }
.vsl-note { text-align: center; margin-top: 14px; font-size: 15px; color: var(--gray-600); }
#buy-area { display: none; text-align: center; margin-top: 22px; }
#buy-area.visible { display: block; animation: fadeup .5s ease; }
@keyframes fadeup { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Formulare (Funnel) ---------- */
.optin-form { max-width: 480px; margin: 28px auto 0; display: grid; gap: 12px; }
.optin-form input {
  font-family: inherit; font-size: 16px; padding: 15px 16px;
  border: 1px solid var(--gray-200); border-radius: 12px; width: 100%;
}
.optin-form input:focus { outline: none; border-color: var(--ink); }
.legal-line { font-size: 12px; color: var(--gray-500); margin-top: 10px; }

.steps-v { max-width: 540px; margin: 32px auto 0; text-align: left; display: grid; gap: 18px; }
.steps-v .s { display: flex; gap: 16px; align-items: flex-start; }
.steps-v .n { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 10px; background: var(--gray-900); color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); }
.steps-v p { font-size: 15px; color: var(--gray-600); }
.steps-v b { color: var(--ink); }

/* ---------- Opt-in-LP-Komponenten (Vorlage: live vsl-100kmitki) ---------- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255, 0, 51, .5); border-radius: 999px;
  padding: 8px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red-soft);
}
.mega-title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(44px, 6.5vw, 72px); line-height: 1;
  background: linear-gradient(to right, #ff0033, #ff5c79);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 22px 0 26px;
}
.cta-label { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.sec-white .cta-label, .on-light.cta-label { color: var(--gray-500); }
.btn-xl {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 24px 40px; border-radius: 16px; text-decoration: none;
  font-family: var(--font-head); font-size: 21px; font-weight: 800;
  box-shadow: 0 22px 60px -14px rgba(255, 0, 51, .65);
  transition: background .15s ease, transform .12s ease;
}
.btn-xl:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-xl .main { display: inline-flex; align-items: center; gap: 10px; }
.btn-xl .sub { font-family: var(--font-body); font-size: 13px; font-weight: 600; opacity: .92; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-top: 18px; font-size: 13px; font-weight: 600; }
.hero-dark .trust-row { color: rgba(255,255,255,.65); }
.trust-row .ok::before { content: "✓ "; color: var(--red-soft); }

/* Zitat-Block (Vorlage: rundes Foto + fettes Zitat) */
.quote-block { display: grid; grid-template-columns: 130px 1fr; gap: 34px; align-items: center; max-width: 760px; margin: 0 auto; text-align: left; }
.quote-block .avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255,0,51,.25); }
.quote-block .q { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--gray-900); margin-bottom: 12px; }
.quote-block p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }
.quote-block .sig { margin-top: 12px; color: var(--red); font-style: italic; font-weight: 700; font-size: 14px; }

/* 3-Kacheln-Reihe (Dein Wissen → KI-Methode → Vermögenswert) */
.tri { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; max-width: 860px; margin: 40px auto 0; }
.tri .t { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px 20px; }
.tri .t h4 { font-family: var(--font-head); font-weight: 800; font-size: 17px; margin-bottom: 8px; color: var(--gray-900); }
.tri .t p { font-size: 14px; color: var(--gray-600); }

/* Zwei-Schritt-Optin: Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 8, 9, .7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  max-width: 460px; width: 100%; text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.modal .close { position: absolute; top: 12px; right: 16px; border: none; background: none; font-size: 26px; color: var(--gray-500); cursor: pointer; }
.modal h3 { font-size: 22px; margin-bottom: 6px; }
.modal p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }

/* Hero-Wege-Karten: stärker abgehoben */
.dark-card { position: relative; overflow: hidden; transition: border-color .15s ease, transform .15s ease; }
.dark-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.dark-card .wnum {
  font-family: var(--font-head); font-weight: 800; font-size: 30px; color: rgba(255,255,255,.14);
  position: absolute; right: 16px; bottom: 6px;
}
.dark-card:hover { border-color: rgba(255,0,51,.45); transform: translateY(-2px); }

/* ---------- Heller Seiten-Hero (Salespages/Funnel, Vorlage eBook-LP) ---------- */
.hero-light { padding: 72px 0 56px; }
.hero-light h1 { color: var(--ink); }
ul.checks { list-style: none; margin: 24px auto 0; max-width: 560px; text-align: left; }
ul.checks li { padding: 8px 0 8px 34px; position: relative; font-size: 16px; color: var(--gray-600); }
ul.checks li b { color: var(--ink); }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red); color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Sticky-Seiten-Tab (Vorlage: rechts, rot, vertikal) ---------- */
.side-tab {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 90;
  writing-mode: vertical-rl; text-orientation: mixed;
  background: var(--red); color: #fff; text-decoration: none;
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; letter-spacing: .02em;
  padding: 14px 10px 14px 12px; border-radius: 12px 0 0 12px;
  box-shadow: -6px 10px 30px rgba(255, 0, 51, .35);
}
.side-tab:hover { background: var(--red-hover); }

/* ---------- Über / Timeline ---------- */
.bio { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start; margin-top: 44px; text-align: left; }
.bio .photo { aspect-ratio: 3/4; background: var(--gray-100); border: 1px dashed var(--gray-200); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 13px; text-align: center; padding: 12px; }
.timeline { margin: 44px auto 0; max-width: var(--maxw-text); text-align: left; }
.timeline .t { display: flex; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--gray-200); }
.timeline .yr { flex: 0 0 88px; font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 16px; }
.timeline p { font-size: 15px; color: var(--gray-600); }
.timeline b { color: var(--gray-900); }

/* ---------- Footer (Vorlage: gray-900) ---------- */
footer.site { background: var(--gray-900); color: rgba(255,255,255,.6); padding: 48px 0; }
footer.site .cols { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; text-align: center; }
footer.site nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin-bottom: 22px; }
footer.site nav a { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; text-decoration: none; }
footer.site nav a:hover { color: #fff; }
footer.site .risk { max-width: 720px; margin: 0 auto; font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.45); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  section { padding: 56px 0; }
  nav.main { display: none; }
  header.site .bar { padding: 0 14px; }
  .logo { font-size: 15px; gap: 6px; }
  .logo .mark { display: none; }
  .btn-nav { font-size: 11px; padding: 9px 12px; white-space: nowrap; }
  .dark-cards { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; }
  .bio .photo { max-width: 240px; }
  .btn-lg { width: 100%; }
  .side-tab { font-size: 13px; padding: 12px 8px 12px 10px; }
}
