/* ============================================================
   BETTERWEBINARS — Premium Dark Landing Page
   Design-System: Tokens für Farbe, Typo, Spacing, Radius, Motion
   Brand: Black / White / Accent #FF6041
   ============================================================ */

:root {
  /* Farbe — reduzierte Palette + 1 Akzent */
  --bg: #050506;
  --bg-elev: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f7;
  --muted: #a1a1a8;
  --muted-2: #6e6e73;
  --accent: #ff6041;
  --accent-soft: rgba(255, 96, 65, 0.12);
  --accent-glow: rgba(255, 96, 65, 0.35);
  --green: #30d158;

  /* Typo */
  --font-sans: "Instrument Sans", -apple-system, "Helvetica Neue", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-brand: "Michroma", sans-serif;

  /* Radius — einheitlich */
  --radius: 20px;
  --radius-sm: 12px;

  /* Spacing (8px-Basis) */
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-6: 48px;
  --s-8: 64px;
  --s-12: 96px;
  --s-16: 128px;

  /* Motion — eine Sprache */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-micro: 0.26s;
  --dur-reveal: 0.7s;

  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0a0a0a; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---------- Light-Sektionen (Stripe-Rhythmus: dunkel ↔ weiß) ---------- */
.light {
  --bg: #f6f6f4;
  --bg-elev: #ffffff;
  --surface: rgba(0, 0, 0, 0.028);
  --surface-strong: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --text: #0a0a0c;
  --muted: #55555c;
  --muted-2: #8a8a90;
  background: var(--bg);
  color: var(--text);
}
.light .founder-photo .frame { box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.25); }
.light .testi-card:hover { box-shadow: 0 20px 60px -24px rgba(0, 0, 0, 0.16); }

/* Dunkle Chips bleiben in beiden Welten dunkel (Kontrast-Anker) */
.testi-stat .big { color: #f5f5f7; }
.testi-stat .small, .founder-chip .small { color: #a1a1a8; }

/* ---------- Scroll-Progress ---------- */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 200;
  pointer-events: none;
}

/* ---------- Word-Marquee (Porsche-Style Laufschrift) ---------- */
.word-marquee {
  overflow: hidden;
  padding: clamp(36px, 5vw, 64px) 0;
  background: var(--bg);
  position: relative;
}
.word-marquee .track {
  display: flex;
  align-items: baseline;
  gap: clamp(32px, 4vw, 64px);
  width: max-content;
  animation: scroll 36s linear infinite;
  padding-right: clamp(32px, 4vw, 64px);
}
.word-marquee span {
  font-weight: 700;
  font-size: clamp(52px, 8vw, 120px);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
}
.word-marquee span.fill { color: rgba(255, 255, 255, 0.07); -webkit-text-stroke: 0; }
.word-marquee span.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  -webkit-text-stroke: 0;
  opacity: 0.85;
}

/* ---------- Dot-Pattern (ganze Seite, subtil) ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 20%, black 30%, transparent 85%);
}

/* ---------- Floating Orbs ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 96, 65, 0.13), transparent 70%);
  top: 6%;
  left: -8%;
  animation: drift 16s ease-in-out infinite alternate;
}
.orb-2 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  bottom: 2%;
  right: -6%;
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(50px, -36px, 0) scale(1.1); }
}

/* ---------- Grain overlay (sehr subtil) ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typografie ---------- */

/* Eyebrow: kursive Serif als editorialer Akzent */
.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 26px);
  letter-spacing: 0;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* Label: kleines, gesperrtes Sans-Caps-System (ersetzt Michroma überall außer Logo) */
.logos-label,
.compare-row.head > div,
.bento-num,
.finale-cta .scarcity,
.faq-q .idx,
.footer h4,
.live-badge,
.hero-pill {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

/* Serif-Italic-Akzent in Headlines — sparsamer Premium-Moment */
h1 .accent, h2 .accent, h3 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.display-xl {
  font-size: clamp(38px, 5.6vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(30px, 4.2vw, 56px);
  letter-spacing: -0.03em;
}

.display-md {
  font-size: clamp(25px, 3vw, 36px);
}

.accent { color: var(--accent); }

.section-sub {
  color: var(--muted);
  font-size: clamp(16.5px, 1.5vw, 19px);
  max-width: 58ch;
  margin-top: var(--s-3);
  line-height: 1.75;
  font-weight: 400;
}

section { padding: clamp(var(--s-12), 10vw, var(--s-16)) 0; position: relative; }

.section-head { margin-bottom: clamp(var(--s-6), 6vw, 80px); }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-micro) var(--ease), box-shadow var(--dur-micro) var(--ease), background var(--dur-micro) var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 6px 24px -10px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px -10px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: var(--surface-strong); transform: translateY(-1px); }
.btn .arrow { transition: transform var(--dur-micro) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }

