/* ==========================================================================
   Hoppr — hoppr.life
   Design-Tokens gespiegelt aus der App (lib/core/theme/app_theme.dart)
   ========================================================================== */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'DSEG7';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dseg7-digits.woff2') format('woff2');
}

:root {
  --gold: #FFBE2E;
  --gold-bright: #FFD300;
  --orange: #FF8F00;
  --fire: #FF6F00;
  --ember: #E64A19;

  --bg: #000000;
  --surface: #0F0F0F;
  --card: #1A1A1A;
  --elevated: #1C1C1E;
  --card-hi: #2C2C2E;

  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, .72);
  --muted: #8E8E93;

  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --gold-border: rgba(255, 190, 46, .25);
  --gold-glow: rgba(255, 190, 46, .3);

  --grad-gold: linear-gradient(135deg, #FFBE2E 0%, #FF8F00 100%);
  --grad-gold-full: linear-gradient(135deg, #FFBE2E 0%, #FF6F00 100%);
  --grad-text: linear-gradient(120deg, #FFD874 0%, #FFBE2E 38%, #FF8F00 100%);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-display: 'Space Grotesk', 'SF Pro Display', -apple-system, sans-serif;
  --font-body: 'Manrope', 'SF Pro Text', -apple-system, system-ui, sans-serif;
  --font-digit: 'DSEG7', 'Space Grotesk', monospace;

  --nav-h: 72px;
  --ease: cubic-bezier(.22, .61, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .44, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 160;
  background: var(--grad-gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: page-progress linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes page-progress { to { transform: scaleX(1); } }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* Dezente Scrollbar im App-Look */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #2C2C2E; border-radius: 5px; border: 2px solid #050505; }
::-webkit-scrollbar-thumb:hover { background: #3A3A3C; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
}

.section { padding-block: clamp(88px, 11vw, 152px); position: relative; }

.grad-text {
  background: linear-gradient(110deg, #FFD874 0%, #FFBE2E 30%, #FF8F00 50%, #FFBE2E 70%, #FFD874 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 7s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.section-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h2 { font-size: clamp(2.125rem, 4.6vw, 3.375rem); }
h3 { font-size: 1.375rem; letter-spacing: -.015em; line-height: 1.25; }

.lead {
  margin-top: 20px;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--text-2);
  max-width: 60ch;
}
.section-head.center .lead { margin-inline: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

/* Buttons: Gold-Gradient wie App-Login und Logo */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9875rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .15s var(--ease), filter .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:active { transform: scale(.98); }

.btn-gold {
  background: linear-gradient(115deg, #FFCF57 0%, #FFBE2E 42%, #FF8F00 100%);
  color: #000;
  box-shadow: 0 3px 14px rgba(255, 143, 0, .22);
}
.btn-gold:hover { filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: rgba(255, 190, 46, .06);
}

.btn svg { width: 20px; height: 20px; flex: none; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav.scrolled {
  background: rgba(0, 0, 0, .55);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.nav-inner {
  width: min(100% - 48px, 1160px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.02em;
  color: var(--gold);
}
.brand img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9375rem;
}
.nav-links a {
  color: var(--text-2);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: .9375rem; border-radius: 10px; }

.lang-switch {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s var(--ease);
}
.lang-switch:hover { color: var(--gold); }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: background-color .2s;
}
.nav-burger span::before, .nav-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: calc(var(--nav-h) + 32px) 32px 40px;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: .05s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: .1s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: .15s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: .2s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: .25s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: .3s; }
.mobile-menu a.menu-cta {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--ease) .35s, transform .4s var(--ease) .35s;
  border-bottom: 0;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  color: #000;
  padding: 16px 24px;
  justify-content: center;
}
body.menu-open .mobile-menu .menu-cta { opacity: 1; transform: none; }

/* ==========================================================================
   Atmosphäre: Noise, Flutlicht, Glow
   ========================================================================== */

.noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { background-position: 0 0; }
  100% { background-position: 160px 96px; }
}

/* Goldstaub im Flutlicht */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-atmo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Flutlicht-Kegel: weich maskiert, damit die Element-Ränder unsichtbar bleiben */
.floodlight {
  position: absolute;
  top: -12%;
  width: 68%;
  aspect-ratio: 1 / 1.15;
  opacity: 0;
  animation:
    flood-on 2.2s var(--ease) .35s forwards,
    flood-breathe 9s ease-in-out 3s infinite alternate;
  filter: blur(32px);
  mask-image: radial-gradient(110% 105% at 50% 0%, #000 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(110% 105% at 50% 0%, #000 30%, transparent 72%);
}
@keyframes flood-breathe {
  from { opacity: 1; }
  to   { opacity: .68; }
}
.floodlight.left {
  left: -18%;
  background: conic-gradient(from 128deg at 50% 0%, transparent 0deg, rgba(255, 214, 130, .10) 14deg, rgba(255, 190, 46, .05) 26deg, transparent 40deg);
}
.floodlight.right {
  right: -18%;
  background: conic-gradient(from 196deg at 50% 0%, transparent 0deg, rgba(255, 214, 130, .10) 14deg, rgba(255, 190, 46, .05) 26deg, transparent 40deg);
}
@keyframes flood-on { to { opacity: 1; } }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.glow-hero {
  width: 560px; height: 560px;
  right: -6%;
  top: 16%;
  background: radial-gradient(circle, rgba(255, 143, 0, .22) 0%, rgba(255, 190, 46, .08) 45%, transparent 70%);
  animation: glow-pulse 8s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  from { opacity: .75; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1.06); }
}
.glow-cta {
  width: 640px; height: 480px;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 143, 0, .16) 0%, transparent 65%);
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero-stage {
  position: relative;
  height: 240vh;
  view-timeline: --herostage block;
}
.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + clamp(24px, 5vh, 72px));
  padding-bottom: 40px;
  overflow: hidden;
}

/* Foto-Hintergrund mit FIFA-07-Farbstimmung (entsättigt, warmes Sepia-Grau) */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.42) sepia(.5) saturate(.75) hue-rotate(-6deg) brightness(.72) contrast(1.06);
}
.hero-bg-b { opacity: 0; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .35) 46%, rgba(0, 0, 0, .25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .32) 34%, rgba(0, 0, 0, .45) 72%, #000 100%);
}


