﻿:root {
  --bg: #0b1020;
  --bg-alt: #111827;
  --card: #141b2f;
  --card-strong: #1c2540;
  --text: #f4f7ff;
  --muted: #a7b0c4;
  --accent: #21e6ff;
  --accent-2: #4f8bff;
  --accent-3: #2de3b7;
  --shadow: 0 30px 80px rgba(10, 14, 30, 0.6);
  --radius: 22px;
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overflow-x: clip;
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(33, 230, 255, 0.1), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(79, 139, 255, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(45, 227, 183, 0.08), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -2;
}

.parallax-layer {
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(33, 230, 255, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 0;
  transform: translateY(-120%);
  background: #ffffff;
  color: #060a18;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 80;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(8px);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 30;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(120deg, var(--accent-3), var(--accent), var(--accent-2));
  box-shadow: 0 0 22px rgba(33, 230, 255, 0.7);
}

.bg-orbit {
  position: fixed;
  inset: -30% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(33, 230, 255, 0.16), transparent 60%);
  filter: blur(0px);
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.2s linear;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(11, 16, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 10;
  overflow: visible;
  transition: background 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.site-header.is-scrolled {
  background: rgba(9, 13, 27, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 14px 36px rgba(5, 8, 19, 0.5);
}

.site-header.menu-open {
  background: rgba(8, 12, 24, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

main {
  overflow-x: clip;
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
  transition: padding 0.35s var(--ease-out-quart);
}

.site-header.is-scrolled .header-row {
  padding: 12px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}

.logo-link {
  transition: transform 0.25s var(--ease-out-quart), opacity 0.25s ease;
}

.logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05060f;
  font-weight: 700;
  overflow: hidden;
}

.logo-image {
  background: linear-gradient(180deg, #ffffff, #e9f3ff);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 3px;
  filter: saturate(1.1) contrast(1.05);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
  justify-content: center;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(120deg, var(--accent-3), var(--accent));
  transition: transform 0.3s var(--ease-out-quart);
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--text);
}

.header-cta {
  display: flex;
  gap: 12px;
  justify-self: end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-toggle:hover {
  border-color: rgba(33, 230, 255, 0.55);
  background: rgba(33, 230, 255, 0.12);
}

.menu-toggle__line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 14px clamp(16px, 4vw, 28px) 20px;
  background: rgba(8, 13, 27, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 40px rgba(4, 8, 18, 0.7);
  z-index: 25;
  overflow-x: clip;
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.mobile-nav a:hover {
  border-color: rgba(33, 230, 255, 0.5);
  background: rgba(33, 230, 255, 0.1);
}

.mobile-nav a.is-active {
  border-color: rgba(33, 230, 255, 0.55);
  background: rgba(33, 230, 255, 0.14);
}

.mobile-panel__cta {
  margin-top: 14px;
  width: 100%;
  min-height: 48px;
}

.hero {
  padding: 40px 0 40px;
  position: relative;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-atmosphere {
  position: absolute;
  inset: -80px 0 -120px;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
  opacity: 1;
}

.orb {
  position: absolute;
  display: block;
}

.orb__shape {
  width: 100%;
  height: 100%;
  border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 55%), var(--orb-color);
  box-shadow: 0 0 140px var(--orb-glow);
  opacity: 0.95;
  filter: blur(10px) saturate(1.35);
  animation: orbMorph 14s ease-in-out infinite, orbFloat 10s ease-in-out infinite;
}

.orb--blue {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -60px;
  --orb-color: rgba(29, 78, 216, 0.45);
  --orb-glow: rgba(29, 78, 216, 0.7);
}

.orb--teal {
  width: 260px;
  height: 260px;
  top: 12%;
  right: -60px;
  --orb-color: rgba(56, 189, 248, 0.4);
  --orb-glow: rgba(56, 189, 248, 0.65);
}

.orb--green {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: 12%;
  --orb-color: rgba(34, 197, 94, 0.38);
  --orb-glow: rgba(34, 197, 94, 0.6);
}

.orb--violet {
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: 8%;
  --orb-color: rgba(167, 139, 250, 0.35);
  --orb-glow: rgba(167, 139, 250, 0.6);
}

.orb--teal .orb__shape {
  animation-delay: -3s, -1s;
}

.orb--green .orb__shape {
  animation-delay: -6s, -2s;
}

.orb--violet .orb__shape {
  animation-delay: -9s, -4s;
}

@keyframes orbMorph {
  0% {
    border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%;
  }
  50% {
    border-radius: 60% 40% 45% 55% / 50% 65% 35% 50%;
  }
  100% {
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.05);
  }
}

.hero-copy h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--accent-3);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-row:not(.compact) {
  margin-bottom: 28px;
}

.store-badge {
  min-width: 160px;
  min-height: 48px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(8, 12, 28, 0.45);
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
  transform-style: preserve-3d;
}

.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 230, 255, 0.4);
  box-shadow: 0 18px 38px rgba(8, 12, 28, 0.55);
}

.store-badge--disabled {
  opacity: 0.72;
  cursor: default;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.store-badge--disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.store-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.store-note--compact {
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart), background 0.3s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060f;
  box-shadow: 0 15px 40px rgba(33, 230, 255, 0.3);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.hero-stats {
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.stat {
  color: var(--text);
  font-weight: 600;
}

.hero-mockup {
  position: relative;
  display: grid;
  place-items: start center;
  align-self: start;
  justify-self: end;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: start center;
  gap: 18px;
  z-index: 2;
  transform: translate3d(0, var(--hero-device-parallax, 0px), 0);
  transition: transform 0.2s linear;
}

.device {
  width: min(320px, 72vw);
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 10, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(7, 12, 28, 0.7);
  transform-origin: center;
  position: relative;
  z-index: 2;
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart);
}

.hero-visual.is-tap-feedback .device {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(33, 230, 255, 0.4);
  box-shadow: 0 48px 96px rgba(7, 12, 28, 0.78);
}

.device-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  background: linear-gradient(160deg, #141a30, #0a0f1f 70%);
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
  cursor: pointer;
}

.device-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 12%, rgba(33, 230, 255, 0.25), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 5;
}

.device-screen[data-flow-state="deal"]::before {
  animation: screenHintPulse 1.8s ease-in-out infinite;
}

.device-screen::after {
  content: "";
  position: absolute;
  inset: -30% -20%;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  background: linear-gradient(115deg, transparent 20%, rgba(33, 230, 255, 0.85) 48%, rgba(45, 227, 183, 0.65) 54%, transparent 72%);
  transform: translateX(-55%) skewX(-12deg);
}

.device-hitarea {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.device-hitarea:hover {
  box-shadow: none;
}

.device-shot {
  position: absolute;
  inset: 0;
  background-image: var(--shot), linear-gradient(160deg, #141a30, #0a0f1f 70%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04) translate3d(0, 8px, 0);
  filter: saturate(0.94) contrast(1.02);
  transition: opacity 0.45s var(--ease-out-quart), transform 0.55s var(--ease-out-quart), filter 0.55s var(--ease-out-quart);
}

.device-shot.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  filter: saturate(1.04) contrast(1.06);
}

.device-screen.is-transitioning::after {
  animation: ticketWarp 0.72s var(--ease-out-quart) forwards;
}

.device-screen.is-redeeming {
  animation: redeemKick 0.65s var(--ease-out-quart);
}

@keyframes ticketWarp {
  0% {
    opacity: 0;
    transform: translateX(-58%) skewX(-12deg);
  }
  30% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateX(70%) skewX(-12deg);
  }
}

@keyframes redeemKick {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.965);
  }
  60% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.device-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 8;
}

.device-label,
.device-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(11, 16, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.device-chip {
  color: var(--accent-3);
}

.device-action {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 12;
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(120deg, rgba(33, 230, 255, 0.96), rgba(45, 227, 183, 0.9));
  color: #05060f;
  border-radius: 999px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(8, 26, 36, 0.56);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart), background 0.35s ease;
  animation: actionPulse 1.3s ease-in-out infinite;
}

.device-screen[data-flow-state="ticket"] .device-action {
  background: linear-gradient(120deg, rgba(45, 227, 183, 0.95), rgba(33, 230, 255, 0.94));
  animation: redeemPulse 1.15s ease-in-out infinite;
}

.hero-visual.is-tap-feedback .device-action {
  box-shadow: 0 24px 46px rgba(8, 26, 36, 0.72);
  transform: translate(-50%, -3px) scale(1.06);
}

.device-action:active {
  transform: translate(-50%, -1px) scale(1.05);
}

.device-action:disabled {
  opacity: 0.84;
  cursor: default;
  animation: none;
}

.device-hitarea:focus-visible,
.device-action:focus-visible {
  outline: 2px solid rgba(33, 230, 255, 0.95);
  outline-offset: 3px;
}

.device-burst {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  transform: translate(-50%, 0) scale(0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 7;
  background: radial-gradient(circle, rgba(45, 227, 183, 0.95), rgba(33, 230, 255, 0.35) 45%, transparent 70%);
}

.device-screen.is-redeeming .device-burst {
  animation: redeemBurst 0.75s var(--ease-out-quart) forwards;
}

@keyframes redeemPulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(8, 26, 36, 0.52);
  }
  50% {
    box-shadow: 0 24px 46px rgba(8, 26, 36, 0.78);
  }
}

