/* RunTogether — Landingpage
   Farben 1:1 aus der App (RunTogether/Views/Color+Hex.swift), Dunkelmodus als Markenbild. */

@font-face { font-family: "Geist"; src: url("fonts/geist.woff2") format("woff2"); font-weight: 300 800; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Geist"; src: url("fonts/geist-ext.woff2") format("woff2"); font-weight: 300 800; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+20A0-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Geist Mono"; src: url("fonts/geist-mono.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("fonts/instrument-serif-italic.woff2") format("woff2"); font-style: italic; font-weight: 400; font-display: swap; }

:root {
  --bg: #060A08;
  --bg-2: #080C0A;
  --surface: #0E1713;
  --surface-2: #13201A;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --text: #F4F8F5;
  --text-2: #B4C7BE;
  --muted: #7C9589;
  --green: #39BF97;
  --green-light: #5FE0B8;
  --green-dark: #2FA574;
  --heart: #FF6B6B;
  --route: #E24BF5;
  --gold: #F3C969;
  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;
  --serif: "Instrument Serif", Georgia, serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--green); color: #04110C; }
:focus-visible { outline: 2px solid var(--green-light); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Körnung über allem — nimmt den Verläufen das "Digitale" */
.grain {
  position: fixed; inset: -50%; z-index: 100; pointer-events: none; opacity: .045;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0%,100% { transform: translate(0,0) } 20% { transform: translate(-3%,2%) } 40% { transform: translate(2%,-3%) } 60% { transform: translate(-2%,-1%) } 80% { transform: translate(3%,3%) } }

/* Fortschritt ganz oben — wie ein Pace-Balken */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--green-dark), var(--green-light)); box-shadow: 0 0 12px var(--green); }

