:root {
  --paper: #16181d;
  --ink: #dfe2e8;
  --accent: #7e95d7;
  --muted: color-mix(in oklab, var(--ink) 64%, var(--paper));
  --faint: color-mix(in oklab, var(--ink) 42%, var(--paper));
  --rule: color-mix(in oklab, var(--ink) 14%, var(--paper));
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-pad: clamp(16px, 3vw, 36px);
  --page-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.6 var(--font);
  text-rendering: optimizeLegibility;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

.page {
  width: min(100%, var(--page-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.top-bar {
  border-bottom: 1px solid var(--rule);
}

.top-bar-inner {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.seo-nav__links {
  display: flex;
  gap: 22px;
}

.seo-nav a:not(.wordmark),
.seo-footer a {
  color: var(--muted);
  text-decoration: none;
}

.seo-nav a:hover,
.seo-footer a:hover,
.seo-content a {
  color: var(--accent);
}

.button {
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: color-mix(in oklab, var(--accent) 88%, var(--paper));
}

.button[aria-disabled="true"],
.button[aria-disabled="true"]:hover {
  border-color: var(--rule);
  background: transparent;
  color: var(--faint);
  cursor: not-allowed;
}

.hero {
  padding-top: clamp(54px, 8vw, 86px);
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.subhero {
  max-width: 790px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.product-shot {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: clamp(34px, 5vw, 54px);
  border: 1px solid var(--rule);
}

.features {
  margin-top: clamp(54px, 8vw, 88px);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-title {
  margin: 0;
  padding-block: 18px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  border-bottom: 1px solid var(--rule);
}

.feature-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  padding-block: 18px;
  border-bottom: 1px solid var(--rule);
}

.feature-list strong {
  font-weight: 650;
}

.feature-list span {
  color: var(--muted);
}

.dash {
  display: none;
}

.beta-access {
  padding-block: clamp(58px, 9vw, 96px);
}

.beta-card {
  width: min(100%, 640px);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--rule);
}

.beta-card__label {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.beta-card__price {
  margin: 12px 0 0;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.025em;
}

.beta-card__price strong {
  font-weight: 650;
}

.beta-card h2 {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.012em;
}

.beta-card__features {
  margin: 16px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.beta-card__features li + li {
  margin-top: 5px;
}

.beta-card .button {
  display: block;
  width: 100%;
  margin-top: 28px;
  text-align: center;
}

.claimed {
  min-height: calc(100vh - 121px);
  padding-block: clamp(64px, 10vw, 112px);
}

.claimed__content {
  max-width: 680px;
}

.claimed__button,
.claimed__support {
  display: block;
  width: fit-content;
  margin-top: 28px;
}

.claimed__support {
  color: var(--muted);
}

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

.footer-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--faint);
  font-size: 12px;
}

.footer-inner span:first-child {
  color: var(--muted);
  font-weight: 650;
}

.seo-main {
  max-width: 920px;
  padding-block: clamp(52px, 8vw, 88px);
}

.seo-main article {
  min-width: 0;
}

.seo-main h1 {
  max-width: 18ch;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
}

.seo-content {
  margin-top: 28px;
}

.seo-content > :not(table),
.seo-faq,
.seo-updated {
  max-width: 70ch;
}

.seo-content > p:first-child {
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seo-content h2,
.seo-faq h2 {
  margin: clamp(42px, 6vw, 56px) 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.seo-content h3,
.seo-faq h3 {
  margin: 30px 0 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.seo-content h4 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.seo-content p,
.seo-faq p {
  margin: 0 0 18px;
  color: var(--muted);
}

.seo-content ul,
.seo-content ol {
  margin: 0 0 22px;
  padding-left: 1.35rem;
  color: var(--muted);
}

.seo-content li + li {
  margin-top: 7px;
}

.seo-content li::marker {
  color: var(--faint);
}

.seo-content blockquote {
  margin: 24px 0;
  padding: 1px 0 1px 18px;
  border-left: 2px solid var(--rule);
}

.seo-content blockquote p:last-child {
  margin-bottom: 0;
}

.seo-content a,
.seo-faq a,
.seo-not-found a {
  color: var(--accent);
  text-decoration-color: var(--faint);
  text-underline-offset: 0.2em;
}

.seo-content a:hover,
.seo-faq a:hover,
.seo-not-found a:hover {
  text-decoration-color: var(--accent);
}

.seo-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-block: 28px 30px;
  overflow-x: auto;
  border-block: 1px solid var(--rule);
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

.seo-content th,
.seo-content td {
  min-width: 150px;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.seo-content th {
  color: var(--ink);
  font-weight: 650;
}

.seo-content tbody tr:last-child td {
  border-bottom: 0;
}

.seo-content :is(th, td)[align="right"] {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.seo-content code {
  color: var(--ink);
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.seo-faq {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}

.seo-faq h2 {
  margin-top: 34px;
}

.seo-faq h3 {
  margin-top: 26px;
}

.seo-faq p {
  font-weight: 400;
}

.seo-updated {
  margin: 52px 0 0;
  color: var(--faint);
  font-size: 12px;
}

.seo-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  padding-block: 24px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.5;
}

.seo-footer a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.seo-footer span {
  flex-basis: 100%;
  margin-top: 6px;
}

.seo-not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: var(--page-pad);
  text-align: center;
}

.seo-not-found h1 {
  font-size: clamp(32px, 8vw, 48px);
}

.seo-not-found p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 640px) {
  .top-bar-inner {
    min-height: 52px;
  }

  .hero {
    padding-top: 44px;
  }

  .feature-list li {
    display: block;
    padding-block: 15px;
  }

  .feature-list strong,
  .feature-list span {
    display: inline;
  }

  .dash {
    display: inline;
    color: var(--muted);
    font-weight: 400;
  }

  .beta-card {
    padding: 22px 18px;
  }

  .seo-nav__links {
    gap: 14px;
  }

  .seo-main {
    padding-block: 40px 56px;
  }

  .seo-content {
    margin-top: 22px;
  }

  .seo-content > p:first-child {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .seo-content th,
  .seo-content td {
    min-width: 140px;
    padding: 9px 10px;
  }
}