@keyframes actionPulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(8, 26, 36, 0.56);
  }
  50% {
    box-shadow: 0 24px 46px rgba(8, 26, 36, 0.76);
  }
}

@keyframes screenHintPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.78;
  }
}

@keyframes redeemBurst {
  0% {
    transform: translate(-50%, 0) scale(0.2);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -8px) scale(2.4);
    opacity: 0;
  }
}

.device-card {
  position: absolute;
  right: clamp(-44px, -3vw, -18px);
  top: 10%;
  bottom: auto;
  background: rgba(10, 16, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 180px;
  box-shadow: 0 24px 40px rgba(6, 10, 24, 0.6);
  z-index: 6;
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.hero-visual.is-tap-feedback .device-card {
  transform: translateX(6px) translateY(-2px);
  border-color: rgba(45, 227, 183, 0.4);
  box-shadow: 0 27px 48px rgba(6, 10, 24, 0.68);
}

.device-card-title {
  font-size: 0.8rem;
  color: var(--muted);
}

.device-card-value {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 6px 0 4px;
}

.device-card-sub {
  display: inline-block;
  font-size: 0.74rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual:hover .device {
    transform: translateY(-6px) rotate(-1deg);
    border-color: rgba(33, 230, 255, 0.35);
    box-shadow: 0 52px 100px rgba(7, 12, 28, 0.8);
  }

  .device-hitarea:hover {
    box-shadow: inset 0 0 0 2px rgba(33, 230, 255, 0.28);
  }

  .device-action:hover {
    box-shadow: 0 26px 50px rgba(8, 26, 36, 0.75);
    transform: translate(-50%, -5px) scale(1.12);
  }

  .hero-visual:hover .device-action:not(:hover) {
    box-shadow: 0 24px 46px rgba(8, 26, 36, 0.72);
    transform: translate(-50%, -4px) scale(1.08);
  }

  .hero-visual:hover .device-card {
    transform: translateX(8px) translateY(-4px);
    border-color: rgba(45, 227, 183, 0.45);
    box-shadow: 0 28px 50px rgba(6, 10, 24, 0.7);
  }
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 230, 255, 0.3), transparent 60%);
  filter: blur(30px);
  z-index: -1;
  transform: translate3d(0, var(--glow-parallax, 0px), 0);
  transition: transform 0.2s linear;
  will-change: transform;
}

