:root {
  color-scheme: dark;
  --primary: #5e6ad2;
  --primary-hover: #828fff;
  --ink: #f7f8f8;
  --muted: #d0d6e0;
  --subtle: #8a8f98;
  --canvas: #010102;
  --surface: #0f1011;
  --surface-2: #141516;
  --hairline: #23252a;
  --hairline-strong: #34343a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 16px/1.5 Inter, "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

.nav,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
}

.brand,
.actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 600;
}

.brand img {
  border-radius: 8px;
}

nav a,
footer a,
footer span {
  color: var(--subtle);
  font-size: 14px;
}

nav a:hover,
footer a:hover {
  color: var(--ink);
}

.hero {
  padding: 96px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
}

.button.primary {
  background: var(--primary);
  color: #fff;
}

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

.button.secondary {
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--ink);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.panel,
.product-panel,
.policy {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--surface);
}

.panel {
  padding: 24px;
}

.panel p,
.product-panel p,
.policy p {
  color: var(--muted);
}

.number {
  display: block;
  margin-bottom: 32px;
  color: var(--subtle);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  padding: 32px;
  margin-bottom: 72px;
}

.policy {
  max-width: 860px;
  padding: 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.policy h1 {
  font-size: clamp(38px, 7vw, 64px);
}

.policy h2 {
  margin-top: 32px;
}

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

pre {
  overflow-x: auto;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-2);
  color: var(--ink);
  font: 13px/1.5 ui-monospace, "SF Mono", Menlo, monospace;
}

footer {
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--hairline);
  padding: 24px 0 48px;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 64px;
  }

  .panel-grid,
  .product-panel {
    grid-template-columns: 1fr;
  }

  .policy {
    padding: 24px;
  }
}
