/* 2HOT2PAY — Design-Tokens (Bauplan §5.2–5.4). Werte aus platform/app/globals.css. */
:root {
  color-scheme: dark;
  /* Grundfarben, gleiche Namen wie in der App */
  --background: #0a0a0b;
  --foreground: #f5f5f5;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --surface-3: #232327;
  --border: #26262a;
  --border-strong: #34343a;
  --muted: #9a9aa0;
  --muted-2: #6b6b72;
  --pink: #ff2e7e;
  --pink-hover: #ff5c9b;
  --pink-ink: #0a0a0b;
  --pink-soft: rgba(255, 46, 126, .18);
  --pink-line: rgba(255, 46, 126, .5);
  --ok: #3ddc84;
  --danger: #ff6b6b;

  /* Abschnittsbänder — nie reines Schwarz auf großer Fläche */
  --band-night: #111113;
  --band-graphite: #19191c;
  --band-smoke: #222226;
  --band-ember: #1c1217;
  --band-pink: var(--pink);
  --neon-core: #ff7aa9;

  --glow-pink: 0 0 32px rgba(255, 46, 126, .45);

  /* Radien */
  --r-card: 24px;
  --r-panel: 40px;
  --r-pill: 999px;
  --r-phone: 44px;

  /* Abstandsskala, Grundeinheit 4px */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;
  --sp-32: 128px;
  --section-space: clamp(64px, 10vw, 128px);

  /* Inhaltsbreite */
  --content-max: 1280px;
  --content-pad: clamp(20px, 5vw, 64px);

  /* Typografie */
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Hero-Titel (h1): eigener, begrenzter Wert statt der alten 13vw/11rem — die
     füllten bei ≥1354px Breite den Bildschirm und brachen mitten im Wort um
     (Founder-Screenshot ~2000px, 22.09.). --content-max liegt fest bei
     1280px, darüber wächst die Spalte nicht mehr mit — der Wert bleibt daher
     auch bei 2000px im gleichen Bereich wie bei 1440px. */
  --fs-hero-title: clamp(2.5rem, 3.6vw, 3.75rem);
  --fs-display-xl: clamp(3.5rem, 13vw, 11rem);
  --fs-display: clamp(2.75rem, 8vw, 7rem);
  --fs-h2: clamp(2rem, 5vw, 4rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.75rem);
  --fs-lead: clamp(1.125rem, 1.6vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-label: 0.8125rem;
  --fs-stat: clamp(3rem, 9vw, 7.5rem);

  /* Easings — Bauplan A1, aus dem Slush-Quelltext gemessen (S1) */
  --ease-out: cubic-bezier(0.65, 0.05, 0, 1);
  --ease-bounce: linear(
    0, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%,
    1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%,
    1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%,
    1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%,
    1.0011 81.26%, 1
  );
}
