:root {
  --bg: #050608;
  --bg-soft: #090a0d;
  --surface: #0d0e12;
  --surface-2: #121318;
  --line: rgba(255, 255, 255, 0.1);
  --line-red: rgba(239, 30, 49, 0.35);
  --text: #f7f7f8;
  --muted: #999ba4;
  --muted-2: #696b74;
  --red: #ef1e31;
  --red-dark: #bd0c20;
  --red-bright: #ff3547;
  --blue: #2aa8ff;
  --violet: #9f35f2;
  --green: #11bc70;
  --gold: #ffae17;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: 1180px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(99, 9, 19, 0.11), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

::selection { color: #fff; background: var(--red-dark); }

:focus-visible {
  outline: 3px solid rgba(239, 30, 49, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #07080a;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section { position: relative; padding: 92px 0; }
.section[id] { scroll-margin-top: var(--header-height); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 6, 8, 0.96);
  box-shadow: 0 12px 38px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-icon { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 11px rgba(239,30,49,.26)); }
.brand-wordmark { display: grid; line-height: 1; letter-spacing: 0.15em; }
.brand-wordmark strong { font-size: 15px; font-weight: 900; }
.brand-wordmark small { margin-top: 5px; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: 0.36em; }

.menu-toggle {
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 90px 28px 40px;
  background: rgba(5, 6, 8, .97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.main-nav > a:not(.button) { color: #c6c7cc; font-size: 19px; font-weight: 750; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: #fff; }
.nav-download { margin-top: 8px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; flex: 0 0 auto; }
.button-primary { background: linear-gradient(135deg, var(--red-bright), #cf0019); box-shadow: 0 12px 34px rgba(239,30,49,.25); }
.button-primary:hover { box-shadow: 0 16px 42px rgba(239,30,49,.38); }
.button-ghost { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.035); color: #e2e2e5; }
.button-ghost:hover { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.07); }
.button-small { min-height: 42px; padding: 10px 16px; border-radius: 11px; font-size: 14px; }

.download-picker { position: relative; z-index: 12; }
.download-picker > summary { width: 100%; list-style: none; cursor: pointer; user-select: none; }
.download-picker > summary::-webkit-details-marker { display: none; }
.download-picker .picker-chevron { width: 16px; height: 16px; margin-left: 2px; transition: transform .2s ease; }
.download-picker[open] .picker-chevron { transform: rotate(180deg); }
.download-choice-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 9px);
  left: 0;
  width: max-content;
  min-width: 265px;
  display: grid;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: rgba(10,11,14,.97);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  backdrop-filter: blur(18px);
}
.download-choice-menu::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 10px; }
.download-picker:hover .download-choice-menu,
.download-picker:focus-within .download-choice-menu,
.download-picker[open] .download-choice-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.download-choice-menu a { min-height: 58px; display: flex; align-items: center; padding: 10px 12px; border: 1px solid transparent; border-radius: 10px; transition: border-color .18s ease, background .18s ease; }
.download-choice-menu a:hover,
.download-choice-menu a:focus-visible { border-color: rgba(239,30,49,.28); background: rgba(239,30,49,.09); }
.download-choice-menu a > span { display: grid; gap: 3px; }
.download-choice-menu strong { font-size: 13px; }
.download-choice-menu small { color: #858790; font-size: 10px; font-weight: 650; }
.download-choice-menu a.is-unavailable { cursor: not-allowed; opacity: .48; }
.download-picker-nav .download-choice-menu { right: 0; left: auto; }
.hero-actions .download-picker { width: 100%; }
.hero-actions .download-choice-menu,
.download-picker-large .download-choice-menu { width: 100%; min-width: 0; }

.hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-height) + 54px) 0 70px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #030406;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,4,6,.35), rgba(3,4,6,.24) 35%, #050608 94%),
    linear-gradient(90deg, rgba(5,6,8,.35), rgba(5,6,8,.05)),
    url("../assets/images/hero-hunt.webp") center 18% / cover no-repeat;
  opacity: .7;
  filter: saturate(.9) contrast(1.06);
}
.network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .52; }
.hero-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; filter: blur(95px); opacity: .18; }
.hero-glow-red { top: 10%; right: -180px; background: var(--red); }
.hero-glow-blue { top: 24%; left: -220px; background: #0076ba; }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 58px; align-items: center; }
.hero-copy { text-align: center; }
.eyebrow, .kicker {
  margin: 0 0 18px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--line-red); border-radius: 999px; background: rgba(10,10,12,.58); letter-spacing: .13em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 5px rgba(239,30,49,.12), 0 0 15px var(--red); animation: livePulse 2s ease-out infinite; }
