/* ═══════════════════════════════════════════════════════════════════
   CHRONICLE — Landing „Nachtglut"
   Warmes Asphalt-Schwarz, Logo-Feuerverlauf (Gelb → Orange → Ember)
   als einziger Akzent, Lichtspuren wie Langzeitbelichtung,
   Saira Condensed Italic als Logo-Echo, FE-Schrift für Ziffern.
   ═══════════════════════════════════════════════════════════════════ */

/* ── FE-Schrift (Kennzeichen-Font) für Ziffern ─────────────────── */
@font-face {
  font-family: 'FE-Font';
  src: url('../assets/fe.ttf') format('truetype');
  font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────────── */
:root {
  --bg: #0a0806;
  --bg-2: #161009;
  --ink: #f8f4ec;
  --muted: #a89e8f;
  --faint: #6f675b;
  --yellow: #ffd400;
  --amber: #ffa200;
  --orange: #ff6a00;
  --ember: #ff4d00;
  --fire-soft: #ffb866;
  --green: #34d399;
  --blue: #38bdf8;
  --grad-fire: linear-gradient(115deg, var(--yellow), var(--orange) 55%, var(--ember));
  --grad-chrome: linear-gradient(100deg, #fff200, #ffd400 25%, #ff8a00 52%, #ff5400 72%, #ffd400 95%);
  --glass-bg: linear-gradient(160deg, rgba(255, 214, 150, 0.055), rgba(255, 214, 150, 0.012));
  --glass-border: rgba(255, 200, 130, 0.13);
  --glass-highlight: inset 0 1px 0 rgba(255, 230, 180, 0.09);
  --line: rgba(255, 210, 150, 0.09);
  --font: 'Saira', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Barlow Condensed', 'Saira', 'Arial Narrow', sans-serif;
  --font-plate: 'FE-Font', 'Saira', monospace;
  --pad-x: clamp(20px, 6vw, 72px);
  --maxw: 1180px;
  --r-card: 22px;
  --r-ctl: 14px;
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
  --t-fast: 0.2s;
  --t-med: 0.45s;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Korn über allem — Atmosphäre statt glatter Fläche */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  opacity: 0.05;
  transform: translateZ(0);
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--orange); color: #160c02; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2218; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #46362a; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a, button { cursor: pointer; touch-action: manipulation; }
ul, ol { list-style: none; }

/* ── Glut-Hintergrund ──────────────────────────────────────────── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, var(--bg-2), var(--bg) 60%);
}
/* Kein filter:blur — weicher Multi-Stop-Falloff im Gradient selbst,
   GPU hält sonst riesige geblurte Texturen vor. */
.aurora__blob {
  position: absolute;
  width: 68vw;
  height: 68vw;
  min-width: 560px;
  min-height: 560px;
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform;
}
.aurora__blob--red {
  top: -26%;
  right: -16%;
  background: radial-gradient(circle at 42% 42%,
    rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.10) 38%,
    rgba(255, 106, 0, 0.03) 58%, transparent 72%);
  animation: drift-a 42s var(--ease) infinite alternate;
}
.aurora__blob--blue {
  bottom: -32%;
  left: -20%;
  background: radial-gradient(circle at 58% 58%,
    rgba(255, 77, 0, 0.12), rgba(255, 77, 0, 0.05) 40%,
    rgba(255, 77, 0, 0.015) 60%, transparent 74%);
  animation: drift-b 54s var(--ease) infinite alternate;
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-10vw, 14vh, 0) scale(1.18); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to { transform: translate3d(9vw, -12vh, 0) scale(0.95); }
}

/* ── Glas-Grundfläche + Cursor-Spotlight ───────────────────────── */
.glass {
  position: relative;
  /* Kein backdrop-filter: re-sampled den Hintergrund pro Scroll-Frame.
     Dunkle Basis-Lage ersetzt die Tiefe des Blurs. */
  background: var(--glass-bg), rgba(20, 14, 8, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  box-shadow: var(--glass-highlight), 0 24px 60px rgba(10, 5, 0, 0.5);
}
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 162, 0, 0.10), transparent 65%);
}
.glass:hover::after { opacity: 1; }

