/* =============================================================
   SCALING CIRCLE — Private Mastermind
   styles.css
   -------------------------------------------------------------
   Aufbau:
   1. Design Tokens (Fonts, Spacing, Radien) + 3 Farb-Themes
   2. Reset & Base
   3. Typografie
   4. Layout-Primitives (Container, Eyebrow, Buttons, Placeholder)
   5. Header / Navigation
   6. Hero (+ 3 Layout-Varianten)
   7. Kennzahlen-Band
   8. Positionierung + Hochformat-Video
   9. Vorteile / Format / Events / Hosts / Netzwerk / FAQ
   10. Abschluss-CTA / Footer
   11. Scroll-Reveal + Motion
   12. Preview-Panel (Farbstil & Hero-Layout) — nur zum Vergleichen
   13. Responsive
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Type */
  --font-head: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(5.5rem, 11vh, 10rem);
  --gap: clamp(1rem, 2vw, 1.75rem);
  --container: 1180px;
  --container-narrow: 760px;

  /* Radii / lines */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --border: 1px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* THEME 1 — Anthrazit · Grün (Brief-Default) */
[data-theme="anthracite"] {
  --bg:        #14130E;
  --bg-soft:   #1B1A14;
  --bg-soft-2: #221F18;
  --fg:        #F1EDE1;
  --fg-muted:  #ABA593;
  --fg-dim:    #7E796B;
  --line:        rgba(231, 226, 210, 0.10);
  --line-strong: rgba(231, 226, 210, 0.20);
  --accent:        #7CF59B;
  --accent-contrast: #0E1A12;
  --accent-soft: rgba(124, 245, 155, 0.12);
  --accent-line: rgba(124, 245, 155, 0.45);
  --btn-bg: #F1EDE1;
  --btn-fg: #16140F;
  --wa-bg:  #7CF59B;
  --wa-fg:  #0E1A12;
  --ph-base:   #1E1C15;
  --ph-stripe: rgba(231, 226, 210, 0.055);
  --header-bg: rgba(16, 15, 11, 0.72);
  --glow: rgba(124, 245, 155, 0.10);
  color-scheme: dark;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.55vw + 0.92rem, 1.18rem);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--accent-contrast); }

/* ---------- 3. TYPOGRAFIE ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.accent { color: var(--accent); font-style: italic; }

.display {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.03;
  font-weight: 500;
}
.h-section {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
}
.lead {
  font-size: clamp(1.12rem, 1vw + 0.9rem, 1.4rem);
  color: var(--fg-muted);
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 46ch;
}

/* ---------- 4. LAYOUT-PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Eyebrow label with green marker dot */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex: none;
}
.center .eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-pill);
  border: var(--border) solid transparent;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              border-color 0.35s var(--ease), color 0.35s var(--ease), opacity 0.35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent-line); background: var(--accent-soft); }

/* WhatsApp / Akzent-Conversion-Button */
.btn-wa { background: var(--wa-bg); color: var(--wa-fg); }
.btn-wa:hover { opacity: 0.92; }
.btn-wa svg { width: 1.15em; height: 1.15em; }

/* Text link with animated underline + arrow */
.txt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--fg);
  position: relative;
  white-space: nowrap;
}
.txt-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--accent-line);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.txt-link:hover::after { transform: scaleX(1); }
.txt-link .arrow { transition: transform 0.4s var(--ease); color: var(--accent); }
.txt-link:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.center .cta-row { justify-content: center; }

/* Mini-CTA inside cards */
.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.mini-cta .arrow { color: var(--accent); transition: transform 0.3s var(--ease); }
.mini-cta:hover { color: var(--fg); }
.mini-cta:hover .arrow { transform: translateX(3px); }

/* Image placeholder — getönte Fläche mit feinem Diagonal-Raster + Mono-Label */
.ph {
  position: relative;
  background-color: var(--ph-base);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ph-stripe) 0, var(--ph-stripe) 1px,
    transparent 1px, transparent 11px
  );
  border: var(--border) solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--fg-dim);
  padding: 0.5rem 0.85rem;
  border: var(--border) solid var(--line);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  backdrop-filter: blur(2px);
}

.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 0.55rem;
}
.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }

/* Originallogo (Form & Schrift unverändert). Zwei vorab eingefärbte Varianten,
   per Theme umgeschaltet — rendert zuverlässig in jeder Umgebung. */
