:root {
  color-scheme: dark;
  --bg: #071018;
  --panel: #101b24;
  --panel-2: #162431;
  --text: #edf7ff;
  --muted: #9fb0c2;
  --primary: #92c5ff;
  --primary-2: #85f0a3;
  --line: rgba(146, 197, 255, 0.18);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 12%, rgba(133, 240, 163, 0.12), transparent 30%),
    radial-gradient(circle at 86% 4%, rgba(146, 197, 255, 0.16), transparent 32%),
    var(--bg);
  user-select: none;
  -webkit-user-select: none;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: transparent;
  overflow-x: hidden;
}

img,
svg,
a,
button {
  -webkit-user-drag: none;
  user-drag: none;
}

img {
  display: block;
  pointer-events: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 22px;
}

.hero {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  align-items: center;
}

.brand-mark {
  align-self: start;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: #05090d;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text,
.feature-card p,
.closing-panel p,
.sync-panel p,
.purpose-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(146, 197, 255, 0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 15px;
  font-weight: 800;
  text-decoration: none;
  pointer-events: auto;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.release-pill:hover {
  transform: translateY(-2px);
  background: rgba(146, 197, 255, 0.16);
  border-color: rgba(146, 197, 255, 0.42);
}

.hero-device {
  justify-self: end;
  width: min(100%, 380px);
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(146, 197, 255, 0.3), rgba(133, 240, 163, 0.12));
  box-shadow: var(--shadow);
}

.hero-device img,
.feature-card img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}


.purpose-panel {
  margin: 8px 0 18px;
  padding: 34px;
}

.purpose-panel p:last-child {
  margin-bottom: 0;
}
.feature-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 56px;
}

.feature-card,
.closing-panel,
.sync-panel,
.purpose-panel {
  background: linear-gradient(160deg, rgba(22, 36, 49, 0.92), rgba(16, 27, 36, 0.86));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  gap: 24px;
  padding: 22px;
}

.feature-card.wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: center;
}

.feature-card:not(.wide) img {
  max-height: 520px;
  object-fit: contain;
  background: #09121a;
}

.closing-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  padding: 34px;
}

.release-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  font-size: 0.92rem;
  font-weight: 800;
}

.policy-links a {
  color: var(--primary);
  text-decoration: none;
  pointer-events: auto;
}

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

.sync-panel {
  margin-top: 18px;
  padding: 34px;
}

.sync-panel p:last-child {
  margin-bottom: 0;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-weight: 800;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .page-shell {
    padding-top: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .brand-mark {
    width: 74px;
    height: 74px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-device {
    justify-self: center;
  }

  .feature-band,
  .feature-card.wide {
    grid-template-columns: 1fr;
  }

  .closing-panel,
  .sync-panel {
    display: grid;
  }

  .release-actions {
    justify-items: stretch;
  }

  .policy-links {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .page-shell,
  footer {
    width: min(100% - 20px, 1180px);
  }
  .release-pill {
    width: 100%;
    text-align: center;
  }

  .feature-card,
  .closing-panel,
  .sync-panel {
    border-radius: 20px;
    padding: 18px;
  }
}