/* Fallback: ohne Scroll-Timeline oder mit Reduced Motion kein Pinning */
@supports not (animation-timeline: view()) {
  .hero-stage { height: auto; }
  .hero { position: relative; height: auto; min-height: clamp(640px, 100svh, 1060px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage { height: auto; }
  .hero { position: relative; height: auto; min-height: clamp(640px, 100svh, 1060px); }
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-copy .eyebrow { margin-bottom: 26px; }

.hero h1 {
  font-size: clamp(2.875rem, 7vw, 5.375rem);
  letter-spacing: -.032em;
}

.hero .lead { margin-top: 26px; font-size: clamp(1.125rem, 1.8vw, 1.3125rem); max-width: 54ch; }

.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
}
.hero-note svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* Staggered Hero-Intro (einmalig, dann 0% CPU) */
.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s var(--ease) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: .1s; }
.hero-copy > *:nth-child(2) { animation-delay: .22s; }
.hero-copy > *:nth-child(3) { animation-delay: .34s; }
.hero-copy > *:nth-child(4) { animation-delay: .46s; }
.hero-copy > *:nth-child(5) { animation-delay: .58s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ==========================================================================
   Phone-Mockups
   ========================================================================== */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone-float {
  opacity: 0;
  animation: phone-in 1.2s var(--ease) .5s forwards;
  will-change: transform;
}
@keyframes phone-in {
  from { opacity: 0; transform: translateY(48px) rotateY(-9deg) rotateX(4deg); }
  to   { opacity: 1; transform: translateY(0)    rotateY(-9deg) rotateX(4deg); }
}
.phone-float { transform: rotateY(-9deg) rotateX(4deg); }

.phone {
  position: relative;
  width: clamp(270px, 24vw, 320px);
  aspect-ratio: 1179 / 2556;
  border-radius: 52px;
  background: linear-gradient(160deg, #3a3a3c, #101012 55%, #2c2c2e);
  padding: 10px;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, .85),
    0 30px 60px -20px rgba(255, 143, 0, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.phone::after {
  /* Glas-Reflexion */
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 43px;
  background: linear-gradient(118deg, rgba(255, 255, 255, .07) 0%, transparent 24%);
  pointer-events: none;
  z-index: 5;
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 43px;
  background: #0A0A0A;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-island {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 28%;
  aspect-ratio: 88 / 26;
  border-radius: 999px;
  background: #000;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

/* Echter App-Screenshot als Screen-Inhalt */
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Galerie: Ein Blick in die App */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  align-items: end;
  justify-items: center;
}
.gallery-grid .phone { width: clamp(200px, 17vw, 250px); }
.gallery-grid .phone.lead { width: clamp(230px, 20vw, 290px); }

@media (max-width: 720px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-inline: -24px;
    padding: 8px 24px 28px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-grid .phone, .gallery-grid .phone.lead {
    width: 236px;
    flex: none;
    scroll-snap-align: center;
  }
  .gallery-grid .onboard-step { flex: none; scroll-snap-align: center; }
  .gallery-grid .onboard-step .phone { width: 236px; }
}

/* Onboarding-Schritte (nutzt das Galerie-Grid) */
.onboard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.onboard-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(255, 143, 0, .35);
}
.onboard-step figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9875rem;
  color: var(--text-2);
  text-align: center;
  max-width: 26ch;
}
.onboard-step figcaption b { color: var(--text); }

/* ==========================================================================
   Ticker / Marquee
   ========================================================================== */

.ticker {
  position: relative;
  border-block: 1px solid var(--border);
  background: #050505;
  overflow: hidden;
  padding-block: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-item i {
  font-style: normal;
  color: var(--gold);
  font-size: .6875rem;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ==========================================================================
   Scoreboard-Stats
   ========================================================================== */

.stats {
  background: linear-gradient(180deg, #060606, #000);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  text-align: center;
  padding: clamp(10px, 2vw, 20px);
}
.stat-digit {
  position: relative;
  display: inline-block;
  font-family: var(--font-digit);
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 190, 46, .4);
  line-height: 1;
  animation: led-glow 4.5s ease-in-out infinite alternate;
}
@keyframes led-glow {
  from { text-shadow: 0 0 14px rgba(255, 190, 46, .3); }
  to   { text-shadow: 0 0 30px rgba(255, 190, 46, .6); }
}
.stat-digit .ghost {
  position: absolute;
  inset: 0;
  color: rgba(255, 190, 46, .09);
  text-shadow: none;
  z-index: -1;
}
.stat-digit sup {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .55em;
  vertical-align: top;
  margin-left: 2px;
}
.stat-label {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Feature-Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.feature-card.usp {
  grid-column: span 2;
  background:
    radial-gradient(480px circle at 14% -10%, rgba(255, 190, 46, .11), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}
@property --spin { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.feature-card.usp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--spin),
    transparent 0deg 250deg,
    rgba(255, 190, 46, .55) 300deg,
    rgba(255, 143, 0, .25) 330deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: border-spin 7s linear infinite;
  pointer-events: none;
}
@keyframes border-spin { to { --spin: 360deg; } }

/* Mini-Illustrationen in den USP-Karten */
.usp-art {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.usp-art svg.usp-arrow { width: 22px; height: 22px; color: var(--gold); flex: none; }
.csv-stack { display: grid; gap: 6px; min-width: 0; }
.csv-chip {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .6875rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.usp-logo { height: 42px; width: auto; flex: none; }
.sum-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--gold);
  background: rgba(255, 190, 46, .1);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 9px 14px;
  white-space: nowrap;
  flex: none;
}
.split-row { display: flex; gap: 8px; flex-wrap: wrap; }
.split-p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: .6875rem;
  font-weight: 700;
  color: #000;
  background: var(--grad-gold);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
}
.split-p i {
  font-style: normal;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .8);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: .5625rem;
}

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 190, 46, .09), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 190, 46, .06);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: rgba(255, 190, 46, .1);
  border: 1px solid var(--gold-border);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 0 24px -6px var(--gold-glow);
}
.feature-icon svg { width: 25px; height: 25px; color: var(--gold); }