.logo-strip {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.section {
  padding: 80px 0;
  scroll-margin-top: 0;
}

main [id] {
  scroll-margin-top: 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(33, 230, 255, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 230, 255, 0.3);
  box-shadow: 0 26px 58px rgba(8, 12, 28, 0.7);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  margin-top: 18px;
  background: rgba(33, 230, 255, 0.18);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.how-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.how-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 230, 255, 0.3);
  box-shadow: 0 26px 58px rgba(8, 12, 28, 0.7);
}

.screens {
  background: linear-gradient(180deg, rgba(15, 21, 40, 0.6), transparent 60%);
}

.screens-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 32px;
  align-items: start;
}

.screens-copy h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.ui-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.ui-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: var(--muted);
}

.ui-pill.active {
  background: linear-gradient(120deg, rgba(33, 230, 255, 0.35), rgba(79, 139, 255, 0.2));
  color: var(--text);
  border-color: rgba(33, 230, 255, 0.5);
}

.ui-pill.ghost {
  background: rgba(33, 230, 255, 0.08);
  color: var(--accent);
  border-color: rgba(33, 230, 255, 0.3);
}

.screens-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.screens-list li {
  padding-left: 22px;
  position: relative;
}

.screens-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-3), var(--accent));
}

.screens-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}

.phone-shot {
  display: grid;
  gap: 12px;
  transition: transform 0.35s var(--ease-out-quart), filter 0.35s var(--ease-out-quart);
}

