:root {
  color-scheme: dark;
  --bg: #050b16;
  --text: #eff5ff;
  --muted: #a9b8cf;
  --accent: #33b5ff;
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  background: #040911;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -5%, rgba(32, 138, 255, .34), transparent 36%),
    radial-gradient(circle at 50% 120%, rgba(0, 136, 255, .16), transparent 30%),
    linear-gradient(180deg, #06101f 0%, #040911 100%);
}

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

.page {
  width: min(100%, 432px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(12px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
}

.topbar {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.age {
  padding: 8px 14px;
  border: 1px solid rgba(193, 216, 255, .22);
  color: #d4e4ff;
  border-radius: 999px;
  font-size: .92rem;
  line-height: 1;
  background: rgba(255,255,255,.02);
}

.hero {
  text-align: center;
  padding-top: 0;
}

.logo {
  display: block;
  width: min(69vw, 248px);
  margin: 0 auto 8px;
  height: auto;
}

h1 {
  margin: 0;
  font-size: clamp(2.05rem, 8.15vw, 3.18rem);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 900;
}

h1 .line1,
h1 .line2 {
  display: block;
}

h1 .line1 { white-space: nowrap; }
h1 .accent { color: var(--accent); }


.video-card {
  margin-top: 16px;
}

.video-frame {
  position: relative;
  width: min(100%, 346px);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0b0f17;
  border: 1px solid rgba(60, 141, 255, .62);
  box-shadow: 0 0 0 1px rgba(14, 128, 255, .12), 0 0 24px rgba(26,132,255,.11), 0 18px 55px rgba(0,0,0,.42);
}

video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.chip {
  position: absolute;
  bottom: 12px;
  min-width: 64px;
  text-align: center;
  padding: 7px 11px;
  border-radius: 14px;
  background: rgba(21, 23, 32, .74);
  color: #ebf3ff;
  font-size: .95rem;
  font-weight: 700;
}

.chip.left { left: 12px; }
.chip.right { right: 12px; min-width: 50px; }

.cta-area { margin-top: 14px; }

.cta {
  width: 100%;
  min-height: 76px;
  border-radius: 24px;
  border: 0;
  background: linear-gradient(180deg, #3cc1ff 0%, #118fff 100%);
  color: #ffffff;
  font-size: clamp(1rem, 3.9vw, 1.38rem);
  font-weight: 900;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 40px rgba(11, 137, 255, .32);
  cursor: pointer;
  text-decoration: none;
  touch-action: manipulation;
}

.cta:active { transform: scale(.988); }
.plane { width: 29px; height: 29px; display: grid; place-items: center; flex: none; }
.plane svg { width: 100%; height: 100%; fill: currentColor; }
.arrow { font-size: 1.56rem; line-height: 1; opacity: .9; }

.links-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.links-row a {
  color: rgba(201, 217, 239, .88);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: clamp(.88rem, 3.05vw, .98rem);
}

.divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.14);
}

.footnote {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8c9ab2;
  font-size: clamp(.86rem, 3.05vw, .94rem);
}
.dot { opacity: .65; }
.lock { filter: grayscale(1); }

@media (max-width: 420px) {
  .page { padding-left: 15px; padding-right: 15px; }
  .divider { display: none; }
}
