:root {
  --bg: #050816;
  --bg-2: #0a1022;
  --panel: rgba(13, 20, 42, 0.78);
  --panel-solid: #0d142a;
  --text: #f7f9ff;
  --muted: #aab6d3;
  --line: rgba(155, 174, 218, 0.18);
  --blue: #27d4ff;
  --royal: #3b6dff;
  --purple: #9b5cff;
  --purple-dark: #5e2cff;
  --white-soft: #dce7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(39, 212, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(155, 92, 255, 0.20), transparent 36rem),
    linear-gradient(180deg, #050816 0%, #060914 42%, #03040b 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--blue);
  color: #03101c;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 22, 0.76);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.scrolled { box-shadow: 0 14px 50px rgba(0,0,0,0.32); background: rgba(5,8,22,0.92); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 54px; height: 54px; object-fit: contain; border-radius: 14px; filter: drop-shadow(0 0 18px rgba(87, 113, 255, 0.36)); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { color: #fff; font-size: 16px; font-weight: 900; letter-spacing: 0.24em; text-shadow: 0 0 22px rgba(39,212,255,0.18); }
.brand-text small { margin-top: 6px; color: var(--white-soft); font-size: 10px; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 22px; color: var(--white-soft); font-size: 14px; font-weight: 700; }
.site-nav a { opacity: 0.88; transition: opacity 180ms ease, color 180ms ease; }
.site-nav a:hover { opacity: 1; color: var(--blue); }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(39, 212, 255, 0.45); border-radius: 999px; background: rgba(39, 212, 255, 0.08); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; border-radius: 4px; }

.section { padding: 104px 0; position: relative; }
.hero { min-height: calc(100vh - 84px); display: grid; align-items: center; padding-top: 92px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 7vw, 78px); line-height: 0.96; letter-spacing: -0.06em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.02; letter-spacing: -0.045em; margin-bottom: 20px; }
h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.hero-lead, .section-heading p, .about-panel p, .resource-card p, .contact-copy p { color: var(--muted); font-size: 18px; }
.hero-lead { max-width: 670px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; letter-spacing: -0.01em; transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue), var(--royal) 45%, var(--purple)); color: #fff; box-shadow: 0 18px 50px rgba(59, 109, 255, 0.28); }
.btn-secondary { border-color: rgba(220, 231, 255, 0.18); background: rgba(220, 231, 255, 0.07); color: var(--text); }
.micro-note { color: #91a0c2; max-width: 690px; font-size: 14px; }

.orb { position: absolute; border-radius: 999px; filter: blur(10px); pointer-events: none; opacity: 0.5; }
.orb-one { width: 290px; height: 290px; background: rgba(39, 212, 255, 0.14); top: 18%; left: -110px; }
.orb-two { width: 360px; height: 360px; background: rgba(155, 92, 255, 0.16); right: -120px; bottom: 7%; }

.command-card, .card, .compliance-box, .about-panel, .values-grid, .resource-card, .contact-form {
  background: linear-gradient(180deg, rgba(15, 24, 51, 0.84), rgba(7, 12, 28, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.command-card { padding: 34px; position: relative; overflow: hidden; }
.command-logo { width: min(100%, 340px); margin: -8px auto 24px; filter: drop-shadow(0 0 28px rgba(155,92,255,0.26)); }
.command-card::before { content: ""; position: absolute; inset: -2px; background: radial-gradient(circle at 20% 10%, rgba(39, 212, 255, 0.22), transparent 30%), radial-gradient(circle at 90% 0%, rgba(155, 92, 255, 0.24), transparent 34%); pointer-events: none; }
.command-card > * { position: relative; }
.status-row { display: flex; align-items: center; gap: 10px; color: var(--white-soft); font-size: 14px; font-weight: 800; margin-bottom: 24px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgba(39, 212, 255, 0.8); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(39, 212, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(39, 212, 255, 0); } }
.command-card h2 { font-size: 32px; margin-bottom: 22px; }
.command-card ul { list-style: none; padding: 0; margin: 0 0 28px; color: var(--muted); }
.command-card li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.command-card strong { color: var(--text); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric-grid div { padding: 16px 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.035); }
.metric-grid span { display: block; color: var(--blue); font-size: 25px; font-weight: 900; line-height: 1; }
.metric-grid small { display: block; color: var(--muted); margin-top: 8px; line-height: 1.3; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.028); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.trust-grid span { padding: 21px 10px; text-align: center; color: var(--white-soft); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { padding: 30px; min-height: 280px; transition: transform 180ms ease, border 180ms ease, background 180ms ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(39,212,255,0.36); background: linear-gradient(180deg, rgba(19, 32, 68, 0.9), rgba(7,12,28,0.86)); }
.card-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg, rgba(39,212,255,0.22), rgba(155,92,255,0.20)); border: 1px solid rgba(39,212,255,0.28); color: var(--text); font-weight: 900; margin-bottom: 24px; }
.card p { color: var(--muted); }

.process { background: linear-gradient(180deg, transparent, rgba(155, 92, 255, 0.055), transparent); }
.process-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 58px; align-items: start; }
.sticky-heading { position: sticky; top: 118px; margin-bottom: 0; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,0.035); }
.timeline-item span { width: 54px; height: 54px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--purple)); font-weight: 900; }
.timeline-item p { color: var(--muted); margin: 0; }

