/* MatchReel Landing — portiert 1:1 aus dem Claude-Design-Handoff
   (design_handoff_matchreel_landing). Tokens siehe Handoff-README. */

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0A0A0A;
  font-family: 'Montserrat', system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: #A4DC4A; text-decoration: none; }
a:hover { color: #c2ee75; }
input { font-family: 'Montserrat', system-ui, sans-serif; }
input::placeholder { color: #666; }
button { font-family: inherit; }

@keyframes mrPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes mrTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes mrGrain { 0% { background-position: 0 0; } 100% { background-position: 120px 80px; } }
@keyframes mrRise { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 14px; letter-spacing: 3px; color: #fff; }
.nav-brand:hover { color: #fff; }
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; display: block; }
.brand-reel { color: #C3FB68; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-how { font-weight: 700; font-size: 11px; letter-spacing: 1.5px; color: #CCCCCC; text-transform: uppercase; }
.nav-how:hover { color: #A4DC4A; }
@media (max-width: 720px) { .nav-how { display: none !important; } }
@media (max-width: 480px) {
  .nav-brand span { display: none; }         /* Icon bleibt, Wortmarke weicht */
  .nav-right { gap: 10px; }
  .nav-cta { padding: 10px 14px; }
}
.lang-toggle { display: flex; border: 1px solid #2a2a2a; border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  border: none; cursor: pointer; font-weight: 700; font-size: 10px; letter-spacing: 1px;
  padding: 6px 11px; background: transparent; color: #888;
}
.lang-toggle button.active { background: #A4DC4A; color: #0A0A0A; }
.nav-cta {
  background: #A4DC4A; color: #0A0A0A; font-weight: 800; font-size: 11px;
  letter-spacing: 1.5px; padding: 10px 20px; border-radius: 999px;
}
.nav-cta:hover { background: #c2ee75; color: #0A0A0A; }

/* ===== Hero ===== */
.hero { position: relative; min-height: max(100vh, 700px); display: flex; flex-direction: column; justify-content: center; }
.hero-bg, .hero-stripes, .hero-grain, .hero-vignette { position: absolute; inset: 0; }
.hero-bg { background: radial-gradient(120% 90% at 50% -10%, #1d2b14 0%, #121a0c 38%, #0a0d07 68%, #050604 100%); }
.hero-stripes { background: repeating-linear-gradient(90deg, rgba(164,220,74,.05) 0 90px, rgba(164,220,74,0) 90px 180px); }
.hero-horizon { position: absolute; left: 0; right: 0; top: 30%; height: 2px; background: rgba(255,255,255,.10); }
.hero-goalbox {
  position: absolute; left: 50%; top: 30%; width: 380px; height: 200px; transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,.09); border-top: none; border-radius: 0 0 10px 10px;
}
.grain {
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.022) 0 1px, transparent 1px 3px);
  animation: mrGrain 1.2s steps(4) infinite;
}
.hero-vignette { background: radial-gradient(90% 80% at 50% 45%, transparent 40%, rgba(0,0,0,.74) 100%); }
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: clamp(28px, 4vw, 48px); align-items: center;
  padding: 96px clamp(20px, 5vw, 40px) 48px;
  width: 100%; max-width: 1480px; margin: 0 auto; box-sizing: border-box;
}
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.eyebrow { font-weight: 700; font-size: 11px; letter-spacing: 3px; color: #A4DC4A; }
.hero-copy .eyebrow { animation: mrRise .8s .45s cubic-bezier(.2,.7,.2,1) both; }
.hero h1 {
  margin: 0; font-weight: 900; font-size: clamp(34px, 4.3vw, 62px); line-height: 1.04;
  letter-spacing: -1px; color: #fff; text-transform: uppercase; overflow-wrap: break-word;
  animation: mrRise .9s .55s cubic-bezier(.2,.7,.2,1) both;
}
.lime { color: #A4DC4A; }
.hero-sub {
  margin: 0; font-weight: 500; font-size: 17px; line-height: 1.55; color: #CCCCCC; max-width: 560px;
  animation: mrRise .9s .7s cubic-bezier(.2,.7,.2,1) both;
}
.hero-form-wrap { animation: mrRise .9s .85s cubic-bezier(.2,.7,.2,1) both; }
.hero-trust {
  font-weight: 600; font-size: 10px; letter-spacing: 1.5px; color: #666;
  animation: mrRise .9s 1s cubic-bezier(.2,.7,.2,1) both;
}
.hero-visual { display: flex; flex-direction: column; gap: 20px; align-items: center; animation: mrRise 1s .5s cubic-bezier(.2,.7,.2,1) both; }
.hero-collage { position: relative; width: 100%; max-width: 560px; aspect-ratio: 560/620; }
.hero-collage > div { position: absolute; border-radius: 14px; overflow: hidden; border: 1px solid #2a2a2a; }
.hero-collage img { width: 100%; display: block; }
.collage-1 { top: 0; right: 6%; width: 78%; transform: rotate(3deg); box-shadow: 0 20px 50px rgba(0,0,0,.6); }
.collage-2 { top: 30%; left: 0; width: 84%; transform: rotate(-3deg); z-index: 2; box-shadow: 0 26px 60px rgba(0,0,0,.7); }
.collage-3 { top: 60%; right: 0; width: 78%; transform: rotate(2deg); z-index: 3; box-shadow: 0 30px 70px rgba(0,0,0,.75); }
.hero-badge { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 11px; letter-spacing: 2px; color: #888; }
.dot-red { width: 9px; height: 9px; border-radius: 50%; background: #e64545; animation: mrPulse 1.4s infinite; }

/* ===== Formular (2 Instanzen) ===== */
.wl-form {
  display: flex; align-items: center; background: #161616; border: 1px solid #2a2a2a;
  border-radius: 999px; padding: 6px 6px 6px 22px; width: 440px; max-width: 100%; box-sizing: border-box;
}
.wl-form.error { border-color: #e64545; }
.wl-form input { flex: 1; background: transparent; border: none; outline: none; font-size: 14px; color: #fff; min-width: 0; }
.wl-form button {
  border: none; cursor: pointer; background: #A4DC4A; color: #0A0A0A; font-weight: 800;
  font-size: 12px; letter-spacing: 1.5px; padding: 13px 24px; border-radius: 999px; white-space: nowrap;
}
.wl-form button:hover { background: #c2ee75; }
.wl-form button:disabled { opacity: .6; cursor: default; }
.wl-success {
  display: flex; align-items: center; gap: 14px; background: rgba(164,220,74,.1);
  border: 1px solid rgba(164,220,74,.4); border-radius: 18px; padding: 18px 22px;
  width: 480px; max-width: 100%; box-sizing: border-box; text-align: left;
}
.wl-success .check {
  width: 34px; height: 34px; border-radius: 50%; background: #A4DC4A; color: #0A0A0A;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; flex: none;
}
.wl-success .col { display: flex; flex-direction: column; gap: 3px; }
.wl-success .title { font-weight: 800; font-size: 13px; letter-spacing: 1px; color: #A4DC4A; text-transform: uppercase; }
.wl-success .body { font-weight: 500; font-size: 13px; line-height: 1.5; color: #CCCCCC; }
.optin-hint { margin-top: 10px; font-weight: 500; font-size: 11px; color: #666; }
.hidden { display: none !important; }

/* ===== Ticker ===== */
.ticker { background: #A4DC4A; overflow: hidden; padding: 12px 0; }
.ticker-track { display: flex; white-space: nowrap; animation: mrTicker 18s linear infinite; width: max-content; }
.ticker-track span { font-weight: 800; font-size: 13px; letter-spacing: 2px; color: #0A0A0A; padding-right: 48px; }

/* ===== Heimkommen (Scroll-Telling) ===== */
.heim-wrap { height: 420vh; position: relative; background: #050505; }
.heim-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.heim-caps { position: absolute; left: 7%; top: 50%; transform: translateY(-50%); width: min(360px, 32vw); z-index: 2; }
.heim-cap { position: absolute; top: 0; left: 0; transform: translateY(-50%); }
#heimCap2 { opacity: 0; }
.heim-ghost {
  position: absolute; top: -96px; left: -24px; font-weight: 900; font-size: 210px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px #1c1c1c; pointer-events: none; user-select: none;
}
.heim-cap-inner { position: relative; }
.heim-eyebrow { font-weight: 700; font-size: 11px; letter-spacing: 3px; color: #666; margin-bottom: 14px; }
.heim-line1 { font-weight: 900; font-size: clamp(26px, 7.5vw, 38px); line-height: 1.05; color: #fff; text-transform: uppercase; }
.heim-kaputt {
  display: flex; font-weight: 900; font-size: clamp(36px, 10vw, 56px); line-height: 1.1;
  color: #fff; text-transform: uppercase; transform-origin: 0 100%;
}
.heim-kaputt span { display: inline-block; will-change: transform; }
.heim-sub { font-weight: 500; font-size: 15px; line-height: 1.55; color: #888; margin: 16px 0 0; }
.heim-line2 { font-weight: 900; font-size: clamp(28px, 8vw, 40px); line-height: 1.05; color: #fff; text-transform: uppercase; }
.heim-phone {
  position: absolute; left: 58%; top: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 620px; border-radius: 44px; background: #000; border: 2px solid #333;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 8px #111; overflow: hidden;
}
.heim-lock {
  position: absolute; inset: 0; background: linear-gradient(180deg, #101418 0%, #0a0c10 100%);
  display: flex; flex-direction: column; align-items: center; padding-top: 70px;
}
.lock-date { font-weight: 600; font-size: 15px; color: #9aa; letter-spacing: 1px; }
.lock-time { font-weight: 800; font-size: 64px; color: #fff; letter-spacing: -1px; margin-top: 2px; }
.heim-notif {
  margin-top: 26px; width: 86%; background: rgba(40,44,50,.92); border-radius: 18px;
  padding: 12px 14px; display: flex; gap: 10px; align-items: flex-start;
  opacity: 0; transform: translateY(-18px); box-sizing: border-box;
}
.notif-icon { width: 34px; height: 34px; border-radius: 9px; background: #1c4; display: flex; align-items: center; justify-content: center; font-size: 17px; flex: none; }
.notif-col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.notif-head { display: flex; justify-content: space-between; gap: 8px; }
.notif-title { font-weight: 700; font-size: 12.5px; color: #fff; }
.notif-now { font-weight: 500; font-size: 10px; color: #889; }
.notif-body { font-weight: 500; font-size: 12px; color: #cdd; line-height: 1.35; }
.heim-chat { position: absolute; inset: 0; background: #0d0f12; opacity: 0; display: flex; flex-direction: column; }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 18px 16px 12px; border-bottom: 1px solid #1c1f24; background: #111418; }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: #1c4; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.chat-title-col { display: flex; flex-direction: column; }
.chat-title { font-weight: 700; font-size: 13px; color: #fff; }
.chat-members { font-weight: 500; font-size: 10px; color: #788; }
.chat-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 16px 14px; }
.chat-bubble {
  align-self: flex-start; max-width: 80%; background: #1b1f25;
  border-radius: 16px 16px 16px 4px; padding: 9px 13px; opacity: 0; transform: translateY(14px);
}
.chat-sender { font-weight: 700; font-size: 10px; display: block; margin-bottom: 2px; }
.sender-fritz { color: #7EE0B0; }
.sender-jonas { color: #6DB4FF; }
.chat-msg { font-weight: 600; font-size: 13px; color: #fff; }
.chat-video-bubble { width: 86%; max-width: 86%; padding: 6px; }
.chat-video-frame {
  position: relative; border-radius: 12px; overflow: hidden;
  background: radial-gradient(120% 100% at 50% -10%, #1d2b14 0%, #0a0d07 80%);
  height: 130px; display: flex; align-items: center; justify-content: center;
}
.chat-scorebar { position: absolute; top: 8px; left: 8px; display: flex; align-items: center; background: #000; border-radius: 999px; padding: 3px 9px 3px 5px; }
.chat-scorebar .flag { width: 13px; height: 9px; border-radius: 2px; background: #E8E23A; margin-right: 5px; }
.chat-scorebar .team { font-weight: 800; font-size: 9px; color: #fff; }
.chat-scorebar .score { font-weight: 800; font-size: 10px; color: #7EE0B0; margin: 0 5px; }
.chat-play {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(164,220,74,.92);
  display: flex; align-items: center; justify-content: center;
  color: #0A0A0A; font-size: 16px; font-weight: 900; padding-left: 3px; box-sizing: border-box;
}
.chat-video-caption { display: block; font-weight: 600; font-size: 11px; color: #9ab; padding: 7px 8px 4px; }
.heim-video {
  position: absolute; inset: 0; opacity: 0; transform: scale(.3);
  display: flex; align-items: center; justify-content: center; background: #000; pointer-events: none;
}
.heim-video-bg { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% -10%, #1d2b14 0%, #121a0c 38%, #0a0d07 68%, #050604 100%); }
.heim-video-horizon { position: absolute; left: 0; right: 0; top: 34%; height: 2px; background: rgba(255,255,255,.10); }
.heim-video-goalbox {
  position: absolute; left: 50%; top: 34%; width: 340px; height: 180px; transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,.09); border-top: none; border-radius: 0 0 10px 10px;
}
.heim-video-inner { position: relative; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.heim-video-frame {
  position: relative; width: min(82vw, 124vh); aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  background: #000; border: 1px solid #222; box-shadow: 0 40px 120px rgba(0,0,0,.85);
}
.heim-video-frame video { width: 100%; height: 100%; object-fit: contain; display: block; }
.snd-btn {
  position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px;
  border: none; cursor: pointer; pointer-events: auto; background: rgba(0,0,0,.72); color: #fff;
  font-weight: 800; font-size: 12px; letter-spacing: 1.5px; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}
.snd-btn.on { background: #A4DC4A; color: #0A0A0A; }
.snd-btn svg { display: block; flex: none; }
.heim-payoff {
  font-weight: 900; font-size: clamp(24px, 6.5vw, 46px); line-height: 1.05; color: #fff;
  text-transform: uppercase; text-align: center; padding: 0 16px; opacity: 0; transform: translateY(24px);
}

/* ===== Sektionen allgemein ===== */
.section { padding: clamp(70px, 11vw, 140px) clamp(20px, 5vw, 40px); border-top: 1px solid #151515; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.bg-a { background: #0A0A0A; }
.bg-b { background: #050505; }
.section h2 {
  margin: 0 0 22px; font-weight: 900; font-size: clamp(30px, 6vw, 46px); line-height: 1.05;
  letter-spacing: -.5px; color: #fff; text-transform: uppercase;
}
.section .eyebrow { margin-bottom: 14px; }
.section-body { margin: 0 0 34px; font-weight: 500; font-size: 16px; line-height: 1.6; color: #CCCCCC; max-width: 460px; }
.two-col {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(36px, 5vw, 70px); align-items: center;
}
.bullets { display: flex; flex-direction: column; gap: 14px; }
.bullet { display: flex; align-items: center; gap: 14px; }
.bullet .sq { width: 8px; height: 8px; border-radius: 2px; background: #A4DC4A; flex: none; }
.bullet span:last-child { font-weight: 600; font-size: 14px; color: #fff; }

/* ===== So funktioniert's ===== */
.steps { background: #0A0A0A; padding: clamp(76px, 12vw, 150px) clamp(20px, 5vw, 40px) clamp(66px, 10vw, 130px); }
.steps h2 { margin-bottom: 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 28px; }
.step-card {
  background: #111111; border: 1px solid #1e1e1e; border-radius: 14px; padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.step-num { font-weight: 900; font-size: 52px; color: #A4DC4A; line-height: 1; }
.step-title { font-weight: 800; font-size: 18px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }
.step-body { margin: 0; font-weight: 500; font-size: 14px; line-height: 1.55; color: #888; }
.pitch-illu { position: relative; border-radius: 12px; overflow: hidden; background: #000; margin-top: 6px; aspect-ratio: 4/5; }
.pitch-illu .bg { position: absolute; inset: 0; background: radial-gradient(130% 90% at 50% -10%, #1d2b14 0%, #121a0c 40%, #0a0d07 72%, #050604 100%); }
.pitch-illu .stripes { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(164,220,74,.05) 0 34px, rgba(164,220,74,0) 34px 68px); }
.pitch-illu .horizon { position: absolute; left: 0; right: 0; top: 34%; height: 2px; background: rgba(255,255,255,.12); }
.pitch-illu .goalbox {
  position: absolute; left: 50%; top: 34%; width: 44%; height: 20%; transform: translateX(-50%);
  border: 2px solid rgba(255,255,255,.10); border-top: none; border-radius: 0 0 8px 8px;
}
.pitch-illu .ball { position: absolute; left: 23%; top: 32.2%; width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: .85; }
.pitch-illu .grain-layer { position: absolute; inset: 0; }
.rec-badge {
  position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.75); border-radius: 999px; padding: 6px 14px 6px 10px;
}
.rec-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #e64545; animation: mrPulse 1.4s infinite; }
.rec-badge .label { font-weight: 800; font-size: 10px; letter-spacing: 2px; color: #fff; }
.tripod { position: absolute; left: 50%; bottom: 7%; transform: translateX(-50%); width: 170px; height: 190px; }
.tripod-phone {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 128px; height: 66px;
  border-radius: 11px; background: #111; border: 2px solid #3a3a3a; box-shadow: 0 16px 40px rgba(0,0,0,.7); z-index: 2;
}
.tripod-display { position: absolute; inset: 6px; border-radius: 6px; overflow: hidden; background: radial-gradient(140% 100% at 50% -20%, #223317 0%, #0d1208 75%); }
.tripod-display .mini-horizon { position: absolute; left: 0; right: 0; top: 44%; height: 1px; background: rgba(255,255,255,.25); }
.tripod-display .mini-goalbox {
  position: absolute; left: 50%; top: 44%; width: 36%; height: 26%; transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.22); border-top: none; border-radius: 0 0 3px 3px;
}
.mini-scorebar { position: absolute; top: 4px; left: 5px; display: flex; align-items: center; gap: 4px; background: #000; border-radius: 999px; padding: 2px 6px; }
.mini-scorebar .flag { width: 7px; height: 5px; border-radius: 1px; background: #E8E23A; }
.mini-scorebar .team { font-weight: 800; font-size: 6.5px; color: #fff; letter-spacing: .5px; }
.mini-scorebar .score { font-weight: 800; font-size: 7px; color: #7EE0B0; }
.mini-rec { position: absolute; top: 5px; right: 6px; width: 6px; height: 6px; border-radius: 50%; background: #e64545; animation: mrPulse 1.4s infinite; }
.tripod-mount { position: absolute; top: 66px; left: 50%; transform: translateX(-50%); width: 14px; height: 18px; background: #2a2a2a; border-radius: 3px; z-index: 1; }
.tripod-leg { position: absolute; top: 80px; left: 50%; width: 5px; height: 104px; background: linear-gradient(180deg, #333, #1c1c1c); border-radius: 3px; transform-origin: 50% 0; }
.leg-l { transform: translateX(-50%) rotate(-24deg); }
.leg-r { transform: translateX(-50%) rotate(24deg); }
.leg-m { height: 96px; background: linear-gradient(180deg, #2a2a2a, #161616); transform: translateX(-50%); }
.pitch-illu .floor-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 26%; background: linear-gradient(180deg, transparent, rgba(5,6,4,.9)); }
.watch-frame-sm { display: flex; align-items: center; justify-content: center; flex: 1; padding: 18px 0 6px; }
.watch-frame-sm > div { width: 200px; border-radius: 34px; overflow: hidden; background: #000; border: 6px solid #1a1a1a; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.watch-frame-sm img, .step-shot img { width: 100%; display: block; }
.step-shot { border-radius: 12px; overflow: hidden; background: #000; margin-top: 6px; }
.step-shot img { margin-top: -1%; }
.steps-more-row { display: flex; justify-content: center; margin-top: 44px; }
.ghost-btn {
  display: flex; align-items: center; gap: 10px; border: 1px solid #2a2a2a; border-radius: 999px;
  padding: 13px 26px; font-weight: 800; font-size: 12px; letter-spacing: 1.5px; color: #fff;
  text-transform: uppercase; background: #111111;
}
.ghost-btn:hover { border-color: #A4DC4A; color: #A4DC4A; background: #111111; }

/* ===== Broadcast-Look ===== */
.phone-shot { position: relative; display: flex; justify-content: center; }
.phone-frame {
  width: 310px; border-radius: 44px; background: #000; border: 2px solid #333;
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 8px #111; overflow: hidden;
}
.phone-frame img { width: 100%; display: block; margin-top: -2%; }
.float-score {
  position: absolute; left: 0; top: 52px; display: flex; align-items: center; background: #000;
  border-radius: 999px; padding: 8px 18px 8px 12px; box-shadow: 0 12px 40px rgba(0,0,0,.8); border: 1px solid #222;
}
.float-score .flag { width: 26px; height: 18px; border-radius: 4px; background: #E8E23A; margin-right: 10px; }
.float-score .team { font-weight: 800; font-size: 14px; color: #fff; }
.float-score .score { font-weight: 800; font-size: 17px; color: #7EE0B0; margin: 0 10px; }
.float-goal {
  position: absolute; right: 0; bottom: 80px; display: flex; align-items: center; gap: 8px;
  background: #A4DC4A; border-radius: 8px; padding: 8px 14px; font-weight: 800; font-size: 11px;
  letter-spacing: 1.5px; color: #0A0A0A; box-shadow: 0 12px 40px rgba(0,0,0,.8);
}

/* ===== Apple Watch ===== */
.watch-duo { display: flex; justify-content: center; gap: 34px; align-items: center; flex-wrap: wrap; }
.watch-mock { width: 230px; border-radius: 44px; overflow: hidden; background: #000; border: 7px solid #1a1a1a; box-shadow: 0 30px 60px rgba(0,0,0,.6); }
.watch-mock img { width: 100%; display: block; }
.watch-mock.tilt-l { transform: rotate(-4deg); }
.watch-mock.tilt-r { transform: rotate(3deg); margin-top: 60px; }

/* ===== Statistiken ===== */
.stats h2 { max-width: 720px; }
.stats .section-body { max-width: 560px; margin-bottom: 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 28px; align-items: start; }
.stats-shot { border-radius: 22px; overflow: hidden; background: #000; border: 1px solid #1e1e1e; }
.stats-shot img { width: 100%; display: block; margin-top: -1%; }
.stats-col3 { display: flex; flex-direction: column; gap: 16px; }
.stats-share-shot { border-radius: 22px; overflow: hidden; border: 1px solid #2a2a2a; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.stats-share-shot img { width: 100%; display: block; margin-top: -1%; }
.share-pill {
  display: flex; align-items: center; gap: 10px; background: #111111; border: 1px solid #1e1e1e;
  border-radius: 999px; padding: 10px 18px; align-self: center;
}
.share-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #A4DC4A; }
.share-pill span:last-child { font-weight: 700; font-size: 11px; letter-spacing: 1.5px; color: #CCCCCC; text-transform: uppercase; }

/* ===== Privacy ===== */
.privacy { padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 40px); }
.privacy .section-inner { text-align: center; }
.privacy h2 { margin: 0 0 18px; font-size: clamp(28px, 5.5vw, 40px); }
.privacy p { margin: 0 auto 50px; font-weight: 500; font-size: 16px; line-height: 1.6; color: #888; max-width: 520px; }
.priv-chips { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.priv-chip {
  background: #111111; border: 1px solid #1e1e1e; border-radius: 999px; padding: 16px 30px;
  font-weight: 800; font-size: 13px; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; white-space: nowrap;
}

/* ===== Final CTA ===== */
.final-cta {
  background: radial-gradient(80% 100% at 50% 100%, #16220c 0%, #0A0A0A 70%);
  padding: clamp(76px, 12vw, 150px) clamp(20px, 5vw, 40px); border-top: 1px solid #151515;
}
.final-cta .section-inner {
  max-width: 760px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.final-cta h2 { margin: 0; font-size: clamp(32px, 7vw, 54px); line-height: 1.03; letter-spacing: -1px; }
.final-cta .cta-body { margin: 0; font-weight: 500; font-size: 16px; line-height: 1.6; color: #CCCCCC; max-width: 480px; }
.cta-form-col { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-form-col .wl-form { width: 460px; }
.cta-form-col .optin-hint { margin-top: 0; max-width: 420px; line-height: 1.5; }

/* ===== Footer ===== */
.footer {
  background: #050505; border-top: 1px solid #151515; padding: 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-brand { font-weight: 800; font-size: 13px; letter-spacing: 3px; color: #fff; }
.footer-brand .copy { font-weight: 500; font-size: 11px; letter-spacing: 1px; color: #555; margin-left: 10px; }
.footer-right { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.footer-right a { font-weight: 600; font-size: 12px; color: #888; }
.footer-right a:hover { color: #fff; }

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .pitch-illu .grain-layer { animation: none; }
  .ticker-track { animation: none; }
  .dot-red, .rec-badge .dot, .mini-rec { animation: none; }
  .hero-copy .eyebrow, .hero h1, .hero-sub, .hero-form-wrap, .hero-trust, .hero-visual { animation: none; }
}
