:root {
  color-scheme: dark;
  --bg: rgb(11 17 23);
  --surface: rgb(18 27 35);
  --surface-raised: rgb(24 35 44);
  --text: rgb(241 246 249);
  --muted: rgb(166 181 190);
  --border: rgb(47 65 76);
  --accent: rgb(83 215 171);
  --accent-soft: rgb(83 215 171 / 14%);
  --warm: rgb(255 199 112);
  --shadow: 0 18px 55px rgb(0 0 0 / 28%);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.85rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 750;
  text-decoration: none;
}
.primary-action:hover {
  background: var(--warm);
  color: var(--bg);
}
.onboarding {
  margin-block: 3rem;
}
.onboarding li {
  margin-block: 1rem;
}
.beta-note {
  color: var(--muted);
  font-size: 0.9rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(
      circle at 12% -10%,
      rgb(54 120 102 / 23%),
      transparent 36rem
    ),
    radial-gradient(circle at 88% 8%, rgb(59 87 132 / 16%), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: rgb(139 238 205);
}

a:focus-visible {
  border-radius: 0.25rem;
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgb(11 17 23 / 86%);
  backdrop-filter: blur(18px);
}

.header-inner,
.page,
.footer-inner {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgb(132 238 203 / 45%);
  border-radius: 0.72rem;
  background: linear-gradient(145deg, rgb(83 215 171 / 28%), rgb(30 56 67));
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.2rem;
  font-size: 0.93rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--text);
}

.nav .nav-cta {
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.35rem 0.8rem;
  color: var(--text);
}
.nav {
  align-items: center;
}
.access-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  padding: clamp(1.3rem, 4vw, 2.3rem);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: linear-gradient(125deg, var(--surface-raised), var(--surface));
}
.access-panel h2 {
  margin: 0.9rem 0;
}
.access-panel p {
  color: var(--muted);
}
.access-panel .access-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}
#features,
#get-started {
  scroll-margin-top: 2rem;
}
@media (max-width: 760px) {
  .access-panel {
    grid-template-columns: 1fr;
  }
  .access-panel .primary-action {
    width: 100%;
  }
}

.page {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.hero,
.legal {
  width: min(100%, 51rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.22rem 0.72rem;
  border: 1px solid rgb(83 215 171 / 38%);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.17;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin: 1.15rem 0 1rem;
  font-size: clamp(2.55rem, 8vw, 5.3rem);
  letter-spacing: -0.055em;
}

.legal h1 {
  max-width: none;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

h2 {
  margin: 3.4rem 0 0.9rem;
  font-size: clamp(1.55rem, 4vw, 2rem);
  letter-spacing: -0.025em;
}

h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.12rem;
}

p,
ul {
  margin-block: 0.8rem 1.1rem;
}

li + li {
  margin-top: 0.55rem;
}

.lede {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.6vw, 1.32rem);
}

.updated {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.card {
  min-height: 13rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  background: linear-gradient(160deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow);
}

.card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 700;
}

.callout {
  margin-block: 2rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgb(83 215 171 / 35%);
  border-radius: 1rem;
  background: var(--accent-soft);
}

.callout > :first-child {
  margin-top: 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

.legal section {
  padding-top: 0.1rem;
  border-top: 1px solid var(--border);
}

.legal section:first-of-type {
  border-top: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }

  .nav {
    justify-content: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}

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