/* ── Typo-Bausteine ────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
/* Logo-Arrow-Motiv »» vor jedem Label */
.label::before {
  content: '';
  width: 22px;
  height: 10px;
  background-color: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 10'%3E%3Cpath d='M0 3h2v4H0zM4 2h2v6H4zM8 1h2v8H8zM13 0l9 5-9 5V0z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 10'%3E%3Cpath d='M0 3h2v4H0zM4 2h2v6H4zM8 1h2v8H8zM13 0l9 5-9 5V0z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.label--dim { color: var(--muted); }
.label--dim::before { background-color: var(--faint); }
.label--red { color: var(--fire-soft); }
.label--red::before { background-color: var(--ember); }
.red {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Lesefortschritt ───────────────────────────────────────────── */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1200;
}
.progress span {
  display: block;
  height: 100%;
  background: var(--grad-fire);
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.8);
  transform-origin: left;
  transform: scaleX(0);
}

/* Offscreen-Sektionen: Endlos-Animationen pausieren (Scroll-Perf) */
.anim-off, .anim-off *, .anim-off *::before, .anim-off *::after {
  animation-play-state: paused !important;
}

/* ── Scroll-Reveals ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.35s; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 12px 26px;
  border-radius: var(--r-ctl);
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
    background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--grad-fire);
  color: #1c0e00;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(255, 106, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:active { transform: translateY(0) scale(0.985); }
.btn--glass {
  background: rgba(255, 214, 150, 0.05);
  border-color: rgba(255, 200, 130, 0.18);
  color: var(--ink);
}
.btn--glass:hover {
  background: rgba(255, 214, 150, 0.1);
  border-color: rgba(255, 200, 130, 0.32);
  transform: translateY(-2px);
}
.btn--glass:active { transform: translateY(0) scale(0.985); }
.btn--small { min-height: 44px; font-size: 14.5px; padding: 9px 20px; }
.btn--big { min-height: 56px; font-size: 17.5px; padding: 15px 36px; }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-med), border-color var(--t-med),
    backdrop-filter var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  /* Kein backdrop-filter: full-width Blur re-sampled bei jedem
     Scroll-Frame — dafür deckender. */
  background: rgba(12, 9, 6, 0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 var(--pad-x);
  max-width: calc(var(--maxw) + 2 * 72px);
  margin: 0 auto;
}
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; gap: 8px; }
.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__links a:hover { color: var(--ink); background: rgba(255, 214, 150, 0.07); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: rgba(255, 214, 150, 0.05);
  border: 1px solid rgba(255, 200, 130, 0.16);
  border-radius: 10px;
}
.nav__burger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.nav__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px var(--pad-x) 28px;
  background: rgba(10, 8, 6, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav__menu[hidden] { display: none; }
.nav__menu nav { display: flex; flex-direction: column; }
.nav__menu nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__menu nav a:last-child { border-bottom: none; }
.nav__menu .btn { align-self: stretch; }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding: 150px var(--pad-x) 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 214, 150, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 150, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(75% 60% at 50% 38%, #000 30%, transparent 75%);
  mask-image: radial-gradient(75% 60% at 50% 38%, #000 30%, transparent 75%);
}

/* Lichtspuren — Langzeitbelichtung über die Bühne */
.trails {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 18%, #000 82%, transparent 98%);
  mask-image: linear-gradient(180deg, transparent 2%, #000 18%, #000 82%, transparent 98%);
}
.trails svg { width: 100%; height: 100%; }
/* Glow ohne Blur-Filter: breite halbtransparente Stroke-Lage (g)
   unter dem Kern (c) — Gaussian-Blur pro Frame war der Jank-Treiber. */
.trail {
  fill: none;
  stroke: url(#trailGrad);
  stroke-linecap: round;
  stroke-dasharray: 0.32 0.68;
  stroke-dashoffset: 1;
  animation: trailmove 7s linear infinite;
}
.trail--2 { animation-duration: 9s; animation-delay: -3.5s; }
.trail--3 { animation-duration: 5.5s; animation-delay: -1.8s; }
.trail--4 { animation-duration: 11s; animation-delay: -6s; }
.t1c { stroke-width: 2.5; opacity: 0.85; }
.t1g { stroke-width: 10; opacity: 0.2; }
.t2c { stroke-width: 1.8; opacity: 0.6; }
.t2g { stroke-width: 8; opacity: 0.13; }
.t3c { stroke-width: 3; opacity: 0.85; }
.t3g { stroke-width: 12; opacity: 0.22; }
.t4c { stroke-width: 1.4; opacity: 0.45; }
.t4g { stroke-width: 6; opacity: 0.1; }
@keyframes trailmove {
  from { stroke-dashoffset: 1.32; }
  to { stroke-dashoffset: -0.68; }
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 214, 150, 0.05);
  border: 1px solid rgba(255, 200, 130, 0.14);
  margin-bottom: 30px;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(255, 162, 0, 0.9);
}
.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  max-width: 20ch;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: italic;
  background: var(--grad-chrome);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeshine 5s linear infinite;
  filter: drop-shadow(0 2px 18px rgba(255, 120, 0, 0.35));
}
/* Kurzer Glint statt Dauer-Sweep: Repaint des Gradient-Texts
   fällt nur im ersten Drittel des Zyklus an. */
@keyframes chromeshine {
  0% { background-position: 0% 0; }
  30%, 100% { background-position: -220% 0; }
}
.hero__lede {
  max-width: 600px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 38px;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 58px; }
.hero__stats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4.5vw, 64px);
  padding: 26px clamp(26px, 4vw, 46px);
}
.hero__stats div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats dt {
  font-family: var(--font-plate);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 130, 0, 0.3));
}
.hero__stats dd { font-size: 13.5px; color: var(--muted); max-width: 170px; }