/* Pulse-Ring um Haupt-CTAs (Radar-Effekt) */
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  opacity: 0;
  transform: scale(0.94);
  animation: pulsate 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulsate {
  0% { transform: scale(0.94); opacity: 0; }
  35% { opacity: 0.85; }
  100% { transform: scale(1.16); opacity: 0; }
}

/* Text-Slide beim Hover (Label rollt hoch, Duplikat rollt rein) */
.btn-label {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.btn-label span {
  display: block;
  transition: transform 0.4s var(--ease);
}
.btn-label span.clone {
  position: absolute;
  inset: 0;
  transform: translateY(115%);
}
.btn:hover .btn-label span:first-child { transform: translateY(-115%); }
.btn:hover .btn-label span.clone { transform: translateY(0); }

/* Sticky-CTA (Mobile, erscheint nach dem Hero) */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.sticky-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta .btn {
  width: 100%;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.7), 0 6px 24px -10px var(--accent-glow);
}
@media (max-width: 860px) { .sticky-cta { display: block; } }

.cta-note {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s-3);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.cta-note span { display: inline-flex; align-items: center; gap: 7px; }
.cta-note svg { color: var(--green); flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.brand {
  font-family: var(--font-brand);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--text);
  white-space: nowrap;
}
.nav-links { display: flex; gap: var(--s-4); align-items: center; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur-micro) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 10px 22px; font-size: 14px; }
.nav-burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 70px) 0 var(--s-8);
  position: relative;
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-bg .glow-main {
  position: absolute;
  top: -32%;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 900px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 96, 65, 0.16), rgba(255, 96, 65, 0.04) 45%, transparent 70%);
  animation: pulse 10s ease-in-out infinite alternate;
}
.hero-bg .glow-side {
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 800px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 96, 65, 0.06), transparent 65%);
  animation: pulseSide 13s ease-in-out infinite alternate-reverse;
}
.hero-bg .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 20%, transparent 75%);
}
@keyframes pulse {
  from { opacity: 0.7; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.06); }
}
@keyframes pulseSide {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-content { text-align: center; position: relative; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: var(--s-4);
}
.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 { margin-bottom: var(--s-4); }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line[data-reveal] { transform: none; }
.hero h1 .line .inner {
  display: block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.hero h1 .line.in-view .inner { transform: none; }

.hero-sub {
  font-size: clamp(17.5px, 1.9vw, 21px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto var(--s-6);
  line-height: 1.7;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

.hero-trust {
  margin-top: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  flex-wrap: wrap;
}
.stars { display: flex; gap: 2px; color: var(--accent); }

/* Avatar-Stack (Social Proof) */
.avatar-stack { display: flex; align-items: center; padding-left: 10px; }
.avatar-stack img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--bg-elev);
}
.trust-line { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.trust-line .stars svg { width: 13px; height: 13px; }

/* Hero-Panel */
.hero-visual {
  margin-top: clamp(var(--s-8), 8vw, var(--s-12));
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
@media (hover: hover) {
  .hero-panel { transition: transform 0.35s ease-out; will-change: transform; }
}
.hero-panel {
  position: relative;
  width: min(860px, 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(20px);
  padding: clamp(28px, 4vw, var(--s-6));
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
  gap: 12px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(255, 96, 65, 0.25);
}
.live-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.6s ease-in-out infinite;
}
.panel-title { font-size: 14px; color: var(--muted); font-weight: 500; }
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.panel-stat {
  padding: var(--s-3) 20px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  text-align: left;
}
.panel-stat .num {
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.panel-stat .num em { font-style: normal; color: var(--accent); }
.panel-stat .lbl { color: var(--muted); font-size: 13.5px; margin-top: 10px; font-weight: 400; }
.panel-bars {
  margin-top: var(--s-4);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
}
.panel-bars span {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 96, 65, 0.22));
  opacity: 0.8;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1s var(--ease);
}
.hero-panel.in-view .panel-bars span { transform: scaleY(1); }

/* ---------- Logo-Marquee ---------- */
.logos { padding: 70px 0 90px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-elev); }
.logos-label {
  text-align: center;
  font-size: 11px;
  color: var(--muted-2);
  margin-bottom: var(--s-6);
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(56px, 7vw, var(--s-12));
  width: max-content;
  animation: scroll 42s linear infinite;
  padding-right: clamp(56px, 7vw, var(--s-12));
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity var(--dur-micro) var(--ease);
}
.marquee-track img:hover { opacity: 0.9; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Stats-Band ---------- */
.stats-band .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell {
  background: var(--bg);
  padding: clamp(36px, 4.5vw, var(--s-8)) 28px;
  text-align: center;
  position: relative;
  transition: background 0.4s var(--ease);
}
.stat-cell:hover { background: var(--bg-elev); }
.stat-cell .num {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
}
.stat-cell .num .suffix, .stat-cell .num .prefix { color: var(--accent); }
.stat-cell .lbl { margin-top: 14px; color: var(--muted); font-size: 14.5px; font-weight: 400; }

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
}
.aud-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-4) 28px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease);
}
.aud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 96, 65, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.aud-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.aud-card:hover::before { opacity: 1; }
.aud-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--s-3);
  border: 1px solid rgba(255, 96, 65, 0.2);
}
.aud-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -0.02em; }
.aud-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.premium-note {
  margin-top: var(--s-6);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 96, 65, 0.25);
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 96, 65, 0.02));
  padding: clamp(var(--s-4), 4vw, var(--s-6));
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.premium-note .icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.premium-note h3 { font-size: 21px; margin-bottom: 8px; }
.premium-note p { color: var(--muted); max-width: 68ch; }
.premium-note strong { color: var(--text); font-weight: 600; }

