@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
}

:root {
  --ink: #0c1f33;
  --ink-soft: #3a5166;
  --muted: #5c7184;
  --line: #d3e4df;
  --line-strong: #b5cdc6;
  --paper: #eef6f3;
  --white: #ffffff;
  --navy: #0c2238;
  --navy-mid: #16344f;
  --accent: #0e9a8c;
  --accent-hover: #14b8a6;
  --accent-soft: #e5f7f3;
  --accent-line: #99f6e4;
  --gold: #c4a227;
  --gold-hover: #d4b43c;
  --header-bg: #f7f5f1;
  --header-ink: #0c1f33;
  --header-muted: #3a5166;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(12, 34, 56, 0.06), 0 12px 32px rgba(12, 34, 56, 0.08);
  --font: Inter, system-ui, sans-serif;
  --wrap: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
}

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

h1,
h2,
h3,
.brand-name {
  font-family: var(--font);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  padding: 0.5rem 0.85rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  color: #fff;
}

.coming-banner {
  margin: 0;
  padding: 0.7rem 1.25rem;
  background: #0f2744;
  color: #e2e8f0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.coming-banner strong {
  color: #5eead4;
}

.coming-banner a {
  color: #5eead4;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.platform-note {
  margin-top: 1.25rem;
}

.network-fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem 1rem;
  margin: 0 0 1rem;
}

.network-fieldset legend {
  font-weight: 600;
  color: var(--ink);
  padding: 0 0.35rem;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0;
  font-weight: 500;
}

:focus-visible {
  outline: 3px solid #14b8a6;
  outline-offset: 2px;
}

#main,
#waitlist,
#platforms,
#features,
#how,
#who,
#facts,
#faq,
#top {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

#main:focus {
  outline: none;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(12, 34, 56, 0.10);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(12, 34, 56, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  filter: drop-shadow(0 1px 2px rgba(12, 34, 56, 0.12));
}

.brand-name {
  margin: 0;
  font-size: 1.05rem;
  color: var(--header-ink);
}

.brand-name span {
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem 1.35rem;
}

.site-nav a {
  color: var(--header-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--header-ink);
  border-radius: 2px;
  margin: 0 auto;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  color: #fff !important;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.site-header .btn--primary {
  background: var(--gold);
  color: #0c1f33 !important;
}

.site-header .btn--primary:hover {
  background: #d4b43c;
  color: #0c1f33 !important;
}