/* ── Sektions-Gerüst ───────────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(90px, 12vh, 140px) var(--pad-x);
  max-width: calc(var(--maxw) + 2 * 72px);
  margin: 0 auto;
}
.section__head { max-width: 820px; margin-bottom: 60px; }
.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
}
.section__title em { font-style: italic; color: var(--muted); }
.section__title em.em-red {
  color: transparent;
  background: var(--grad-chrome);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: chromeshine 5s linear infinite;
}
.section__lede { max-width: 620px; font-size: 17px; color: var(--muted); }

/* ── Duo ───────────────────────────────────────────────────────── */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.duo__card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med), box-shadow var(--t-med);
}
.duo__card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 150, 0.06), transparent 70%);
  pointer-events: none;
}
.duo__card--go::before { background: radial-gradient(circle, rgba(255, 77, 0, 0.14), transparent 70%); }
.duo__card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 130, 0.28);
}
.duo__card--go:hover { border-color: rgba(255, 106, 0, 0.45); }
.duo__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.duo__text { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; }
.arrowlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.arrowlink svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease); }
.arrowlink:hover svg { transform: translateX(4px); }
.arrowlink--red { color: var(--fire-soft); }

/* ── Häkchen-Listen (SVG-Check statt Glyphe) ───────────────────── */
.ticks li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 214, 150, 0.05);
}
.ticks li:last-child { border-bottom: none; }
.ticks li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 13px;
  width: 16px;
  height: 16px;
  background-color: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ticks--red li::before { background-color: var(--ember); }
.ticks--plain li::before { background-color: var(--faint); }

