:root {
  --accent: #cb30e0;
  --accent-bright: #e24bf2;
  --ink: #09090b;
  --surface: #111113;
  --surface-2: #17171b;
  --text: #fafafa;
  --muted: #a1a1aa;
  --line: rgba(255, 255, 255, 0.09);
  --max: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --ink: #fff;
    --surface: #fff;
    --surface-2: #f5f5f7;
    --text: #1d1d1f;
    --muted: #515154;
    --line: rgba(0, 0, 0, 0.1);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(to right, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--ink);
  background-size: 52px 52px;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.012em;
}

@media (prefers-color-scheme: light) {
  body {
    background:
      linear-gradient(to right, rgba(0,0,0,.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0,0,0,.025) 1px, transparent 1px),
      var(--ink);
    background-size: 52px 52px;
  }
}

a { color: inherit; }
img { max-width: 100%; height: auto; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-nav {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 650; text-decoration: none; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--text);
  font-weight: 650;
}

.hero { padding: 90px 0 70px; text-align: center; }
.eyebrow { color: var(--accent-bright); font-size: 14px; font-weight: 750; text-transform: uppercase; letter-spacing: .11em; }
h1 { max-width: 900px; margin: 18px auto 0; font-size: clamp(42px, 7vw, 82px); line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
.lede { max-width: 740px; margin: 24px auto 0; color: var(--muted); font-size: clamp(19px, 2.4vw, 24px); line-height: 1.5; text-wrap: pretty; }
.actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  text-decoration: none;
  font-weight: 650;
  background: var(--surface);
}
.button.primary { color: #fff; border-color: transparent; background: var(--accent); }
.note { margin-top: 18px; color: var(--muted); font-size: 14px; }

.section { padding: 74px 0; border-top: 1px solid var(--line); }
.section h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 5vw, 56px); line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
.section > .wrap > p,
.intro { max-width: 760px; color: var(--muted); font-size: 19px; line-height: 1.7; }
.section h3 { margin: 0; font-size: 24px; letter-spacing: -.02em; }
.section p { line-height: 1.7; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
.card p { margin: 12px 0 0; color: var(--muted); }
.card a { display: inline-block; margin-top: 18px; font-weight: 650; text-underline-offset: 4px; }
.number { color: var(--accent-bright); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.number + h3 { margin-top: 12px; }

.article { max-width: 780px; margin: 0 auto; }
.article h2 { margin-top: 54px; font-size: 34px; letter-spacing: -.025em; }
.article h3 { margin-top: 36px; font-size: 24px; }
.article p, .article li { color: var(--muted); font-size: 18px; line-height: 1.75; }
.article strong { color: var(--text); }
.article a { text-underline-offset: 4px; }
.article li + li { margin-top: 10px; }
.callout {
  margin: 38px 0;
  padding: 26px 28px;
  border: 1px solid rgba(203,48,224,.35);
  border-radius: 16px;
  background: rgba(203,48,224,.08);
}
.callout p { margin: 0; color: var(--text); }

.faq details { padding: 22px 0; border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 19px; font-weight: 650; }
.faq p { color: var(--muted); font-size: 17px; line-height: 1.7; }

.breadcrumbs { padding-top: 28px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { text-underline-offset: 3px; }

footer { padding: 42px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 38px; }
.footer-grid h2, .footer-grid h3 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.footer-grid p { margin: 0; max-width: 260px; color: var(--muted); line-height: 1.6; }
.footer-grid a { display: block; margin: 10px 0; color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--text); }
.copyright { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 54px; }
  .section { padding: 56px 0; }
  .grid, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
  .article p, .article li { font-size: 17px; }
}

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