.sc-logo {
  display: block;
  height: 50px;
  aspect-ratio: 561 / 540;
  width: auto;
  flex: none;
  background: url(assets/logo-light.png) center / contain no-repeat;
}
.brand-tagline {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 600; line-height: 1.35;
  padding-left: 0.85rem; border-left: 1px solid var(--line-strong);
}
.brand .mark {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
}
.brand .sub {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.brand .mark .dot { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg-muted);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.header-cta .btn { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

/* Mobile menu */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: var(--bg-soft); align-items: center; justify-content: center; transition: border-color 0.3s var(--ease); }
.nav-toggle:hover { border-color: var(--accent-line); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: var(--section-y);
  overflow: hidden;
}
.hero::before {
  /* dezenter warmer Glow hinter dem Hero */
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 80vw; max-width: 1100px; aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 40%, var(--glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: var(--border) solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-soft);
  white-space: nowrap;
}
.hero-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(280px, 360px);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title { margin-top: 1.6rem; font-size: clamp(2.6rem, 5.4vw, 4.5rem); line-height: 1.1; }
.hero-sub { margin-top: clamp(2.25rem, 3.5vw, 3rem); }
.hero-copy .lead { max-width: 44ch; }
.hero-cta { margin-top: 2.1rem; }
.hero-video { display: flex; flex-direction: column; align-items: center; gap: 1rem; justify-self: center; width: 100%; }

.scroll-ind {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  margin-top: 2.5rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-dim);
}
.scroll-ind .track {
  width: 1px; height: 46px;
  background: linear-gradient(var(--accent), transparent);
  position: relative; overflow: hidden;
}
.scroll-ind .track::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--accent);
  animation: scrollDrop 2.4s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(280%); opacity: 0; }
}

/* --- Hero-Layout: Text links, Hochformat-Video rechts --- */
.hero .scroll-ind { margin-top: clamp(3rem, 6vh, 4.5rem); }

/* ---------- 7. KENNZAHLEN-BAND ---------- */
.metrics { padding-block: clamp(2.5rem, 5vh, 4rem); border-block: 1px solid var(--line); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.metric { display: flex; flex-direction: column; gap: 0.4rem; }
.metric .k {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 1.6vw, 1.9rem);
  color: var(--accent);
  font-style: italic;
}
.metric .v { font-size: 1rem; color: var(--fg-muted); line-height: 1.45; max-width: 26ch; }
.metrics-grid .metric + .metric { position: relative; }
@media (min-width: 721px) {
  .metrics-grid .metric:not(:first-child)::before {
    content: ""; position: absolute; left: clamp(-0.75rem, -2vw, -1.5rem); top: 4px; bottom: 4px;
    width: 1px; background: var(--line);
  }
}

/* ---------- 8. POSITIONIERUNG + VIDEO ---------- */
.position-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.position-copy .h-section { margin-top: 1.1rem; }
.position-copy .lead { margin-top: 1.4rem; max-width: 48ch; }

.giver-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.7rem 1.2rem 0.7rem 0.8rem;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  font-family: var(--font-head); font-style: italic; font-size: 1.15rem;
  color: var(--fg);
  white-space: nowrap;
}
.giver-badge .ico {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: var(--accent-contrast);
  display: grid; place-items: center; font-size: 0.9rem; font-style: normal;
  font-family: var(--font-body); font-weight: 700;
}

.tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.tag {
  font-size: 0.85rem; font-weight: 500; color: var(--fg-muted);
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bg-soft);
  white-space: nowrap;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tag:hover { border-color: var(--accent-line); color: var(--fg); transform: translateY(-1px); }
.position-copy .cta-row { margin-top: 2.2rem; }
.position-copy.center { max-width: 760px; margin-inline: auto; }
.position-copy.center .lead { margin-inline: auto; }
.center .tags { justify-content: center; }

/* Video Hochformat 9:16 */
.video-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.video-frame {
  width: min(340px, 78vw);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  padding: 8px;
  background: var(--bg-soft);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.6);
}
.video-frame .inner { width: 100%; height: 100%; border-radius: calc(var(--r-lg) - 8px); overflow: hidden; position: relative; background: var(--ph-base); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-trust { font-size: 0.85rem; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 0.5rem; }
.video-trust::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* Video-Facade: leichter Poster-Button, lädt Vimeo erst beim Klick */
.video-facade { cursor: pointer; font: inherit; color: inherit; }
.video-facade .inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem;
  background: var(--bg-soft-2) url("https://i.vimeocdn.com/video/2161479767-d31ac539eb89efec7e77b6780992e46af55530044e7815c8c3a03a91de002faa-d?f=webp&region=us") center / cover no-repeat;
}
.video-facade .inner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg) 22%, transparent), color-mix(in srgb, var(--bg) 60%, transparent));
}
.vf-play, .vf-label { position: relative; z-index: 1; }
.vf-play {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--accent); color: var(--accent-contrast);
  display: grid; place-items: center;
  box-shadow: 0 14px 36px -10px color-mix(in srgb, var(--accent) 60%, transparent);
  transition: transform 0.4s var(--ease);
}
.vf-play svg { width: 30px; height: 30px; margin-left: 3px; }
.video-facade:hover .vf-play { transform: scale(1.08); }
.vf-label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg); text-shadow: 0 1px 14px rgba(0,0,0,0.55); }

