/* ═══════════════════════════════════════════════════════════════
   HANDWERKERFEE v2 — Cinematic Dark
   Warmes Schwarz, glühendes Kupfer, Fee-Funken.
   Clash Display / Switzer (Fontshare).
   ═══════════════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@500,600,700&f[]=switzer@400,500,600&display=swap');

:root {
  /* Nacht-Werkstatt */
  --void:      #0B0806;
  --coal:      #131009;
  --card:      #191309;
  --card-2:    #1F1810;
  --cream:     #F6EEDF;
  --muted:     #AA9A85;
  --faint:     #6E6252;
  --copper:    #E8722A;
  --ember:     #FFA45C;
  --gold:      #E3B341;
  --mint:      #7FBF7A;
  --line:      rgba(246, 238, 223, 0.09);
  --line-soft: rgba(246, 238, 223, 0.06);

  --font-display: 'Clash Display', 'Arial Narrow', sans-serif;
  --font-body:    'Switzer', system-ui, sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --r-shell: 26px;
  --r-core: 19px;

  --glow-copper: 0 0 60px -12px rgba(232, 114, 42, 0.55);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--copper); color: var(--void); }

/* ── Film-Grain ────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typo ──────────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  background: linear-gradient(100deg, var(--copper) 10%, var(--ember) 38%, var(--gold) 62%, var(--copper) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5.5s var(--ease) infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 238, 223, 0.03);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .spark { color: var(--copper); }
.lede {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
}

/* ── Layout ────────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: clamp(100px, 12vw, 180px) 0; position: relative; }
.section-head { max-width: 800px; margin-bottom: clamp(52px, 6vw, 88px); }
.section-head .eyebrow { margin-bottom: 26px; }
.section-head h2 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); margin-bottom: 22px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.on-dark { background: var(--coal); }
.bg-lift {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 114, 42, 0.06) 0%, transparent 60%),
    var(--coal);
}

/* ── Shell + Core (Double-Bezel, dunkel) ───────────────────── */
.shell {
  background: rgba(246, 238, 223, 0.035);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shell);
  padding: 7px;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), border-color 0.7s var(--ease);
}
.core {
  position: relative;
  background: linear-gradient(160deg, var(--card-2) 0%, var(--card) 55%, #150F08 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-core);
  box-shadow: inset 0 1px 0 rgba(246, 238, 223, 0.07), 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  height: 100%;
  overflow: hidden;
}
.shell:hover { transform: translateY(-6px); border-color: rgba(232, 114, 42, 0.25); }
.shell:hover .core { box-shadow: inset 0 1px 0 rgba(246, 238, 223, 0.07), 0 40px 90px -30px rgba(0, 0, 0, 0.9), var(--glow-copper); }

/* Tilt (JS setzt --rx/--ry) */
.tilt { transform-style: preserve-3d; }
.tilt .core { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.35s var(--ease-out); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--void);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  box-shadow: 0 14px 34px -14px rgba(246, 238, 223, 0.35);
  min-height: 54px;
}
.btn .orb {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 8, 6, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out), background 0.5s var(--ease);
}
.btn .orb svg { width: 15px; height: 15px; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .orb { transform: translate(2px, -2px) scale(1.08); }
.btn:active { transform: scale(0.98); }

.btn-copper {
  background: linear-gradient(120deg, var(--copper) 0%, #D4611C 100%);
  color: #FFF4E8;
  box-shadow: 0 16px 44px -12px rgba(232, 114, 42, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-copper:hover { box-shadow: 0 20px 56px -12px rgba(232, 114, 42, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-copper .orb { background: rgba(255, 244, 232, 0.2); }

.btn-line {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-line .orb { background: rgba(246, 238, 223, 0.08); }
.btn-line:hover { border-color: rgba(246, 238, 223, 0.4); }

.link-quiet {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 1rem;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line);
  transition: text-decoration-color 0.4s var(--ease), color 0.4s var(--ease);
  padding: 10px 4px;
}
.link-quiet:hover { text-decoration-color: var(--copper); color: var(--ember); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid;
}
.badge-live { color: var(--mint); border-color: rgba(127, 191, 122, 0.35); background: rgba(127, 191, 122, 0.08); }
.badge-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); animation: pulse 2.4s infinite; }
.badge-soon { color: var(--ember); border-color: rgba(232, 114, 42, 0.35); background: rgba(232, 114, 42, 0.08); }
.badge-show { color: var(--gold); border-color: rgba(227, 179, 65, 0.35); background: rgba(227, 179, 65, 0.08); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── Nav Island ────────────────────────────────────────────── */
.nav-island {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex; align-items: center; gap: 4px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(19, 14, 9, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -20px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(246, 238, 223, 0.08);
  max-width: calc(100vw - 32px);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  padding: 8px 14px 8px 12px;
  white-space: nowrap;
}
.nav-logo .spark { color: var(--copper); text-shadow: 0 0 14px rgba(232, 114, 42, 0.8); }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--muted);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); background: rgba(246, 238, 223, 0.06); }
.nav-sep { width: 1px; height: 22px; background: var(--line); margin: 0 6px; }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--copper);
  color: #FFF4E8;
  font-size: 0.92rem; font-weight: 600;
  box-shadow: 0 0 24px -6px rgba(232, 114, 42, 0.7);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 34px -6px rgba(232, 114, 42, 0.95); }
.nav-cta:active { transform: scale(0.97); }

/* Burger → X */
.nav-burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.nav-burger span {
  position: absolute;
  left: 13px;
  width: 18px; height: 1.8px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.55s var(--ease);
}
.nav-burger span:nth-child(1) { transform: translateY(-4px); }
.nav-burger span:nth-child(2) { transform: translateY(4px); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(0) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(0) rotate(-45deg); }

/* Overlay-Menü */
.menu-veil {
  position: fixed; inset: 0;
  z-index: 85;
  background: rgba(11, 8, 6, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(28px, 8vw, 64px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
body.menu-open .menu-veil { opacity: 1; visibility: visible; transition-delay: 0s; }
.menu-veil a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 3.4rem);
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 14px;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease), color 0.4s var(--ease);
}
.menu-veil a:hover { color: var(--ember); }
.menu-veil a .badge { transform: translateY(-6px); }
.menu-veil a.menu-small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--muted);
  border-bottom: none;
  padding: 12px 0 4px;
}
body.menu-open .menu-veil a { transform: translateY(0); opacity: 1; }
body.menu-open .menu-veil a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .menu-veil a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .menu-veil a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .menu-veil a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .menu-veil a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .menu-veil a:nth-child(6) { transition-delay: 0.38s; }
body.menu-open { overflow: hidden; }

/* ── Reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 100ms);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── Marquee (Outline-Typo) ────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
  overflow: hidden;
  display: flex;
  user-select: none;
  background: var(--coal);
}
.marquee-track {
  display: flex; flex-shrink: 0;
  gap: 56px;
  padding-right: 56px;
  align-items: center;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 238, 223, 0.28);
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after {
  content: '✦';
  font-size: 0.6em;
  color: var(--copper);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 16px rgba(232, 114, 42, 0.8);
}
@keyframes marquee { to { transform: translateX(-100%); } }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(140px, 14vw, 190px) 0 clamp(70px, 7vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -25%; left: 50%;
  width: 1100px; height: 1100px;
  margin-left: -550px;
  background: radial-gradient(circle at center, rgba(232, 114, 42, 0.16) 0%, rgba(232, 114, 42, 0.05) 38%, transparent 65%);
  pointer-events: none;
  will-change: transform;
}
.hero-floor {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background:
    linear-gradient(to top, var(--void) 0%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(246, 238, 223, 0.035) 79px 80px),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(246, 238, 223, 0.035) 79px 80px);
  transform: perspective(600px) rotateX(58deg);
  transform-origin: bottom;
  pointer-events: none;
  opacity: 0.7;
}
.hero-star {
  position: absolute;
  color: var(--gold);
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(227, 179, 65, 0.9);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8) rotate(0deg); }
  50%      { opacity: 0.9;  transform: scale(1.15) rotate(25deg); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(48px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  margin: 28px 0 30px;
}
.hero .lede { margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 48px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--faint);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 14px; height: 14px; color: var(--copper); }

/* ── HERO-DEMO: Sprachmemo → Angebot, Live-Loop ────────────── */
.demo { position: relative; }
.demo .core { padding: 0; }
.demo-head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 238, 223, 0.02);
}
.demo-mic {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--copper), #C2571A);
  color: #FFF4E8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(232, 114, 42, 0.5);
}
.demo.listening .demo-mic { animation: mic-pulse 1.6s var(--ease) infinite; }
@keyframes mic-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 114, 42, 0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(232, 114, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 114, 42, 0); }
}
.demo-mic svg { width: 19px; height: 19px; }
.demo-meta { flex: 1; min-width: 0; }
.demo-title { font-weight: 600; font-size: 0.95rem; }
.demo-sub { font-size: 0.8rem; color: var(--faint); }
.demo-wave { display: flex; align-items: center; gap: 3px; height: 30px; }
.demo-wave i {
  width: 3px;
  border-radius: 2px;
  background: var(--copper);
  height: calc(6px + var(--h) * 20px);
  opacity: 0.4;
  transform: scaleY(0.4);
  transition: opacity 0.4s;
}
.demo.listening .demo-wave i {
  opacity: 0.9;
  animation: wave 1.1s ease-in-out calc(var(--i) * -0.1s) infinite alternate;
}
@keyframes wave { from { transform: scaleY(1); } to { transform: scaleY(0.3); } }