/* ---------- Navigation ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 14px 0; transition: padding .4s var(--ease); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  padding: 8px 8px 8px 14px; border-radius: 999px; border: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled .nav-inner { background: rgba(10, 16, 13, .62); border-color: var(--line); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 650; letter-spacing: -.02em; font-size: 17px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 14.5px; padding: 8px 14px; border-radius: 999px; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  --bx: 0px; --by: 0px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; font-weight: 600; letter-spacing: -.01em; border-radius: 999px; white-space: nowrap;
  transform: translate(var(--bx), var(--by)); transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  cursor: pointer; border: 0;
}
.btn-sm { font-size: 14px; padding: 10px 16px; }
.btn-primary { background: var(--green); color: #03110B; box-shadow: 0 8px 30px -8px rgba(57,191,151,.7), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary:hover { background: var(--green-light); box-shadow: 0 14px 44px -8px rgba(95,224,184,.8), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-ghost { color: var(--text); background: rgba(255,255,255,.05); border: 1px solid var(--line-2); padding: 15px 22px; font-size: 16px; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn svg { flex: none; }

/* App-Store-Knopf — das Ziel der ganzen Seite */
.store {
  padding: 12px 26px 12px 20px; font-size: 16px; line-height: 1.1; text-align: left;
  background: linear-gradient(180deg, #fff, #E6EEE9); color: #04110C;
  box-shadow: 0 20px 50px -18px rgba(95,224,184,.65), 0 0 0 1px rgba(255,255,255,.6) inset;
  overflow: hidden;
}
.store::after { /* Lichtkante, die alle paar Sekunden über den Knopf läuft */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(95,224,184,.55) 50%, transparent 65%);
  transform: translateX(-120%); animation: sheen 4.5s var(--ease) 2.2s infinite;
}
@keyframes sheen { 0% { transform: translateX(-120%) } 35%,100% { transform: translateX(120%) } }
.store:hover { box-shadow: 0 26px 60px -16px rgba(95,224,184,.85), 0 0 0 1px #fff inset; }
.store small { display: block; font-size: 11px; font-weight: 500; opacity: .62; letter-spacing: .02em; }
.store b { display: block; font-size: 19px; font-weight: 650; letter-spacing: -.02em; }
.store-lg { padding: 16px 32px 16px 24px; }
.store-lg b { font-size: 23px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; will-change: transform; }
.glow-1 { width: 720px; height: 720px; left: -200px; top: -260px; background: radial-gradient(circle, #0F4A44, transparent 70%); animation: drift 18s ease-in-out infinite alternate; }
.glow-2 { width: 620px; height: 620px; right: -160px; top: 10%; background: radial-gradient(circle, rgba(57,191,151,.45), transparent 70%); animation: drift 22s ease-in-out -6s infinite alternate-reverse; }
.glow-3 { width: 520px; height: 520px; left: 30%; bottom: -320px; background: radial-gradient(circle, rgba(226,75,245,.22), transparent 70%); animation: drift 26s ease-in-out -3s infinite alternate; }
@keyframes drift { to { transform: translate(80px, 60px) scale(1.12); } }
.topo { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 45%, #000 30%, transparent 80%); mask-image: radial-gradient(ellipse 80% 70% at 60% 45%, #000 30%, transparent 80%); }
.topo path { fill: none; stroke: rgba(95,224,184,.09); stroke-width: 1; }
.routes { position: absolute; inset: 0; width: 100%; height: 100%; }
.routes .r { fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 3.2s var(--ease) forwards; }
.routes .r1 { stroke: url(#gradA); stroke-width: 2.5; animation-delay: .5s; }
.routes .r2 { stroke: url(#gradB); stroke-width: 2; animation-delay: .9s; opacity: .8; }
.routes .r3 { stroke: rgba(95,224,184,.25); stroke-width: 1.5; animation-delay: 1.3s; stroke-dasharray: 1; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.runner { position: absolute; left: 0; top: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; offset-rotate: 0deg; opacity: 0; animation: run 11s linear 2.6s infinite, fadein .6s 2.6s forwards; }
.runner::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; background: inherit; opacity: .35; filter: blur(6px); }
.runner-a { background: var(--green-light); box-shadow: 0 0 18px var(--green-light); }
.runner-b { background: var(--route); box-shadow: 0 0 18px var(--route); animation-delay: 3.1s, 3.1s; animation-duration: 11.4s, .6s; }
@keyframes run { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes fadein { to { opacity: 1; } }

.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 48px; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; } }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-2); font-size: 13.5px; color: var(--text-2);
  text-decoration: none; transition: border-color .3s, background .3s;
}
.pill:hover { border-color: rgba(95,224,184,.5); background: rgba(95,224,184,.06); }
.pill .tag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #03110B; background: var(--green-light); padding: 3px 8px; border-radius: 999px; }
.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--heart); flex: none; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--heart); animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 75%,100% { transform: scale(2.8); opacity: 0; } }

.hero h1 {
  font-size: clamp(38px, 5.6vw, 82px); line-height: .93; letter-spacing: -.055em; font-weight: 650;
  margin: 26px 0 26px;
}
@media (max-width: 600px) { .hero h1 { font-size: 11vw; } }
.hero h1 .line { display: block; white-space: nowrap; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero h1 .word { display: inline-block; transform: translateY(105%) rotate(4deg); transform-origin: 0 100%; animation: rise 1.1s var(--ease) forwards; }
.hero h1 .serif { font-size: 1.12em; line-height: .8; letter-spacing: -.02em; padding-right: .06em;
  background: linear-gradient(100deg, var(--green-light) 10%, #B7F5DF 45%, var(--green) 80%); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes rise { to { transform: translateY(0) rotate(0); } }
.underline-wrap { position: relative; display: inline-block; }
.underline { position: absolute; left: -2%; right: -4%; bottom: -.06em; width: 106%; height: .28em; overflow: visible; }
.underline path { fill: none; stroke: var(--route); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.2s var(--ease) 1.35s forwards; filter: drop-shadow(0 0 8px rgba(226,75,245,.6)); }

.lead { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.5; color: var(--text-2); max-width: 34em; margin: 0 0 36px; letter-spacing: -.01em; }
.lead strong { color: var(--text); font-weight: 550; }
@media (max-width: 960px) { .lead { margin-left: auto; margin-right: auto; } }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 960px) { .cta-row { justify-content: center; } }
.proof { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: var(--muted); font-size: 14px; }
@media (max-width: 960px) { .proof { justify-content: center; } }
.proof span { display: inline-flex; align-items: center; gap: 7px; }
.stars { color: var(--gold); letter-spacing: 1px; }

.fade-up { opacity: 0; transform: translateY(24px); animation: fadeup 1s var(--ease) forwards; }
@keyframes fadeup { to { opacity: 1; transform: none; } }

/* ---------- Telefon ---------- */
.phone {
  /* Außenmaß so gewählt, dass der Bildschirm nach 3,5 % Rahmen genau 482:1080
     misst — wie die Screenshots. Sonst schneidet object-fit die Ränder ab. */
  --w: 300px;
  position: relative; width: var(--w); aspect-ratio: 1000 / 2154; border-radius: calc(var(--w) * .16);
  padding: calc(var(--w) * .035); background: linear-gradient(145deg, #2A332F, #0B0F0D 40%, #1C2420);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset, 0 0 0 2px #050706, 0 50px 100px -30px rgba(0,0,0,.9), 0 30px 80px -40px rgba(57,191,151,.5);
}
.phone .screen { position: relative; width: 100%; height: 100%; border-radius: calc(var(--w) * .13); overflow: hidden; background: #000; }
.phone .screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone .island { position: absolute; top: 2.1%; left: 50%; width: 31%; height: 3.4%; transform: translateX(-50%); background: #000; border-radius: 999px; z-index: 3; }
.phone::before { /* Seitentaste */
  content: ""; position: absolute; right: -3px; top: 22%; width: 3px; height: 11%; border-radius: 0 3px 3px 0; background: #1E2622; }

.hero-visual { position: relative; display: grid; place-items: center; perspective: 1400px; min-height: 640px; }
@media (max-width: 960px) { .hero-visual { min-height: 580px; } }
.hero-phone { transform-style: preserve-3d; transition: transform .8s var(--ease); animation: phonein 1.4s var(--ease) .3s both; }
.hero-phone .phone { --w: min(310px, 72vw); }
@keyframes phonein { from { opacity: 0; transform: translateY(80px) rotateX(18deg) rotateY(-16deg) scale(.92); } }
.hero-phone .screen::after { /* Glanz auf dem Glas */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.14) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.05)); }
.halo { position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(57,191,151,.35), transparent 65%); filter: blur(30px); animation: breathe 5s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.12); opacity: .7; } }
.ring { position: absolute; width: 560px; height: 560px; border-radius: 50%; border: 1px dashed rgba(95,224,184,.18); animation: spin 60s linear infinite; }
.ring-2 { width: 700px; height: 700px; border-style: solid; border-color: rgba(255,255,255,.04); animation-duration: 90s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 600px) { .ring { width: 420px; height: 420px; } .ring-2 { width: 520px; height: 520px; } .halo { width: 380px; height: 380px; } }

/* schwebende Glas-Karten */
.float {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px;
  border-radius: 18px; background: rgba(16, 26, 21, .62); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.8); font-size: 13.5px; line-height: 1.25; text-align: left; white-space: nowrap;
  opacity: 0; animation: pop .9s var(--ease) forwards, bob 6s ease-in-out infinite;
}
.float small { display: block; color: var(--muted); font-size: 11.5px; }
.float b { font-weight: 600; }
.float .ico { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-1 { top: 14%; left: -4%; animation-delay: 1.4s, 2.3s; }
.float-2 { top: 44%; right: -8%; animation-delay: 1.7s, 2.6s; }
.float-3 { bottom: 12%; left: -2%; animation-delay: 2s, 2.9s; }
.float-4 { bottom: 26%; right: -2%; animation-delay: 2.3s, 3.2s; }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes bob { 50% { translate: 0 -10px; } }
@media (max-width: 600px) {
  .float { font-size: 12px; padding: 9px 12px 9px 9px; gap: 9px; }
  .float .ico { width: 30px; height: 30px; }
  .float-1 { left: 0; top: 8%; } .float-2 { right: 0; } .float-3 { left: 0; } .float-4 { display: none; }
}
.ekg { width: 56px; height: 22px; }
.ekg path { fill: none; stroke: var(--heart); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60 140; animation: ekg 1.4s linear infinite; }
@keyframes ekg { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
.avatar-i { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, #E24BF5, #9B3BD6); border: 2px solid #fff; }
.avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-light); flex: none; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; font-family: var(--mono); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; }
.scroll-hint i { width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px; position: relative; }
.scroll-hint i::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--green-light); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(-3px); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@media (max-height: 760px), (max-width: 960px) { .scroll-hint { display: none; } }

/* ---------- Laufband mit Sportarten ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 22px 0; }
.ticker-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 14px; padding: 0 28px; font-size: clamp(22px, 3vw, 34px); font-weight: 600; letter-spacing: -.03em; color: var(--text-2); white-space: nowrap; }
.ticker-item:nth-child(3n+2) { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--green-light); font-size: clamp(25px, 3.4vw, 38px); }
.ticker-item::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-left: 28px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Abschnitte allgemein ---------- */
section { position: relative; }
.section { padding: clamp(96px, 13vw, 170px) 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.h2 { font-size: clamp(38px, 5.6vw, 72px); line-height: 1; letter-spacing: -.045em; font-weight: 650; margin: 0 0 22px; }
.h2 .serif { font-size: 1.1em; color: var(--green-light); }
.sub { font-size: clamp(17px, 1.6vw, 19px); color: var(--text-2); max-width: 36em; margin: 0; }
.center { text-align: center; }
.center .sub { margin: 0 auto; }

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

/* ---------- Statement (Wort für Wort) ---------- */
.statement { padding: clamp(110px, 16vw, 200px) 0; }
.statement p { font-size: clamp(32px, 5.2vw, 68px); line-height: 1.08; letter-spacing: -.045em; font-weight: 600; margin: 0; max-width: 17em; }
.statement .w { color: rgba(244,248,245,.14); transition: color .5s var(--ease); }
.statement .w.on { color: var(--text); }
.statement .w.hl.on { color: var(--green-light); }
.statement .w.serif { font-weight: 400; }

/* ---------- Scrollytelling ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.story-sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; }
.story-phone { position: relative; }
.story-phone .phone { --w: min(330px, 30vw); }
.story-phone .screen img { opacity: 0; transform: scale(1.06); transition: opacity .7s var(--ease), transform 1.1s var(--ease); }
.story-phone .screen img.on { opacity: 1; transform: none; }
.story-phone .halo { width: 600px; height: 600px; }
.story-steps { padding: 20vh 0; }
.step { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; opacity: .25; transition: opacity .6s var(--ease); }
.step.on { opacity: 1; }
.step .num { font-family: var(--mono); font-size: 13px; color: var(--green-light); letter-spacing: .12em; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.step .num::after { content: ""; flex: 0 0 60px; height: 1px; background: linear-gradient(90deg, var(--green), transparent); }
.step h3 { font-size: clamp(32px, 3.8vw, 52px); line-height: 1.02; letter-spacing: -.04em; margin: 0 0 18px; font-weight: 650; }
.step h3 .serif { color: var(--green-light); }
.step p { color: var(--text-2); font-size: 18px; margin: 0 0 24px; max-width: 28em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--text-2); }
.step-img { display: none; }
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 0; }
  .story-sticky { display: none; }
  .story-steps { padding: 0; }
  .step { min-height: 0; opacity: 1; padding: 56px 0; border-top: 1px solid var(--line); }
  .step-img { display: block; margin-top: 32px; align-self: center; }
  .step-img .phone { --w: min(260px, 66vw); }
}

/* ---------- Coach ---------- */
.coach { overflow: hidden; }
.coach-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .coach-grid { grid-template-columns: 1fr; } }
.coaches { display: flex; gap: 12px; margin: 34px 0 30px; flex-wrap: wrap; }
.coach-card { display: flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); cursor: pointer; transition: border-color .3s, background .3s, transform .3s var(--ease); }
.coach-card img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.coach-card b { display: block; font-size: 14px; font-weight: 600; line-height: 1.1; }
.coach-card small { color: var(--muted); font-size: 12px; }
.coach-card:hover { transform: translateY(-2px); }
.coach-card[aria-pressed="true"] { border-color: rgba(95,224,184,.55); background: rgba(57,191,151,.1); }
.pro-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; padding: 5px 10px; border-radius: 999px; color: #1A1200; background: linear-gradient(135deg, #FFE39A, var(--gold)); vertical-align: middle; }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.list li { display: flex; gap: 12px; color: var(--text-2); }
.list li svg { flex: none; margin-top: 3px; color: var(--green-light); }
.list li b { color: var(--text); font-weight: 600; }