/* ── Chips ─────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid;
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip--green { color: var(--green); border-color: rgba(52, 211, 153, 0.35); background: rgba(52, 211, 153, 0.08); }
.chip--red { color: var(--fire-soft); border-color: rgba(255, 106, 0, 0.45); background: rgba(255, 106, 0, 0.1); }

/* ── Browser-Mockup ────────────────────────────────────────────── */
.browser {
  max-width: 1080px;
  margin: 0 auto 72px;
  overflow: hidden;
  border-radius: 20px;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: rgba(255, 214, 150, 0.04);
  border-bottom: 1px solid var(--line);
}
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 214, 150, 0.15); }
.browser__url {
  flex: 0 1 auto;
  margin-left: 14px;
  padding: 5px 16px;
  border-radius: 999px;
  background: rgba(12, 7, 2, 0.5);
  color: var(--muted);
  font-size: 12.5px;
}
.browser__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.browser__chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
  animation: savepulse 2.4s ease-in-out infinite;
}
@keyframes savepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.browser__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 460px;
}
.browser__panel {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: rgba(12, 7, 2, 0.35);
}
.browser__panelhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.browser__panelhead .label { margin-bottom: 0; font-size: 11px; }
.browser__panelhead .label::before { display: none; }
.browser__stage { color: var(--fire-soft); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.pointlist { flex: 1; }
.pointlist li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 214, 150, 0.04);
}
.pointlist li > div { min-width: 0; flex: 1; }
.pointlist b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pointlist i {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--faint);
  margin-top: 2px;
  font-feature-settings: 'tnum';
}
.pointlist .is-active {
  background: rgba(255, 106, 0, 0.08);
  box-shadow: inset 3px 0 0 var(--orange);
}
.pointlist__badge {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fire-soft);
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: 6px;
  padding: 2px 8px;
}
.pointlist__add {
  padding: 14px 18px;
  color: var(--faint);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

/* Pins */
.pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border-radius: 50%;
  background: var(--orange);
  color: #1c0e00;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}
.pin--start { background: var(--ink); color: var(--bg); box-shadow: 0 0 0 3px rgba(248, 244, 236, 0.15); }

/* Karte */
.browser__map { position: relative; background: rgba(12, 7, 2, 0.55); min-height: 380px; }
.mapart { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapart__streets path {
  fill: none;
  stroke: rgba(168, 158, 143, 0.14);
  stroke-width: 3;
  stroke-linecap: round;
}
.mapart__route { fill: none; stroke-linecap: round; }
.mapart__route--casing { stroke: rgba(12, 7, 2, 0.85); stroke-width: 11; }
.mapart__route--core { stroke: url(#routeGrad); stroke-width: 5.5; }
.browser.in-view .mapart__route--core { animation: drawroute 2.2s var(--ease) 0.3s both; }
.mapart__pin { opacity: 0; transform: scale(0.3); transform-origin: center; transform-box: fill-box; }
.browser.in-view .mapart__pin {
  animation: pinpop 0.5s var(--ease) both;
  animation-delay: calc(0.7s + var(--i) * 0.4s);
}
.mapart__pin text {
  fill: #ff6a00;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
}
.mapart__pin--red text { fill: #1c0e00; }
.mapart__pin--big text { font-size: 17px; }
@keyframes pinpop {
  from { opacity: 0; transform: scale(0.3); }
  60% { transform: scale(1.18); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes drawroute {
  from { stroke-dasharray: 1; stroke-dashoffset: 1; }
  to { stroke-dasharray: 1; stroke-dashoffset: 0; }
}
.browser__maptools {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
}
.browser__maptools span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 7, 2, 0.6);
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}
.browser__maptools span:first-child { border-bottom: 1px solid var(--line); }
.browser__routeinfo {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(12, 7, 2, 0.75);
  border: 1px solid rgba(255, 106, 0, 0.4);
  color: var(--fire-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Bento ─────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento__card {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 26px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}
.bento__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 200, 130, 0.28);
}
.bento__card--wide { grid-column: span 2; }
.bento__card--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.bento__card--full .bento__fulltext { flex: 1.2; }
.bento__card--full .bento__fulltext p { flex: none; }
.bento__card--full .bento__visual { flex: 1; margin-top: 0; }
.bento__card .label { font-size: 11px; margin-bottom: 12px; }
.bento__card h3 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.bento__card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.bento__card p strong { color: var(--ink); font-weight: 600; }
.bento__visual { margin-top: 22px; }
.bento__visual--route {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bento__visual--route svg { flex: 1; min-width: 0; }
.bento__card.in-view .drawpath { animation: drawroute 1.8s var(--ease) 0.4s both; }

.docstack { position: relative; height: 86px; }
.docstack__page {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 214, 150, 0.05);
  border: 1px solid rgba(255, 200, 130, 0.11);
}
.docstack__page:nth-child(1) { transform: rotate(-4deg) translateY(6px); opacity: 0.5; }
.docstack__page:nth-child(2) { transform: rotate(2deg) translateY(3px); opacity: 0.7; }
.docstack__page:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 214, 150, 0.08);
}
.docstack__page svg { width: 65%; height: auto; }
.bento__card.in-view .signpath { animation: drawroute 1.6s var(--ease) 0.6s both; }

.rows li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 214, 150, 0.05);
  font-size: 14px;
}
.rows li:last-child { border-bottom: none; }
.rows b { font-weight: 600; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rows i {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  font-feature-settings: 'tnum';
}
.dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 9px; }
.dot--green { background: var(--green); box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }
.dot--amber { background: var(--yellow); box-shadow: 0 0 8px rgba(255, 212, 0, 0.6); }
.dot--blue { background: var(--blue); box-shadow: 0 0 8px rgba(56, 189, 248, 0.6); }

.bento__visual--wave { display: flex; flex-direction: column; gap: 12px; }
.wave { display: flex; align-items: flex-end; gap: 5px; height: 44px; }
.wave i {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--yellow), var(--ember));
  height: 30%;
  animation: waveb 1.3s ease-in-out infinite alternate;
}
.wave i:nth-child(2n) { animation-delay: 0.15s; height: 65%; }
.wave i:nth-child(3n) { animation-delay: 0.3s; height: 45%; }
.wave i:nth-child(4n) { animation-delay: 0.45s; height: 85%; }
.wave i:nth-child(5n) { animation-delay: 0.6s; height: 55%; }
@keyframes waveb {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}
.wave__label { color: var(--faint); font-size: 12.5px; font-style: italic; }