/* ---------- Vergleich ---------- */
.compare { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare-table {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
  background: var(--bg);
}
.compare-table .inner { min-width: 0; }
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-micro) var(--ease);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:not(.head):hover { background: rgba(255, 255, 255, 0.015); }
.compare-row > div {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
}
.compare-row .feat { flex-direction: column; align-items: flex-start; gap: 4px; }
.compare-row .feat b { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.compare-row .feat span { color: var(--muted-2); font-size: 13.5px; }
.compare-row .col-normal { color: var(--muted); justify-content: center; text-align: center; }
.compare-row .col-bw {
  justify-content: center;
  text-align: center;
  background: rgba(255, 96, 65, 0.04);
  border-left: 1px solid rgba(255, 96, 65, 0.2);
  font-weight: 500;
}
.compare-row.head { background: var(--bg-elev); }
.compare-row.head > div {
  font-size: 10.5px;
  color: var(--muted);
  padding: 24px 28px;
}
.compare-row.head .col-bw { color: var(--accent); background: rgba(255, 96, 65, 0.07); }
.x-mark { color: var(--muted-2); }
.check-mark { color: var(--accent); }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.tag-dim { background: rgba(255, 255, 255, 0.06); color: var(--muted); }
.tag-hot { background: var(--accent); color: #0a0a0a; }

/* ---------- System-Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2);
}
.bento-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(var(--s-4), 4vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease);
}
.bento-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.bento-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 96, 65, 0.08), transparent 65%);
  top: -140px;
  right: -140px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.bento-card:hover::after { opacity: 1; }
.bento-num {
  font-size: 11px;
  color: var(--accent);
  margin-bottom: var(--s-3);
  display: block;
}
.bento-card h3 { font-size: clamp(21px, 2.3vw, 26px); margin-bottom: 12px; letter-spacing: -0.02em; }
.bento-card p { color: var(--muted); font-size: 16px; max-width: 52ch; }

/* ---------- Founder ---------- */
.founder-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--s-6), 6vw, 90px);
  align-items: center;
}
.founder-photo { position: relative; }
.founder-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 96, 65, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.9);
}
.founder-photo img {
  width: 100%;
  transform: scale(1.1);
  transition: transform 1.4s var(--ease);
}
.founder-photo[data-reveal].in-view img { transform: scale(1); }
.founder-photo:hover img { transform: scale(1.04); transition-duration: 0.6s; }
.founder-chip {
  animation: floaty 7s ease-in-out infinite alternate;
  position: absolute;
  bottom: 26px;
  right: -18px;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 15px 22px;
  text-align: center;
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.85);
}
.founder-chip .big {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.founder-chip .small {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
}
.founder-info h2 { margin-bottom: 6px; }
.founder-role { color: var(--muted); font-weight: 500; font-size: 16px; margin-bottom: var(--s-4); }
.founder-quote {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  margin-bottom: var(--s-4);
}
.founder-list { display: grid; gap: 14px; }
.founder-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 16px;
}
.founder-list li strong { color: var(--text); font-weight: 600; }
.founder-list .tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.results { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; gap: var(--s-3); }
.testi-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: clamp(28px, 3.6vw, 44px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(28px, 4vw, var(--s-6));
  align-items: center;
  transition: transform var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease);
}
.testi-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.testi-photo { position: relative; }
.testi-photo .img-frame {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.testi-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.2s var(--ease);
}
[data-reveal].in-view .testi-photo img { transform: scale(1); }
.testi-card:hover .testi-photo img { transform: scale(1.06); transition-duration: 0.5s; }
.testi-stat {
  animation: floaty 6s ease-in-out infinite alternate;
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 16px 44px -10px rgba(0, 0, 0, 0.9);
}
.testi-stat .big {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.testi-stat .small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-top: 5px;
}
.testi-body .quote-mark { color: var(--accent); opacity: 0.8; margin-bottom: 14px; }
.testi-body blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.testi-person .name { font-weight: 600; font-size: 17px; }
.testi-person .role { color: var(--muted); font-size: 14.5px; margin-top: 3px; }
.testi-badge {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 96, 65, 0.24);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.testi-card:nth-child(even) { direction: rtl; }
.testi-card:nth-child(even) > * { direction: ltr; }
.testi-card:nth-child(even) .testi-stat { right: auto; left: -14px; }

