/* ==========================================================================
   US DATA GROUP — Premium Investigative Intelligence Design System
   ========================================================================== */
:root {
  /* Backgrounds */
  --bg:            #07111F;
  --bg-2:          #0B1728;
  --panel:         #101E31;
  --panel-2:       #0d1a2b;
  /* Accents */
  --blue:          #168BFF;
  --cyan:          #21D4FD;
  --gold:          #C9A55C;
  --grad:          linear-gradient(120deg, #168BFF 0%, #21D4FD 100%);
  --grad-gold:     linear-gradient(120deg, #C9A55C 0%, #e6cf9a 100%);
  /* Text */
  --text:          #F4F7FB;
  --muted:         #9AAABC;
  --dim:           #64758c;
  /* Lines */
  --line:          rgba(255,255,255,0.08);
  --line-strong:   rgba(255,255,255,0.14);
  --glow-blue:     rgba(22,139,255,0.35);
  /* Sizing */
  --radius:        16px;
  --radius-sm:     12px;
  --maxw:          1200px;
  --shadow:        0 24px 60px rgba(2,8,18,0.55);
  --font:          'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display:       'Sora', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background-color: var(--bg);
  /* subtle grain to keep large dark areas from going flat */
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(22,139,255,0.10), transparent 60%),
    radial-gradient(900px 520px at 6% 4%, rgba(33,212,253,0.06), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: rgba(22,139,255,0.35); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan);
  background: rgba(33,212,253,0.06); border: 1px solid rgba(33,212,253,0.20);
  padding: 7px 15px; border-radius: 999px;
}
.eyebrow .led { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  letter-spacing: .3px; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s, border-color .2s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #04121f; box-shadow: 0 10px 30px var(--glow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px var(--glow-blue); }
.btn-ghost { background: rgba(255,255,255,0.02); border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--blue); color: #fff; box-shadow: 0 0 0 1px rgba(22,139,255,.3); }
.btn-gold { background: var(--grad-gold); color: #221a09; box-shadow: 0 10px 30px rgba(201,165,92,.25); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(7,17,31,0.72); backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: .3px; flex: 0 0 auto; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px; position: relative;
  background: linear-gradient(150deg, #12233b, #0b1728); border: 1px solid var(--line-strong);
  display: grid; place-items: center; overflow: hidden;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand .mark video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand .bt { font-weight: 800; }
.brand small { display: block; font-family: var(--font); font-weight: 500; font-size: 10px; letter-spacing: 2px; color: var(--dim); text-transform: uppercase; margin-top: -3px; }
.nav-links { display: flex; align-items: center; gap: 22px; flex: 1 1 auto; justify-content: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .15s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-cta .signin { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-cta .signin:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: 9px; width: 42px; height: 40px; color: var(--text); font-size: 20px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 60px; overflow: hidden; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .8; }
.hero::after { content:""; position:absolute; inset:0; z-index:1; background: radial-gradient(70% 60% at 50% 30%, transparent, var(--bg) 88%); pointer-events:none; }
.hero-inner { position: relative; z-index: 2; max-width: 920px; }
.hero-logo { display: block; width: clamp(300px, 46vw, 520px); aspect-ratio: 1 / 1; height: auto; object-fit: contain; margin: 10px auto 16px; border-radius: 30px; }
.hero .eyebrow { display: flex; width: -moz-fit-content; width: fit-content; margin-left: auto; margin-right: auto; }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 7vw, 82px); line-height: 0.98; letter-spacing: -2px; margin: 22px 0 22px; font-weight: 800; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 620px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note { display: flex; align-items: center; gap: 10px; color: var(--dim); font-size: 13.5px; }
.hero-note svg { width: 16px; height: 16px; color: var(--gold); flex: 0 0 auto; }

/* thin marquee of capabilities */
.ticker { position: relative; z-index: 2; margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: inline-flex; gap: 44px; white-space: nowrap; animation: scroll-x 34s linear infinite; }
.ticker-track span { color: var(--dim); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.ticker-track span::before { content: "◆"; color: var(--blue); margin-right: 44px; font-size: 8px; vertical-align: middle; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Section shells ---------- */
section.block { position: relative; padding: 92px 0; }
.section-head { max-width: 720px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-family: var(--display); font-size: clamp(28px, 4.2vw, 46px); letter-spacing: -1px; margin: 16px 0 14px; line-height: 1.05; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 17.5px; margin: 0; }

/* ---------- Intelligence search terminal ---------- */
.terminal { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line-strong); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.terminal .tbar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.tbar .dot { width: 11px; height: 11px; border-radius: 50%; }
.tbar .r{background:#ff5f57}.tbar .y{background:#febc2e}.tbar .g{background:#28c840}
.tbar .tlabel { margin-left: 8px; color: var(--dim); font-size: 12.5px; letter-spacing: 1px; font-family: var(--display); }
.tbar .tstatus { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--cyan); font-size: 12px; font-weight: 600; }
.tbar .tstatus .led { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse 1.8s infinite; }
.terminal-body { display: grid; grid-template-columns: 300px 1fr; gap: 0; }
.term-left { padding: 24px; border-right: 1px solid var(--line); }
.term-left h4 { font-family: var(--display); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin: 0 0 16px; }
.term-field { margin-bottom: 14px; }
.term-field label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.term-field .val { background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; font-size: 14px; color: var(--text); font-family: 'Sora', monospace; }
.term-field .val.cursor::after { content:"▍"; color: var(--cyan); animation: pulse 1s infinite; }
.term-run { margin-top: 6px; }
.term-right { padding: 24px; }
.term-right .rhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.term-right .rhead .cnt { color: var(--cyan); font-size: 13px; font-weight: 600; }
.scanline { height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); margin-bottom: 18px; animation: scan 3.2s ease-in-out infinite; }
@keyframes scan { 0%,100%{opacity:.2; transform:translateX(-10%)} 50%{opacity:1; transform:translateX(10%)} }
.rcard { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 11px; margin-bottom: 10px; background: rgba(255,255,255,0.012); transition: border-color .2s, background .2s; }
.rcard:hover { border-color: rgba(22,139,255,.4); background: rgba(22,139,255,.04); }
.rcard .rav { width: 40px; height: 40px; border-radius: 10px; background: var(--grad); opacity:.85; flex: 0 0 auto; }
.rcard .rmeta { flex: 1; min-width: 0; }
.rcard .rmeta .n { font-weight: 600; font-size: 14.5px; }
.rcard .rmeta .s { color: var(--dim); font-size: 12.5px; }
.rcard .rtag { font-size: 11px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted); white-space: nowrap; }
.rcard .rtag.match { color: var(--cyan); border-color: rgba(33,212,253,.35); }
.rchips { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.rchip { font-size:11.5px; color:var(--muted); border:1px solid var(--line); border-radius:8px; padding:6px 11px; display:inline-flex; align-items:center; gap:6px; }
.rchip b { color: var(--text); font-weight:600; }
.blur { filter: blur(6px); user-select: none; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-2{grid-template-columns:repeat(2,1fr)} .grid-3{grid-template-columns:repeat(3,1fr)} .grid-4{grid-template-columns:repeat(4,1fr)}
.card {
  background: linear-gradient(180deg, rgba(16,30,49,0.7), rgba(11,23,40,0.55));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s;
}
.card::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1px; background: linear-gradient(120deg, transparent, rgba(22,139,255,.0)); pointer-events:none; }
.card:hover { transform: translateY(-4px); border-color: rgba(22,139,255,.4); box-shadow: 0 18px 44px rgba(2,8,18,.5), 0 0 0 1px rgba(22,139,255,.15); }
.card .ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(22,139,255,0.10); border: 1px solid rgba(22,139,255,0.18); color: var(--cyan); }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--display); margin: 0 0 9px; font-size: 17.5px; font-weight: 700; letter-spacing: -.2px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(16,30,49,0.4); }
.stat .num { font-family: var(--display); font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- US intelligence map ---------- */
.map-section { position: relative; }
.map-wrap { position: relative; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: linear-gradient(180deg, var(--bg-2), var(--bg)); box-shadow: var(--shadow); }
#mapCanvas { display: block; width: 100%; height: 520px; }
.map-overlay { position: absolute; top: 26px; left: 26px; right: 26px; display: flex; justify-content: space-between; gap: 20px; pointer-events: none; flex-wrap: wrap; }
.map-legend { display: flex; gap: 16px; flex-wrap: wrap; }
.map-legend .lg { display:inline-flex; align-items:center; gap:8px; font-size:12px; color:var(--muted); background:rgba(7,17,31,.6); border:1px solid var(--line); border-radius:999px; padding:6px 12px; backdrop-filter: blur(6px); }
.map-legend .d { width:8px; height:8px; border-radius:50%; }
.map-tip { position:absolute; pointer-events:none; background:rgba(7,17,31,.92); border:1px solid var(--line-strong); border-radius:10px; padding:10px 13px; font-size:12.5px; opacity:0; transform:translate(-50%,-115%); transition:opacity .15s; box-shadow:var(--shadow); z-index:5; min-width:150px; }
.map-tip .mt-state { font-family:var(--display); font-weight:700; font-size:13.5px; margin-bottom:4px; }
.map-tip .mt-row { color:var(--muted); font-size:11.5px; }

/* ---------- Membership ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 32px 28px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(180deg, rgba(16,30,49,0.6), rgba(11,23,40,0.5)); }
.plan.featured { border-color: rgba(201,165,92,0.55); box-shadow: 0 0 0 1px rgba(201,165,92,.35), 0 24px 60px rgba(2,8,18,.55); }
.plan.featured::before { content:""; position:absolute; inset:0; border-radius:18px; padding:1px; background:linear-gradient(180deg, rgba(201,165,92,.5), transparent 60%); -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; }
.plan .rec { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #221a09; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; padding: 6px 15px; border-radius: 999px; text-transform: uppercase; }
.plan .pname { font-family: var(--display); font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.plan.featured .pname { color: var(--gold); }
.plan .pfor { color: var(--dim); font-size: 13px; margin: 6px 0 16px; }
.plan .price { font-family: var(--display); font-size: 44px; font-weight: 800; letter-spacing: -1.5px; }
.plan .price span { font-size: 15px; color: var(--dim); font-weight: 500; letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 11px; color: var(--muted); font-size: 14.5px; align-items: flex-start; }
.plan li svg { width: 17px; height: 17px; color: var(--cyan); flex: 0 0 auto; margin-top: 3px; }
.plan.featured li svg { color: var(--gold); }
.plan .btn { margin-top: auto; }

/* ---------- Locked member preview ---------- */
.locks { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lock {
  position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(180deg, rgba(16,30,49,0.55), rgba(11,23,40,0.5)); overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.lock:hover { border-color: rgba(22,139,255,.4); transform: translateY(-3px); }
.lock .lkico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--line); margin-bottom: 14px; color: var(--muted); }
.lock h4 { font-family: var(--display); margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.lock p { margin: 0; color: var(--dim); font-size: 13px; }
.lock .badge { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--gold); border: 1px solid rgba(201,165,92,.35); border-radius: 999px; padding: 4px 9px; text-transform: uppercase; background: rgba(201,165,92,.06); }
.lock .badge svg { width: 11px; height: 11px; }
.lock .preview-blur { filter: blur(4px); opacity: .7; transition: filter .3s, opacity .3s; }
.lock:hover .preview-blur { filter: blur(2px); opacity: .9; }

/* ---------- Intelligence Library ---------- */
.lib { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.article { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(180deg, rgba(16,30,49,0.6), rgba(11,23,40,0.5)); transition: transform .2s, border-color .2s; }
.article:hover { transform: translateY(-4px); border-color: rgba(22,139,255,.4); }
.article .atop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.article .acat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.article .aprem { font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 9px; border-radius: 999px; text-transform: uppercase; }
.aprem.free { color: var(--muted); border: 1px solid var(--line-strong); }
.aprem.prem { color: var(--gold); border: 1px solid rgba(201,165,92,.4); background: rgba(201,165,92,.06); }
.article h3 { font-family: var(--display); font-size: 18px; margin: 0 0 10px; font-weight: 700; letter-spacing: -.3px; }
.article p { color: var(--muted); font-size: 14px; margin: 0 0 18px; flex: 1; }
.article .ameta { display: flex; gap: 16px; color: var(--dim); font-size: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.article .ameta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Trust pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar { padding: 26px; border: 1px solid var(--line); border-radius: 15px; background: rgba(16,30,49,0.4); }
.pillar .pico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(33,212,253,0.08); border: 1px solid rgba(33,212,253,0.18); color: var(--cyan); margin-bottom: 16px; }
.pillar .pico svg { width: 22px; height: 22px; }
.lock .lkico svg { width: 20px; height: 20px; }
.article .ameta svg { width: 13px; height: 13px; }
.article .ameta .dot-cyan { color: var(--cyan); }
.pillar h4 { font-family: var(--display); margin: 0 0 8px; font-size: 15.5px; font-weight: 700; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--line); padding: 72px 40px; text-align: center; background: linear-gradient(180deg, var(--panel), var(--bg-2)); }
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.cta-inner { position: relative; z-index: 2; }
.cta h2 { font-family: var(--display); font-size: clamp(28px, 4.5vw, 50px); letter-spacing: -1.5px; margin: 0 0 16px; font-weight: 800; line-height: 1.02; }
.cta p { color: var(--muted); font-size: 18px; margin: 0 auto 30px; max-width: 640px; }
.cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Compliance ---------- */
.compliance { border: 1px solid var(--line); border-radius: 15px; padding: 26px 28px; background: rgba(16,30,49,0.35); }
.compliance h4 { font-family: var(--display); margin: 0 0 12px; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.compliance h4 svg { width: 18px; height: 18px; color: var(--gold); }
.compliance p { color: var(--muted); font-size: 14px; margin: 0 0 10px; }
.compliance p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 34px; margin-top: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 42px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 280px; margin: 16px 0 0; }
.foot-col h5 { font-family: var(--display); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text); margin: 0 0 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 11px; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--dim); font-size: 13px; }
.foot-bottom .tagline { color: var(--muted); }

/* ---------- Auth pages ---------- */
.auth-wrap { min-height: calc(100vh - 74px); display: grid; place-items: center; padding: 50px 24px; }
.auth-card { width: 100%; max-width: 440px; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line-strong); border-radius: 20px; padding: 38px; box-shadow: var(--shadow); }
.auth-card h1 { font-family: var(--display); font-size: 27px; margin: 0 0 6px; letter-spacing: -.5px; }
.auth-card .muted { color: var(--dim); margin: 0 0 26px; font-size: 15px; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input { width: 100%; padding: 14px 15px; border-radius: 11px; border: 1px solid var(--line-strong); background: var(--bg-2); color: var(--text); font-size: 15px; outline: none; transition: border-color .15s, box-shadow .15s; font-family: var(--font); }
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,139,255,.15); }
.form-msg { font-size: 14px; margin: 2px 0 14px; min-height: 20px; }
.form-msg.err { color: #ff8080; } .form-msg.ok { color: var(--cyan); }
.auth-alt { text-align: center; margin-top: 22px; color: var(--dim); font-size: 14px; }
.auth-alt a { color: var(--cyan); font-weight: 600; }

/* ---------- Dashboard ---------- */
.dash { padding: 50px 0; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.dash-head h1 { font-family: var(--display); margin: 0; font-size: 28px; letter-spacing: -.5px; }
.badge-ok { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--cyan); background: rgba(33,212,253,0.08); border: 1px solid rgba(33,212,253,0.3); padding: 6px 13px; border-radius: 999px; }
.badge-ok .led { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4, .stats, .locks, .pillars { grid-template-columns: repeat(2,1fr); }
  .lib, .grid-3, .plans { grid-template-columns: 1fr; }
  .terminal-body { grid-template-columns: 1fr; }
  .term-left { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .stats, .locks, .pillars, .foot-grid { grid-template-columns: 1fr; }
  section.block { padding: 66px 0; }
  .hero { padding: 64px 0 40px; }
  .cta { padding: 52px 24px; }
  .stat .num { font-size: 32px; }
}

/* Mobile header: keep the top bar from overflowing narrow screens.
   Pages WITH a hamburger (homepage) hide the redundant inline buttons; pages
   WITHOUT one let the buttons shrink and wrap so they never overflow. */
@media (max-width: 720px) {
  .nav-cta:has(.nav-toggle) .btn { display: none; }
  .site-header .nav { flex-wrap: wrap; row-gap: 8px; }
  .site-header .nav-cta { flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
  .site-header .nav-cta .btn { padding: 8px 12px; font-size: 12px; }
}
/* Stack multi-column form fields on phones */
@media (max-width: 640px) {
  .frow > .fg[class*="col-"] { grid-column: 1 / -1; }
}
/* Wide data tables scroll instead of blowing out the layout */
@media (max-width: 760px) {
  table.t { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

/* Mobile nav panel */
.mobile-menu { display: none; position: fixed; inset: 74px 0 0; z-index: 99; background: rgba(7,17,31,0.97); backdrop-filter: blur(14px); padding: 26px; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 17px; padding: 14px 8px; border-bottom: 1px solid var(--line); font-family: var(--display); }
.mobile-menu .mm-cta { margin-top: 20px; display: grid; gap: 12px; }

/* ==========================================================================
   Intake wizard
   ========================================================================== */
.wizard { padding: 40px 0 80px; }
.wizard-head { max-width: 900px; margin: 0 auto 26px; }
.wizard-head h1 { font-family: var(--display); font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.6px; margin: 0 0 6px; }
.wizard-head p { color: var(--muted); margin: 0; font-size: 15px; }
.secure-tag { display:inline-flex; align-items:center; gap:8px; font-size:12px; color:var(--cyan); border:1px solid rgba(33,212,253,.25); background:rgba(33,212,253,.06); border-radius:999px; padding:6px 13px; margin-bottom:16px; }
.secure-tag svg { width:14px; height:14px; }

/* progress rail */
.progress { max-width: 900px; margin: 0 auto 26px; }
.progress-bar { height: 6px; background: var(--bg-2); border:1px solid var(--line); border-radius: 999px; overflow: hidden; }
.progress-bar span { display:block; height:100%; background: var(--grad); width:0; transition: width .35s ease; }
.progress-meta { display:flex; justify-content:space-between; margin-top:10px; color:var(--dim); font-size:12.5px; }
.progress-steps { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.progress-steps .ps { font-size:11.5px; color:var(--dim); border:1px solid var(--line); border-radius:999px; padding:5px 11px; }
.progress-steps .ps.active { color:var(--cyan); border-color:rgba(33,212,253,.4); background:rgba(33,212,253,.06); }
.progress-steps .ps.done { color:var(--muted); border-color:var(--line-strong); }

/* form card */
.form-card { max-width: 900px; margin: 0 auto; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border:1px solid var(--line-strong); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.form-card .fc-body { padding: 30px 30px 12px; }
.step-title { font-family: var(--display); font-size: 20px; margin: 0 0 22px; letter-spacing:-.3px; }

.frow { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px 16px; }
.fg { display: flex; flex-direction: column; }
.fg.col-2 { grid-column: span 2; } .fg.col-3 { grid-column: span 3; } .fg.col-4 { grid-column: span 4; }
.fg.col-5 { grid-column: span 5; } .fg.col-6 { grid-column: span 6; } .fg.col-8 { grid-column: span 8; }
.fg.col-12 { grid-column: span 12; }
.fg label { font-size: 12.5px; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.fg label .req { color: var(--gold); margin-left: 3px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 13px; border-radius: 10px; border: 1px solid var(--line-strong);
  background: var(--bg-2); color: var(--text); font-size: 14.5px; outline: none; font-family: var(--font);
  transition: border-color .15s, box-shadow .15s;
}
.fg textarea { min-height: 84px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,139,255,.14); }
.fg input.invalid, .fg select.invalid, .fg textarea.invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,.12); }
.fg.signature input { font-family: var(--display); font-size: 18px; letter-spacing:.3px; }
.fg.check { grid-column: span 12; flex-direction: row; align-items: flex-start; gap: 11px; }
.fg.check input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.fg.check label { margin: 0; font-size: 14px; color: var(--text); }

/* section heading / notes inside a step */
.fsub { grid-column: span 12; font-family: var(--display); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin: 12px 0 -2px; padding-top: 12px; border-top: 1px solid var(--line); }
.fsub:first-child { border-top: 0; padding-top: 0; }
.fnote { grid-column: span 12; color: var(--muted); font-size: 13px; background: rgba(255,255,255,0.02); border:1px solid var(--line); border-left:3px solid var(--blue); border-radius: 8px; padding: 11px 14px; }
.fnote.warn { border-left-color: var(--gold); color:#e6d3a8; background: rgba(201,165,92,.05); }
.flegal { grid-column: span 12; color: var(--muted); font-size: 12.5px; line-height: 1.6; background: var(--bg-2); border:1px solid var(--line); border-radius: 10px; padding: 14px 16px; max-height: 200px; overflow-y: auto; }

/* wizard nav */
.fc-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 30px 26px; border-top: 1px solid var(--line); margin-top: 14px; flex-wrap: wrap; }
.fc-foot .save-state { color: var(--dim); font-size: 12.5px; }
.fc-foot .spacer { flex: 1; }

.form-error { max-width: 900px; margin: 14px auto 0; color:#ff8080; font-size: 14px; }

/* review + success */
.review dl { display: grid; grid-template-columns: 240px 1fr; gap: 8px 18px; margin: 0; }
.review dt { color: var(--dim); font-size: 13px; }
.review dd { margin: 0; color: var(--text); font-size: 14px; }
.review h4 { font-family:var(--display); color:var(--cyan); font-size:13px; letter-spacing:1.4px; text-transform:uppercase; margin:22px 0 12px; }
.success { max-width: 720px; margin: 0 auto; text-align: center; padding: 40px 24px; }
.success .ok-ico { width: 74px; height: 74px; border-radius: 50%; background: rgba(33,212,253,.1); border:1px solid rgba(33,212,253,.35); display:grid; place-items:center; margin: 0 auto 22px; color: var(--cyan); }
.success .ok-ico svg { width: 38px; height: 38px; }
.success h1 { font-family: var(--display); font-size: 30px; margin: 0 0 12px; }
.success p { color: var(--muted); font-size: 16px; }
.success .ref { display:inline-block; margin-top:18px; font-family:var(--display); font-size:20px; letter-spacing:1px; color:var(--text); border:1px dashed var(--line-strong); border-radius:10px; padding:12px 22px; }

/* form-type chooser cards */
.choose { display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:900px; margin:0 auto; }
.choose .opt { display:flex; flex-direction:column; padding:30px; border:1px solid var(--line); border-radius:16px; background:linear-gradient(180deg, rgba(16,30,49,.6), rgba(11,23,40,.5)); transition:transform .2s, border-color .2s; }
.choose .opt:hover { transform:translateY(-4px); border-color:rgba(22,139,255,.4); }
.choose .opt h3 { font-family:var(--display); font-size:19px; margin:14px 0 8px; }
.choose .opt p { color:var(--muted); font-size:14px; flex:1; margin:0 0 20px; }
.choose .opt .ico { width:48px;height:48px;border-radius:12px;display:grid;place-items:center;background:rgba(22,139,255,.1);border:1px solid rgba(22,139,255,.18);color:var(--cyan); }

@media (max-width: 720px) {
  .frow { gap: 14px; }
  .fg[class*="col-"] { grid-column: span 12; }
  .review dl { grid-template-columns: 1fr; }
  .choose { grid-template-columns: 1fr; }
}
.choose-levels { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.scope-list { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 7px; }
.scope-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 13px; }
.scope-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

/* ==========================================================================
   Pricing packages + details modal
   ========================================================================== */
.pkg-grid { grid-template-columns: repeat(3, 1fr); }
.plan.pkg { cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.plan.pkg:hover { transform: translateY(-4px); border-color: rgba(22,139,255,.4); box-shadow: 0 18px 44px rgba(2,8,18,.5), 0 0 0 1px rgba(22,139,255,.15); }
.plan.pkg.featured:hover { border-color: rgba(201,165,92,.6); box-shadow: 0 18px 44px rgba(2,8,18,.5), 0 0 0 1px rgba(201,165,92,.35); }
.plan.pkg:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,139,255,.3); }
.plan .pkg-name { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.3px; margin: 8px 0 12px; line-height: 1.2; }
.plan .pkg-summary { color: var(--muted); font-size: 14.5px; margin: 14px 0 22px; flex: 1; }
.plan .pkg-view { margin-top: auto; }
.pkg-foot { text-align: center; color: var(--muted); font-size: 14.5px; margin: 34px 0 0; }
.pkg-foot a { color: var(--cyan); font-weight: 600; }
.pkg-note { color: var(--dim); font-size: 13px; font-style: italic; border-left: 3px solid var(--gold); background: rgba(201,165,92,.05); border-radius: 8px; padding: 10px 14px; margin: 16px 0 0; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(3,8,18,.72); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .18s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.open { opacity: 1; }
.modal {
  width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; position: relative;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-strong); border-radius: 20px; box-shadow: var(--shadow);
  padding: 38px 34px 30px; transform: translateY(12px) scale(.98); transition: transform .18s ease;
}
.modal-overlay.open .modal { transform: none; }
.modal .pname { color: var(--cyan); }
.modal .pkg-name { margin: 8px 0 10px; font-size: 24px; }
.modal .price { font-family: var(--display); font-size: 40px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 8px; }
.modal .price span { font-size: 15px; color: var(--dim); font-weight: 500; letter-spacing: 0; }
.modal-body { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 18px 0 26px; }
.modal-body p { margin: 0 0 14px; }
.modal-body strong { color: var(--text); }
.modal-body h4 { font-family: var(--display); color: var(--cyan); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin: 18px 0 12px; }
.modal-body .scope-list li { font-size: 14px; }
.pkg-best { margin: 20px 0 0; color: var(--text); font-size: 14.5px; }
.pkg-best b { display: block; font-family: var(--display); color: var(--gold); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; font-weight: 700; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-strong); color: var(--muted);
  font-size: 24px; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: color .15s, border-color .15s, background .15s;
}
.modal-close:hover { color: #fff; border-color: var(--blue); background: rgba(22,139,255,.08); }

/* Add-on checks */
.addons-wrap { margin-top: 58px; }
.addons-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.addons-head h3 { font-family: var(--display); font-size: 25px; font-weight: 700; letter-spacing: -.4px; margin: 0; }
.addons-head p { color: var(--muted); margin: 8px 0 0; font-size: 15px; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: rgba(16,30,49,.4); transition: border-color .2s, transform .2s; }
.addon:hover { border-color: rgba(22,139,255,.4); transform: translateY(-3px); }
.ao-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.ao-name { font-family: var(--display); font-weight: 700; font-size: 15px; }
.ao-price { font-family: var(--display); font-weight: 800; color: var(--cyan); font-size: 18px; letter-spacing: -.3px; white-space: nowrap; }
.addon p { margin: 0; color: var(--muted); font-size: 13px; }
.ao-incl { display: inline-block; margin-top: 10px; color: var(--gold); font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; border: 1px solid rgba(201,165,92,.35); background: rgba(201,165,92,.06); border-radius: 999px; padding: 3px 10px; }

@media (max-width: 1040px) { .pkg-grid { grid-template-columns: 1fr 1fr; } .addons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } .addons-grid { grid-template-columns: 1fr; } .modal { padding: 32px 22px 26px; } }

/* ==========================================================================
   Applicant wizard — per-check help panel
   ========================================================================== */
.wiz-help { max-width: 900px; margin: 0 auto 22px; }
.wiz-help-d { background: linear-gradient(180deg, rgba(16,30,49,.72), rgba(11,23,40,.58)); border: 1px solid rgba(33,212,253,.30); border-radius: 14px; overflow: hidden; }
.wiz-help-d > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 15px 18px; }
.wiz-help-d > summary::-webkit-details-marker { display: none; }
.wiz-help-d > summary:hover { background: rgba(33,212,253,.04); }
.wh-q { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(33,212,253,.12); border: 1px solid rgba(33,212,253,.4); color: var(--cyan); font-family: var(--display); font-weight: 800; font-size: 17px; }
.wh-sumtext { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wh-sumtext strong { font-family: var(--display); font-size: 15px; }
.wh-sumtext small { color: var(--muted); font-size: 12.5px; }
.wh-caret { color: var(--cyan); transition: transform .2s ease; flex: 0 0 auto; }
.wiz-help-d[open] .wh-caret { transform: rotate(180deg); }
.wh-body { padding: 2px 18px 18px; border-top: 1px solid var(--line); }
.wh-body p { color: var(--muted); font-size: 14px; margin: 14px 0; }
.wh-scope { background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; font-size: 13px !important; }
.wh-scope strong { color: var(--text); }
.wh-body h5 { font-family: var(--display); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan); margin: 16px 0 8px; }
.wh-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.wh-list li { position: relative; padding-left: 22px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.wh-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.wh-list strong { color: var(--text); }
.wh-req { color: var(--gold); font-weight: 700; }
.wh-contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: space-between; margin-top: 18px; padding: 14px 16px; background: rgba(201,165,92,.06); border: 1px solid rgba(201,165,92,.28); border-radius: 12px; }
.wh-contact span { color: var(--text); font-size: 13.5px; }
@media (max-width: 640px) { .wh-contact { flex-direction: column; align-items: stretch; } .wh-contact .btn { width: 100%; } }

/* ==========================================================================
   Date picker (calendar) — enhances MM/DD/YYYY and MM/YYYY text inputs
   ========================================================================== */
.dp-wrap { position: relative; display: block; }
.dp-wrap > input { width: 100%; padding-right: 42px !important; }
.dp-btn { position: absolute; top: 50%; right: 6px; transform: translateY(-50%); width: 32px; height: 32px; border: 0; background: transparent; color: var(--muted); cursor: pointer; display: grid; place-items: center; border-radius: 8px; transition: color .15s, background .15s; }
.dp-btn:hover { color: var(--cyan); background: rgba(33,212,253,.08); }
.dp-btn:focus-visible { outline: none; color: var(--cyan); box-shadow: 0 0 0 2px rgba(33,212,253,.4); }

.dp-pop { position: fixed; z-index: 3000; display: none; width: 280px; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line-strong); border-radius: 12px; box-shadow: var(--shadow); padding: 12px; }
.dp-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.dp-nav { flex: 0 0 auto; width: 32px; height: 32px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.02); color: var(--text); border-radius: 8px; cursor: pointer; font-size: 18px; line-height: 1; }
.dp-nav:hover { border-color: var(--blue); color: #fff; }
.dp-title { flex: 1; background: transparent; border: 0; color: var(--text); font-family: var(--display); font-weight: 700; font-size: 14px; cursor: pointer; border-radius: 8px; padding: 6px; }
.dp-title:hover:not([disabled]) { background: rgba(22,139,255,.10); color: var(--cyan); }
.dp-title[disabled] { cursor: default; }
.dp-selwrap { flex: 1; display: flex; gap: 6px; min-width: 0; }
.dp-sel { flex: 1; min-width: 0; background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text); font-family: var(--font); font-size: 13px; border-radius: 8px; padding: 6px 5px; cursor: pointer; }
.dp-sel:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 2px rgba(22,139,255,.18); }
.dp-sel option { background: var(--panel); color: var(--text); }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { color: var(--dim); font-size: 11px; text-align: center; padding: 4px 0; font-weight: 600; }
.dp-day { border: 0; background: transparent; color: var(--text); font-size: 13px; padding: 8px 0; border-radius: 8px; cursor: pointer; text-align: center; }
.dp-day.oth { visibility: hidden; cursor: default; }
.dp-day:hover:not(.oth) { background: rgba(22,139,255,.16); }
.dp-day.today { border: 1px solid var(--line-strong); }
.dp-day.sel { background: var(--grad); color: #04121f; font-weight: 700; }
.dp-months { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.dp-mo { border: 1px solid var(--line); background: transparent; color: var(--text); font-size: 13px; padding: 11px 0; border-radius: 8px; cursor: pointer; }
.dp-mo:hover { border-color: var(--blue); color: #fff; }
.dp-mo.sel { background: var(--grad); color: #04121f; font-weight: 700; border-color: transparent; }

/* ===== Intro splash (homepage) ===== */
#introOverlay { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; background: #04070d; cursor: pointer; opacity: 1; transition: opacity .6s ease; }
html.intro-on #introOverlay { display: flex; }
html.intro-on body { overflow: hidden; }
#introOverlay.gone { opacity: 0; pointer-events: none; }
#introVideo { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; background: #04070d; }
#introSkip { position: absolute; top: 22px; right: 22px; z-index: 2; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.28); color: #fff; font-family: var(--display); font-weight: 600; font-size: 14px; padding: 9px 17px; border-radius: 999px; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .15s, border-color .15s; }
#introSkip:hover { background: rgba(0,0,0,.7); border-color: var(--blue); }
.intro-hint { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.6); font-size: 13px; letter-spacing: .5px; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { #introOverlay { transition: none; } }

/* ===== Request-a-screening form ===== */
.req-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.req-type { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 16px 18px 15px; border: 1px solid var(--line-strong); border-radius: 13px; background: var(--bg-2); cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; }
.req-type:hover { border-color: var(--blue); }
.req-type input { position: absolute; opacity: 0; width: 0; height: 0; }
.req-type .rt-title { font-family: var(--display); font-weight: 700; font-size: 15.5px; color: var(--text); }
.req-type .rt-sub { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.req-type.sel { border-color: var(--blue); background: linear-gradient(180deg, rgba(22,139,255,.12), rgba(22,139,255,.03)); box-shadow: 0 0 0 3px rgba(22,139,255,.14); }
.req-type.sel .rt-title { color: #fff; }
.fg-hint { font-size: 12px; color: var(--dim); margin-top: 7px; line-height: 1.5; }

/* ID-upload help + camera capture */
.id-help { margin: 4px 0 14px; padding: 13px 16px; border: 1px solid rgba(74,222,128,.45); border-left: 4px solid #4ade80; border-radius: 11px; background: rgba(74,222,128,.09); color: #c9f5d6; font-size: 13.5px; line-height: 1.6; }
.id-help strong { display: block; margin-bottom: 7px; font-size: 14.5px; color: #86efac; }
.id-help ul { margin: 6px 0; padding-left: 20px; }
.id-help li { margin-bottom: 5px; }
.id-help b { color: #eafff0; font-weight: 600; }
.id-help-tip { display: block; margin-top: 8px; color: #8fd6a8; font-size: 12.5px; }
.id-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.id-actions #idFile { flex: 1; min-width: 200px; }
.id-actions .btn { flex: 0 0 auto; }
.id-cam { margin-top: 14px; }
.id-cam video { width: 100%; max-width: 440px; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 12px; border: 1px solid var(--line-strong); background: #000; display: block; }
.id-cam-btns { display: flex; gap: 10px; margin-top: 10px; }
.id-preview { margin-top: 14px; display: flex; gap: 14px; align-items: center; }
.id-preview img { width: 128px; height: 84px; object-fit: cover; border-radius: 9px; border: 1px solid var(--line-strong); background: #0b1728; }
.id-pv-meta { font-size: 13px; color: var(--muted); }
.id-remove { display: block; margin-top: 8px; background: none; border: 1px solid rgba(255,107,107,.4); color: #ff8080; border-radius: 8px; padding: 6px 11px; cursor: pointer; font-size: 12.5px; font-family: var(--font); }
.id-remove:hover { background: rgba(255,107,107,.08); }
.fg input[type="file"] { padding: 11px 13px; cursor: pointer; }
.fg input[type="file"]::file-selector-button { background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: var(--text); border-radius: 8px; padding: 7px 12px; margin-right: 12px; cursor: pointer; font-family: var(--font); }
@media (max-width: 600px) { .req-types { grid-template-columns: 1fr; } }
.pay-addons { display: grid; gap: 8px; }
.pay-addon { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--bg-2); font-size: 14px; color: var(--text); cursor: pointer; }
.pay-addon input { width: 18px; height: 18px; accent-color: var(--blue); flex: 0 0 auto; }
.pay-total { margin-top: 4px; font-family: var(--display); font-size: 18px; color: var(--text); padding: 12px 15px; border: 1px solid rgba(33,212,253,.35); border-radius: 11px; background: rgba(33,212,253,.06); }
.pay-total strong { color: var(--cyan); }

/* ===== Service detail pages ===== */
.svc-hero { padding: 84px 0 26px; }
.svc-hero .eyebrow { margin-bottom: 8px; }
.svc-hero h1 { font-family: var(--display); font-size: clamp(32px, 5.2vw, 56px); letter-spacing: -1.5px; line-height: 1.02; margin: 14px 0 18px; font-weight: 800; max-width: 900px; }
.svc-hero p.lead { font-size: 19px; color: var(--muted); max-width: 680px; margin: 0 0 26px; }
.svc-body { max-width: 820px; margin: 0 auto; }
.svc-body h2 { font-family: var(--display); font-size: 26px; letter-spacing: -.5px; margin: 40px 0 14px; }
.svc-body h3 { font-family: var(--display); font-size: 18px; margin: 26px 0 10px; color: var(--text); }
.svc-body p { color: var(--muted); font-size: 16.5px; line-height: 1.75; margin: 0 0 16px; }
.svc-body ul { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 18px; padding-left: 4px; list-style: none; }
.svc-body ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.svc-body ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--grad); }
.svc-cta { margin: 44px auto 0; max-width: 820px; background: linear-gradient(150deg, #12233b, #0b1728); border: 1px solid var(--line-strong); border-radius: 18px; padding: 30px 32px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.svc-cta h3 { font-family: var(--display); font-size: 21px; margin: 0 0 6px; }
.svc-cta p { color: var(--muted); margin: 0; font-size: 14.5px; }
.svc-related { max-width: 820px; margin: 40px auto 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.svc-related span { color: var(--dim); font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; margin-right: 4px; }
.svc-related a { font-size: 13.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; transition: border-color .15s, color .15s; }
.svc-related a:hover { border-color: var(--blue); color: #fff; }
/* clickable "what we screen" cards */
a.card { text-decoration: none; color: inherit; display: block; }
a.card .card-more { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; color: var(--cyan); font-size: 13px; font-weight: 600; }
a.card:hover { border-color: var(--blue); transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; } .reveal { opacity: 1; transform: none; } }