@keyframes livePulse { 50% { box-shadow: 0 0 0 9px transparent, 0 0 21px var(--red); } }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; text-wrap: balance; }
h1 { margin-bottom: 23px; font-size: clamp(2.8rem, 11vw, 5.8rem); font-weight: 950; letter-spacing: -.055em; }
h1 span, h2 span { color: var(--red-bright); }
.hero-lead { max-width: 620px; margin: 0 auto 28px; color: #c1c2c7; font-size: clamp(1rem, 2.4vw, 1.18rem); line-height: 1.75; }
.hero-inspiration { max-width: 620px; margin: -12px auto 24px; color: #777981; font-size: 11px; font-weight: 700; line-height: 1.55; letter-spacing: .025em; }
.hero-beta-notice { max-width: 620px; display: flex; align-items: flex-start; gap: 12px; margin: 0 auto 20px; padding: 14px 16px; border: 1px solid rgba(239,30,49,.3); border-radius: 14px; background: linear-gradient(135deg, rgba(239,30,49,.12), rgba(10,10,12,.72)); box-shadow: inset 0 1px 0 rgba(255,255,255,.035); text-align: left; backdrop-filter: blur(12px); }
.hero-beta-notice > svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; color: var(--red-bright); }
.hero-beta-notice p { display: grid; gap: 2px; margin: 0; line-height: 1.45; }
.hero-beta-notice strong { color: #fff; font-size: 13px; font-weight: 880; }
.hero-beta-notice span { color: #aaaeb5; font-size: 12px; }
.hero-actions { display: grid; gap: 12px; }
.hero-meta { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; color: #aaaeb5; font-size: 12px; font-weight: 700; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--red); }

.hero-visual { position: relative; width: min(84vw, 350px); margin: 0 auto; }
.phone-shell {
  position: relative;
  z-index: 2;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 36px;
  background: linear-gradient(145deg, #35363c, #07080a 28%, #222329 82%);
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(239,30,49,.12);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform .25s ease-out;
}
.phone-shell::after { content: ""; position: absolute; inset: 6px; border-radius: 29px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.phone-shell img { width: 100%; height: auto; aspect-ratio: 430 / 932; object-fit: contain; border-radius: 29px; }
.radar { position: absolute; z-index: 0; left: 50%; top: 48%; width: 86%; aspect-ratio: 1; border: 1px solid rgba(239,30,49,.27); border-radius: 50%; transform: translate(-50%,-50%); }
.radar::before, .radar::after { content: ""; position: absolute; inset: 16%; border: inherit; border-radius: inherit; }
.radar::after { inset: 34%; }
.radar-one { animation: radarPulse 3.4s ease-out infinite; }
.radar-two { width: 120%; opacity: .3; animation: radarPulse 3.4s 1.7s ease-out infinite; }
@keyframes radarPulse { 0% { transform: translate(-50%,-50%) scale(.82); opacity: 0; } 35% { opacity: .6; } 100% { transform: translate(-50%,-50%) scale(1.25); opacity: 0; } }
.scroll-cue { display: none; }

.section-heading { max-width: 700px; margin-bottom: 45px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 8vw, 4.5rem); font-weight: 940; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.75; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.intro { background: linear-gradient(180deg, var(--bg), #07080a); }
.intro-grid { display: grid; gap: 14px; }
.glass-card, .feature-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.047), rgba(255,255,255,.016));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.intro-card { min-height: 280px; padding: 26px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.intro-card:hover { transform: translateY(-5px); border-color: rgba(239,30,49,.28); }
.intro-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 170px; height: 170px; border: 1px solid rgba(239,30,49,.1); border-radius: 50%; box-shadow: 0 0 0 26px rgba(239,30,49,.025), 0 0 0 54px rgba(239,30,49,.02); }
.card-number { position: absolute; top: 23px; right: 25px; color: #3d3f46; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 14px; }
.icon-box svg { width: 23px; height: 23px; }
.icon-box.red { color: var(--red-bright); background: rgba(239,30,49,.13); }
.icon-box.blue { color: var(--blue); background: rgba(42,168,255,.13); }
.icon-box.violet { color: var(--violet); background: rgba(159,53,242,.14); }
.icon-box.green { color: var(--green); background: rgba(17,188,112,.13); }
.icon-box.gold { color: var(--gold); background: rgba(255,174,23,.13); }
.intro-card h3, .feature-card h3 { margin-bottom: 12px; font-size: 21px; font-weight: 860; }
.intro-card p, .feature-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }

.roles-section { overflow: hidden; background: #07080a; }
.roles-lines { position: absolute; inset: -12%; opacity: .12; background-image: linear-gradient(rgba(239,30,49,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(239,30,49,.15) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to bottom, transparent, black 25%, black 72%, transparent); transform: rotate(-7deg) scale(1.08); transform-origin: center; }
.role-switch { display: inline-flex; width: 100%; margin-bottom: 22px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: #0a0b0e; }
.role-switch button { flex: 1; min-height: 48px; display: inline-flex; justify-content: center; align-items: center; gap: 9px; border: 0; border-radius: 10px; color: #7e8088; background: transparent; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.role-switch button.is-active { color: #fff; background: #15161b; box-shadow: 0 7px 20px rgba(0,0,0,.3); }
.runner-dot, .hunter-dot { width: 8px; height: 8px; border-radius: 50%; }
.runner-dot { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.hunter-dot { background: var(--red); box-shadow: 0 0 10px var(--red); }
.role-stage { position: relative; }
.role-panel { min-height: 630px; display: grid; align-items: center; gap: 35px; padding: 27px; border: 1px solid var(--line); border-radius: 26px; background: rgba(7,8,10,.87); box-shadow: var(--shadow); }
.js .role-panel:not(.is-active) { display: none; }
.role-label { margin-bottom: 14px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.hunter-panel .role-label { color: var(--red-bright); }
.role-copy h3 { margin-bottom: 18px; font-size: clamp(2rem, 7vw, 3.45rem); font-weight: 930; letter-spacing: -.04em; }
.role-copy > p:not(.role-label) { color: var(--muted); }
.check-list { display: grid; gap: 13px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; color: #d7d8dc; font-size: 14px; font-weight: 650; }
.check-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; font-size: 12px; font-weight: 900; }
.blue-checks li::before { color: var(--blue); background: rgba(42,168,255,.13); }
.red-checks li::before { color: var(--red-bright); background: rgba(239,30,49,.13); }
.role-map {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(3,8,12,.32), rgba(3,8,12,.62)),
    url("../assets/images/map-texture.webp") center / cover no-repeat;
  box-shadow: inset 0 0 65px rgba(0,0,0,.38);
}
.role-map::before {
  content: "© OpenStreetMap contributors";
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 8px;
  padding: 3px 6px;
  border-radius: 5px;
  color: rgba(255,255,255,.72);
  background: rgba(3,6,9,.68);
  font-size: 7px;
  line-height: 1;
}
.map-grid { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(5,8,12,.35)); }
.zone-ring { position: absolute; left: 18%; top: 11%; width: 68%; aspect-ratio: 1; border: 2px solid rgba(42,168,255,.38); border-radius: 50%; box-shadow: inset 0 0 60px rgba(42,168,255,.08); }
.hunter-panel .zone-ring { border-color: rgba(239,30,49,.38); box-shadow: inset 0 0 60px rgba(239,30,49,.08); }
.marker { position: absolute; z-index: 2; width: 14px; height: 14px; border: 3px solid #fff; border-radius: 50%; }
.marker::after { content: ""; position: absolute; inset: -8px; border: 1px solid currentColor; border-radius: 50%; animation: markerPulse 2s ease-out infinite; }
@keyframes markerPulse { to { inset: -19px; opacity: 0; } }
.marker-runner { left: 52%; top: 48%; color: var(--blue); background: var(--blue); box-shadow: 0 0 17px var(--blue); }
.marker-hunter { color: var(--red); background: var(--red); box-shadow: 0 0 17px var(--red); }
.marker-hunter-a { left: 27%; top: 66%; }
.marker-hunter-b { right: 18%; top: 26%; }
.scan-line { position: absolute; z-index: 1; left: 52%; top: 48%; width: 41%; height: 2px; transform-origin: left center; background: linear-gradient(90deg, rgba(239,30,49,.8), transparent); animation: scan 5s linear infinite; }
@keyframes scan { to { transform: rotate(360deg); } }
.role-status { position: absolute; z-index: 3; left: 15px; bottom: 15px; display: grid; padding: 9px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(5,6,8,.85); }
.role-status small { color: #6d7078; font-size: 8px; letter-spacing: .13em; }
.role-status strong { color: var(--blue); font-size: 11px; letter-spacing: .08em; }
.hunter-panel .role-status strong { color: var(--red-bright); }

.process-section { background: linear-gradient(#07080a, var(--bg)); }
.process-list { --process-progress: 1; position: relative; display: grid; gap: 0; max-width: 900px; margin: 0 auto; padding: 0; list-style: none; counter-reset: process; }
.process-item { position: relative; display: grid; grid-template-columns: 44px 60px 1fr; gap: 13px; align-items: start; padding: 0 0 42px; }
.process-item:not(:last-child)::after { content: ""; position: absolute; top: 58px; left: 73px; width: 1px; height: calc(100% - 58px); background: linear-gradient(var(--line-red), rgba(255,255,255,.05)); }
.process-index { padding-top: 17px; color: #565860; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.process-icon { position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid var(--line-red); border-radius: 18px; color: var(--red-bright); background: #0d0e12; box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.process-icon svg { width: 25px; height: 25px; }
.process-item h3 { margin: 4px 0 8px; font-size: 20px; }
.process-item p { margin: 0; color: var(--muted); line-height: 1.65; }
.process-story { position: relative; }
.process-visual { display: none; }
.story-device {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: #090a0d;
  box-shadow: 0 42px 100px rgba(0,0,0,.58), 0 0 70px rgba(239,30,49,.09), inset 0 1px 0 rgba(255,255,255,.07);
}
.story-device::before { content: ""; position: absolute; z-index: 8; top: 10px; left: 50%; width: 76px; height: 19px; border-radius: 99px; background: #020304; transform: translateX(-50%); }
.story-device-head { position: relative; z-index: 5; min-height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 12px 22px; border-bottom: 1px solid rgba(255,255,255,.08); color: #d9dae0; background: rgba(5,6,8,.92); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.story-device-head span { display: inline-flex; align-items: center; gap: 7px; }
.story-device-head span i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }
.story-device-head b { color: #73757e; font-size: 7px; letter-spacing: .16em; }
.story-scenes { position: relative; height: calc(100% - 56px); }
.story-scene { position: absolute; inset: 0; display: none; flex-direction: column; padding: 31px 28px 26px; overflow: hidden; }
.story-scene.is-active { display: flex; }
.story-scene h3 { margin-bottom: 22px; font-size: clamp(1.75rem,3vw,2.45rem); font-weight: 930; letter-spacing: -.045em; }
.story-state { width: fit-content; margin-bottom: 13px; padding: 6px 9px; border: 1px solid rgba(239,30,49,.3); border-radius: 99px; color: #ff6573; background: rgba(239,30,49,.09); font-size: 7px; font-weight: 900; letter-spacing: .17em; }
.story-state-blue { color: #61bdff; border-color: rgba(42,168,255,.3); background: rgba(42,168,255,.09); }
.story-state-violet { color: #c47afa; border-color: rgba(159,53,242,.32); background: rgba(159,53,242,.1); }
.story-code { display: grid; justify-items: center; margin-bottom: 21px; padding: 20px; border: 1px solid rgba(239,30,49,.25); border-radius: 17px; background: radial-gradient(circle at 50% 130%, rgba(239,30,49,.13), transparent 66%), #0e0f13; }
.story-code small { color: #777983; font-size: 8px; font-weight: 850; letter-spacing: .18em; }
.story-code strong { margin-top: 6px; font-size: 29px; letter-spacing: .25em; }
.story-player { min-height: 59px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; border-top: 1px solid rgba(255,255,255,.08); }
.story-player > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: #27282e; font-size: 12px; font-style: normal; font-weight: 900; }
.story-player > span { display: grid; }
.story-player strong { font-size: 12px; }
.story-player small { color: #7d7f88; font-size: 8px; }
.story-player > b { color: #35d07f; font-size: 13px; }
.story-map { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(rgba(3,8,12,.12),rgba(3,8,12,.35)), url("../assets/images/map-texture.webp") center / cover no-repeat; box-shadow: inset 0 0 55px rgba(0,0,0,.32); }
.story-zone-map { min-height: 270px; margin-bottom: 13px; }
.story-zone-ring { position: absolute; left: 50%; top: 50%; width: 68%; aspect-ratio: 1; border: 2px solid rgba(42,168,255,.7); border-radius: 50%; background: rgba(42,168,255,.07); box-shadow: 0 0 32px rgba(42,168,255,.12), inset 0 0 42px rgba(42,168,255,.08); transform: translate(-50%,-50%); }
.story-center-marker { position: absolute; z-index: 2; left: 50%; top: 50%; width: 16px; height: 16px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px var(--blue); transform: translate(-50%,-50%); }
.story-map-label { position: absolute; z-index: 3; right: 12px; bottom: 12px; left: 12px; display: grid; padding: 10px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; background: rgba(5,6,8,.86); backdrop-filter: blur(12px); }
.story-map-label small { color: #6e7078; font-size: 7px; letter-spacing: .15em; }
.story-map-label strong { font-size: 11px; }
.story-setting { min-height: 48px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); }
.story-setting span { color: #777983; font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.story-setting strong { font-size: 12px; }
.story-role { min-height: 85px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.025); }
.story-role > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 14px; font-size: 15px; font-weight: 950; }
.story-role > div { display: grid; }
.story-role small { font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.story-role strong { margin-top: 3px; font-size: 11px; }
.story-role > b { font-size: 22px; }
.story-role-runner { border-color: rgba(42,168,255,.24); background: rgba(42,168,255,.055); }
.story-role-runner > span { color: var(--blue); background: rgba(42,168,255,.14); }
.story-role-runner small, .story-role-runner > b { color: #55b9ff; }
.story-role-hunter { border-color: rgba(239,30,49,.25); background: rgba(239,30,49,.055); }
.story-role-hunter > span { color: var(--red-bright); background: rgba(239,30,49,.14); }
.story-role-hunter small, .story-role-hunter > b { color: #ff6573; }
.story-versus { position: relative; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; align-self: center; margin: -7px 0; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; color: #777983; background: #0b0c10; font-size: 7px; font-weight: 900; }
.story-tools { display: flex; justify-content: center; gap: 7px; margin-top: auto; }
.story-tools span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 99px; color: #73757d; background: rgba(255,255,255,.025); font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.story-hunt-scene { padding: 0; background: #050608; }
.story-live-map { position: absolute; inset: 0; border: 0; border-radius: 0; }
.story-live-map::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 47%, transparent 0 18%, rgba(5,6,8,.25) 55%, rgba(5,6,8,.82)); }
.story-live-map .story-zone-ring { width: 74%; border-color: rgba(239,30,49,.42); background: rgba(239,30,49,.035); }
.story-live-marker { position: absolute; z-index: 3; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; }
.story-live-marker.runner { left: 49%; top: 45%; color: var(--blue); background: var(--blue); box-shadow: 0 0 17px var(--blue); }
.story-live-marker.hunter { color: var(--red); background: var(--red); box-shadow: 0 0 17px var(--red); }
.story-live-marker.hunter-one { left: 30%; top: 68%; }
.story-live-marker.hunter-two { right: 23%; top: 27%; }
.story-radar-sweep { position: absolute; z-index: 2; left: 51%; top: 47%; width: 42%; height: 2px; transform-origin: left center; background: linear-gradient(90deg, rgba(239,30,49,.85), transparent); animation: scan 4.5s linear infinite; }
.story-countdown { position: relative; z-index: 5; display: grid; justify-items: center; margin: auto; text-align: center; text-shadow: 0 8px 30px rgba(0,0,0,.8); }
.story-countdown small { color: #a6a8af; font-size: 8px; font-weight: 900; letter-spacing: .22em; }
.story-countdown strong { font-size: clamp(5rem,9vw,7rem); line-height: .95; font-variant-numeric: tabular-nums; font-weight: 950; letter-spacing: -.08em; }
.story-countdown span { margin-top: 10px; color: #ff6573; font-size: 9px; font-weight: 900; letter-spacing: .19em; }
.story-live-status { position: relative; z-index: 5; min-height: 64px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; margin: 0 18px 18px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(7,8,10,.89); backdrop-filter: blur(15px); }
.story-live-status > i { width: 9px; height: 9px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 14px #35d07f; }
.story-live-status > span { display: grid; }
.story-live-status small { color: #55ce8c; font-size: 7px; font-weight: 900; letter-spacing: .15em; }
.story-live-status strong { font-size: 10px; }
.story-live-status > b { font-size: 13px; font-variant-numeric: tabular-nums; }
.story-caption { position: relative; z-index: 5; width: min(100%,430px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; margin-top: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(13,14,18,.86); backdrop-filter: blur(15px); }
.story-caption > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; color: #ff6573; background: rgba(239,30,49,.12); font-size: 9px; font-weight: 900; }
.story-caption > div:nth-child(2) { display: grid; }
.story-caption small { color: #6f7179; font-size: 7px; font-weight: 900; letter-spacing: .15em; }
.story-caption strong { font-size: 12px; }
.story-dots { display: flex; gap: 5px; }
.story-dots i { width: 5px; height: 5px; border-radius: 99px; background: #3d3f46; transition: width .25s ease, background .25s ease; }
.story-dots i.is-active { width: 15px; background: var(--red); }
.story-orbit { position: absolute; z-index: -1; left: 215px; top: 45%; aspect-ratio: 1; border: 1px solid rgba(239,30,49,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.story-orbit-one { width: 112%; }
.story-orbit-two { width: 140%; opacity: .45; }

.features-section { background: var(--bg); }
.feature-bento { display: grid; gap: 14px; }
.feature-card { min-height: 280px; padding: 25px; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(239,30,49,.28); }
.feature-card .icon-box { margin-bottom: 25px; }
.feature-tag { margin-bottom: 8px !important; color: var(--red-bright) !important; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.mini-map {
  position: relative;
  min-height: 235px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(rgba(3,8,12,.22), rgba(3,8,12,.42)),
    url("../assets/images/map-texture.webp") center / cover no-repeat;
  box-shadow: inset 0 0 45px rgba(0,0,0,.28);
  transform: perspective(500px) rotateX(5deg);
}
.mini-map::after {
  content: "© OpenStreetMap contributors";
  position: absolute;
  z-index: 4;
  right: 7px;
  bottom: 6px;
  padding: 3px 5px;
  border-radius: 4px;
  color: rgba(255,255,255,.72);
  background: rgba(3,6,9,.68);
  font-size: 7px;
  line-height: 1;
}
.mini-map-zone { position: absolute; width: 190px; height: 190px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 2px solid rgba(39,224,135,.65); border-radius: 50%; background: rgba(39,224,135,.06); }
.mini-pin { position: absolute; z-index: 2; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red); }
.pin-one { top: 47%; left: 48%; }
.pin-two { top: 28%; left: 29%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.pin-three { top: 61%; right: 24%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.mini-route { position: absolute; top: 32%; left: 31%; width: 42%; height: 35%; border-top: 2px dashed rgba(42,168,255,.8); border-right: 2px dashed rgba(42,168,255,.8); transform: skew(-20deg) rotate(11deg); }
.speed-card { display: flex; flex-direction: column; background: radial-gradient(circle at 100% 100%, rgba(255,174,23,.13), transparent 55%), linear-gradient(145deg, rgba(255,255,255,.047), rgba(255,255,255,.016)); }
.speed-meter { position: relative; width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding: 10px 15px 17px; border: 1px solid rgba(255,174,23,.22); border-radius: 14px; background: rgba(255,174,23,.055); }
.speed-meter::before { content: "ZEITFENSTER"; color: rgba(255,213,132,.72); font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.speed-meter span { position: absolute; right: 15px; bottom: 9px; left: 15px; height: 3px; overflow: hidden; border-radius: 99px; background: rgba(255,174,23,.13); }
.speed-meter { --speed-progress: .72; }
.speed-meter span::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, #b86b00, var(--gold)); box-shadow: 0 0 10px rgba(255,174,23,.48); transform: scaleX(var(--speed-progress)); transform-origin: left center; }
@keyframes spin { to { transform: rotate(360deg); } }
.speed-meter b { color: #fff; font-size: 14px; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.feature-wide { min-height: 340px; }
.catch-code { margin-top: 26px; padding: 17px; border: 1px dashed rgba(42,168,255,.35); border-radius: 13px; color: #fff; background: rgba(42,168,255,.055); text-align: center; font-size: clamp(1.3rem,6vw,2.2rem); font-weight: 900; letter-spacing: .16em; }
.catch-code span { color: var(--blue); }

.social-section { overflow: hidden; background: linear-gradient(145deg, #08090b, #090609 58%, #07080a); }
.social-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(239,30,49,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(239,30,49,.12) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(circle at 78% 50%, #000, transparent 58%); }
.social-glow { position: absolute; right: -130px; top: 50%; width: 500px; height: 500px; border-radius: 50%; background: rgba(239,30,49,.1); filter: blur(110px); transform: translateY(-50%); }
.social-grid { position: relative; z-index: 2; display: grid; gap: 58px; align-items: center; }
.social-copy h2 { margin-bottom: 22px; font-size: clamp(2.6rem, 9vw, 5.1rem); font-weight: 950; letter-spacing: -.055em; }
.social-copy h2 span { color: var(--red-bright); }
.social-copy > p:not(.kicker) { max-width: 610px; color: #adaeb5; font-size: 17px; line-height: 1.75; }
.social-benefits { display: grid; gap: 10px; margin-top: 30px; }
.social-benefits article { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.social-benefits article > span { width: 37px; height: 37px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--red-bright); background: rgba(239,30,49,.12); font-size: 9px; font-weight: 900; }
.social-benefits article > div { display: grid; }
.social-benefits strong { font-size: 14px; }
.social-benefits small { margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.5; }

.social-preview { position: relative; width: min(100%, 560px); margin-inline: auto; padding-top: 22px; }
.preview-label { position: absolute; z-index: 5; top: 0; right: 15px; padding: 5px 9px; border: 1px solid rgba(239,30,49,.28); border-radius: 999px; color: #e75a68; background: #130b0e; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.friends-panel, .friend-profile-preview { border: 1px solid rgba(255,255,255,.12); background: rgba(13,14,18,.96); box-shadow: 0 28px 75px rgba(0,0,0,.48); backdrop-filter: blur(18px); }
.friends-panel { position: relative; z-index: 2; padding: 18px; border-radius: 21px; }
.friends-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.friends-panel-head > div { display: grid; }
.friends-panel-head small, .profile-head small { color: #e45361; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.friends-panel-head strong { margin-top: 2px; font-size: 22px; }
.friends-panel-head > span { color: #e85a68; font-size: 11px; font-weight: 800; }
.friends-summary { display: flex; align-items: center; gap: 7px; margin: 5px 0 8px; color: #989aa2; font-size: 11px; }
.friends-summary > i { width: 7px; height: 7px; border-radius: 50%; background: #35d07f; box-shadow: 0 0 9px rgba(53,208,127,.45); }
.friends-summary b { margin-left: auto; padding: 4px 8px; border-radius: 999px; color: #ff7b88; background: rgba(239,30,49,.13); font-size: 9px; }
.friend-row { min-height: 64px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 11px; border-top: 1px solid #25262b; }
.friend-avatar, .profile-avatar { position: relative; display: grid; place-items: center; border-radius: 13px; color: #fff; background: #27282e; font-weight: 900; }
.friend-avatar { width: 40px; height: 40px; }
.friend-avatar i, .profile-avatar i { position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border: 2px solid #101115; border-radius: 50%; background: #64656c; }
.friend-avatar i.online, .profile-avatar i { background: #35d07f; }
.friend-row > div:nth-child(2) { min-width: 0; display: grid; }
.friend-row strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.friend-row small { margin-top: 2px; color: #777981; font-size: 10px; }
.invite-preview { padding: 8px 10px; border-radius: 9px; color: #fff; background: var(--red); font-size: 10px; font-weight: 900; }
.game-status { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #ef5361; background: #29161a; font-size: 12px; }

.friend-profile-preview { position: relative; z-index: 3; width: calc(100% - 22px); margin: -6px 0 0 22px; padding: 17px; border-radius: 20px; background: linear-gradient(145deg, rgba(48,13,20,.98), rgba(14,15,19,.98) 35%); }
.profile-head { display: flex; align-items: center; gap: 12px; }
.profile-avatar { width: 54px; height: 54px; flex: 0 0 auto; border: 2px solid #5c1a25; border-radius: 16px; font-size: 22px; }
.profile-avatar i { width: 15px; height: 15px; border-width: 3px; }
.profile-head > div:last-child { display: grid; }
.profile-head strong { margin-top: 1px; font-size: 18px; }
.profile-head span { color: #5bd390; font-size: 9px; }
.profile-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-top: 14px; }
.profile-stats > div { display: grid; place-items: center; min-height: 58px; border: 1px solid #292a30; border-radius: 11px; background: #111216; }
.profile-stats strong { font-size: 16px; }
.profile-stats small { color: #777880; font-size: 8px; }
.activity-title { display: grid; margin: 15px 0 6px; }
.activity-title span { color: #ef5361; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.activity-title strong { font-size: 13px; }
.activity-row { min-height: 52px; display: flex; align-items: center; gap: 10px; border-top: 1px solid #28292e; }
.activity-row > i { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: #ef6b77; background: #29151a; font-size: 9px; font-style: normal; font-weight: 900; }
.activity-row > i.hunter { color: #f6c453; background: #28210f; }
.activity-row > div { display: grid; min-width: 0; }
.activity-row strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.activity-row small { color: #85868e; font-size: 8px; }

.screens-section { overflow: hidden; background: #08090b; }
.screen-slider { position: relative; margin-top: 30px; }
.slider-viewport { overflow: hidden; padding: 8px 0 28px; touch-action: pan-y; }
.slider-track { display: grid; gap: 24px; }
.js .slider-track { display: flex; gap: 0; transition: transform .55s cubic-bezier(.22,.75,.16,1); will-change: transform; }
.screen-slide { min-width: 100%; margin: 0; display: grid; justify-items: center; opacity: 1; }
.js .screen-slide { opacity: .72; transform: scale(.94); transition: opacity .45s ease, transform .45s ease; }
.js .screen-slide.is-active { opacity: 1; transform: scale(1); }
.screen-phone {
  position: relative;
  width: min(78vw, 330px);
  padding: 6px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 35px;
  background: linear-gradient(145deg, #34353a, #08090b 30%, #202126);
  box-shadow: 0 35px 80px rgba(0,0,0,.54), inset 0 0 0 1px rgba(255,255,255,.035);
  overflow: hidden;
}
.screen-phone img { width: 100%; height: auto; border-radius: 29px; aspect-ratio: 430 / 932; object-fit: contain; }
.screen-slide figcaption { width: min(78vw,330px); display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.screen-slide figcaption > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.screen-slide figcaption div { display: grid; }
.screen-slide figcaption strong { font-size: 14px; }
.screen-slide figcaption small { color: var(--muted); }
.slider-arrow { position: absolute; z-index: 4; top: 42%; width: 45px; height: 45px; display: none; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(11,12,15,.88); cursor: pointer; backdrop-filter: blur(12px); transition: background .2s ease, border-color .2s ease; }
.slider-arrow:hover { background: var(--red); border-color: var(--red); }
.slider-arrow svg { width: 20px; height: 20px; }
.slider-prev { left: -5px; }
.slider-next { right: -5px; }
.slider-dots { display: none; justify-content: center; gap: 9px; margin-top: 30px; }
.js .slider-dots { display: flex; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: #404149; cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dots button.is-active { width: 26px; background: var(--red); }

.fairplay-section { background: linear-gradient(120deg, #050608, #090608); overflow: hidden; }
.fairplay-section::before { content: ""; position: absolute; right: -200px; top: 10%; width: 450px; height: 450px; border-radius: 50%; background: rgba(239,30,49,.12); filter: blur(100px); }
.fairplay-grid { display: grid; gap: 50px; align-items: center; }
.fairplay-mark { position: relative; order: 2; width: min(65vw, 260px); aspect-ratio: 1; margin: 12px auto 0; }
.fairplay-copy { order: 1; }
.fairplay-mark img { position: relative; z-index: 2; width: 100%; height: 100%; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 0 35px rgba(239,30,49,.18)); }
.fairplay-mark span { position: absolute; top: 50%; left: 50%; width: 88%; aspect-ratio: 1; border: 1px solid rgba(239,30,49,.28); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 32px rgba(239,30,49,.025), 0 0 0 64px rgba(239,30,49,.016); animation: spin 22s linear infinite; }
.fairplay-copy h2 { font-size: clamp(2.2rem, 8vw, 4.3rem); font-weight: 940; letter-spacing: -.045em; }
.fairplay-copy > p:not(.kicker) { color: var(--muted); }
.safety-list { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.safety-list li { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.024); }
.safety-list li > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--red); background: rgba(239,30,49,.12); font-size: 9px; font-weight: 900; }
.safety-list div { display: grid; }
.safety-list strong { font-size: 14px; }
.safety-list small { color: var(--muted); }

.faq-section { background: #07080a; }
.faq-grid { display: grid; gap: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; justify-content: space-between; gap: 20px; padding: 22px 2px; cursor: pointer; list-style: none; font-weight: 790; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 4px; top: 9px; width: 12px; height: 2px; background: var(--red); transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 670px; margin: -5px 30px 22px 2px; color: var(--muted); }

.download-section { position: relative; padding: 100px 0; overflow: hidden; background: #050608; }
.download-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,8,.99), rgba(5,6,8,.72), rgba(5,6,8,.85)), url("../assets/images/hero-hunt.webp") center 34% / cover no-repeat; opacity: .65; }
.download-section::after { content: ""; position: absolute; left: 55%; top: 50%; width: 500px; height: 500px; border: 1px solid rgba(239,30,49,.15); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 65px rgba(239,30,49,.025), 0 0 0 130px rgba(239,30,49,.014); }
.download-grid { position: relative; z-index: 2; display: grid; gap: 45px; align-items: center; }
.download-copy h2 { margin-bottom: 20px; font-size: clamp(3rem, 12vw, 6rem); font-weight: 950; letter-spacing: -.06em; }
.download-copy > p:not(.kicker):not(.install-note) { max-width: 610px; color: #b5b6bc; font-size: 17px; }
.download-picker-large { width: 100%; margin-top: 18px; }
.button-download { width: 100%; margin-top: 0; padding: 15px 20px; }
.button-download > svg { width: 25px; height: 25px; }
.button-download > span { display: grid; text-align: left; }
.button-download .picker-chevron { width: 17px; height: 17px; margin-left: auto; }
.button-download small { margin-top: 4px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 650; }
.install-note { margin: 13px 0 0; color: #6f7178; font-size: 11px; line-height: 1.5; }
.qr-card { width: min(100%, 310px); margin: 0 auto; display: grid; justify-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(13,14,18,.87); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.qr-code { width: 184px; height: 184px; display: grid; place-items: center; margin-bottom: 18px; padding: 12px; border-radius: 14px; background: #fff; }
.qr-code img, .qr-code canvas { width: 160px !important; height: 160px !important; }
.qr-card strong { margin-bottom: 3px; }
.qr-card > span { color: var(--muted); font-size: 12px; }
.qr-card noscript a { color: var(--red); font-weight: 800; }

.site-footer { border-top: 1px solid var(--line); background: #050608; }
.footer-main { display: grid; gap: 45px; padding-top: 60px; padding-bottom: 45px; }
.footer-brand p { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 6px; color: #6e7078; font-size: 9px; letter-spacing: .16em; }
.footer-links a { width: fit-content; color: #b6b7bd; font-size: 13px; transition: color .2s ease; }
.footer-links a:hover { color: var(--red-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 20px; padding-bottom: 24px; border-top: 1px solid var(--line); color: #60626a; font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.75,.16,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .hero .reveal { opacity: 1; transform: none; }

/* Rechtliche Unterseiten */
.legal-page { min-height: 100vh; background: radial-gradient(circle at 85% 12%, rgba(239,30,49,.11), transparent 30rem), var(--bg); }
.legal-header { position: sticky; background: rgba(5,6,8,.9); border-bottom-color: var(--line); backdrop-filter: blur(18px); }
.legal-main { padding: calc(var(--header-height) + 55px) 0 90px; }
.legal-wrap { max-width: 820px; }
.legal-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 35px; color: #a8a9af; font-size: 13px; font-weight: 750; }
.legal-back:hover { color: #fff; }
.legal-back svg { width: 17px; height: 17px; }
.legal-title { margin-bottom: 18px; font-size: clamp(2.5rem,10vw,5rem); font-weight: 950; letter-spacing: -.05em; }
.legal-lead { color: var(--muted); font-size: 17px; }
.legal-card { margin-top: 36px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.legal-card h2 { margin-top: 35px; font-size: 22px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: #b1b2b8; }
.legal-card a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 540px) {
  .container { width: min(100% - 52px, var(--container)); }
  .hero-actions { display: flex; justify-content: center; }
  .hero-actions .download-picker { width: auto; }
  .hero-actions .download-choice-menu { width: max-content; min-width: 265px; }
  .button-download { width: auto; }
  .download-picker-large { width: fit-content; }
  .process-item { grid-template-columns: 55px 66px 1fr; gap: 17px; }
  .process-item:not(:last-child)::after { left: 101px; }
  .feature-bento { grid-template-columns: repeat(2,1fr); }
  .feature-large, .feature-wide { grid-column: 1 / -1; }
  .friends-panel { padding: 21px; }
  .friend-profile-preview { width: 86%; margin: -25px 0 0 auto; }
  .footer-main { grid-template-columns: 1fr 1.2fr; }
}

@media (min-width: 760px) {
  :root { --header-height: 82px; }
  .section { padding: 120px 0; }
  .hero { min-height: 900px; padding-top: calc(var(--header-height) + 60px); }
  .intro-grid { grid-template-columns: repeat(3,1fr); }
  .role-switch { width: auto; }
  .role-switch button { min-width: 175px; }
  .role-panel { min-height: 520px; grid-template-columns: .95fr 1.05fr; gap: 45px; padding: 45px; }
  .role-map { min-height: 390px; }
  .process-list::before { content: ""; position: absolute; top: 32px; left: 9%; right: 9%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-red) 12%, var(--line-red) 88%, transparent); }
  .process-list::after { content: ""; position: absolute; z-index: 1; top: 31px; left: 9%; right: 9%; height: 2px; background: linear-gradient(90deg, transparent, var(--red) 12%, var(--red) 88%, transparent); box-shadow: 0 0 14px rgba(239,30,49,.4); transform: scaleX(var(--process-progress)); transform-origin: left center; }
  .process-list { grid-template-columns: repeat(4,1fr); gap: 20px; }
  .process-item { display: block; padding: 0; text-align: center; }
  .process-item:not(:last-child)::after { display: none; }
  .process-index { display: block; padding: 0; margin-bottom: 10px; }
  .process-icon { margin: 0 auto 24px; }
  .process-item h3 { font-size: 18px; }
  .process-item p { font-size: 13px; }
  .screen-slider { width: min(100%,970px); margin-inline: auto; }
  .screen-slide { min-width: 50%; }
  .screen-phone, .screen-slide figcaption { width: min(34vw,315px); }
  .slider-arrow { display: grid; }
  .slider-prev { left: 1%; }
  .slider-next { right: 1%; }
  .fairplay-grid, .download-grid, .faq-grid { grid-template-columns: .85fr 1.15fr; gap: 80px; }
  .fairplay-mark { order: 0; width: min(80vw, 360px); margin: 0 auto; }
  .fairplay-copy { order: 0; }
  .faq-section .section-heading { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
  .button-download { min-width: 340px; }
  .footer-main { grid-template-columns: 1.3fr 1fr; }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(320px,.7fr); gap: 45px; }
  .hero-copy { text-align: left; }
  .hero-lead, .hero-inspiration, .hero-beta-notice { margin-left: 0; }
  .hero-actions, .hero-meta { justify-content: flex-start; }
  .hero-visual { width: min(37vw,390px); }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }
  .main-nav { position: static; width: auto; height: auto; flex-direction: row; justify-content: flex-end; gap: 26px; padding: 0; background: none; opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.button) { font-size: 13px; font-weight: 680; }
  .nav-download { margin-top: 0; margin-left: 5px; }
  .hero { min-height: 940px; }
  .hero::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,30,49,.3), transparent); }
  .scroll-cue { position: absolute; z-index: 5; bottom: 30px; left: 50%; display: grid; justify-items: center; gap: 9px; transform: translateX(-50%); color: #6a6c73; font-size: 8px; font-weight: 900; letter-spacing: .2em; }
  .scroll-cue span { position: relative; width: 20px; height: 32px; border: 1px solid #45474e; border-radius: 20px; }
  .scroll-cue span::after { content: ""; position: absolute; top: 7px; left: 8px; width: 2px; height: 6px; border-radius: 2px; background: var(--red); animation: scrollDot 2s ease infinite; }
  @keyframes scrollDot { 70% { transform: translateY(10px); opacity: 0; } }
  .gsap-motion .process-story { display: grid; grid-template-columns: minmax(430px,1.05fr) minmax(330px,.75fr); gap: clamp(60px,8vw,110px); align-items: start; }
  .gsap-motion .process-visual { position: sticky; top: calc(var(--header-height) + 24px); height: calc(100vh - var(--header-height) - 48px); min-height: 550px; display: grid; align-content: center; justify-items: center; }
  .gsap-motion .story-device { height: min(625px, calc(100vh - var(--header-height) - 128px)); min-height: 480px; }
  .gsap-motion .process-story .process-list { display: block; max-width: none; }
  .gsap-motion .process-story .process-list::before,
  .gsap-motion .process-story .process-list::after { display: none; }
  .gsap-motion .process-story .process-item { min-height: 55vh; display: grid; grid-template-columns: 40px 62px 1fr; gap: 16px; align-items: center; align-content: center; padding: 30px 10px 30px 23px; border-left: 1px solid rgba(255,255,255,.08); text-align: left; opacity: .36; transition: opacity .35s ease, border-color .35s ease; }
  .gsap-motion .process-story .process-item:last-child { min-height: 110vh; }
  .gsap-motion .process-story .process-item::before { content: ""; position: absolute; top: 50%; left: -2px; width: 3px; height: 0; border-radius: 99px; background: var(--red); box-shadow: 0 0 18px rgba(239,30,49,.7); transform: translateY(-50%); transition: height .4s cubic-bezier(.22,.75,.16,1); }
  .gsap-motion .process-story .process-item.is-active { border-left-color: rgba(239,30,49,.28); opacity: 1; }
  .gsap-motion .process-story .process-item.is-active::before { height: 42%; }
  .gsap-motion .process-story .process-item .process-index { padding: 0; color: #5f6169; transition: color .3s ease; }
  .gsap-motion .process-story .process-item.is-active .process-index { color: var(--red-bright); }
  .gsap-motion .process-story .process-item .process-icon { margin: 0; transition: border-color .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease; }
  .gsap-motion .process-story .process-item.is-active .process-icon { border-color: rgba(239,30,49,.62); color: #fff; background: rgba(239,30,49,.13); box-shadow: 0 14px 38px rgba(0,0,0,.35), 0 0 24px rgba(239,30,49,.12); }
  .gsap-motion .process-story .process-item h3 { font-size: clamp(1.4rem,2.2vw,2rem); }
  .gsap-motion .process-story .process-item p { max-width: 390px; font-size: 14px; }
  .feature-bento { grid-template-columns: 1.2fr .8fr .8fr; }
  .feature-large { grid-column: span 2; grid-row: span 2; min-height: 590px; display: grid; grid-template-rows: auto 1fr; }
  .feature-large .feature-copy { max-width: 520px; }
  .feature-wide { grid-column: span 2; min-height: 260px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
  .feature-wide .icon-box { margin: 0; }
  .feature-wide .catch-code { min-width: 265px; margin: 0; }
  .social-grid { grid-template-columns: .9fr 1.1fr; gap: 75px; }
  .social-preview { margin-right: 0; }
  .screen-slide { min-width: 33.333333%; }
  .screen-phone, .screen-slide figcaption { width: min(26vw,295px); }
  .footer-links { gap: 65px; }
}

@media (min-width: 1220px) {
  .slider-prev { left: -55px; }
  .slider-next { right: -55px; }
}

@media (min-width: 980px) and (max-height: 820px) {
  .story-scene { padding: 22px 24px 18px; }
  .story-scene h3 { margin-bottom: 14px; font-size: 1.7rem; }
  .story-state { margin-bottom: 9px; }
  .story-code { margin-bottom: 13px; padding: 13px; }
  .story-code strong { font-size: 24px; }
  .story-player { min-height: 49px; }
  .story-zone-map { min-height: 205px; margin-bottom: 8px; }
  .story-setting { min-height: 39px; }
  .story-role { min-height: 70px; padding: 10px; }
  .story-role > span { width: 39px; height: 39px; }
  .story-tools { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .phone-shell { transform: none !important; }
}

@media (prefers-contrast: more) {
  :root { --muted: #c8c9ce; --line: rgba(255,255,255,.28); }
  .button-ghost { border-color: #fff; }
}