.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--navy {
  background: var(--navy);
  color: #fff !important;
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero {
  padding: 3.25rem 0 4rem;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(20, 184, 166, 0.16) 0%, transparent 58%),
    radial-gradient(620px 280px at 8% 110%, rgba(196, 162, 39, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #eef6f3 0%, #ffffff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.product-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-frame--shot {
  margin: 0;
  background: #f8fafc;
}

.product-frame--shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-frame--shot figcaption {
  padding: 0.7rem 1rem 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.product-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.product-frame__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.product-frame__bar i:nth-child(1) { background: #f43f5e; }
.product-frame__bar i:nth-child(2) { background: #f59e0b; }
.product-frame__bar i:nth-child(3) { background: #10b981; }

.product-frame__title {
  margin-left: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.demo {
  padding: 1rem;
}

.demo__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.chip.is-active {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
}

.queue {
  display: grid;
  gap: 0.65rem;
}

.queue-card {
  text-align: left;
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.queue-card.is-selected {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  box-shadow: inset 4px 0 0 var(--accent);
}

.queue-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
}

.queue-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #e2e8f0;
  color: var(--ink-soft);
}

.badge--soon {
  background: #f1f5f9;
}

.demo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.demo__status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 4.25rem 0;
}

.section--paper {
  background: var(--paper);
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  max-width: 22ch;
}

.section-lead {
  max-width: 42rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.platform-grid,
.feature-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

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

.platform-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.platform-card__icon--li {
  background: #0a66c2;
  color: #fff;
}

.platform-card__icon--x {
  background: #0f172a;
  color: #fff;
}

.platform-card__icon--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem 1.3rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.step h3 {
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  padding: 0.9rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.cta-band {
  background: var(--navy);
  color: #cbd5e1;
  padding: 4rem 0;
}

.cta-band h2 {
  color: #fff;
  max-width: none;
}

.cta-band .section-lead {
  color: #94a3b8;
}

.buy-section {
  background: var(--paper);
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--line);
}

.buy-anchor {
  position: relative;
  top: calc(var(--header-h) * -1 - 8px);
  height: 0;
  width: 0;
  overflow: hidden;
}

.buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.buy-next {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.buy-next li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.buy-next li::before {
  content: attr(data-n);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.plan-grid {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

.plan-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.plan-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card:hover,
.plan-card:has(:focus-visible) {
  border-color: var(--accent);
}

.plan-card.is-selected,
.plan-card:has(:checked) {
  border-color: var(--navy);
  background: var(--accent-soft);
}

.plan-card__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.plan-card span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.buy-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.buy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
}

.buy-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.buy-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.buy-form .full,
.buy-form .btn.full,
.buy-form .form-note {
  grid-column: 1 / -1;
}

.buy-form input,
.buy-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.buy-form textarea {
  min-height: 96px;
  resize: vertical;
}

.buy-form .form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--accent);
}

.form-success h3 {
  margin: 0 0 0.5rem;
}

.form-success .btn {
  margin: 0.35rem 0 0.75rem;
}

.fit-calendar {
  margin: 0;
  padding: 0.9rem 0.9rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.fit-cal-heading {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--ink);
}

.fit-cal-hint {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.fit-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.fit-cal-nav__month {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
}

.fit-cal-nav__btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.fit-cal-weekdays,
.fit-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  text-align: center;
}

.fit-cal-weekdays {
  margin-bottom: 0.25rem;
  font-size: 0.68rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.fit-cal-day {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.fit-cal-day.is-empty {
  background: transparent;
  pointer-events: none;
}

.fit-cal-day.is-today {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.fit-cal-day.is-selected {
  background: var(--navy);
  color: #fff;
}

.fit-cal-day.is-disabled,
.fit-cal-day:disabled {
  background: transparent;
  color: #94a3b8;
  cursor: not-allowed;
}

.fit-cal-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
}

.fit-cal-slot {
  min-height: 36px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.fit-cal-slot.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.fit-cal-summary {
  margin: 0 0 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: #0c5c56;
  font-size: 0.82rem;
  line-height: 1.4;
}

.fit-cal-summary.is-final {
  text-align: left;
  margin: 1rem 0;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 640px;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form label.full {
  grid-column: 1 / -1;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.88rem;
  color: #99f6e4;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  padding: 2rem 0 2.4rem;
  color: rgba(226, 232, 240, 0.78);
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(700px 420px at 8% 90%, rgba(196, 162, 39, 0.12), transparent 50%),
    linear-gradient(165deg, #06101c 0%, #0f2744 52%, #0b3d3a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.site-footer a {
  color: rgba(226, 232, 240, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #5eead4;
}

.legal {
  padding: 3.5rem 0 5rem;
}

.legal h1 {
  font-size: 2rem;
}

.legal .lead {
  margin-bottom: 1.5rem;
}

.facts {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.facts div {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) 1fr;
  gap: 0.5rem 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.facts dd {
  margin: 0;
  color: var(--ink-soft);
}

.brief-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.brief-products a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: #fff;
}

.brief-products a:hover {
  border-color: var(--accent-line);
}

.brief-products strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.brief-products span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal ul {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
}

.legal li {
  margin: 0.35rem 0;
}

@media (max-width: 760px) {
  .facts div {
    grid-template-columns: 1fr;
  }

  .brief-products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero__grid,
  .platform-grid,
  .feature-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .buy-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 1.5rem, var(--wrap));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(12, 34, 56, 0.10);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav .btn {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 0;
  }

  .site-nav .btn--primary {
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .hero,
  .section,
  .cta-band,
  .buy-section {
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
  }

  .hero__grid,
  .platform-grid,
  .feature-grid,
  .audience-grid,
  .steps,
  .form,
  .buy-layout,
  .buy-form {
    grid-template-columns: 1fr;
  }
}

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

  * {
    animation: none !important;
    transition: none !important;
  }
}