/* ---------- 9. VORTEILE (Karten 2x2) ---------- */
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.section-head .h-section { margin-top: 1rem; }
.section-head .lead { margin-top: 1.2rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 0.9rem;
}
.card:hover { border-color: var(--line-strong); background: var(--bg-soft-2); transform: translateY(-3px); }
.card .idx {
  font-family: var(--font-head); font-style: italic; font-size: 0.95rem; color: var(--accent);
}
.card h3 { font-size: clamp(1.3rem, 1.8vw, 1.65rem); }
.card p { color: var(--fg-muted); font-size: 1rem; }
.card .mini-cta { margin-top: auto; padding-top: 0.5rem; }

/* ---------- FORMAT-TILES ---------- */
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.tile { background: var(--bg-soft); padding: clamp(1.5rem, 2.2vw, 2rem); display: flex; flex-direction: column; gap: 0.6rem; min-height: 170px; transition: background-color 0.4s var(--ease); }
.tile:hover { background: var(--bg-soft-2); }
.tile .t-k { font-family: var(--font-head); font-style: italic; color: var(--accent); font-size: 1.05rem; }
.tile h4 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 600; }
.tile p { font-size: 0.92rem; color: var(--fg-muted); }
.format-cta { margin-top: clamp(2rem, 4vh, 3rem); display: flex; justify-content: center; }

/* ---------- EVENTS ---------- */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.event-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.event-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.event-card .ph { aspect-ratio: 16 / 11; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.event-card .event-photo { aspect-ratio: 16 / 11; width: 100%; object-fit: cover; display: block; border-bottom: 1px solid var(--line); }
.event-body { padding: clamp(1.4rem, 2.2vw, 1.9rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.event-loc { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); font-weight: 600; }
.event-card h3 { font-size: 1.5rem; }
.event-date { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; font-weight: 600; color: var(--fg-muted); }
.event-status {
  align-self: flex-start; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem; border-radius: var(--r-pill);
}
.event-status.upcoming { color: var(--accent-contrast); background: var(--accent); }
.event-status.done { color: var(--fg-dim); border: 1px solid var(--line); }
.event-card p { font-size: 0.96rem; color: var(--fg-muted); }
.event-body .mini-cta, .event-body .event-foot { margin-top: auto; padding-top: 0.4rem; }
.event-foot { font-size: 0.85rem; color: var(--fg-dim); }

/* ---------- HOSTS ---------- */
.hosts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.host {
  display: grid; grid-template-columns: 150px 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); align-items: start;
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--bg-soft);
}
.host .ph { aspect-ratio: 3 / 4; border-radius: var(--r-md); }
.host .host-photo { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; display: block; border-radius: var(--r-md); }
.host .h-name { font-size: 1.5rem; }
.host .h-role { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 0.3rem; font-weight: 600; }
.host .h-bio { margin-top: 0.9rem; color: var(--fg-muted); font-size: 0.96rem; }
.placeholder-note { font-style: italic; color: var(--fg-dim); }

/* ---------- NETZWERK ---------- */
.net-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: clamp(2rem, 4vh, 3rem); }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.8vw, 1.4rem); }
.member {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.2vw, 1.9rem);
  background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 0.7rem; min-height: 200px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.member:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.member .tier {
  align-self: flex-start;
  font-family: var(--font-head); font-style: italic; color: var(--accent);
  font-size: 0.95rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); width: 100%;
}
.member h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.member p { font-size: 0.92rem; color: var(--fg-muted); }
.member.more { align-items: center; justify-content: center; text-align: center; border-style: dashed; color: var(--fg-dim); }
.member.more .tier { border: 0; padding: 0; }
.net-close {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  max-width: 26ch; margin-inline: auto;
  text-wrap: balance;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.3rem, 2.2vw, 1.7rem) 0.25rem;
  text-align: left;
  font-family: var(--font-head); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 500;
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { top: 50%; left: 2px; right: 2px; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 2px; bottom: 2px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 1.5rem; color: var(--fg-muted); max-width: 70ch; font-size: 1.02rem; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- 10. ABSCHLUSS-CTA ---------- */
.final {
  position: relative;
  padding-block: clamp(6rem, 13vh, 11rem);
  overflow: hidden;
}
.final-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url(assets/lagos-gruppe.jpg) center / cover no-repeat;
}
.final-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--bg) 68%, transparent), color-mix(in srgb, var(--bg) 90%, transparent));
}
.final-bg .lbl {
  position: absolute; bottom: 1rem; right: 1.2rem;
  font-family: ui-monospace, Menlo, monospace; font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.final-card {
  position: relative; z-index: 1;
  max-width: 620px; margin-inline: auto; text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3.5rem);
  box-shadow: 0 40px 100px -50px rgba(0,0,0,0.7);
}
.final-card .final-logo { height: 58px; margin: 0 auto 1.5rem; }
.final-card .brand-lockup .dot { color: var(--accent); }
.final-card .h-section { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.final-card p { color: var(--fg-muted); margin-top: 1rem; }
.final-card .cta-row { margin-top: 2rem; justify-content: center; }
.final-card .fine { font-size: 0.86rem; color: var(--fg-dim); margin-top: 1.1rem; }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vh, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }
.footer-brand .sc-logo { height: 54px; }
.footer-brand .mark .dot { color: var(--accent); }
.footer-brand p { color: var(--fg-muted); font-size: 0.95rem; margin-top: 0.9rem; max-width: 34ch; }
.footer-col h5 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--fg-muted); font-size: 0.95rem; padding: 0.3rem 0; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: clamp(2.5rem, 5vh, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: var(--fg-dim); }

