:root {
  color-scheme: dark;
  --bg: #080b12;
  --panel: #111723;
  --panel-soft: #0d121c;
  --text: #f5f7fb;
  --muted: #a7b0c0;
  --line: #263044;
  --accent: #ff6b35;
  --accent-soft: rgba(255, 107, 53, 0.12);
  --success: #5bd6a2;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 107, 53, 0.11), transparent 32rem),
    radial-gradient(circle at 5% 28%, rgba(70, 102, 255, 0.08), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 11, 18, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; font-weight: 750; }
.brand-mark { width: 12px; height: 12px; background: var(--accent); border-radius: 3px; box-shadow: 0 0 22px rgba(255, 107, 53, 0.8); }
.nav-links { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: 0.94rem; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }

.hero { padding: 7rem 0 5rem; }
.eyebrow { color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.16; letter-spacing: -0.025em; }
h1 { max-width: 850px; margin: 1rem 0 1.4rem; font-size: clamp(2.6rem, 7vw, 5.7rem); }
.hero-copy { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0.7rem 1.05rem; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; font-weight: 700; }
.button-primary { background: var(--accent); border-color: var(--accent); color: #111; }
.button-secondary { background: rgba(255, 255, 255, 0.03); }

.section { padding: 2.5rem 0 5rem; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading h2 { margin: 0.45rem 0 0.8rem; font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading p, .muted { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { padding: 1.5rem; background: linear-gradient(145deg, rgba(17, 23, 35, 0.95), rgba(11, 15, 24, 0.96)); border: 1px solid var(--line); border-radius: 16px; }
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; color: var(--muted); }
.number { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-bottom: 1rem; color: var(--accent); background: var(--accent-soft); border-radius: 8px; font-weight: 800; }
.trust { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.pill { padding: 0.48rem 0.75rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-size: 0.9rem; }

.document { width: min(calc(100% - 2rem), 860px); margin: 0 auto; padding: 4rem 0 6rem; }
.document-header { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.document h1 { font-size: clamp(2.3rem, 6vw, 4.3rem); }
.document h2 { margin-top: 2.8rem; font-size: 1.55rem; }
.document h3 { margin-top: 1.8rem; font-size: 1.08rem; }
.document p, .document li { color: #c5ccda; }
.document li + li { margin-top: 0.45rem; }
.document a { color: #ff936d; }
.notice { margin: 1.6rem 0; padding: 1rem 1.2rem; background: var(--accent-soft); border: 1px solid rgba(255, 107, 53, 0.35); border-radius: 12px; }
.meta { color: var(--muted); font-size: 0.94rem; }

.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 760px) {
  .hero { padding-top: 4.5rem; }
  .grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 1rem 0; }
  .nav-links { justify-content: flex-end; }
}