.quizchip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 214, 150, 0.04);
  border: 1px solid rgba(255, 200, 130, 0.09);
}
.quizchip__q { color: var(--muted); font-size: 12.5px; font-weight: 500; flex-basis: 100%; }
.quizchip__a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 15px;
  border: 1px solid rgba(255, 106, 0, 0.55);
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.12);
}
.rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  font-family: var(--font-plate);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: rgba(255, 214, 150, 0.08);
  border: 1px solid rgba(255, 200, 130, 0.14);
  border-radius: 8px;
  padding: 2px 7px;
}
.rank--mini { min-width: 28px; font-size: 11.5px; padding: 1px 5px; }

/* ── GO-Sektion ────────────────────────────────────────────────── */
.section--go {
  max-width: none;
  background:
    radial-gradient(55% 38% at 50% 0%, rgba(255, 77, 0, 0.09), transparent 70%),
    rgba(12, 7, 2, 0.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--go > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--go .section__head { margin-bottom: 70px; }

.phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 90px;
}
.phone {
  width: 252px;
  flex: 0 0 252px;
  border-radius: 44px;
  background: rgba(16, 10, 5, 0.9);
  border: 1px solid rgba(255, 200, 130, 0.16);
  padding: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 230, 180, 0.1), 0 34px 70px rgba(10, 5, 0, 0.65);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 18px;
  border-radius: 999px;
  background: rgba(8, 5, 2, 0.95);
  z-index: 3;
}
.phone__screen {
  border-radius: 34px;
  background: linear-gradient(200deg, #1a120a, #0d0805);
  min-height: 500px;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.phone--left { transform: rotate(-5deg) translateY(26px); }
.phone--right { transform: rotate(5deg) translateY(30px); }
.phone--center {
  z-index: 2;
  transform: scale(1.07);
  box-shadow: inset 0 1px 0 rgba(255, 230, 180, 0.12), 0 48px 100px rgba(10, 5, 0, 0.8),
    0 0 70px rgba(255, 106, 0, 0.13);
}
.phone__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
  font-feature-settings: 'tnum';
  padding: 0 4px;
}
.bars { display: inline-flex; align-items: flex-end; gap: 2px; }
.bars i { width: 3px; border-radius: 1px; background: var(--faint); }
.bars i:nth-child(1) { height: 4px; }
.bars i:nth-child(2) { height: 6px; }
.bars i:nth-child(3) { height: 8px; }
.phone__head {
  color: var(--fire-soft);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone .chip--red { align-self: flex-start; }
.phone__q { font-size: 16.5px; font-weight: 600; line-height: 1.4; }
.phone__opts { display: flex; flex-direction: column; gap: 8px; }
.phone__opts li {
  padding: 11px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 214, 150, 0.1);
  background: rgba(255, 214, 150, 0.03);
  font-size: 13.5px;
  color: var(--muted);
}
.phone__opts .is-sel {
  border-color: var(--orange);
  background: rgba(255, 106, 0, 0.14);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.18);
}
.phone__cta {
  margin-top: auto;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  color: #1c0e00;
  padding: 13px;
  border-radius: 13px;
  background: var(--grad-fire);
  box-shadow: 0 6px 22px rgba(255, 106, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.phone__map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 7, 2, 0.6);
  border: 1px solid rgba(255, 214, 150, 0.07);
  flex: 1;
  min-height: 165px;
}
.phone__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone__streets path { stroke: rgba(168, 158, 143, 0.14); stroke-width: 3; fill: none; }
.phone__route {
  fill: none;
  stroke: var(--orange);
  stroke-width: 4.5;
  stroke-linecap: round;
}
.phone__me {
  fill: var(--blue);
  stroke: rgba(56, 189, 248, 0.35);
  stroke-width: 6;
  transform-box: fill-box;
  transform-origin: center;
  animation: mepulse 2s ease-in-out infinite;
}
@keyframes mepulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.45); }
}
.phone__navcard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 214, 150, 0.05);
  border: 1px solid rgba(255, 214, 150, 0.1);
}
.phone__turn { width: 26px; height: 26px; flex: 0 0 26px; color: var(--fire-soft); }
.phone__navcard b { display: block; font-size: 14.5px; }
.phone__navcard i {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  color: var(--faint);
}
.phone__navcard div { flex: 1; min-width: 0; }
.phone__voice { width: 17px; height: 17px; flex: 0 0 17px; color: var(--muted); opacity: 0.8; }
.phone__progress {
  text-align: center;
  color: var(--faint);
  font-size: 11px;
  font-weight: 500;
  font-feature-settings: 'tnum';
}
.phone__rank { display: flex; flex-direction: column; gap: 8px; }
.phone__rank li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(255, 214, 150, 0.03);
  border: 1px solid rgba(255, 214, 150, 0.08);
  font-size: 12px;
}
.phone__pos { color: var(--faint); font-size: 10px; font-weight: 600; }
.phone__rank b { flex: 1; min-width: 0; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.phone__rank b em { font-style: normal; color: var(--fire-soft); }
.phone__rank i { font-style: normal; font-feature-settings: 'tnum'; color: var(--ink); font-weight: 600; }
.phone__rank .is-first { border-color: rgba(255, 212, 0, 0.45); background: rgba(255, 212, 0, 0.06); }
.phone__rank .is-you { border-color: rgba(255, 106, 0, 0.6); }
.phone__note {
  text-align: center;
  color: var(--faint);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* ── Beitritt ──────────────────────────────────────────────────── */
.join {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  margin-bottom: 100px;
  padding: 40px clamp(26px, 4vw, 54px);
}
.join__qr {
  position: relative;
  justify-self: center;
  padding: 26px;
  border-radius: 20px;
  background: rgba(12, 7, 2, 0.55);
  border: 1px solid rgba(255, 200, 130, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 230, 180, 0.08), 0 24px 60px rgba(10, 5, 0, 0.55);
  overflow: hidden;
}
.join__qrcode { display: block; width: 168px; height: 168px; opacity: 0.92; }
.join__scanline {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  box-shadow: 0 0 6px rgba(255, 162, 0, 0.85);
  will-change: transform;
  animation: scanmove 3.2s ease-in-out infinite;
}
/* QR-Fläche ist fix 168px + 2×26px Padding → 163px Hub */
@keyframes scanmove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(163px); }
}
.join__steps h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: 0.005em;
  margin: 6px 0 24px;
}
.join__steps ol { display: flex; flex-direction: column; gap: 18px; }
.join__steps li { display: flex; gap: 18px; align-items: flex-start; }
.join__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-family: var(--font-plate);
  font-size: 16px;
  color: var(--amber);
  background: rgba(255, 162, 0, 0.08);
  border: 1px solid rgba(255, 162, 0, 0.3);
  border-radius: 10px;
  margin-top: 2px;
}
.join__steps b {
  display: block;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.join__steps p { color: var(--muted); font-size: 14.5px; }

/* ── Unterwegs-Karten ──────────────────────────────────────────── */
.onroad { margin-bottom: 100px; }
.onroad__head { margin-bottom: 28px; }
.onroad__head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: 0.005em;
}
.onroad__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.onroad__card {
  padding: 26px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}