/* ---------- LEGAL / PROSE PAGES (agb.html, impressum.html) ---------- */
.legal { padding-top: clamp(7rem, 14vh, 10rem); padding-bottom: var(--section-y); }
.legal .container { max-width: 820px; }
.legal-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.legal-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.legal-head .eyebrow { margin-bottom: 1rem; }
.legal-head .meta { color: var(--fg-dim); font-size: 0.92rem; margin-top: 0.8rem; }
.prose { font-size: 1.02rem; }
.prose h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-top: 2.6rem; margin-bottom: 0.8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.prose h2:first-of-type { border-top: 0; padding-top: 0; }
.prose h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.prose p { color: var(--fg-muted); margin-bottom: 1rem; max-width: 70ch; }
.prose ul { margin: 0 0 1rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.prose li { color: var(--fg-muted); padding-left: 1.4rem; position: relative; max-width: 70ch; }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--fg); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; margin-top: 3rem; }
.back-link .arrow { color: var(--accent); }
.legal-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.5rem;
}
.legal-card .row { display: flex; gap: 0.6rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line); }
.legal-card .row:last-child { border-bottom: 0; }
.legal-card .row .k { color: var(--fg-dim); min-width: 150px; font-size: 0.92rem; }
.legal-card .row .v { color: var(--fg); }

/* ---------- 11. SCROLL-REVEAL + MOTION ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ---------- 12. FINISHING / POLISH ---------- */

/* Feines Filmkorn über der ganzen Seite — warmer, taktiler Premium-Look */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Edler Neon-Glow auf einzelnen Akzentwörtern */
.accent { text-shadow: 0 0 26px color-mix(in srgb, var(--accent) 20%, transparent); }

/* Bild-Veredelung: ruhig & warm getönt, bei Hover lebendig */
.event-photo, .host-photo {
  filter: saturate(0.9) contrast(1.03) brightness(0.97);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}
.event-card:hover .event-photo { filter: none; transform: scale(1.04); }
.host:hover .host-photo { filter: saturate(1) contrast(1) brightness(1); }

/* Benefit-Karten: feine Akzentlinie, die beim Hover einläuft */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.55s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

/* Buttons mit etwas Tiefe; WhatsApp-CTA mit edlem grünem Schimmer */
.btn-primary { box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.7); }
.btn-wa { box-shadow: 0 10px 34px -10px color-mix(in srgb, var(--accent) 50%, transparent); }
.btn-wa:hover { box-shadow: 0 14px 42px -8px color-mix(in srgb, var(--accent) 65%, transparent); }

/* Sanfter Akzent-Halo hinter dem Hero-Video + dezenter Innen-Ring */
.hero-video { position: relative; }
.hero-video::before {
  content: ""; position: absolute; inset: 6% -8%; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 50% at 50% 50%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 72%);
  filter: blur(46px);
}
.video-frame { position: relative; }
.video-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 14%, transparent);
}

/* ---------- 13. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-video { max-width: 360px; margin-inline: auto; }
  .position-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav, .header-cta .btn-text-hide { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    position: fixed; inset: 64px 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  }
  .nav.open a { font-size: 1.15rem; color: var(--fg); }

  .benefit-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .hosts-grid { grid-template-columns: 1fr; }
  .net-head { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 720px) {
  .metrics-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .format-grid { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: 1fr; }
  .host { grid-template-columns: 1fr; }
  .host .ph, .host .host-photo { width: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brand-tagline { display: none; }
}