/* ---------- Garantie + Finale ---------- */
.finale { overflow: clip; position: relative; }
.finale .glow {
  position: absolute;
  left: 50%;
  bottom: -45%;
  transform: translateX(-50%);
  width: 1200px;
  height: 800px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 96, 65, 0.14), transparent 65%);
  pointer-events: none;
}
.guarantee {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 96, 65, 0.26);
  background: linear-gradient(135deg, rgba(255, 96, 65, 0.08), rgba(255, 96, 65, 0.015));
  padding: clamp(var(--s-4), 4.6vw, 56px);
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: clamp(70px, 8vw, 110px);
}
.guarantee .shield {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 36px -10px var(--accent-glow);
}
.guarantee h3 { font-size: clamp(20px, 2.3vw, 25px); margin-bottom: 12px; }
.guarantee p { color: var(--muted); font-size: 17px; max-width: 68ch; }
.guarantee strong { color: var(--text); font-weight: 600; }
.guarantee .highlight { color: var(--accent); font-weight: 600; }

.finale-cta { text-align: center; }
.finale-cta .scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  color: var(--accent);
  border: 1px solid rgba(255, 96, 65, 0.3);
  background: var(--accent-soft);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: var(--s-4);
}
.finale-cta h2 { margin-bottom: var(--s-3); }
.finale-cta .section-sub { margin: 0 auto var(--s-6); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur-micro) var(--ease), background var(--dur-micro) var(--ease);
}
.faq-item.open { border-color: rgba(255, 96, 65, 0.3); background: var(--surface-strong); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-q .idx {
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  letter-spacing: 0.08em;
}
.faq-q .chev {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.4s var(--ease), color var(--dur-micro) var(--ease);
}
.faq-item.open .chev { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p {
  padding: 0 26px 24px 74px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 72ch;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
  background: var(--bg-elev);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: 56px;
}
.footer .brand { font-size: 13px; margin-bottom: 18px; display: inline-block; }
.footer-desc { color: var(--muted); font-size: 15px; max-width: 42ch; }
.footer h4 {
  font-size: 10.5px;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  transition: color var(--dur-micro) var(--ease);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 13.5px;
}
.footer-bottom .trust { display: flex; gap: 20px; }

@keyframes floaty {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

/* Finale Trust-Zeile */
.finale-trust {
  margin-top: var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  flex-wrap: wrap;
}

/* ---------- Reveal (eine Motion-Sprache: Fade + 24px Lift) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-chip { right: 10px; }
  .testi-card { grid-template-columns: 1fr; }
  .testi-photo { max-width: 260px; }
  .testi-card:nth-child(even) { direction: ltr; }
  .testi-card:nth-child(even) .testi-stat { left: auto; right: -8px; }
  .testi-stat { right: -8px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .compare-row { grid-template-columns: 1.2fr 0.9fr 1fr; min-width: 560px; }
  .compare-row > div { padding: 18px 14px; font-size: 14px; }
  .compare-row.head > div { padding: 20px 14px; font-size: 9.5px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand { font-size: 11px; letter-spacing: 0.1em; }
  .nav .btn { padding: 9px 16px; font-size: 12.5px; }
  .nav-inner { gap: 12px; }
  .audience-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .panel-stats { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; }
  .premium-note { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; }
  .stats-band .grid { grid-template-columns: repeat(2, 1fr); }
  .faq-a p { padding-left: 26px; }
}