.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-2); font-size: .9875rem; }
.feature-card .soon {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 190, 46, .12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ==========================================================================
   Showcases (Text + Phone im Wechsel)
   ========================================================================== */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}
.showcase + .showcase { margin-top: clamp(96px, 12vw, 160px); }
.showcase.flip .showcase-visual { order: -1; }

.showcase-copy .eyebrow { margin-bottom: 20px; }
.showcase-copy h2 { max-width: 15ch; }
.showcase-copy .lead { margin-top: 18px; }

.showcase-list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}
.showcase-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--text-2);
  font-size: 1rem;
}
.showcase-list li svg {
  width: 22px; height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--gold);
}
.showcase-list li b { color: var(--text); font-weight: 700; }

.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.showcase-visual .phone { width: clamp(260px, 22vw, 300px); }
.showcase-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 143, 0, .10) 0%, transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}

/* ==========================================================================
   Import-Band
   ========================================================================== */

.import-band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(600px circle at 12% -20%, rgba(255, 190, 46, .1), transparent 50%),
    linear-gradient(165deg, #141414, #0B0B0B);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
}
.import-band h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
.import-band .lead { margin-top: 14px; font-size: 1.0625rem; }

.import-steps { display: grid; gap: 14px; }
.import-step {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .035);
  padding: 16px 20px;
}
.import-step .num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9375rem;
  display: grid;
  place-items: center;
}
.import-step p { font-size: .9375rem; color: var(--text-2); }
.import-step p b { color: var(--text); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item[open] { border-color: var(--gold-border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), background-color .35s var(--ease), border-color .35s var(--ease);
}
.faq-item summary .chev svg { width: 14px; height: 14px; }
.faq-item[open] summary .chev {
  transform: rotate(45deg);
  background: rgba(255, 190, 46, .12);
  border-color: var(--gold-border);
  color: var(--gold);
}
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--text-2);
  font-size: .9875rem;
  max-width: 62ch;
}
.faq-item .faq-body a { color: var(--gold); font-weight: 600; }