.compliance-box { padding: 44px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; border-color: rgba(39, 212, 255, 0.22); }
.compliance-list { display: grid; gap: 14px; }
.compliance-list div { padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.035); border-radius: 18px; }
.compliance-list strong { display: block; margin-bottom: 4px; }
.compliance-list span { color: var(--muted); }

.about-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 26px; }
.about-panel { padding: 42px; }
.values-grid { padding: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.values-grid div { padding: 22px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.values-grid p { color: var(--muted); margin: 0; }

.resources { padding-top: 30px; }
.resource-card { padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.resource-card div { max-width: 720px; }

.contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 38px; align-items: start; }
.contact-details { display: grid; gap: 12px; margin-top: 26px; color: var(--white-soft); font-weight: 700; }
.contact-details a:hover { color: var(--blue); }
.contact-form { padding: 30px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--white-soft); font-size: 14px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; background: rgba(2, 5, 14, 0.6); color: var(--text); padding: 14px 15px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(39, 212, 255, 0.64); box-shadow: 0 0 0 4px rgba(39, 212, 255, 0.1); }
.form-note { color: var(--muted); font-size: 13px; margin: 0; }

.site-footer { padding: 54px 0 28px; border-top: 1px solid var(--line); background: #03040b; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.75fr 1fr; gap: 32px; }
.footer-logo { width: 270px; border-radius: 14px; margin-bottom: 16px; filter: drop-shadow(0 0 24px rgba(39,212,255,0.15)); }
.site-footer p, .site-footer span { color: var(--muted); }
.site-footer a, .site-footer span { display: block; margin: 7px 0; }
.site-footer a:hover { color: var(--blue); }
.site-footer h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text); }
.legal-line { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 84px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(5, 8, 22, 0.96); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .hero-grid, .process-grid, .compliance-box, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .sticky-heading { position: static; }
  .cards.three { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 76px 0; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-text strong { font-size: 14px; letter-spacing: 0.18em; }
  .brand-text small { font-size: 9px; letter-spacing: 0.16em; }
  .hero { padding-top: 62px; min-height: auto; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .command-card, .compliance-box, .about-panel, .resource-card, .contact-form { padding: 24px; border-radius: 22px; }
  .metric-grid, .values-grid, .trust-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .legal-line { display: block; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.footer-links a { margin: 0; font-weight: 800; color: var(--white-soft); }
.legal-hero { padding: 92px 0 48px; }
.legal-page { padding: 44px 0 92px; }
.legal-content { max-width: 900px; padding: 42px; background: linear-gradient(180deg, rgba(15, 24, 51, 0.84), rgba(7, 12, 28, 0.82)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-content h2 { font-size: 30px; margin-top: 34px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--blue); font-weight: 800; }
.legal-content ul { padding-left: 22px; }
.back-home { display: inline-flex; margin-top: 24px; color: var(--blue); font-weight: 900; }
@media (max-width: 620px) { .legal-content { padding: 24px; } }