.phone-shot__frame {
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 12, 26, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.phone-shot__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.phone-shot__image {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  background-image: var(--shot), linear-gradient(160deg, #141a30, #0a0f1f 70%);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  filter: saturate(1.08) contrast(1.05);
}

.phone-shot__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(33, 230, 255, 0.25), transparent 60%);
  mix-blend-mode: screen;
}

.shot-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-shot figcaption {
  font-size: 0.85rem;
  color: var(--muted);
}

.phone-shot:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 35px rgba(6, 10, 24, 0.65));
}

.phone-shot:hover .phone-shot__frame {
  border-color: rgba(33, 230, 255, 0.35);
  box-shadow: 0 26px 52px rgba(8, 12, 28, 0.8);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.business-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: var(--card-strong);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.panel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 139, 255, 0.35);
  box-shadow: 0 24px 52px rgba(8, 12, 28, 0.7);
}

.panel-title {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 227, 183, 0.35);
  box-shadow: 0 24px 52px rgba(8, 12, 28, 0.7);
}

.proof-quote {
  font-size: 1rem;
  margin-bottom: 16px;
}

.proof-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.checklist li {
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent-3), var(--accent));
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, rgba(33, 230, 255, 0.12), rgba(79, 139, 255, 0.08));
  padding: 36px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}

.cta-box:hover {
  border-color: rgba(33, 230, 255, 0.4);
  box-shadow: 0 28px 65px rgba(8, 12, 28, 0.58);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-copy {
  flex: 1 1 320px;
}

.site-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(167, 176, 196, 0.76);
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(79, 139, 255, 0.34);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(33, 230, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(33, 230, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.checkbox-field input {
  margin-top: 3px;
  accent-color: var(--accent-3);
}

.checkbox-field a,
.form-note a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(33, 230, 255, 0.35);
  text-underline-offset: 3px;
}

.checkbox-field a:hover,
.form-note a:hover {
  text-decoration-color: rgba(33, 230, 255, 0.72);
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.form-submit {
  width: max-content;
}

.form-status {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-status.is-success {
  color: #d9fff3;
  background: rgba(45, 227, 183, 0.16);
  border-color: rgba(45, 227, 183, 0.34);
}

.form-status.is-error {
  color: #ffe1e1;
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.3);
}

.form-status.is-warning {
  color: #fff0c7;
  background: rgba(255, 195, 87, 0.12);
  border-color: rgba(255, 195, 87, 0.28);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.countdown {
  margin-top: 18px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.countdown strong {
  color: var(--accent-3);
}

.kontakt-grid {
  display: grid;
  gap: 30px;
}

.kontakt-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.kontakt-card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart);
}

.kontakt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 227, 183, 0.36);
}

.kontakt-card--form {
  gap: 18px;
}

.kontakt-card--wide {
  width: 100%;
}

.contact-item {
  display: grid;
  gap: 7px;
}

.contact-item + .contact-item {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(33, 230, 255, 0.35);
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-link:hover {
  color: var(--accent);
  text-decoration-color: rgba(33, 230, 255, 0.7);
}

.contact-link--static {
  color: var(--text);
  text-decoration: none;
}

.contact-copy {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 5px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out-quart);
}

.contact-copy:hover {
  color: var(--text);
  border-color: rgba(33, 230, 255, 0.4);
  background: rgba(33, 230, 255, 0.12);
  transform: translateY(-1px);
}

.contact-copy.is-copied {
  color: #041018;
  border-color: rgba(45, 227, 183, 0.5);
  background: linear-gradient(120deg, rgba(45, 227, 183, 0.95), rgba(33, 230, 255, 0.95));
}

.modal-launch {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-launch[hidden] {
  display: none;
}

.modal-launch__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.7);
  backdrop-filter: blur(12px);
}

