:root {
  color-scheme:dark;
  --bg:#101014;
  --surface:#17161c;
  --text:#f4f0ee;
  --muted:#a7a2ad;
  --line:#ffffff14;
  --accent:#ffa77b;
  --font:Arial,Helvetica,sans-serif;
}
* {
  box-sizing:border-box;
}
html,body {
  margin:0;
  width:100%;
  height:100%;
  overflow:hidden;
}
body {
  background:#070709;
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  font-size:16px;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
  color:inherit;
  cursor:pointer;
}
button,a {
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
button:focus-visible,a:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:5px;
}
button {
  border:0;
}
::selection {
  background:#ff9d7550;
  color:#fff;
}
.app-shell {
  height:calc(100dvh - 32px);
  margin:16px;
  border:1px solid #ffffff1c;
  border-radius:22px;
  background:var(--bg);
  display:grid;
  grid-template-rows:90px minmax(0,1fr) 64px;
  overflow:hidden;
  position:relative;
  box-shadow:0 24px 70px #00000055,0 0 26px #ff9d6d08,inset 0 1px 0 #ffffff05;
}
.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  gap:24px;
  border-bottom:1px solid var(--line);
  z-index:2;
}
.wordmark {
  font-size:15px;
  font-weight:800;
  letter-spacing:.055em;
  white-space:nowrap;
}
.wordmark-period {
  color:var(--accent);
}
.navigation {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:4px;
  border:1px solid #ffffff16;
  padding:5px;
  border-radius:40px;
  background:#ffffff03;
}
.navigation a {
  padding:11px 21px;
  border-radius:30px;
  color:#b3afb8;
  font-size:14px;
  transition:background .25s,color .25s;
}
.navigation a:hover {
  color:#fff;
  background:#ffffff09;
}
.navigation a[aria-current="page"] {
  color:#fff;
  background:#ffffff10;
  box-shadow:inset 0 1px 0 #ffffff14;
}
.header-note {
  font-size:13px;
  color:var(--muted);
}
#content {
  position:relative;
  min-height:0;
  overflow:hidden;
}
.view {
  height:100%;
  animation:enter .65s cubic-bezier(.2,.8,.2,1) both;
}
.home {
  position:relative;
  isolation:isolate;
  overflow:auto;
  overscroll-behavior:contain;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:100%;
  text-align:center;
  padding:36px 20px;
}
.ambient {
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:-1;
  pointer-events:none;
  background:radial-gradient(ellipse at 51% 62%,#61312925,transparent 55%),radial-gradient(ellipse at 65% 44%,#43325518,transparent 50%);
}
#orbit {
  width:100%;
  height:100%;
  display:block;
}
.hero-content {
  position:relative;
  pointer-events:none;
}
.eyebrow {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:11px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.22em;
  color:#cfc3bc;
  margin:0 0 27px;
  font-weight:500;
}
.eyebrow:before {
  content:"";
  width:22px;
  height:1px;
  background:var(--accent);
}
h1 {
  font-weight:500;
  letter-spacing:-.075em;
  line-height:.88;
  margin:0;
  font-size:clamp(82px,10.2vw,170px);
}
.home h1 span {
  display:block;
}
.home h1 .soon {
  color:#ffa87d;
  background:linear-gradient(115deg,#ffe0b8 8%,#ffac7d 42%,#cf82a6 100%);
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-top:8px;
}
.hero-description {
  font-size:16px;
  color:#b8aeb5;
  margin:28px 0 0;
  line-height:1.65;
  letter-spacing:.01em;
}
.platforms {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0;
  position:relative;
  margin-top:36px;
  border:1px solid #ffffff18;
  border-radius:100px;
  background:#17131b90;
  backdrop-filter:blur(12px);
  padding:15px 7px;
  pointer-events:auto;
}
.platform {
  display:flex;
  gap:9px;
  align-items:center;
  padding:0 22px;
  font-size:14px;
  color:#e0d7d8;
}
.platform+.platform {
  border-left:1px solid #ffffff20;
}
.platform svg {
  width:17px;
  height:20px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.4;
}
.edge-label {
  position:absolute;
  left:34px;
  top:50%;
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:11px;
  letter-spacing:.2em;
  color:#766e79;
  text-transform:uppercase;
}
.home-index {
  position:absolute;
  right:34px;
  top:36px;
  display:flex;
  gap:8px;
  align-items:center;
  font-size:12px;
  letter-spacing:.1em;
  color:#a79aa5;
}
.home-index span {
  width:24px;
  height:1px;
  background:#a79aa5;
}
.interaction-hint {
  position:absolute;
  bottom:27px;
  right:34px;
  display:flex;
  align-items:center;
  gap:9px;
  color:#8c828d;
  font-size:12px;
}
.interaction-hint:before {
  content:'↗';
  font-size:17px;
  color:#cbb6bb;
}
.footer {
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 34px;
  font-size:12px;
  color:#8f8997;
  gap:16px;
}
.footer-center {
  color:#777180;
}
.page {
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:#51434c transparent;
  padding:56px max(40px,calc((100% - 1090px)/2)) 56px;
}
.page-kicker {
  color:var(--accent);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.2em;
  margin:0 0 17px;
}
.page h1 {
  font-size:clamp(46px,5.7vw,78px);
  letter-spacing:-.055em;
  line-height:1.02;
}
.page-intro {
  font-size:17px;
  line-height:1.6;
  color:var(--muted);
  max-width:560px;
  margin:22px 0 32px;
}
.support-grid {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
}
.card {
  padding:30px;
  border:1px solid #ffffff13;
  border-radius:20px;
  background:linear-gradient(125deg,#251d24,#17161b);
}
.card h2 {
  font-weight:500;
  letter-spacing:-.025em;
  font-size:26px;
  margin:14px 0;
}
.card p,.article p,.article li {
  font-size:16px;
  color:#b4acba;
  line-height:1.75;
}
.card-icon {
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#ffa77b13;
  color:var(--accent);
  font-size:24px;
}
.contact-link {
  display:inline-flex;
  align-items:center;
  gap:24px;
  background:var(--accent);
  color:#26170e;
  border-radius:40px;
  padding:15px 22px;
  margin-top:16px;
  min-height:48px;
  font-size:15px;
  font-weight:600;
}
.contact-link:hover {
  background:#ffd0ad;
  transform:translateY(-2px);
}
.contact-note {
  font-size:13px!important;
  color:#948694!important;
}
.faq {
  margin-top:38px;
}
.faq h2 {
  font-size:21px;
  font-weight:500;
}
.faq details {
  border-bottom:1px solid var(--line);
  padding:0 2px;
}
.faq summary {
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  min-height:56px;
}
.faq summary::-webkit-details-marker {
  display:none;
}
.faq summary:after {
  content:'+';
  color:var(--accent);
  font-size:21px;
}
.faq details[open] summary:after {
  content:'−';
}
.faq details p {
  color:var(--muted);
  line-height:1.7;
  margin:0 0 22px;
  max-width:700px;
}
.privacy-layout {
  display:grid;
  grid-template-columns:210px minmax(0,1fr);
  gap:64px;
  align-items:start;
}
.contents {
  position:sticky;
  top:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.contents a {
  font-size:14px;
  color:var(--muted);
  padding:12px 0;
  min-height:44px;
}
.contents a:hover {
  color:var(--accent);
}
.article {
  max-width:720px;
}
.article section {
  margin:0 0 32px;
  scroll-margin-top:24px;
}
.article h2 {
  font-size:23px;
  letter-spacing:-.025em;
  font-weight:500;
}
.article h2 span {
  color:#7c6e7b;
  font-size:13px;
  letter-spacing:0;
  margin-right:12px;
}
.article a {
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:4px;
}
.draft-note {
  padding:18px 20px;
  border:1px solid #ffa77b30;
  border-radius:12px;
  background:#ffa77b09;
  color:#ddbaab;
  font-size:14px;
  line-height:1.7;
  margin-bottom:32px;
}
.skip-link {
  position:fixed;
  top:-80px;
  left:30px;
  z-index:20;
  padding:15px;
  background:var(--accent);
  color:#111;
  border-radius:8px;
}
.skip-link:focus {
  top:25px;
}
.no-script {
  position:fixed;
  inset:140px 30px 100px;
  background:var(--bg);
  padding:30px;
  z-index:10;
  line-height:1.8;
}
body.motion-paused * {
  animation:none!important;
  transition:none!important;
}
@keyframes enter {
  from {
    opacity:0;
    transform:translateY(12px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}
@media(min-width:1500px) {
  .app-shell {
    max-width:1800px;
    margin:24px auto;
    height:calc(100dvh - 48px);
    width:calc(100% - 48px);
  }
}
@media(min-width:1001px) {
  .app-shell {
    margin:32px 72px;
    width:calc(100% - 144px);
    height:calc(100dvh - 64px);
    box-shadow:0 24px 70px #00000070,0 0 1px #ffc59b30,0 0 30px #ff9d6d0d,0 0 80px #ff874b06,inset 0 1px 0 #ffffff08;
  }
}
@media(min-width:1500px) {
  .app-shell {
    margin:48px auto;
    width:calc(100% - 216px);
    height:calc(100dvh - 96px);
  }
}
@media(min-width:1001px) and (max-width:1250px) {
  .header-note { display:none; }
}
@media(max-width:1000px) {
  .header-note {
    display:none;
  }
  .navigation {
    position:static;
    transform:none;
  }
  .header {
    padding:0 25px;
  }
  .home h1 {
    font-size:clamp(92px,13vw,150px);
  }
  .page {
    padding:40px;
  }
  .privacy-layout {
    gap:35px;
    grid-template-columns:170px 1fr;
  }
  .footer-center {
    display:none;
  }
}
@media(max-width:650px) {
  .app-shell {
    margin:8px;
    height:calc(100dvh - 16px);
    border-radius:20px;
    grid-template-rows:116px minmax(0,1fr) 60px;
  }
  .header {
    flex-direction:column;
    justify-content:center;
    gap:15px;
    padding:12px 16px;
  }
  .wordmark {
    font-size:13px;
  }
  .navigation {
    padding:4px;
  }
  .navigation a {
    padding:9px 22px;
    font-size:13px;
  }
  .header .desktop-only {
    display:none;
  }
  .home {
    padding:36px 14px;
  }
  .home h1 {
    font-size:clamp(76px,19vw,117px);
  }
  .eyebrow {
    font-size:11px;
    letter-spacing:.16em;
    margin-bottom:24px;
  }
  .hero-description {
    font-size:14px;
    margin-top:23px;
  }
  .platforms {
    margin-top:28px;
    padding:13px 0;
  }
  .platform {
    padding:0 14px;
    font-size:12px;
    gap:7px;
  }
  .platform svg {
    width:14px;
    height:18px;
  }
  .edge-label,.home-index,.interaction-hint {
    display:none;
  }
  .footer {
    padding:0 17px;
    font-size:11px;
  }
  .page {
    padding:32px 22px;
  }
  .page-intro {
    font-size:16px;
    margin-bottom:25px;
  }
  .support-grid {
    grid-template-columns:1fr;
    gap:16px;
  }
  .card {
    padding:24px;
  }
  .privacy-layout {
    display:block;
  }
  .contents {
    position:static;
    flex-direction:row;
    flex-wrap:wrap;
    gap:0 18px;
    margin-bottom:28px;
  }
  .contents a {
    font-size:13px;
    padding:8px 0;
  }
  .page h1 {
    font-size:49px;
  }
  .article h2 {
    font-size:22px;
  }
}
@media(max-height:700px) and (min-width:651px) {
  .app-shell {
    grid-template-rows:72px minmax(0,1fr) 52px;
  }
  .home {
    padding:28px 20px;
  }
  .home h1 {
    font-size:clamp(72px,9vw,108px);
  }
  .eyebrow {
    margin-bottom:18px;
  }
  .hero-description {
    margin-top:17px;
  }
  .platforms {
    margin-top:22px;
  }
  .interaction-hint {
    bottom:20px;
  }
}
@media(max-height:600px) {
  .home {
    justify-content:flex-start;
  }
  .hero-content {
    margin:auto 0;
  }
  .home-index {
    display:none;
  }
}
@media(prefers-reduced-motion:reduce) {
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}
.header-right {
  display:flex;
  align-items:center;
  gap:22px;
}
.language-switch {
  display:flex;
  align-items:center;
  gap:2px;
}
.language-switch button {
  background:transparent;
  color:#928895;
  border-radius:8px;
  min-width:38px;
  min-height:44px;
  font-size:12px;
}
.language-switch button[aria-pressed="true"] {
  color:#ffc29e;
  background:#ffa77b0c;
}
.language-switch button:hover {
  color:#fff;
}
.footer-links {
  display:flex;
  gap:22px;
}
.footer-links a:hover {
  color:var(--accent);
}
.report-list {
  padding-left:20px;
  margin-bottom:0;
  color:#b4acba;
  line-height:1.85;
  font-size:15px;
}
.support-bottom {
  display:flex;
  gap:32px;
  justify-content:space-between;
  align-items:center;
  margin-top:30px;
}
.support-bottom h2 {
  font-size:20px;
  font-weight:500;
}
.support-bottom p {
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  max-width:640px;
}
.support-bottom a {
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:4px;
}
.back-link {
  white-space:nowrap;
  padding:12px 0;
  font-size:14px;
}
.updated {
  font-size:13px;
}
.policy-links {
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.privacy-layout {
  grid-template-columns:225px minmax(0,1fr);
  gap:46px;
}
.page h1 {
  overflow-wrap:anywhere;
}
.contact-link {
  transition:background .2s,transform .2s;
}
.contents a {
  line-height:1.5;
}
.home {
  background:radial-gradient(ellipse at 50% 50%,transparent 15%,#10101480 90%);
}
@media(max-width:1150px) {
  .header-note {
    display:none;
  }
}
@media(max-width:750px) {
  .privacy-layout {
    display:block;
  }
  .contents {
    position:static;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0 12px;
    margin-bottom:32px;
  }
  .support-grid {
    grid-template-columns:1fr;
  }
  .support-bottom {
    display:block;
  }
  .footer-links {
    gap:12px;
  }
}
@media(max-width:650px) {
  .header {
    position:relative;
    gap:17px;
    padding-top:15px;
  }
  .header-right {
    position:absolute;
    right:10px;
    top:5px;
  }
  .language-switch button {
    font-size:11px;
    min-width:32px;
  }
  .wordmark {
    align-self:flex-start;
    margin-left:7px;
    min-height:24px;
    display:flex;
    align-items:center;
  }
  .app-shell {
    grid-template-rows:116px minmax(0,1fr) 76px;
  }
  .footer { padding:8px 16px; }
  .contact-link {
    font-size:13px;
    padding:14px 17px;
    gap:12px;
  }
  .page h1 {
    font-size:clamp(32px,8vw,49px);
  }
  .home h1 {
    font-size:clamp(74px,20vw,117px);
  }
}
@media(max-width:650px) {
  .app-shell {
    margin:max(8px,env(safe-area-inset-top)) max(8px,env(safe-area-inset-right)) max(8px,env(safe-area-inset-bottom)) max(8px,env(safe-area-inset-left));
    height:calc(100dvh - max(8px,env(safe-area-inset-top)) - max(8px,env(safe-area-inset-bottom)));
  }
  .language-switch button {
    min-width:40px;
    min-height:44px;
  }
  .footer,.footer-links {
    font-size:12px;
  }
  .navigation a {
    padding-left:18px;
    padding-right:18px;
  }
}

/* Das Fahrzeug bleibt eine eigenständige, per Touch und Tastatur bedienbare Bühne. */
.home-with-racer { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:0; padding:30px 5%; text-align:left; align-items:center; }
.home-with-racer .hero-content { z-index:1; padding-left:3%; pointer-events:auto; }
.home-with-racer .eyebrow { justify-content:flex-start; font-size:11px; letter-spacing:.16em; }
.home-with-racer h1 { font-size:clamp(78px,9vw,142px); }
.home-with-racer .hero-description { max-width:360px; font-size:15px; }
.home-with-racer .platforms { display:inline-flex; margin-top:30px; }
.home-with-racer .platform { padding:0 16px; }
.home-with-racer .ambient { opacity:.38; }
.home-with-racer .edge-label { left:20px; }
.racer-stage { position:relative; width:100%; height:min(580px,100%); min-height:360px; align-self:center; isolation:isolate; }
.racer-canvas { display:block; width:100%; height:100%; cursor:grab; touch-action:pan-y; border-radius:24px; }
.racer-canvas.dragging { cursor:grabbing; }
@media(min-width:1101px) {
  .home-with-racer .racer-canvas { position:absolute; top:0; left:-95%; width:195%; }
}
.racer-interface { position:absolute; left:0; right:0; bottom:5%; display:flex; flex-direction:column; align-items:center; gap:17px; pointer-events:none; }
.racer-hint { color:#c2adb3; font-size:12px; letter-spacing:.025em; margin:0; text-align:center; }
.racer-controls { display:flex; gap:10px; pointer-events:auto; }
.racer-controls button { min-width:46px; min-height:46px; border:1px solid #ffffff20; border-radius:50%; background:#201a2199; backdrop-filter:blur(14px); color:#d8cad0; font-size:22px; transition:background .2s,box-shadow .2s; }
.racer-controls button:hover:not(:disabled) { background:#49303c; }
.racer-controls .boost-button { border-radius:32px; padding:0 25px; font-size:14px; letter-spacing:.02em; color:#ffcbab; background:#462a2299; border-color:#ffad7338; }
.boost-button span { margin-right:8px; font-size:23px; vertical-align:-2px; }
.boost-active .boost-button { background:#ffac79; color:#301b11; box-shadow:0 0 32px #ff773050; }
.racer-controls button:disabled { cursor:default; opacity:.4; }
.racer-status { position:absolute; top:42%; left:10%; right:10%; font-size:14px; color:#c5adb9; text-align:center; line-height:1.6; }
.racer-status[hidden] { display:none; }
.racer-unavailable .racer-canvas { visibility:hidden; }
.racer-unavailable .racer-interface { display:none; }
@media(max-width:1000px) and (min-width:751px) {
  .home-with-racer { padding:30px 4%; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); }
  .home-with-racer h1 { font-size:clamp(72px,9vw,100px); }
  .home-with-racer .platform { padding:0 10px; font-size:12px; }
  .home-with-racer .hero-description { font-size:14px; }
  .racer-stage { min-height:320px; }
}
@media(max-width:750px) {
  .home-with-racer { display:flex; flex-direction:column; justify-content:center; padding:30px 14px 12px; gap:0; text-align:center; }
  .home-with-racer .hero-content { padding:0; margin:0; flex-shrink:0; }
  .home-with-racer .eyebrow { justify-content:center; margin-bottom:17px; font-size:10px; }
  .home-with-racer h1 { font-size:clamp(64px,16vw,96px); }
  .home-with-racer .hero-description { font-size:13px; margin:18px auto 0; max-width:320px; }
  .home-with-racer .platforms { margin-top:18px; padding:11px 0; }
  .home-with-racer .platform { font-size:12px; padding:0 14px; }
  .racer-stage { height:300px; min-height:300px; width:min(100%,490px); flex-shrink:0; margin-top:-10px; }
  .racer-interface { bottom:0; gap:10px; }
  .racer-hint { font-size:11px; }
  .home-with-racer .edge-label,.home-with-racer .home-index { display:none; }
}
@media(max-height:740px) and (max-width:750px) {
  .home-with-racer { justify-content:flex-start; padding-top:24px; }
  .home-with-racer h1 { font-size:60px; }
  .home-with-racer .hero-description { display:none; }
  .racer-stage { min-height:270px; height:270px; }
}
@media(max-height:600px) and (min-width:751px) {
  .home-with-racer { padding:18px 5%; }
  .home-with-racer h1 { font-size:72px; }
  .home-with-racer .hero-description { display:none; }
  .racer-stage { min-height:290px; height:290px; }
  .racer-interface { bottom:0; gap:6px; }
}
@media(max-width:750px) {
  .home-with-racer { justify-content:flex-start; }
  .home-with-racer .hero-content { margin-top:auto; }
  .home-with-racer .racer-stage { margin-bottom:auto; }
}

/* Navigation und kurze Schub-Übergänge bilden auf dem Telefon eine feste App-Toolbar. */
.navigation { z-index:5; top:19px; }
.navigation a { display:flex; align-items:center; justify-content:center; gap:8px; }
.navigation svg { display:none; width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.navigation a[aria-current="page"] { box-shadow:inset 0 1px 0 #ffc69d30,0 0 20px #ff94620c; color:#ffd0ad; }
.view { transform-origin:50% 80%; animation:page-arrive .66s cubic-bezier(.16,1,.3,1) both; }
.page > *, .hero-content > * { animation:element-arrive .7s cubic-bezier(.16,1,.3,1) both; }
.page > :nth-child(2),.hero-content > :nth-child(2) { animation-delay:.06s; }
.page > :nth-child(3),.hero-content > :nth-child(3) { animation-delay:.12s; }
.page > :nth-child(4),.hero-content > :nth-child(4) { animation-delay:.18s; }
.transition-streak { pointer-events:none; position:absolute; top:45%; left:-25%; width:150%; height:2px; z-index:8; background:linear-gradient(90deg,transparent,#ffa16e,#fff2d3,transparent); box-shadow:0 0 24px 6px #ff733440; animation:route-streak .6s ease-out both; }
@keyframes page-arrive { from { opacity:0; transform:perspective(1200px) translate3d(0,35px,-70px) rotateX(5deg) scale(.96); filter:blur(7px); } to { opacity:1; transform:none; filter:blur(0); } }
@keyframes element-arrive { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes route-streak { 0% { opacity:0; transform:translateX(-70%) rotate(-8deg); } 30% { opacity:.75; } 100% { opacity:0; transform:translateX(70%) rotate(-8deg); } }

.beta-page { padding-top:46px; display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:60px; align-content:start; }
.beta-heading { position:sticky; top:0; align-self:start; }
.beta-heading h1 { font-size:clamp(54px,6vw,86px); max-width:380px; }
.beta-heading .page-intro { max-width:360px; }
.beta-form { padding:28px; border-radius:24px; border:1px solid #ffffff17; background:linear-gradient(140deg,#2a1c2480,#18171c); min-width:0; }
.beta-form fieldset { padding:0; margin:0 0 25px; border:0; min-width:0; }
.beta-form legend,.reason-label { font-size:16px; font-weight:500; line-height:1.5; }
.field-help { font-size:13px; color:var(--muted); margin:8px 0 16px; }
.platform-options { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.platform-option { cursor:pointer; position:relative; display:flex; flex-direction:column; align-items:flex-start; gap:17px; padding:20px 17px; border:1px solid #ffffff20; background:#ffffff03; border-radius:15px; font-size:14px; transition:background .2s,border-color .2s,transform .2s; }
.platform-option:hover { background:#ffffff09; transform:translateY(-2px); }
.platform-option:has(input:checked) { border-color:#ffa36d; background:#ff995618; box-shadow:0 0 25px #ff87360c; }
.platform-option:has(input:focus-visible) { outline:2px solid var(--accent); outline-offset:4px; }
.platform-option input { position:absolute; opacity:0; width:100%; height:100%; inset:0; margin:0; cursor:pointer; }
.platform-symbol { display:flex; gap:5px; color:#ffa77b; }
.platform-symbol svg { width:23px; height:25px; stroke:currentColor; stroke-width:1.3; fill:none; }
.check-indicator { position:absolute; right:14px; top:15px; display:grid; place-items:center; width:20px; height:20px; border:1px solid #ffffff40; border-radius:50%; color:transparent; font-size:12px; }
input:checked ~ .check-indicator { color:#25170d; background:var(--accent); border-color:var(--accent); }
.reason-label { display:block; margin-bottom:12px; }
.beta-form textarea { display:block; width:100%; min-height:140px; resize:vertical; max-height:400px; border:1px solid #ffffff22; border-radius:14px; padding:16px; color:var(--text); background:#0e0d1280; font:inherit; font-size:16px; line-height:1.65; }
.beta-form textarea:focus { outline:2px solid var(--accent); outline-offset:3px; }
.beta-form textarea::placeholder { color:#89808d; }
.account-hint { margin:10px 0 0; color:#ada3aa; font-size:12px; line-height:1.55; }
.character-count { display:block; font-size:12px; color:#958996; text-align:right; margin-top:8px; }
.beta-note,.beta-privacy { color:var(--muted); font-size:13px; line-height:1.75; }
.beta-privacy { padding-top:18px; margin-top:22px; border-top:1px solid var(--line); }
.beta-privacy a { color:var(--accent); text-decoration:underline; text-underline-offset:3px; }
.beta-submit { width:100%; justify-content:space-between; margin-top:8px; }
.beta-submit:disabled { opacity:.4; cursor:default; }
.beta-feedback { color:#ffd2b5; font-size:14px; line-height:1.6; margin-bottom:0; }
.beta-feedback:empty { display:none; }
.email-preview { margin-top:24px; padding-top:20px; border-top:1px solid var(--line); }
.email-preview h2 { font-size:19px; font-weight:500; }
.email-preview pre { white-space:pre-wrap; overflow-wrap:anywhere; font:inherit; font-size:14px; line-height:1.7; color:#cfc4d0; user-select:text; }
.email-actions { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.email-actions .contact-link { margin:0; font-size:14px; }
.copy-button { padding:14px 5px; background:transparent; color:var(--accent); font-size:14px; text-decoration:underline; text-underline-offset:4px; }

/* Ein kurzer Überflug mit dem gerenderten Originalmodell statt einer zweiten WebGL-Szene. */
.launch-intro { position:fixed; inset:0; z-index:50; overflow:hidden; pointer-events:none; background:#0b090eeF; animation:intro-reveal 3.2s ease both; }
.intro-visual { position:absolute; inset:0; overflow:hidden; }
.intro-type { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); color:#ffffff0d; font-size:clamp(80px,16vw,260px); font-weight:800; letter-spacing:-.075em; line-height:.8; white-space:nowrap; animation:intro-title 3.2s ease both; }
.intro-type span { color:#ff9a7750; }
.intro-orbit { position:absolute; width:70vmin; height:70vmin; left:50%; top:50%; margin:-35vmin; border:1px solid #ff9c7366; border-radius:50%; box-shadow:0 0 80px #ff73331a,inset 0 0 70px #b663ea0b; animation:intro-ring 3.2s ease both; }
.intro-caption { position:absolute; top:76%; left:20px; right:20px; text-align:center; color:#dec4ca; font-size:12px; letter-spacing:.18em; text-transform:uppercase; animation:intro-title 3.2s ease both; }
.intro-progress { position:absolute; bottom:0; left:0; width:100%; height:2px; background:linear-gradient(90deg,#ab6cdd,#ffa171,#fff1d5); transform-origin:left; animation:intro-progress 3.2s linear both; }
.intro-skip { pointer-events:auto; position:absolute; top:max(24px,env(safe-area-inset-top)); right:max(24px,env(safe-area-inset-right)); min-height:44px; border-radius:40px; border:1px solid #ffffff28; padding:0 18px; background:#1e172380; color:#d7beca; font-size:13px; }
@keyframes intro-reveal { 0%,75% { opacity:1; } 100% { opacity:0; visibility:hidden; } }
@keyframes intro-ring { 0% { opacity:0; transform:scale(.15) rotateX(65deg); } 38% { opacity:1; transform:scale(1) rotateX(65deg); } 76% { opacity:.5; transform:scale(1.7) rotateX(65deg); } 100% { opacity:0; transform:scale(3.5) rotateX(65deg); } }
@keyframes intro-title { 0%,15% { opacity:0; filter:blur(12px); } 37%,70% { opacity:1; filter:blur(0); } 100% { opacity:0; filter:blur(4px); } }
@keyframes intro-progress { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@media(max-width:1000px) { .navigation { position:absolute; left:50%; transform:translateX(-50%); }.header-right { margin-left:auto; }.beta-page { gap:32px; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); } }
@media(max-width:800px) { .beta-page { display:block; }.beta-heading { position:static; }.beta-heading h1,.beta-heading .page-intro { max-width:none; }.beta-form { max-width:620px; } }
@media(max-width:760px) {
  .app-shell { grid-template-rows:62px minmax(0,1fr) 108px; }
  .header { flex-direction:row; justify-content:space-between; align-items:center; padding:0 16px; gap:8px; position:static; }
  .wordmark { align-self:auto; margin:0; font-size:12px; }
  .header-right { position:static; gap:0; }
  .language-switch button { min-width:40px; }
  .navigation { position:absolute; top:auto; bottom:0; left:0; transform:none; width:100%; height:73px; padding:7px 8px 8px; border:0; border-top:1px solid #ffffff12; border-radius:0; background:linear-gradient(180deg,#211b24eF,#151318); backdrop-filter:blur(24px); justify-content:space-around; gap:4px; }
  .navigation a { flex:1; min-width:0; padding:5px 2px; display:flex; flex-direction:column; gap:5px; border-radius:14px; font-size:10px; min-height:53px; letter-spacing:.01em; }
  .navigation svg { display:block; width:20px; height:20px; }
  .navigation a[aria-current="page"] { background:#ffac7910; box-shadow:inset 0 1px 0 #ffa97d38; color:#ffc69c; }
  .footer { display:flex; align-items:flex-start; justify-content:center; padding:0 15px 73px; font-size:10px; line-height:34px; gap:8px; }
  .footer-links { display:none; }
  .beta-page { padding:30px 20px; }
  .beta-form { padding:21px; border-radius:20px; }
  .beta-heading h1 { font-size:52px; }
  .platform-option { padding:17px 12px; gap:14px; font-size:13px; }
  .beta-heading .page-intro { font-size:15px; }
  .intro-caption { font-size:10px; letter-spacing:.13em; }
}
@media(prefers-reduced-motion:reduce) { .launch-intro,.transition-streak { display:none; } }
body.motion-paused .launch-intro,body.motion-paused .transition-streak { display:none; }

/* Vier Release-Plattformen bleiben auch auf schmalen Displays vollständig sichtbar. */
.home-with-racer .platforms { display:inline-grid; grid-template-columns:repeat(4,auto); max-width:100%; }
.platform-options { grid-template-columns:repeat(3,minmax(0,1fr)); }
@media(max-width:1100px) {
  .home-with-racer .platforms { grid-template-columns:repeat(2,auto); border-radius:20px; padding:5px; }
  .home-with-racer .platform { padding:10px 17px; justify-content:center; }
  .home-with-racer .platform:nth-child(3) { border-left:0; }
  .platform-options { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .platform-option:last-child { grid-column:1/-1; flex-direction:row; align-items:center; }
}

/* Der Hintergrund verschwindet vor der Landung; das echte Fahrzeug bleibt durchgehend sichtbar. */
.launch-intro.docking-intro { background:transparent; animation:none; }
.docking-intro .intro-visual { background:#0b090eef; animation:docking-backdrop 3.2s ease both; }
.docking-intro .racer-canvas { border-radius:0; transform-origin:center; }
.intro-docking .home,.intro-docking .hero-content > * { animation:none!important; }
.intro-docking .racer-interface { opacity:0; pointer-events:none; visibility:hidden; }
.racer-interface { transition:opacity .3s ease; }
@keyframes docking-backdrop { 0%,48% { opacity:1; } 86%,100% { opacity:0; } }
.footer-identity { white-space:nowrap; }
@media(max-width:760px) { .header-right { gap:2px; } }

/* Direkte Beta-Bewerbung und vorbereiteter Newsletter-Bereich. */
.beta-timing { margin:28px 0 0; padding:20px 0 20px 20px; border-left:2px solid #ffad7760; color:#bdb1b9; font-size:14px; line-height:1.8; max-width:440px; }
.email-input { display:block; width:100%; border:1px solid #ffffff22; border-radius:12px; padding:14px 16px; margin-bottom:26px; background:#0e0d1280; color:var(--text); font:inherit; min-height:48px; }
.email-input:focus-visible,.newsletter-row input:focus-visible { outline:2px solid var(--accent); outline-offset:3px; }
.form-consent { display:flex; align-items:flex-start; gap:12px; margin:22px 0; color:#bdb2ba; font-size:12px; line-height:1.7; cursor:pointer; }
.form-consent input { flex-shrink:0; width:18px; height:18px; margin:2px 0 0; accent-color:#ffac79; }
.form-consent a { text-decoration:underline; text-underline-offset:3px; color:#ffd0b3; }
.form-trap { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.beta-submit:disabled { cursor:default; opacity:.6; }
.beta-feedback[data-state="success"] { color:#a6dec2; }
.beta-feedback[data-state="error"] { color:#ffbea9; }
.turnstile-wrap { padding:14px 16px; margin:18px 0 20px; border:1px solid #f6995835; border-radius:16px; background:linear-gradient(125deg,#39231d77,#131419cc); box-shadow:inset 0 1px #ffffff12,0 0 25px #eb6c2110; }
.turnstile-wrap[hidden],.newsletter-active [data-newsletter-turnstile][hidden] { display:none; }
.turnstile-wrap:not([hidden]),.newsletter-active [data-newsletter-turnstile]:not([hidden]) { animation:element-arrive .35s cubic-bezier(.16,1,.3,1) both; }
.turnstile-heading { display:flex; align-items:center; gap:8px; margin:0 0 12px; color:#ffae76; font-size:11px; font-weight:750; letter-spacing:.13em; text-transform:uppercase; }
.turnstile-heading span:last-child { margin-left:auto; color:#a79b9d; letter-spacing:.08em; }
.turnstile-wrap [data-turnstile] { min-height:65px; }
.turnstile-wrap[data-state="preview"],.turnstile-wrap[data-state="unavailable"] { padding:13px 16px; }
.turnstile-wrap[data-state="preview"] [data-turnstile],.turnstile-wrap[data-state="unavailable"] [data-turnstile] { display:none; min-height:0; }
.turnstile-wrap[data-state="preview"] .turnstile-heading,.turnstile-wrap[data-state="unavailable"] .turnstile-heading { margin-bottom:5px; }
.turnstile-status { margin:7px 0 0; color:#a9a1a6; font-size:13px; }
.turnstile-status:empty { display:none; }
.turnstile-status[data-state="error"] { color:#ffbea9; }
.newsletter-form { width:min(100%,410px); margin-top:26px; text-align:left; }
.newsletter-form>label { display:block; font-size:13px; font-weight:500; color:#e1cfc4; margin-bottom:10px; }
.newsletter-row { display:flex; padding:4px; border:1px solid #ffb28828; border-radius:14px; background:#ffffff03; gap:4px; }
.newsletter-row input { width:0; min-width:0; flex:1; border:0; background:transparent; color:#bbb0b8; font:inherit; font-size:14px; padding:10px; }
.newsletter-row button { display:flex; align-items:center; gap:12px; flex-shrink:0; min-height:44px; padding:0 16px; border:1px solid #ffc29525; border-radius:10px; background:#ffb2850d; color:#d5b09a; font-size:12px; }
.newsletter-row :disabled { cursor:not-allowed; opacity:.6; }
.newsletter-form p { margin:8px 0 0; font-size:11px; color:#a095a0; line-height:1.5; }
.newsletter-active[hidden] { display:none; }
.newsletter-consent { display:flex; align-items:flex-start; gap:9px; margin:12px 0; color:#b8aeb5; font-size:11px; line-height:1.5; }
.newsletter-consent input { flex-shrink:0; margin:2px 0 0; accent-color:#ffae76; }
.newsletter-consent a { color:#ffba91; }
.newsletter-active [data-newsletter-turnstile] { min-height:65px; }
.newsletter-complete .newsletter-row,.newsletter-complete .newsletter-active { display:none; }
.newsletter-complete #newsletter-note { padding:12px 14px; border:1px solid #79d6aa66; border-radius:12px; background:#79d6aa12; color:#bdf3d4; font-size:13px; }
.newsletter-form[data-state="error"] #newsletter-note { color:#ffb99b; font-size:12px; }
@media(min-width:751px) { .home-with-racer { overflow-y:auto; }.home-with-racer h1 { font-size:clamp(78px,8.4vw,135px); } }
@media(max-width:750px) {
  .home-with-racer .hero-content { display:contents; }
  .home-with-racer .racer-stage { order:1; margin-bottom:0; }
  .newsletter-form { order:2; margin:32px auto 18px; padding-top:20px; border-top:1px solid #ffffff1c; flex-shrink:0; }
  .beta-timing { margin:18px 0 26px; padding:12px 0 12px 16px; }
}
@media(max-height:780px) and (min-width:751px) { .home-with-racer h1 { font-size:clamp(70px,7vw,104px); }.home-with-racer .platforms { margin-top:20px; }.newsletter-form { margin-top:18px; } }

/* Auf grossen Bildschirmen stehen Ankündigung und Anmeldung mit mehr Luft nebeneinander zum Fahrzeug. */
@media(min-width:1101px) {
  .home-with-racer .newsletter-form { width:min(100%,460px); margin-top:46px; padding-top:24px; border-top:1px solid #ffffff1c; }
}
@media(min-width:1300px) {
  .home-with-racer h1 { white-space:nowrap; font-size:clamp(65px,5vw,90px); }
  .home-with-racer h1 .soon { display:inline; margin-top:0; }
}
@media(min-width:1101px) and (max-height:780px) {
  .home-with-racer .newsletter-form { margin-top:25px; padding-top:17px; }
}