.chat {
  position: relative; border-radius: var(--r-xl); padding: 22px; background: linear-gradient(180deg, rgba(19,32,26,.9), rgba(10,16,13,.9));
  border: 1px solid var(--line-2); box-shadow: 0 60px 120px -50px rgba(57,191,151,.35), 0 0 0 1px rgba(255,255,255,.02) inset; min-height: 520px;
  display: flex; flex-direction: column;
}
.chat::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(95,224,184,.5), transparent 40%, transparent 70%, rgba(226,75,245,.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.chat-head b { display: block; font-size: 15px; }
.chat-head small { color: var(--green-light); font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.chat-head small::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); }
.chat-body { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: flex-end; }
.msg { max-width: 86%; padding: 12px 16px; border-radius: 20px; font-size: 15px; line-height: 1.45; opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.msg.show { opacity: 1; transform: none; }
.msg.me { align-self: flex-end; background: var(--green); color: #03110B; border-bottom-right-radius: 6px; }
.msg.bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 6px; color: var(--text); }
.msg.bot .mono { color: var(--green-light); }
.msg.card { padding: 0; overflow: hidden; }
.plan-mini { padding: 12px 14px; display: grid; gap: 8px; min-width: 250px; }
.plan-mini .row { display: flex; justify-content: space-between; gap: 18px; font-size: 13.5px; color: var(--text-2); }
.plan-mini .row b { color: var(--text); font-weight: 550; }
.plan-mini .row .mono { color: var(--green-light); }
.plan-mini .row.strike b { text-decoration: line-through; color: var(--muted); }
.plan-mini .head { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 10px 14px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.typing { align-self: flex-start; display: none; gap: 4px; padding: 14px 16px; border-radius: 20px; background: var(--surface-2); border: 1px solid var(--line); }
.typing.show { display: inline-flex; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 30% { transform: translateY(-4px); background: var(--green-light); } }
.chat-note { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 64px; }
.tile {
  --mx: 50%; --my: 50%;
  position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 28px; background: var(--surface);
  border: 1px solid var(--line); min-height: 280px; display: flex; flex-direction: column; isolation: isolate;
  transition: border-color .4s, transform .5s var(--ease);
}
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(95,224,184,.13), transparent 60%); }
.tile:hover { border-color: rgba(95,224,184,.28); }
.tile:hover::before { opacity: 1; }
.tile h3 { font-size: 24px; letter-spacing: -.03em; line-height: 1.1; margin: 0 0 10px; font-weight: 620; }
.tile p { color: var(--text-2); font-size: 15.5px; margin: 0; }
.tile .k { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.t-watch { grid-column: span 3; grid-row: span 2; }
.t-strength { grid-column: span 3; }
.t-lib { grid-column: span 3; }
.t-lock { grid-column: span 2; grid-row: span 2; }
.t-trends { grid-column: span 4; }
.t-sync { grid-column: span 2; }
.t-privacy { grid-column: span 2; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .t-watch, .t-strength, .t-lib, .t-trends { grid-column: span 2; grid-row: auto; }
  .t-lock { grid-column: span 2; grid-row: auto; }
  .t-sync, .t-privacy { grid-column: span 1; }
}
@media (max-width: 560px) { .t-sync, .t-privacy { grid-column: span 2; } }

/* Uhr */
.watch-stage { flex: 1; display: grid; place-items: center; padding: 90px 0 70px; }
.watch { position: relative; width: 210px; height: 252px; }
.watch .band { position: absolute; left: 50%; width: 150px; height: 90px; transform: translateX(-50%); background: linear-gradient(180deg, #1D2723, #121916); border-radius: 22px; }
.watch .band.t { top: -62px; border-radius: 22px 22px 8px 8px; } .watch .band.b { bottom: -62px; border-radius: 8px 8px 22px 22px; }
.watch .case { position: absolute; inset: 0; border-radius: 58px; background: linear-gradient(145deg, #3A4440, #111614 45%, #252E2A); padding: 12px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.12) inset; }
.watch .crown { position: absolute; right: -9px; top: 62px; width: 11px; height: 38px; border-radius: 4px; background: linear-gradient(90deg, #2C3632, #56625C); }
.watch .face { position: relative; width: 100%; height: 100%; border-radius: 46px; background: #000; padding: 22px 20px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.watch .face .top { display: flex; justify-content: space-between; font-size: 12px; color: var(--green-light); font-weight: 600; }
.watch .face .top span:last-child { color: var(--text-2); font-family: var(--mono); }
.watch .big { font-family: var(--mono); font-size: 44px; font-weight: 600; letter-spacing: -.04em; line-height: 1; color: #fff; }
.watch .unit { font-size: 12px; color: var(--muted); }
.watch .rowm { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 15px; }
.watch .rowm span:first-child { color: var(--heart); }
.watch .rowm span:last-child { color: var(--green-light); }
.zone-bar { display: flex; gap: 3px; height: 6px; }
.zone-bar i { flex: 1; border-radius: 3px; opacity: .3; }
.zone-bar i.on { opacity: 1; box-shadow: 0 0 10px currentColor; }

/* Kraft-Satzlog */
.sets { margin-top: 22px; display: grid; gap: 8px; }
.set { display: grid; grid-template-columns: 30px 1fr auto 28px; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--line); font-size: 14px; }
.set .n { font-family: var(--mono); color: var(--muted); font-size: 12px; }
.set .mono { color: var(--text); }
.set .ck { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: background .4s var(--ease), border-color .4s; }
.set .ck svg { opacity: 0; transform: scale(.4); transition: all .4s var(--ease); }
.set.done .ck { background: var(--green); border-color: var(--green); }
.set.done .ck svg { opacity: 1; transform: none; }
.set .rec { font-size: 11px; font-family: var(--mono); color: var(--gold); opacity: 0; transition: opacity .5s; }
.set.done .rec { opacity: 1; }

/* Übungsbibliothek */
.lib-count { font-family: var(--mono); font-size: clamp(64px, 8vw, 104px); font-weight: 600; letter-spacing: -.06em; line-height: .9; color: var(--text); margin: 8px 0 12px; }
.lib-count em { font-style: normal; color: var(--green-light); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
.tags span { font-size: 13px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--text-2); }
.tags span:nth-child(1) { color: #C9B6FF; border-color: rgba(201,182,255,.3); }
.tags span:nth-child(2) { color: #FF7AD9; border-color: rgba(255,122,217,.3); }
.tags span:nth-child(3) { color: #7FD3FF; border-color: rgba(127,211,255,.3); }
.tags span:nth-child(4) { color: var(--gold); border-color: rgba(243,201,105,.3); }

.lock-shot { margin: 22px auto -60px; width: min(240px, 100%); border-radius: 30px 30px 0 0; overflow: hidden; border: 1px solid var(--line-2); border-bottom: 0; box-shadow: 0 -20px 60px -20px rgba(57,191,151,.35); }
.lock-shot img { width: 100%; height: auto; }

/* Trends-Diagramm */
.chart { margin-top: 22px; flex: 1; min-height: 150px; position: relative; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart svg { clip-path: inset(0 100% 0 0); transition: clip-path 2.4s var(--ease) .2s; }
.chart.in svg { clip-path: inset(0 0 0 0); }
.chart .ln { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-2); margin-top: 10px; }
.legend i { display: inline-block; width: 10px; height: 3px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }

.sync-logos { display: flex; gap: 12px; margin-top: auto; padding-top: 24px; }
.sync-logos span { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; }
.privacy-vis { position: relative; margin-top: auto; height: 110px; border-radius: 14px; overflow: hidden; background: #0B1512; border: 1px solid var(--line); }
.privacy-vis svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.privacy-vis .zone { fill: rgba(95,224,184,.12); stroke: rgba(95,224,184,.5); stroke-dasharray: 4 4; animation: spin 30s linear infinite; transform-origin: 34px 70px; transform-box: view-box; }

/* ---------- Zahlen ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat { padding: 48px 24px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .v { font-family: var(--mono); font-size: clamp(44px, 5.6vw, 72px); font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.stat .v em { font-style: normal; color: var(--green-light); }
.stat .l { color: var(--muted); font-size: 14.5px; margin-top: 10px; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(3) { border-left: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--line); } }

/* ---------- Galerie ---------- */
.gallery { overflow: hidden; padding: 20px 0 40px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.gallery-track { display: flex; gap: 28px; width: max-content; animation: marquee 70s linear infinite; }
.gallery:hover .gallery-track { animation-play-state: paused; }
.shot { width: 230px; flex: none; transition: transform .6s var(--ease); }
.shot:nth-child(even) { transform: translateY(40px); }
.shot .phone { --w: 230px; }
.shot figcaption { margin-top: 16px; text-align: center; font-size: 14px; color: var(--text-2); }
.shot:hover { transform: translateY(-10px); }
.shot:nth-child(even):hover { transform: translateY(30px); }

/* ---------- Pro ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; max-width: 980px; margin-inline: auto; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }
.plan { position: relative; border-radius: var(--r-xl); padding: 36px; background: var(--surface); border: 1px solid var(--line); }
.plan h3 { font-size: 28px; letter-spacing: -.03em; margin: 0 0 6px; }
.plan .price { font-size: 15px; color: var(--text-2); margin-bottom: 26px; }
.plan .price b { font-family: var(--mono); font-size: 40px; color: var(--text); letter-spacing: -.04em; margin-right: 6px; }
.plan.pro { background: radial-gradient(120% 90% at 100% 0%, rgba(243,201,105,.14), transparent 50%), linear-gradient(180deg, #13201A, #0D1511); border-color: rgba(243,201,105,.35); box-shadow: 0 50px 100px -50px rgba(243,201,105,.35); }
.plan.pro .list li svg { color: var(--gold); }
.plan .btn { margin-top: 30px; width: 100%; padding: 16px; font-size: 16px; }
.btn-gold { background: linear-gradient(135deg, #FFE39A, var(--gold)); color: #1A1200; box-shadow: 0 14px 40px -12px rgba(243,201,105,.6); }
.btn-gold:hover { box-shadow: 0 18px 50px -10px rgba(243,201,105,.8); }
.plan .note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 56px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-size: 19px; font-weight: 550; letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { position: relative; width: 28px; height: 28px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); transition: transform .4s var(--ease), background .3s; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.5px; background: var(--text); transform: translate(-50%, -50%); transition: transform .4s var(--ease); }
.faq summary .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .pm { background: var(--green); border-color: var(--green); }
.faq details[open] summary .pm::before, .faq details[open] summary .pm::after { background: #03110B; }
.faq details[open] summary .pm::after { transform: translate(-50%, -50%) rotate(0); }
.faq .a { overflow: hidden; color: var(--text-2); padding: 0 4px 24px; max-width: 42em; }
.faq summary:hover { color: var(--green-light); }

/* ---------- Schluss-CTA ---------- */
.final { position: relative; overflow: hidden; padding: clamp(120px, 16vw, 200px) 0; text-align: center; isolation: isolate; }
.final .glow-1 { left: 50%; top: 50%; translate: -50% -50%; width: 900px; height: 900px; background: radial-gradient(circle, rgba(57,191,151,.4), transparent 62%); animation: breathe 7s ease-in-out infinite; }
.final h2 { font-size: clamp(50px, 9vw, 128px); line-height: .92; letter-spacing: -.06em; font-weight: 650; margin: 0 0 28px; }
.final h2 .serif { color: var(--green-light); font-size: 1.1em; }
.final .sub { margin: 0 auto 44px; }
.final-cta { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.qr { display: flex; align-items: center; gap: 16px; text-align: left; font-size: 14px; color: var(--text-2); }
.qr .code { width: 104px; height: 104px; padding: 10px; border-radius: 18px; background: #F4F8F5; box-shadow: 0 20px 50px -20px rgba(95,224,184,.5); }
.qr .code svg { width: 100%; height: 100%; display: block; }
@media (hover: none), (max-width: 760px) { .qr { display: none; } }
.finish { position: absolute; left: 0; right: 0; bottom: 0; height: 40px; z-index: -1; opacity: .12;
  background: repeating-conic-gradient(#fff 0 25%, transparent 0 50%) 0 0 / 20px 20px; -webkit-mask-image: linear-gradient(transparent, #000); mask-image: linear-gradient(transparent, #000); }

/* ---------- Fußzeile ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 120px; color: var(--muted); font-size: 14px; }
.foot { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.foot nav { display: flex; gap: 8px 26px; flex-wrap: wrap; }
.foot a { text-decoration: none; color: var(--text-2); }
.foot a:hover { color: var(--green-light); }
.foot .brand { color: var(--text); margin-bottom: 10px; }
@media (min-width: 761px) { footer { padding-bottom: 56px; } }

/* ---------- Mobile Download-Leiste ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 55;
  display: flex; align-items: center; gap: 12px; padding: 10px 10px 10px 12px; border-radius: 22px;
  background: rgba(14, 23, 19, .78); border: 1px solid var(--line-2); backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.8);
  transform: translateY(140%); transition: transform .6s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta img { width: 40px; height: 40px; border-radius: 10px; }
.sticky-cta div { flex: 1; line-height: 1.2; font-size: 14px; }
.sticky-cta small { color: var(--muted); font-size: 12px; }
.sticky-cta .btn { padding: 11px 18px; font-size: 15px; }
@media (min-width: 761px) { .sticky-cta { display: none; } }

/* ---------- Unterseiten (Datenschutz, Support) ---------- */
.doc { padding: 150px 0 100px; }
.doc .wrap { max-width: 780px; }
.doc h1 { font-size: clamp(40px, 6vw, 64px); letter-spacing: -.05em; line-height: 1; margin: 0 0 12px; }
.doc .meta { color: var(--muted); margin-bottom: 48px; font-family: var(--mono); font-size: 13px; }
.doc h2 { font-size: 22px; letter-spacing: -.02em; margin: 44px 0 12px; }
.doc h3 { font-size: 17px; margin: 26px 0 6px; color: var(--text); }
.doc p, .doc li { color: var(--text-2); }
.doc a { color: var(--green-light); }
.doc .lang { display: inline-flex; gap: 6px; margin-bottom: 30px; }
.doc .lang a { text-decoration: none; font-size: 13px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text-2); }
.doc .lang a[aria-current] { background: var(--green); color: #03110B; border-color: var(--green); }
.doc .qa { padding: 20px 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); margin-bottom: 12px; }
.doc .qa h3 { margin-top: 0; }
.doc .qa p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero h1 .word, .fade-up, .float, .hero-phone { transform: none !important; opacity: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track, .gallery-track { animation: none !important; }
  .runner { display: none; }
  html { scroll-behavior: auto; }
}

/* Läufer-Punkte erst zeigen, wenn die Routen gezeichnet sind (vorher säßen sie bei 0,0) */
.routes g { opacity: 0; animation: fadein .8s 2.7s forwards; }

/* ---------- Disziplinen ---------- */
.disc { margin-top: 56px; }
.disc-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.disc-tab {
  position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); color: var(--text-2); font-size: 15px; font-weight: 550; overflow: hidden;
  transition: color .3s, border-color .3s, background .3s, transform .3s var(--ease);
}
.disc-tab svg { color: var(--tint); }
.disc-tab:hover { color: var(--text); transform: translateY(-2px); }
.disc-tab.on { color: var(--text); border-color: color-mix(in srgb, var(--tint) 55%, transparent); background: color-mix(in srgb, var(--tint) 12%, transparent); }
.disc-tab .bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--tint); transform-origin: 0 50%; transform: scaleX(0); }
.disc-tab.on.auto .bar { animation: discbar var(--disc-ms, 6s) linear forwards; }
@keyframes discbar { to { transform: scaleX(1); } }
.disc-stage { position: relative; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.disc-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 48px; isolation: isolate; }
.disc-panel::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 80% at 25% 50%, color-mix(in srgb, var(--tint) 18%, transparent), transparent 70%); }
.disc-panel[hidden] { display: none; }
.disc-panel.on .disc-visual, .disc-panel.on .disc-copy > * { animation: discin .8s var(--ease) both; }
.disc-panel.on .disc-copy > *:nth-child(2) { animation-delay: .06s; } .disc-panel.on .disc-copy > *:nth-child(3) { animation-delay: .12s; } .disc-panel.on .disc-copy > *:nth-child(4) { animation-delay: .18s; }
@keyframes discin { from { opacity: 0; transform: translateY(18px); } }
.disc-visual { display: grid; place-items: center; min-height: 420px; }
.disc-visual .phone { --w: min(230px, 56vw); }
.seq { position: relative; width: min(420px, 100%); aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08); }
.seq img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .45s ease; }
.seq img.on { opacity: 1; }
.disc-count { font-family: var(--mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tint); margin-bottom: 14px; }
.disc-copy h3 { font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -.04em; margin: 0 0 16px; font-weight: 650; }
.disc-copy h3 .serif { color: var(--tint); }
.disc-copy p { color: var(--text-2); font-size: 17.5px; margin: 0 0 24px; }
.disc-copy .list li svg { color: var(--tint); }
.disc-more { text-align: center; color: var(--muted); font-size: 14.5px; margin: 22px 0 0; }
@media (max-width: 860px) {
  .disc-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin: 0 calc(var(--gutter) * -1) 24px; padding: 0 var(--gutter) 4px; scrollbar-width: none; }
  .disc-tabs::-webkit-scrollbar { display: none; }
  .disc-tab { flex: none; }
  .disc-panel { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px 32px; }
  .disc-visual { min-height: 0; }
}

/* ---------- Unterstützen & Sicherheit ---------- */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .support-grid { grid-template-columns: 1fr; gap: 40px; } }
.story { margin: 30px 0 0; padding: 28px 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); position: relative; }
.story::before { content: "“"; position: absolute; top: -34px; left: 18px; font-family: var(--serif); font-style: italic; font-size: 120px; line-height: 1; color: var(--green-light); opacity: .5; }
.story p { margin: 0 0 20px; font-size: 19px; line-height: 1.55; color: var(--text); letter-spacing: -.01em; }
.story footer { display: flex; align-items: center; gap: 12px; }
.story footer img { width: 36px; height: 36px; border-radius: 10px; }
.story footer b { display: block; font-size: 15px; }
.story footer small { color: var(--muted); font-size: 13px; }
.pickup { position: relative; border-radius: var(--r-xl); overflow: hidden; background: radial-gradient(80% 70% at 60% 60%, rgba(57,191,151,.12), transparent 70%), #0A120F; border: 1px solid var(--line-2); aspect-ratio: 520 / 440; box-shadow: 0 60px 120px -60px rgba(57,191,151,.4); }
.pickup-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.pickup-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; border-radius: 16px; background: rgba(16,26,21,.72); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); font-size: 13px; line-height: 1.25; white-space: nowrap; box-shadow: 0 16px 40px -16px rgba(0,0,0,.8); }
.pickup-card small { display: block; color: var(--muted); font-size: 11.5px; }
.pickup-card .ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.pickup-card.nav-card { left: 4%; bottom: 5%; }
.pickup-card.live { left: 4%; top: 5%; padding-left: 14px; }
.pickup-card.handoff { right: 4%; top: 36%; opacity: 0; animation: handoff 9s linear infinite; }
@keyframes handoff { 0%, 52% { opacity: 0; transform: translateY(8px) scale(.95); } 56%, 76% { opacity: 1; transform: none; } 80%, 100% { opacity: 0; transform: translateY(-6px); } }
.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.support-cards .tile { min-height: 0; }
@media (max-width: 860px) { .support-cards { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pickup-card { font-size: 11.5px; padding: 7px 10px 7px 7px; } .pickup-card .ico { width: 26px; height: 26px; } .pickup-card.handoff { top: 30%; } }
