/* COLORPATH — Landing. Design-Sprache des Spiels: dunkles Neon-Rohr. */

@font-face { font-family: 'Michroma'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/Michroma-400.woff2') format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/ChakraPetch-400.woff2') format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/ChakraPetch-500.woff2') format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/ChakraPetch-600.woff2') format('woff2'); }
@font-face { font-family: 'Chakra Petch'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/ChakraPetch-700.woff2') format('woff2'); }

:root {
  --bg: #030409;
  --bg2: #060813;
  --glass: rgba(8, 11, 22, 0.62);
  --raised: rgba(13, 17, 32, 0.85);
  --stroke: rgba(140, 180, 255, 0.16);
  --stroke-hi: rgba(120, 200, 255, 0.45);
  --ink: #e8eefc;
  --soft: rgba(210, 224, 255, 0.72);
  --muted: rgba(180, 200, 240, 0.5);
  --orange: #ff9d1f;
  --green: #27e879;
  --blue: #2bb2ff;
  --pink: #ff3d8e;
  --cyan: #7fe9ff;
  --grad-lanes: linear-gradient(92deg, var(--orange), var(--green) 34%, var(--blue) 67%, var(--pink));
  --font-display: 'Michroma', sans-serif;
  --font-body: 'Chakra Petch', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(43, 98, 200, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 110%, rgba(255, 61, 142, 0.08), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--bg2); padding: 8px 14px; border-radius: 8px; z-index: 99; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px;
  background: rgba(3, 4, 9, 0.78);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand span { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.18em; }
.header-links { display: flex; gap: 22px; }
.header-links a { color: var(--soft); font-size: 14px; letter-spacing: 0.04em; }
.header-links a:hover { color: #fff; text-decoration: none; }

.store-badges { display: flex; gap: 10px; }
.store-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--stroke); border-radius: 999px;
  color: var(--ink); font-size: 13px; font-weight: 600;
  background: var(--glass);
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.store-badge:hover { border-color: var(--stroke-hi); transform: translateY(-1px); text-decoration: none; }
.store-badge svg { width: 18px; height: 18px; }

/* ---------------- Hero ---------------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.5em;
  text-transform: uppercase; color: rgba(150, 190, 255, 0.6); margin-bottom: 16px;
}
h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.12; letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(70, 140, 255, 0.35);
}
h1 .grad {
  background: var(--grad-lanes);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p.lead { color: var(--soft); font-size: 18px; max-width: 46ch; margin-bottom: 28px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #061024;
  background: linear-gradient(92deg, #59d8ff, #7fe9ff 55%, #aef4ff);
  border-radius: 999px; padding: 15px 34px;
  box-shadow: 0 0 34px rgba(80, 190, 255, 0.35), inset 0 0 12px rgba(255, 255, 255, 0.3);
  transition: transform 0.14s ease, box-shadow 0.2s ease;
}
.button:hover { transform: scale(1.04); text-decoration: none; box-shadow: 0 0 52px rgba(80, 190, 255, 0.55), inset 0 0 12px rgba(255, 255, 255, 0.35); }
.button.secondary {
  color: var(--ink); background: var(--glass); border: 1px solid var(--stroke);
  box-shadow: none;
}
.button.secondary:hover { border-color: var(--stroke-hi); }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }

/* Geräte-Mockup */
.device-stage { display: grid; place-items: center; }
.device {
  width: min(300px, 78vw);
  border-radius: 44px;
  border: 1px solid rgba(140, 180, 255, 0.25);
  background: #05060c;
  padding: 10px;
  box-shadow: 0 30px 90px rgba(43, 178, 255, 0.16), 0 8px 40px rgba(0, 0, 0, 0.6);
  animation: float 7s ease-in-out infinite;
}
.device-screen { border-radius: 35px; overflow: hidden; aspect-ratio: 1320 / 2868; position: relative; background: #030409; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------------- Facts ---------------- */
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.hero-facts div {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 14px;
  padding: 18px 22px; text-align: center;
}
.hero-facts strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 26px; margin-bottom: 4px;
  background: var(--grad-lanes); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-facts span { color: var(--soft); font-size: 14px; }

/* ---------------- Marquee ---------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--stroke); margin: 56px 0 0; padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track div { display: flex; gap: 48px; }
.marquee-track span {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(180, 205, 250, 0.55); white-space: nowrap;
}
.marquee-track i { color: var(--pink); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------------- Sektionen ---------------- */
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 38px); letter-spacing: 0.05em; line-height: 1.25;
  margin-bottom: 14px;
}
.section-head h2 .hl { background: var(--grad-lanes); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head p { color: var(--soft); font-size: 17px; }

/* Steuerung */
.control-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.control-card {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 14px;
  padding: 18px 20px; margin-bottom: 12px;
  display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: baseline;
}
.control-card .k { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(160, 200, 255, 0.8); }
.control-card .v { font-size: 15px; color: rgba(226, 234, 252, 0.88); }
.control-card em { font-style: normal; font-weight: 600; }
.c-cyan { color: var(--cyan); } .c-warn { color: #aab4d4; } .c-mag { color: var(--pink); }
kbd {
  font-weight: 600; font-size: 12px;
  background: rgba(130, 170, 255, 0.12); border: 1px solid rgba(150, 190, 255, 0.3);
  border-bottom-width: 2px; border-radius: 5px; padding: 1px 7px; margin: 0 2px;
}

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-card {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 16px;
  padding: 22px 20px; transition: border-color 0.15s ease, transform 0.12s ease;
}
.feature-card:hover { border-color: var(--stroke-hi); transform: translateY(-3px); }
.feature-visual { height: 64px; display: grid; place-items: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; font-weight: 600; line-height: 1.4; }
.lanes-bar { display: flex; gap: 5px; border-radius: 8px; overflow: hidden; }
.lanes-bar i { width: 14px; height: 46px; border-radius: 3px; opacity: 0.9; }
.lanes-bar i:nth-child(1) { background: var(--orange); }
.lanes-bar i:nth-child(2) { background: var(--green); }
.lanes-bar i:nth-child(3) { background: var(--blue); }
.lanes-bar i:nth-child(4) { background: var(--pink); }
.pill-demo {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.28em;
  color: #061024; padding: 6px 12px; border-radius: 999px;
  background: linear-gradient(92deg, var(--orange), var(--pink));
}
.orb-demo {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, var(--blue) 45%, var(--pink));
  box-shadow: 0 0 26px rgba(80, 190, 255, 0.6);
}
.shield-demo {
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(159, 232, 255, 0.85);
  background: radial-gradient(circle, rgba(127, 233, 255, 0.25), transparent 70%);
  box-shadow: 0 0 24px rgba(127, 233, 255, 0.45);
}

/* Einblicke */
.screens-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 240px);
  gap: 18px; overflow-x: auto; padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
}
.screens-rail figure { scroll-snap-align: start; }
.screens-rail img {
  width: 100%; aspect-ratio: 1320 / 2868; object-fit: cover;
  border-radius: 22px; border: 1px solid var(--stroke);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.screens-rail img:hover { transform: scale(1.02); border-color: var(--stroke-hi); }
.screens-rail figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-align: center; }
.rail-hint { text-align: center; color: var(--muted); font-size: 13px; margin-top: 6px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
.faq details {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 15px; list-style: none; }
.faq summary::after { content: '+'; float: right; color: var(--cyan); font-weight: 700; }
.faq details[open] summary::after { content: '–'; }
.faq p { margin-top: 10px; color: var(--soft); font-size: 15px; }

/* Download */
.download-panel {
  position: relative; overflow: hidden; text-align: center;
  background: var(--raised); border: 1px solid var(--stroke);
  border-radius: 24px; padding: 56px 28px;
}
.download-panel::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(120deg, rgba(255, 157, 31, 0.16), rgba(43, 178, 255, 0.18) 45%, rgba(255, 61, 142, 0.14));
  z-index: -1;
}
.download-panel img { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 18px; }
.download-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 3vw, 32px); letter-spacing: 0.08em; margin-bottom: 12px; }
.download-panel p { color: var(--soft); max-width: 52ch; margin: 0 auto 26px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-note { font-size: 13px; color: var(--muted); }

/* ---------------- Footer ---------------- */
.site-footer { border-top: 1px solid var(--stroke); padding: 30px 0; margin-top: 60px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-inner .brand span { font-size: 13px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--ink); }

/* ---------------- Legal ---------------- */
.legal-main { max-width: 880px; margin: 0 auto; padding: 64px 24px 40px; }
.legal-header { margin-bottom: 34px; }
.legal-header h1 { font-size: clamp(26px, 4vw, 40px); }
.legal-header p { color: var(--muted); font-size: 14px; letter-spacing: 0.06em; margin-top: 8px; }
.legal-grid { display: grid; gap: 12px; }
.legal-section {
  background: var(--glass); border: 1px solid var(--stroke); border-radius: 14px;
  padding: 20px 24px;
}
.legal-section h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.02em; }
.legal-section p { color: var(--soft); font-size: 15px; margin-bottom: 8px; }
.legal-section p:last-child { margin-bottom: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .hero-grid, .control-grid, .faq-layout { grid-template-columns: 1fr; }
  .device-stage { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .header-links { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 44px; }
  .hero-facts { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .store-badges .store-badge span { display: none; }
  .store-badge { padding: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .device, .marquee-track { animation: none; }
}