.onroad__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.4);
}
.onroad__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.28);
  margin-bottom: 16px;
}
.onroad__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--fire-soft);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.onroad__icon svg circle { fill: var(--fire-soft); stroke: none; }
.onroad__card h4 {
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.onroad__card p { color: var(--muted); font-size: 14px; }

/* ── Service-Car ───────────────────────────────────────────────── */
.sos {
  margin-bottom: 70px;
  padding: clamp(34px, 5vw, 56px) clamp(26px, 4vw, 54px);
  border-color: rgba(255, 106, 0, 0.25);
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(255, 77, 0, 0.08), transparent 70%),
    var(--glass-bg);
}
.sos__head { margin-bottom: 36px; }
.sos__head h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: 0.005em;
}
.sos__grid {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  align-items: stretch;
}
.sos__card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 18px;
  background: rgba(12, 7, 2, 0.45);
  border: 1px solid rgba(255, 214, 150, 0.09);
}
.sos__card h4 {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.sos__card > p { color: var(--muted); font-size: 14.5px; flex: 1; }
.sos__mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.sos__btn {
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 11px;
  color: #1c0e00;
  background: var(--grad-fire);
  box-shadow: 0 6px 22px rgba(255, 106, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.sos__btn--ghost {
  background: none;
  border: 1px solid rgba(255, 106, 0, 0.55);
  color: var(--fire-soft);
  box-shadow: none;
}
.sos__meta {
  color: var(--faint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sos__meta--in { color: var(--fire-soft); }
.sos__line { display: flex; align-items: center; }
.sos__line svg { width: 100%; height: 60px; }
.sos__path { opacity: 0; transition: opacity 0.8s var(--ease) 0.3s; }
.sos.in-view .sos__path {
  opacity: 1;
  animation: sosdash 1.4s linear infinite;
}
@keyframes sosdash {
  to { stroke-dashoffset: -22; }
}

.gonote {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 640px;
  padding: 22px 26px;
  border-radius: 16px;
  color: var(--muted);
  font-size: 15px;
}
.gonote .label { margin-bottom: 2px; }

/* ── Ablauf ────────────────────────────────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  position: relative;
}
.flow::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 3%;
  right: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 150, 0.22), rgba(255, 106, 0, 0.6));
}
.flow__step { position: relative; padding-top: 60px; }
.flow__step::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--muted);
}
.flow__step:last-child::before {
  border-color: var(--orange);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.6);
}
.flow__num {
  position: absolute;
  top: 0;
  left: 30px;
  font-family: var(--font-plate);
  font-size: 42px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255, 214, 150, 0.13);
}
.flow__step:last-child .flow__num { color: rgba(255, 106, 0, 0.35); }
.flow__step h3 {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.flow__step p { color: var(--muted); font-size: 14px; }

/* ── Funktions-Spalten ─────────────────────────────────────────── */
.featcols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featcols__col { padding: 30px; }
.featcols__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 214, 150, 0.07);
  border: 1px solid rgba(255, 200, 130, 0.16);
  border-radius: 9px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.featcols__tag--red {
  color: var(--fire-soft);
  background: rgba(255, 106, 0, 0.1);
  border-color: rgba(255, 106, 0, 0.32);
}
.featcols__tag--dim { color: var(--muted); }
.featcols__col .ticks li { font-size: 14px; }

/* ── Updates ───────────────────────────────────────────────────── */
.section--updates { padding-bottom: 60px; }
.updates {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-bottom: 70px;
}
.updates__card { padding: 32px; }
.updates__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.updates__head .label { margin-bottom: 0; }
.version {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-plate);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--amber);
  background: rgba(255, 162, 0, 0.1);
  border: 1px solid rgba(255, 162, 0, 0.4);
  border-radius: 9px;
  padding: 5px 13px;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  animation: tickermove 36s linear infinite;
  will-change: transform;
}
.ticker__track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 6px;
}
@keyframes tickermove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Finaler CTA ───────────────────────────────────────────────── */
.cta {
  padding: clamp(80px, 11vh, 130px) var(--pad-x) clamp(100px, 13vh, 150px);
  max-width: calc(var(--maxw) + 2 * 72px);
  margin: 0 auto;
}
.cta__panel {
  position: relative;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) clamp(26px, 5vw, 80px);
  overflow: hidden;
}
.cta__panel::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -55%;
  width: 80%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 106, 0, 0.2), transparent 70%);
  pointer-events: none;
}
.cta__panel > * { position: relative; }
.cta__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 4px 0 18px;
}
.cta__title em {
  font-style: italic;
  background: var(--grad-chrome);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeshine 5s linear infinite;
}
.cta__lede { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 36px; }
.cta__sub {
  margin-top: 26px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 30px;
  background: rgba(12, 7, 2, 0.5);
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 40px;
}
.footer__brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 280px; }
.footer__nav { display: flex; flex-direction: column; gap: 4px; }
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  transition: color var(--t-fast);
  width: fit-content;
}
.footer__nav a:hover { color: var(--ink); }
.footer__note { color: var(--faint); font-size: 13.5px; }
.footer__note .label { display: inline-flex; margin-bottom: 6px; }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 214, 150, 0.05);
}
.footer__bottom span {
  color: var(--faint);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══ Responsive ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }
  .onroad__grid { grid-template-columns: 1fr 1fr; }
  .sos__grid { grid-template-columns: 1fr; gap: 14px; }
  .sos__line { display: none; }
  .duo { grid-template-columns: 1fr; gap: 18px; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 36px 26px; }
  .flow::before { display: none; }
  .updates { grid-template-columns: 1fr; }
  .phones { gap: 16px; }
  .phone { width: 232px; flex-basis: 232px; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .phones {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .phone--left, .phone--right, .phone--center {
    transform: none;
    width: 270px;
    flex-basis: auto;
  }
  .featcols { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .join { grid-template-columns: 1fr; gap: 32px; }
  .join__qr { justify-self: start; }
}

@media (min-width: 881px) {
  .nav__menu { display: none; }
}

@media (max-width: 760px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: auto; }
  .bento__card--full { flex-direction: column; align-items: stretch; gap: 0; }
  .bento__card--full .bento__visual { margin-top: 22px; }
  .onroad__grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .browser__body { grid-template-columns: 1fr; }
  .browser__panel { border-right: none; border-bottom: 1px solid var(--line); }
  .browser__map { min-height: 300px; }
  .browser__url { display: none; }
  .hero { padding-top: 130px; }
  .hero__stats { gap: 24px; padding: 22px 26px; }
  .hero__stats dt { font-size: 32px; }
  .section__head { margin-bottom: 46px; }
  .t1c, .t3c { stroke-width: 1.8; }
  .t1g, .t3g { stroke-width: 7; }
}

/* ═══ Druck (auch für Render-Review genutzt) ═══════════════════ */
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .aurora, .progress, .nav, .trails { display: none; }
  body::after { display: none; }
}

/* ═══ Reduzierte Bewegung ══════════════════════════════════════ */
@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; }
  .mapart__pin { opacity: 1; transform: none; }
  .trail { animation: none; stroke-dasharray: none; opacity: 0.35; }
  .t1g, .t2g, .t3g, .t4g { opacity: 0.08; }
}
