:root {
  --bg: #0b0c0f;
  --panel: #12141a;
  --text: #f4f4f1;
  --muted: #a2a6ad;
  --line: rgba(255,255,255,.12);
  --soft: rgba(255,255,255,.055);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(255,255,255,.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.site-header, main, footer { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.15rem; font-weight: 720; letter-spacing: -.04em; }
.brand.small { font-size: 1rem; }
nav { display: flex; gap: 28px; color: var(--muted); font-size: .92rem; }
nav a:hover, .footer-links a:hover { color: var(--text); }
.hero { min-height: 660px; padding: 118px 0 100px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 18px; font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 880px; margin-bottom: 28px; font-size: clamp(4rem, 10vw, 8.6rem); line-height: .88; letter-spacing: -.075em; font-weight: 650; }
.lead { max-width: 690px; margin-bottom: 34px; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.42rem); }
.cta { display: inline-flex; width: fit-content; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--text); font-size: .96rem; }
.section { padding: 112px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: start; margin-bottom: 46px; }
h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .98; letter-spacing: -.055em; font-weight: 600; }
.product-card { display: flex; justify-content: space-between; gap: 40px; padding: 34px; border: 1px solid var(--line); background: var(--soft); border-radius: 18px; }
.card-label { color: var(--muted); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 10px; font-size: 1.8rem; letter-spacing: -.035em; }
.product-card p { max-width: 650px; color: var(--muted); }
.status { height: fit-content; white-space: nowrap; padding: 8px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: .76rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.split > p { margin-top: 34px; max-width: 580px; color: var(--muted); font-size: 1.12rem; }
footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.footer-links { display: flex; gap: 22px; }
footer p { margin: 0; }
.legal { max-width: 760px; padding: 96px 0 120px; }
.legal h1 { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 42px; }
.legal h2 { margin: 48px 0 14px; font-size: 1.5rem; letter-spacing: -.03em; }
.legal p, .legal li { color: var(--muted); }
.legal a { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 720px) {
  .site-header, main, footer { width: min(100% - 28px, 1160px); }
  .site-header { height: 72px; }
  nav { gap: 18px; }
  .hero { min-height: 580px; padding: 86px 0 74px; }
  h1 { font-size: clamp(3.2rem, 18vw, 5rem); }
  .section { padding: 82px 0; }
  .section-heading, .split { grid-template-columns: 1fr; gap: 28px; }
  .product-card { flex-direction: column; padding: 24px; }
  .status { align-self: flex-start; }
  footer { padding: 34px 0; grid-template-columns: 1fr; gap: 14px; }
}
