:root {
  --bg: #08111c;
  --bg2: #0d1c2e;
  --panel: rgba(14, 30, 48, 0.94);
  --panel-2: rgba(18, 42, 68, 0.98);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef6ff;
  --muted: #9ab1c8;
  --accent: #5dd1ff;
  --accent-2: #ffd166;
  --success: #8ce3b2;
  --sheet: #f8fbff;
  --ink: #15243b;
  --ink-soft: #4d617a;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 209, 255, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 56px; }
.nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px; font-weight: 900; font-size: 24px; letter-spacing: -0.04em;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), #7c9cff);
  display: inline-flex; align-items: center; justify-content: center; color: #08111c; font-weight: 900;
}
.site-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(93, 209, 255, 0.22); background: rgba(93, 209, 255, 0.08); color: var(--accent);
  font-size: 13px; font-weight: 700;
}
.hero { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 22px; align-items: stretch; }
.card, .form-card, .tile {
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card, .form-card { padding: 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid rgba(93, 209, 255, 0.22); background: rgba(93, 209, 255, 0.08); color: var(--accent);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
h1 { margin: 18px 0 16px; font-size: clamp(2.7rem, 7vw, 5rem); line-height: 0.96; letter-spacing: -0.055em; max-width: 12ch; }
h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.045em; }
h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -0.03em; }
p, li { color: var(--muted); line-height: 1.75; }
.hero-copy { font-size: 18px; max-width: 68ch; }
.proof, .stack, .grid { display: grid; gap: 16px; }
.proof-item, .stack a, .tile { padding: 18px; border-radius: 22px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.proof-item strong { display: block; margin-bottom: 6px; color: var(--text); }
.answer-box {
  margin-top: 20px; padding: 18px; border-radius: 22px; border: 1px solid rgba(93,209,255,.2);
  background: rgba(93,209,255,.08);
}
.answer-box strong { display: block; margin-bottom: 8px; color: var(--text); }
.form-card h2 { font-size: 32px; }
.field { display: grid; gap: 8px; margin-top: 14px; }
.field label { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #c3d8ef; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; border-radius: 14px; border: 1px solid rgba(255,255,255,.14);
  background: #0b1930; color: #eef6ff; padding: 12px 14px; font: inherit;
}
.field textarea { min-height: 100px; resize: vertical; }
.btn-row, .cta-actions { display: grid; gap: 12px; margin-top: 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 18px;
  border-radius: 16px; border: 1px solid transparent; background: linear-gradient(135deg, var(--accent), #7c9cff);
  color: #08111c; font-weight: 800; font-size: 16px;
}
.btn.secondary { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: var(--text); }
.mini, .status { font-size: 13px; color: var(--muted); min-height: 18px; }
.section { padding: 0 0 56px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin: 24px 0 18px; }
.grid { grid-template-columns: repeat(3, 1fr); }
.cta-band {
  margin-top: 20px; padding: 24px; border-radius: 24px; border: 1px solid rgba(93,209,255,.22);
  background: linear-gradient(135deg, rgba(93,209,255,.12), rgba(192,132,252,.12));
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-note { padding: 0 0 28px; color: var(--muted); font-size: 14px; text-align: center; }

.doc-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 56px; }
.doc-hero, .doc-sheet {
  border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
}
.doc-hero { background: linear-gradient(180deg, var(--panel), var(--panel-2)); padding: 28px; }
.doc-sheet { margin-top: 20px; padding: 30px; background: var(--sheet); color: var(--ink); }
.doc-sheet h1, .doc-sheet h2, .doc-sheet h3, .doc-sheet p, .doc-sheet li { color: var(--ink); }
.doc-sheet h1 { margin: 10px 0 14px; font-size: clamp(2.4rem, 6vw, 4rem); max-width: none; }
.doc-sheet .lead { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.checklist-section {
  margin-top: 22px; padding: 22px; border: 1px solid rgba(21,36,59,.1); border-radius: 22px; background: #fff;
}
.checklist-section ul { padding-left: 20px; }
.download-bar {
  margin-top: 24px; padding: 20px; border-radius: 22px; background: linear-gradient(135deg, rgba(93,209,255,.1), rgba(255,209,102,.14));
  border: 1px solid rgba(21,36,59,.08);
}

@media (max-width: 1040px) {
  .hero, .grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  h1 { max-width: none; }
  .nav { flex-direction: column; align-items: flex-start; }
}