.demo-body { padding: 24px 26px 26px; }
.demo-spoken {
  min-height: 3.4em;
  font-size: 1.02rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}
.demo-spoken .caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--copper);
  vertical-align: -0.15em;
  margin-left: 2px;
  animation: caret 0.9s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

.demo-doc { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 6px; }
.demo-doc-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0 4px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
}
.demo-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px dashed var(--line-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.demo-row strong { color: var(--cream); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.demo-row.show { opacity: 1; transform: translateY(0); }
.demo-total {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.demo-total.show { opacity: 1; transform: translateY(0); }
.demo-total .sum { color: var(--ember); font-variant-numeric: tabular-nums; }
.demo-stamp {
  position: absolute;
  right: 26px; bottom: 70px;
  padding: 7px 16px;
  border: 2px solid var(--mint);
  border-radius: 8px;
  color: var(--mint);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(11, 8, 6, 0.6);
  opacity: 0;
  transform: rotate(-8deg) scale(1.6);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.demo-stamp.show { opacity: 1; transform: rotate(-6deg) scale(1); }
.demo-timer {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--faint);
}
.demo-timer b { color: var(--ember); font-variant-numeric: tabular-nums; font-weight: 600; }

/* ── Tagesablauf ───────────────────────────────────────────── */
.day-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: baseline;
  padding: clamp(48px, 5.5vw, 72px) 0;
  border-top: 1px solid var(--line-soft);
}
.day-row:last-of-type { border-bottom: 1px solid var(--line-soft); }
.day-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 10vw, 8.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, var(--cream) 30%, rgba(246, 238, 223, 0.25) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.day-time sub {
  font-size: 0.16em;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  -webkit-text-fill-color: var(--copper);
  vertical-align: baseline;
  margin-left: 12px;
}
.day-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.day-body p { color: var(--muted); max-width: 54ch; margin-bottom: 20px; }
.day-row.flip .day-time { text-align: right; }

/* ── Produkt-Bento ─────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.bento-main { grid-column: span 7; grid-row: span 2; }
.bento-side { grid-column: span 5; }
.bento .core { padding: clamp(30px, 3.6vw, 48px); display: flex; flex-direction: column; }
.bento h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 20px 0 14px;
}
.bento p { color: var(--muted); margin-bottom: 24px; max-width: 48ch; }
.bento-feats { margin: 4px 0 28px; }
.bento-feats li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0;
  font-size: 0.96rem; font-weight: 500;
  color: var(--muted);
}
.bento-feats svg { width: 15px; height: 15px; color: var(--copper); flex-shrink: 0; }
.bento-cta { margin-top: auto; }
.bento-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232, 114, 42, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Stats ─────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat { text-align: center; padding: clamp(34px, 3.6vw, 52px) 20px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 5.4vw, 4.8rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(150deg, var(--cream) 40%, rgba(246, 238, 223, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-num .unit {
  font-size: 0.36em;
  -webkit-text-fill-color: var(--ember);
  margin-left: 5px;
  font-weight: 500;
}
.stat-label { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }

/* ── Features ──────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat .core { padding: clamp(28px, 3vw, 40px); }
.feat-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  background: rgba(232, 114, 42, 0.1);
  border: 1px solid rgba(232, 114, 42, 0.25);
  color: var(--ember);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feat-icon svg { width: 21px; height: 21px; }
.feat h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.feat p { font-size: 0.96rem; color: var(--muted); }

/* ── Schritte ──────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.step {
  padding: 44px 28px 12px 28px;
  border-left: 1px solid var(--line);
}
.step:first-child { border-left: none; padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(120deg, var(--copper), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; }
.step p { font-size: 0.94rem; color: var(--muted); }

/* ── Pricing ───────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price .core { padding: 34px 30px; display: flex; flex-direction: column; }
.price-tier {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-amount .cur { font-size: 0.42em; vertical-align: 0.85em; margin-right: 3px; color: var(--faint); }
.price-amount .per { font-family: var(--font-body); font-size: 0.28em; font-weight: 500; color: var(--faint); letter-spacing: 0; }
.price-desc { margin: 14px 0 24px; font-size: 0.93rem; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-feats { margin-bottom: 32px; flex-grow: 1; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--muted);
}
.price-feats svg { width: 14px; height: 14px; margin-top: 4px; color: var(--copper); flex-shrink: 0; }
.price-feats li.off { color: var(--faint); opacity: 0.6; }
.price-feats li.off svg { color: var(--faint); }
.price .btn { justify-content: center; width: 100%; padding-left: 10px; }
/* Featured: Kupfer-Glut */
.price-hero { border-color: rgba(232, 114, 42, 0.4); background: rgba(232, 114, 42, 0.06); }
.price-hero .core {
  background: linear-gradient(165deg, #241407 0%, #1A0F06 60%, #150C05 100%);
  border-color: rgba(232, 114, 42, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 164, 92, 0.15), 0 30px 80px -25px rgba(232, 114, 42, 0.35);
}
.price-hero .price-tier { color: var(--ember); }
.price-flag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--copper);
  color: #FFF4E8;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: 0 0 20px -4px rgba(232, 114, 42, 0.8);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.faq-q:hover { color: var(--ember); }
.faq-x {
  position: relative;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.faq-x::before, .faq-x::after {
  content: '';
  position: absolute;
  width: 12px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
}
.faq-x::after { transform: rotate(90deg); }
.faq-item.open .faq-x { transform: rotate(45deg); background: var(--copper); border-color: var(--copper); color: #FFF4E8; }
/* max-height statt grid-rows — grid-Trick greift hier nicht */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.faq-a p { padding: 0 46px 28px 4px; color: var(--muted); max-width: 62ch; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── Statband ──────────────────────────────────────────────── */
.statband {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 32px clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.statband .stat { text-align: left; padding: 6px 0; }
.statband .stat-num { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.statband .stat-label { font-size: 0.85rem; margin-top: 5px; color: var(--faint); }
.statband-sep { width: 1px; height: 48px; background: var(--line); }

/* ── Szenarien ─────────────────────────────────────────────── */
.scene { margin-bottom: 26px; }
.scene .core {
  padding: clamp(30px, 3.6vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 44px);
}
.scene-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: rgba(232, 114, 42, 0.1);
  border: 1px solid rgba(232, 114, 42, 0.25);
  color: var(--ember);
  display: flex; align-items: center; justify-content: center;
}
.scene-icon svg { width: 26px; height: 26px; }
.scene h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.015em; margin-bottom: 12px; }
.scene p { color: var(--muted); max-width: 60ch; margin-bottom: 24px; }
.scene-flow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.scene-flow .hop {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted);
  background: rgba(246, 238, 223, 0.03);
}
.scene-flow .hop svg { width: 14px; height: 14px; color: var(--ember); }
.scene-flow .arr { color: var(--faint); }

/* ── Waitlist ──────────────────────────────────────────────── */
.waitlist-core { padding: clamp(40px, 5vw, 64px); text-align: center; }
.waitlist-core h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 16px; }
.waitlist-core > p { color: var(--muted); max-width: 46ch; margin: 0 auto 36px; }
.wl-group {
  display: flex; gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  padding: 7px;
  border-radius: 999px;
  background: rgba(246, 238, 223, 0.04);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wl-group:focus-within { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(232, 114, 42, 0.15), var(--glow-copper); }
.wl-group input {
  flex: 1;
  min-width: 0;
  border: none; background: none; outline: none;
  font: inherit;
  padding: 10px 12px 10px 22px;
  color: var(--cream);
}
.wl-group input::placeholder { color: var(--faint); }
.wl-group .btn { flex-shrink: 0; min-height: 48px; }
.wl-note { margin-top: 18px; font-size: 0.83rem; color: var(--faint); }
.wl-msg { margin-top: 20px; font-weight: 600; }
.wl-msg.ok { color: var(--mint); }
.wl-msg.err { color: var(--ember); }
[hidden] { display: none !important; }

/* ── Footer-CTA + Footer ───────────────────────────────────── */
.cta-final {
  text-align: center;
  padding: clamp(130px, 15vw, 220px) 24px;
  position: relative;
  overflow: hidden;
  background: var(--coal);
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -45%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 750px;
  background: radial-gradient(ellipse at center, rgba(232, 114, 42, 0.22) 0%, transparent 62%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  margin-bottom: 26px;
  position: relative;
}
.cta-final p { color: var(--muted); font-size: 1.15rem; margin-bottom: 48px; position: relative; }
.cta-final .btn { position: relative; }

footer {
  background: #080604;
  color: var(--muted);
  padding: clamp(64px, 8vw, 100px) 0 40px;
  font-size: 0.95rem;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .nav-logo { color: var(--cream); padding: 0; margin-bottom: 14px; font-size: 1.2rem; }
.footer-brand p { max-width: 30ch; line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  transition: color 0.4s var(--ease);
}
.footer-col a:hover { color: var(--ember); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 0.85rem;
  color: var(--faint);
  flex-wrap: wrap; gap: 12px;
}
.footer-base .spark { color: var(--copper); }

/* ── Legal ─────────────────────────────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(150px, 16vw, 200px) 24px 120px; }
.legal h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4.8vw, 3.4rem); letter-spacing: -0.02em; margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal h3 { font-size: 1.08rem; font-weight: 600; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

/* ═══ RESPONSIVE ═══════════════════════════════════════════── */
@media (max-width: 1024px) {
  .bento-main, .bento-side { grid-column: span 12; grid-row: auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step, .step:first-child { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-sep, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-island { gap: 2px; padding: 6px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .day-row { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .day-row.flip .day-time { text-align: left; }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .feat-grid, .price-grid, .steps, .stats-grid { grid-template-columns: 1fr; }
  .scene .core { grid-template-columns: 1fr; }
  .statband { flex-direction: column; align-items: flex-start; }
  .statband-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: space-between; }
  .wl-group { flex-direction: column; border-radius: 24px; }
  .wl-group .btn { justify-content: center; }
  .demo-stamp { right: 18px; bottom: 84px; }
}

/* ═══ REDUCED MOTION ═══════════════════════════════════════── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
  .display em { animation: none; background-position: 50% 0; }
  .demo-row, .demo-total, .demo-stamp { opacity: 1; transform: none; }
  .tilt .core { transform: none !important; }
}