/* ==========================================================================
   Finale CTA
   ========================================================================== */

.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  left: 50%; top: 42%;
  width: min(120vw, 980px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(from 0deg,
    rgba(255, 190, 46, .055) 0deg 5deg,
    transparent 5deg 13deg);
  mask-image: radial-gradient(circle, #000 0%, rgba(0,0,0,.4) 38%, transparent 64%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, rgba(0,0,0,.4) 38%, transparent 64%);
  animation: sunburst-spin 90s linear infinite;
  pointer-events: none;
}
@keyframes sunburst-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.cta-final .container { position: relative; }
.cta-final img.cta-logo {
  width: clamp(150px, 17vw, 210px);
  margin: 0 auto 24px;
}
.cta-final h2 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); max-width: 18ch; margin-inline: auto; }
.cta-final .lead { margin-inline: auto; }
.cta-final .hero-cta { justify-content: center; }

/* ==========================================================================
   Launch-Warteliste
   ========================================================================== */

.waitlist {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 36px auto 0;
}
.waitlist-input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 190, 46, .16);
}
.waitlist .btn { flex: none; }

.waitlist-msg {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  min-height: 1.4em;
}
.waitlist-msg.ok { color: #34C759; }
.waitlist-msg.err { color: #FF7A6E; }

.waitlist-done {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 16px 26px;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  background: rgba(255, 190, 46, .08);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}
.waitlist-done svg { width: 20px; height: 20px; flex: none; }

.waitlist-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .8125rem;
}
.waitlist-note a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.waitlist-note a:hover { color: var(--gold); }

/* ==========================================================================
   Scroll-Tiefe (CSS Scroll-Driven Animations, compositor-only)
   ========================================================================== */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .showcase-visual .phone {
      animation: phone-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    .showcase.flip .showcase-visual .phone { animation-name: phone-drift-flip; }
    .gallery-grid .phone {
      animation: phone-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 45%;
    }
  }
}
@keyframes phone-drift {
  from { transform: translateY(46px) rotate(1.1deg); }
  to   { transform: translateY(-46px) rotate(-1.1deg); }
}
@keyframes phone-drift-flip {
  from { transform: translateY(46px) rotate(-1.1deg); }
  to   { transform: translateY(-46px) rotate(1.1deg); }
}
@keyframes phone-rise {
  from { transform: translateY(52px); }
  to   { transform: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: #050505;
  padding: 72px 0 0;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: .9375rem;
  max-width: 30ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  color: var(--text-2);
  font-size: .9375rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .8125rem;
}


/* ==========================================================================
   Rechtsseiten (Prose)
   ========================================================================== */

.legal-main {
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 80px));
  padding-bottom: clamp(80px, 10vw, 120px);
}
.prose { max-width: 760px; }
.prose h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 12px;
}
.prose .legal-updated {
  color: var(--muted);
  font-size: .9375rem;
  margin-bottom: 48px;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
}
.prose h3 {
  font-size: 1.125rem;
  margin: 30px 0 10px;
}
.prose p, .prose li { color: var(--text-2); font-size: 1rem; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--gold); font-weight: 600; word-break: break-word; }
.prose a:hover { text-decoration: underline; }
.prose .table-wrap {
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 560px;
}
.prose th, .prose td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.prose th {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
}
.prose tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Scroll-Reveals (einmalig via IntersectionObserver)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; will-change: auto; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .phone-float, .floodlight { animation: none; opacity: 1; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; }
}

