:root {
  --bg: #0b1020;
  --bg-2: #101831;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #b9c2d8;
  --muted-2: #8e9ab5;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #8fe7ff;
  --brand-2: #b794ff;
  --brand-3: #66f0bb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: 1160px;
  font-synthesis-weight: none;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(143, 231, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 80% 8%, rgba(183, 148, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, var(--bg), #090d18 48%, #0c1020);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--brand);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 16, 32, 0.9);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:not(.button) {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
}

.nav-links a:not(.button):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  width: 46px;
  height: 42px;
  place-items: center;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text);
  margin: 3px auto;
  border-radius: 99px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07101d;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 50px rgba(143, 231, 255, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: #07101d;
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(143, 231, 255, 0.26);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.section {
  padding: 96px 0;
}

.hero {
  padding: 110px 0 86px;
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--brand);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 18px var(--brand-3);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.hero-text,
.section-heading p,
.content-stack p,
.contact-card p,
.site-footer p,
.card p,
.timeline p,
.fine-print,
.legal-body p,
.legal-body li {
  color: var(--muted);
}

.hero-text {
  max-width: 700px;
  font-size: 1.14rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin: 0;
}

.trust-row div {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
}

.trust-row dt,
.company-card dt {
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.trust-row dd,
.company-card dd {
  margin: 3px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-card {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 35% 20%, rgba(143, 231, 255, 0.17), transparent 18rem);
  border-radius: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
}

.orb-one {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(143, 231, 255, 0.56), transparent 68%);
  top: 24px;
  right: 28px;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(183, 148, 255, 0.36), transparent 70%);
  bottom: -72px;
  left: -62px;
}

.device-frame {
  position: absolute;
  inset: 86px 44px 66px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #080d19;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 70px rgba(0, 0, 0, 0.36);
}

.screen-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.game-scene {
  position: relative;
  height: calc(100% - 48px);
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(102, 240, 187, 0.16), transparent 16rem),
    #08101f;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.planet {
  position: absolute;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, #ffffff, var(--brand), #4f68ff 62%, #1c2554);
  box-shadow: 0 0 46px rgba(143, 231, 255, 0.36);
}

.path {
  position: absolute;
  width: 360px;
  height: 98px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  left: 50%;
  top: 118px;
  transform: translateX(-50%) rotate(-10deg);
}

.ship {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 44px solid var(--brand-3);
  left: calc(50% + 122px);
  top: 120px;
  transform: rotate(62deg);
  filter: drop-shadow(0 0 18px rgba(102, 240, 187, 0.55));
}

.hud {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hud span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.hud strong {
  color: var(--brand-3);
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.note-one {
  top: 98px;
  left: 28px;
}

.note-two {
  right: 26px;
  bottom: 126px;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(255, 255, 255, 0.015);
}

.split-grid,
.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 46px;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.content-stack p {
  font-size: 1.08rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-row span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 22px;
}

.three-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  padding: 18px 18px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.card img {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card p {
  margin-bottom: 0;
}

.section-panel {
  position: relative;
}

.section-panel::before {
  content: "";
  position: absolute;
  inset: 40px 20px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 40%, rgba(143, 231, 255, 0.11), transparent 25rem),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  pointer-events: none;
}

.section-panel > .container {
  position: relative;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
}

.timeline li {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(7, 11, 22, 0.42);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.82rem;
}

.timeline p {
  margin-bottom: 0;
}

.company-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.company-card {
  padding: 26px;
}

.company-card dl {
  margin: 0;
}

.company-card div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-card div:first-child {
  padding-top: 0;
}

.company-card div:last-child {
  border-bottom: 0;
}

.company-card a {
  color: var(--brand);
}

.fine-print {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 42px;
  overflow: hidden;
  position: relative;
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 231, 255, 0.24), transparent 70%);
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-card p {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: rgba(0, 0, 0, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  color: var(--muted-2) !important;
  font-size: 0.92rem;
}

.legal-main {
  padding: 116px 0 70px;
}

.legal-card {
  padding: 42px;
}

.legal-body h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.legal-body h2 {
  margin-top: 36px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.legal-body a {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 500px;
  }

  .three-cards,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 86px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(11, 16, 32, 0.98);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    justify-content: flex-start;
  }

  .trust-row,
  .three-cards,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 430px;
    border-radius: 30px;
  }

  .device-frame {
    inset: 74px 22px 46px;
  }

  .floating-note {
    font-size: 0.85rem;
  }

  .company-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .legal-card {
    padding: 28px;
  }
}
