:root {
  --bg: #08111f;
  --bg-2: #0d1729;
  --surface: #111d32;
  --surface-2: #172640;
  --surface-3: #0f2a34;
  --border: rgba(255,255,255,0.1);
  --border-strong: rgba(255,255,255,0.2);
  --text: #f8fafc;
  --text-dim: #cbd5e1;
  --text-muted: #8ea0b8;
  --accent: #38bdf8;
  --accent-2: #a78bfa;
  --accent-3: #facc15;
  --green: #22c55e;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,17,31,.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px) saturate(140%);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 20px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03111d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-dim);
  font-size: 14px;
}
.nav-cta {
  background: #f8fafc;
  color: #08111f !important;
  border-radius: 8px;
  padding: 9px 15px;
  font-weight: 800;
}
.hero {
  padding: 78px 22px 54px;
  background:
    radial-gradient(circle at 20% 0%, rgba(56,189,248,.22), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(250,204,21,.15), transparent 34%),
    linear-gradient(180deg, #08111f 0%, #0d1729 100%);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bae6fd;
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.26);
  border-radius: 999px;
  padding: 6px 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-3);
}
h1 {
  max-width: 760px;
  font-size: clamp(34px, 5.1vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
  margin-bottom: 18px;
}
.lead {
  max-width: 720px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.55vw, 19px);
  margin-bottom: 28px;
}
.search-card {
  background: linear-gradient(180deg, rgba(17,29,50,.98), rgba(15,42,52,.96));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
}
.search-card h2 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.search-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}
.lookup-form {
  display: grid;
  gap: 10px;
}
.lookup-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(148,163,184,.32);
  border-radius: 8px;
  background: rgba(8,17,31,.78);
  color: var(--text);
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}
.lookup-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56,189,248,.16);
}
.button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #06111f;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}
.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.proof-row b { color: var(--green); }
.section {
  padding: 62px 22px;
}
.section.alt { background: var(--bg-2); }
.container {
  max-width: 1080px;
  margin: 0 auto;
}
.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--text-dim);
  font-size: 16px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.card p,
.card li {
  color: var(--text-dim);
  font-size: 14.5px;
}
.card ul {
  padding-left: 18px;
}
.card li { margin-bottom: 8px; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}
.content-block {
  color: var(--text-dim);
  font-size: 16px;
}
.content-block p { margin-bottom: 16px; }
.content-block strong { color: var(--text); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
details.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 10px;
}
details.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}
details.faq p {
  color: var(--text-dim);
  margin-top: 10px;
  font-size: 15px;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.link-card {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--text-dim);
  font-weight: 700;
}
.link-card:hover {
  border-color: var(--accent);
  color: var(--text);
}
.cta-band {
  background: linear-gradient(135deg, rgba(56,189,248,.16), rgba(250,204,21,.12));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-band h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 6px;
}
.cta-band p { color: var(--text-dim); }
.footer {
  border-top: 1px solid var(--border);
  background: #050b14;
  padding: 34px 22px 28px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 860px) {
  .hero-inner,
  .two-col,
  .grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 54px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .cta-band { display: block; }
  .cta-band .button { margin-top: 16px; width: 100%; }
}
