:root {
  color-scheme: dark;
  --bg: #080b0f;
  --panel: rgba(21, 27, 34, 0.72);
  --panel-strong: rgba(15, 20, 27, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7f6;
  --muted: #9ca9a5;
  --green: #48e69b;
  --green-bright: #79ffd0;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(72, 230, 155, 0.1), transparent 38rem),
    linear-gradient(150deg, #0b1015 0%, var(--bg) 52%, #07090c 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a:hover,
a:focus-visible {
  color: var(--green-bright);
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wordmark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(1);
}

.site-header nav,
.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.landing-page {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.13;
}

.ambient-one {
  top: 12%;
  left: -18rem;
  background: var(--green);
}

.ambient-two {
  right: -20rem;
  bottom: 0;
  background: #218bff;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 168px);
  place-items: center;
  padding: 44px 0 64px;
}

.tape-line {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(1280px, 118vw);
  height: 430px;
  transform: translate(-50%, -51%);
  opacity: 0.58;
}

.tape-stroke {
  fill: none;
  stroke: url(#line);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.tape-fill {
  fill: url(#fill);
}

.hero-card {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(23, 30, 38, 0.82), rgba(10, 14, 19, 0.68));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  text-align: center;
  backdrop-filter: blur(30px) saturate(135%);
  -webkit-backdrop-filter: blur(30px) saturate(135%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(72, 230, 155, 0.2);
  border-radius: 999px;
  background: rgba(72, 230, 155, 0.08);
  color: #bcffe0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
}

.app-icon {
  display: block;
  width: clamp(118px, 18vw, 170px);
  height: auto;
  margin: 28px auto 20px;
  border-radius: 27%;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

.kicker {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy {
  max-width: 570px;
  margin: 28px auto 0;
  color: #c7d0cd;
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  line-height: 1.6;
}

.platforms {
  margin: 22px 0 0;
  color: #74827e;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  color: #68736f;
  font-size: 0.78rem;
}

.legal-page .site-header {
  border-bottom: 1px solid var(--line);
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.legal-eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-wrap h1 {
  font-size: clamp(2.7rem, 7vw, 4.7rem);
  line-height: 0.98;
}

.effective-date,
.legal-intro {
  color: var(--muted);
}

.effective-date {
  margin: 18px 0 0;
  font-size: 0.86rem;
}

.legal-intro {
  margin: 38px 0 10px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.legal-card {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.legal-card h2 {
  margin: 38px 0 12px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  color: #b4c0bc;
  font-size: 0.95rem;
  line-height: 1.72;
}

.legal-card li + li {
  margin-top: 9px;
}

.legal-card a {
  color: var(--green-bright);
  text-decoration: underline;
  text-decoration-color: rgba(121, 255, 208, 0.3);
  text-underline-offset: 3px;
}

.notice {
  padding: 17px 19px;
  border: 1px solid rgba(72, 230, 155, 0.18);
  border-radius: 16px;
  background: rgba(72, 230, 155, 0.06);
}

@media (max-width: 680px) {
  .shell,
  .legal-wrap {
    width: min(100% - 28px, 820px);
  }

  .site-header {
    min-height: 70px;
  }

  .site-header nav {
    gap: 14px;
  }

  .wordmark span {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 140px);
    padding: 24px 0 48px;
  }

  .hero-card {
    border-radius: 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .legal-wrap {
    padding: 50px 0 80px;
  }
}

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