:root {
  color-scheme: dark;
  --ink: #f2eff6;
  --muted: #95909f;
  --canvas: #09090d;
  --paper: #111116;
  --surface: #17171d;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #9a86ed;
  --accent-soft: #211c34;
  --warning: #d8a65f;
  --money: #d7e6cf;
  --font-ui: "IBM Plex Sans", sans-serif;
  --font-money: "Libre Baskerville", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--canvas);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 13, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

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

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.beta-chip {
  background: var(--accent-soft);
  border: 1px solid rgba(154, 134, 237, 0.35);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  white-space: nowrap;
}

.wrap {
  margin: 0 auto;
  max-width: 980px;
  padding: 56px 5vw 80px;
}

.hero {
  padding-top: 24px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand,
.eyebrow {
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  margin: 12px 0 20px;
  max-width: 18ch;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 52ch;
}

.notice {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 36px 0 8px;
  padding: 22px 24px;
}

.notice strong {
  color: var(--warning);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 28px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.card p,
.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

section {
  margin-top: 72px;
}

section h2 {
  font-size: 28px;
  margin: 0 0 16px;
}

.price-table {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  text-align: left;
}

.price-table thead {
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price-table tbody tr + tr {
  border-top: 1px solid var(--line);
}

.price-table tbody td:last-child,
.money {
  color: var(--money);
  font-family: var(--font-money);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
}

.req {
  display: grid;
  gap: 10px 28px;
  grid-template-columns: 160px 1fr;
}

.req dt {
  color: var(--muted);
}

.req dd {
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  background: var(--accent);
  border-radius: 999px;
  color: #120f1c;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.steps {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-left: 22px;
}

.steps li + li {
  margin-top: 8px;
}

.examples {
  color: var(--muted);
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.examples li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.card a,
.lede a,
.prose a,
.notice a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 32px 12px;
}

.prose h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}

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

.prose h3 {
  color: var(--ink);
  font-size: 16px;
  margin: 20px 0 8px;
}

.prose ol,
.prose ul {
  color: var(--muted);
  margin: 0 0 12px;
  padding-left: 22px;
}

.prose li + li {
  margin-top: 6px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  padding: 28px 5vw 40px;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 5vw;
  }

  .req {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .req dt {
    margin-top: 10px;
  }
}
