:root {
  color-scheme: dark;
  --bg: #08080d;
  --surface: #14141d;
  --surface-raised: #1b1b26;
  --text: #f4f2f8;
  --muted: #aaa6b5;
  --border: #2b2a36;
  --accent: #8b7bf0;
  --accent-soft: #211e38;
  --blaze: #ff6b6b;
  --chrono: #4a9ef5;
  --amore: #ff8ed4;
  --sage: #9b5de5;
  --terra: #00c9a7;
  --midas: #ffd93d;
  --content: 760px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #b6abff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #d2ccff;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  color: var(--bg);
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-header-inner,
.page-shell,
.site-footer-inner {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-spectrum {
  display: grid;
  width: 30px;
  grid-template-columns: repeat(3, 7px);
  gap: 3px;
}

.brand-spectrum span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.brand-spectrum span:nth-child(1) { background: var(--blaze); }
.brand-spectrum span:nth-child(2) { background: var(--chrono); }
.brand-spectrum span:nth-child(3) { background: var(--amore); }
.brand-spectrum span:nth-child(4) { background: var(--sage); }
.brand-spectrum span:nth-child(5) { background: var(--terra); }
.brand-spectrum span:nth-child(6) { background: var(--midas); }

.header-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.page-shell {
  padding: 64px 0 84px;
}

.page-intro {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 10px;
  color: #b6abff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lede {
  max-width: 660px;
  margin: 0;
  color: #cbc7d4;
  font-size: 1.08rem;
}

.updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin-top: 0;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section ol:last-child {
  margin-bottom: 0;
}

.legal-section li + li {
  margin-top: 9px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 24px;
}

.callout {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #393252;
  border-radius: 8px;
  background: var(--accent-soft);
}

.callout strong {
  color: var(--text);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  min-height: 54px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  counter-increment: steps;
}

.steps li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0a16;
  content: counter(steps);
  font-size: 14px;
  font-weight: 900;
}

.contact-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #0c0a16;
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  background: #a79bf7;
  color: #0c0a16;
}

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

.site-footer-inner {
  display: grid;
  gap: 20px;
  padding: 30px 0 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d1cdda;
}

.company-line {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 520px) {
  .site-header-inner,
  .page-shell,
  .site-footer-inner {
    width: min(100% - 28px, var(--content));
  }

  .page-shell {
    padding: 44px 0 64px;
  }

  .header-link {
    font-size: 13px;
  }
}

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