.modal-launch__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(calc(100dvh - 28px), 760px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(33, 230, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(20, 27, 47, 0.98), rgba(11, 16, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 36px 90px rgba(3, 6, 18, 0.62);
  overflow: hidden;
}

.modal-launch__content {
  display: grid;
  gap: 16px;
  padding: 30px;
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-launch__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out-quart);
}

.modal-launch__close:hover {
  background: rgba(33, 230, 255, 0.12);
  border-color: rgba(33, 230, 255, 0.35);
  transform: scale(1.04);
}

body.modal-open {
  overflow: hidden;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.legal-intro h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.08;
  max-width: 9ch;
}

#impressum.section.legal {
  padding: 14px 0 0;
}

#datenschutz.section.legal {
  padding: 6px 0 26px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out-quart), border-color 0.35s var(--ease-out-quart);
}

.legal-card--stack {
  display: grid;
  gap: 20px;
}

.legal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 139, 255, 0.35);
}

.legal-block {
  display: grid;
  gap: 8px;
}

.legal-kicker {
  color: var(--accent-3);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-company {
  font-size: 1.08rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.legal-meta {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-facts {
  display: grid;
  gap: 10px;
}

.legal-fact {
  display: grid;
  grid-template-columns: minmax(148px, 190px) minmax(0, 1fr);
  align-items: start;
  column-gap: 18px;
  row-gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-fact dt {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-fact dt::after {
  content: ":";
}

.legal-fact dd {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-copy {
  display: grid;
  gap: 16px;
}

.legal-subtitle {
  font-size: 0.98rem;
  line-height: 1.35;
}

.legal-section-disclosure {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.legal-section-disclosure > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 46px 10px 14px;
  display: grid;
  gap: 1px;
  transition: background 0.25s ease;
}

.legal-section-disclosure > summary::-webkit-details-marker {
  display: none;
}

.legal-section-disclosure > summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s var(--ease-out-quart), background 0.25s ease, border-color 0.25s ease;
}

.legal-summary-eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: var(--accent-3);
}

.legal-summary-title {
  color: var(--text);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.legal-section-disclosure:hover > summary {
  background: rgba(255, 255, 255, 0.03);
}

.legal-section-disclosure[open] > summary {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section-disclosure[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(33, 230, 255, 0.18);
  border-color: rgba(33, 230, 255, 0.35);
}

.legal-section-panel {
  padding: 24px;
  animation: legalReveal 0.26s var(--ease-out-quart);
}

.legal-card strong {
  color: var(--text);
}

@keyframes legalReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.reveal,
.has-js .reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.has-js .reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart), filter 0.8s var(--ease-out-quart);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .header-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .screens-layout {
    grid-template-columns: 1fr;
  }
  .hero-atmosphere {
    opacity: 0.7;
  }
  .orb--blue {
    width: 220px;
    height: 220px;
  }
  .orb--teal {
    width: 190px;
    height: 190px;
  }
  .orb--green {
    width: 210px;
    height: 210px;
  }
  .orb--violet {
    width: 170px;
    height: 170px;
  }
  .device-card {
    position: absolute;
    top: 8%;
    right: clamp(-26px, -4vw, -12px);
    width: auto;
    min-width: 160px;
    max-width: 184px;
    margin: 0;
    padding: 12px 14px;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1120px, 93vw);
  }
  .hero {
    padding-top: 70px;
  }
  .cta-box {
    padding: 26px;
  }
  .header-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }
  .mobile-panel {
    padding: 12px 14px 16px;
  }
  .hero-grid {
    gap: 28px;
  }
  .hero-copy,
  .hero-mockup {
    width: 100%;
  }
  .lead {
    font-size: 1rem;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .feature-grid,
  .how-grid,
  .proof-grid {
    gap: 14px;
  }
  .feature-card,
  .how-card,
  .panel-card,
  .proof-card,
  .kontakt-card,
  .legal-card {
    padding: 20px;
  }
  .contact-value-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .legal-fact {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 6px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .legal-intro h2 {
    max-width: none;
  }
  .legal-section-panel {
    padding: 20px 18px;
  }
  .legal-fact dt {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }
  .hero-mockup {
    justify-self: stretch;
    display: grid;
    place-items: center;
    padding-top: 32px;
  }
  .hero-visual {
    width: min(286px, 78vw);
    gap: 12px;
    margin: 0 auto;
  }
  .device {
    width: 100%;
    border-radius: 28px;
    padding: 10px;
  }
  .device-screen {
    border-radius: 20px;
  }
  .device-top {
    top: 10px;
    left: 10px;
    gap: 6px;
  }
  .device-label,
  .device-chip {
    padding: 5px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
  .device-action {
    bottom: 10px;
    padding: 9px 14px;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }
  .device-card {
    top: 7%;
    right: clamp(-16px, -3vw, -8px);
    min-width: 148px;
    max-width: 166px;
    margin: 0;
    padding: 10px 12px;
    text-align: left;
  }
  .screens-showcase {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .screens-showcase::-webkit-scrollbar {
    display: none;
  }
  .phone-shot {
    min-width: min(200px, 74vw);
    scroll-snap-align: start;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-submit {
    width: 100%;
  }
  .store-row {
    width: 100%;
  }
  .store-badge {
    flex: 1 1 140px;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .scroll-progress {
    height: 2px;
  }
  .header-row {
    gap: 10px;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }
  .cta-row {
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
  }
  .screens-showcase {
    padding-right: 0;
  }
  .phone-shot__frame {
    border-radius: 24px;
  }
  .phone-shot__image {
    border-radius: 20px;
  }
  .section {
    padding: 64px 0;
  }
  .btn,
  .store-badge,
  .mobile-nav a {
    min-height: 46px;
  }
  .mobile-panel {
    padding: 10px 12px 14px;
  }
  .hero-visual {
    width: min(250px, 72vw);
  }
  .device {
    width: 100%;
    border-radius: 24px;
    padding: 9px;
  }
  .device-screen {
    border-radius: 17px;
  }
  .device-action {
    font-size: 0.6rem;
    padding: 8px 12px;
  }
  .device-card {
    top: 7%;
    right: -8px;
    min-width: 136px;
    max-width: 148px;
    padding: 9px 10px;
  }
  .device-card-value {
    font-size: 1.1rem;
  }
  .device-card-sub {
    font-size: 0.66rem;
  }
  .contact-value-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .checkbox-field {
    gap: 10px;
    font-size: 0.86rem;
  }
  .modal-launch {
    padding: 14px;
  }
  .modal-launch__content {
    padding: 24px 18px 20px;
  }
  .modal-launch__dialog {
    width: 100%;
    border-radius: 24px;
  }
  .modal-launch__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }
  .contact-copy {
    padding: 5px 9px;
    font-size: 0.68rem;
  }
  .legal-fact {
    padding: 12px;
  }
  #impressum.section.legal {
    padding: 10px 0 0;
  }
  #datenschutz.section.legal {
    padding: 4px 0 18px;
  }
  .legal-section-disclosure > summary {
    padding: 9px 40px 9px 12px;
  }
  .legal-summary-title {
    font-size: 0.82rem;
  }
  .legal-section-panel {
    padding: 14px 12px;
  }
  .legal-facts {
    gap: 8px;
  }
  .hero-atmosphere {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .has-js .reveal,
  .has-js .reveal.in-view {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("./assets/fonts/unbounded-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}