@media (max-width: 980px) {
  .hero-stage { height: auto; }
  .hero { position: relative; height: auto; min-height: 100svh; padding-bottom: 64px; }
  .hero-bg-a { object-position: 48% 38%; }
  .hero-cta { max-width: 480px; margin-inline: auto; width: 100%; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta, .hero-note { justify-content: center; }
  .phone-float { animation-name: phone-in-flat; }
  @keyframes phone-in-flat {
    from { opacity: 0; transform: translateY(48px); }
    to   { opacity: 1; transform: none; }
  }
  .phone-float { transform: none; }

  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 20px; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card.usp { grid-column: span 2; }
  .showcase { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .showcase.flip .showcase-visual { order: 0; }
  .showcase-copy h2 { max-width: none; }
  .import-band { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .nav-cta .btn { display: none; }
  .lang-switch { display: none; }
  .features-grid { grid-template-columns: minmax(0, 1fr); }
  .feature-card.usp { grid-column: auto; }
  .hero h1 { font-size: clamp(2.5rem, 11.5vw, 3.25rem); }
  .section { padding-block: 72px; }
  .hero { padding-bottom: 56px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; padding-block: 16px; }
  .hero .lead, .lead { font-size: 1rem; }
  .hero-note { font-size: .8125rem; flex-wrap: wrap; row-gap: 4px; }
  .showcase { gap: 44px; }
  .showcase + .showcase { margin-top: 88px; }
  .ticker { padding-block: 14px; }
  .ticker-item { font-size: .8125rem; gap: 40px; }
  .ticker-item i { font-size: .5625rem; }
  .ticker-track { gap: 40px; }
  .feature-card { padding: 28px 24px; }
  .import-band { gap: 28px; }
  .faq-item summary { padding: 18px 20px; font-size: 1rem; gap: 14px; }
  .faq-item .faq-body { padding: 0 20px 20px; }
  .cta-final .hero-cta { align-items: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 40px, 1160px); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 16px; }
  .stat-digit { font-size: 1.5rem; }
  .stat-label { font-size: .6875rem; letter-spacing: .09em; margin-top: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .waitlist { flex-direction: column; }
  .waitlist .btn { width: 100%; }
  .import-step { padding: 14px 16px; gap: 12px; }
  .onboard-step figcaption { font-size: .875rem; }
}
