/* ================================================================
   REVOLUTIO — Design System
   Equinoxe Solutions Limited · https://revolutio.systems
   ================================================================ */

/* ── 1. TOKENS ────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #ffffff;
  --bg-alt:       #f6f9fc;
  --bg-dark:      #070e1a;
  --bg-navy:      #0a1628;
  --bg-card:      #ffffff;

  /* Text */
  --text:         #0F172A;
  --text2:        #475569;
  --text3:        #8fa3bc;
  --text-inv:     #ffffff;

  /* Brand */
  --blue:         #54bef0;
  --blue-deep:    #1a8fc0;
  --teal:         #0c817b;
  --teal-dim:     rgba(12,129,123,.14);
  --red:          #e84a6f;

  /* UI */
  --border:       #e4eaf2;
  --border-blue:  rgba(84,190,240,.25);
  --blue-glow:    rgba(84,190,240,.08);
  --shadow-sm:    0 2px 8px  rgba(13,24,41,.06);
  --shadow-md:    0 4px 24px rgba(13,24,41,.09);
  --shadow-lg:    0 16px 56px rgba(13,24,41,.14);

  /* Layout */
  --nav-h:        68px;
  --wrap:         1180px;
  --radius:       12px;
  --radius-sm:    8px;
  --section-pad:  96px;
}

/* ── 2. RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────── */
h1 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -.025em; line-height: 1.15; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
p  { font-size: 15.5px; line-height: 1.7; }

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────────── */
.wrap    { max-width: var(--wrap); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--section-pad) 48px; }
.section-alt { background: #ffffff; }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}

/* Section header block */
.section-head { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-title { margin-bottom: 14px; }
.section-title em  { color: var(--blue); font-style: normal; }
.section-title.inv { color: var(--text-inv); }
.section-sub {
  font-size: 17px; color: var(--text2); max-width: 580px; line-height: 1.65;
}
.section-sub.inv { color: rgba(255,255,255,.6); }

/* Grid helpers */
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* Fade animation */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── 5. NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.4); }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg  { height: 15px; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.6);
  letter-spacing: .01em; transition: color .2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 1px;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-signin {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.55); transition: color .2s;
}
.nav-signin:hover { color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mob-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 499; background: var(--bg-dark);
  padding: 32px 40px; flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 18px; font-weight: 500; color: rgba(255,255,255,.7);
}
.mob-menu a:hover { color: #fff; }
.mob-menu .mob-cta { margin-top: 24px; border-bottom: none; }

/* ── 6. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  transition: all .2s; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #080f1c;
  padding: 11px 24px; box-shadow: 0 2px 12px rgba(84,190,240,.3);
}
.btn-primary:hover { background: #7acfec; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(84,190,240,.4); }
.btn-primary.lg { padding: 14px 34px; font-size: 15px; border-radius: var(--radius); }
.btn-outline {
  background: transparent; border: 1px solid var(--blue);
  color: var(--blue); padding: 10px 24px;
}
.btn-outline:hover { background: rgba(84,190,240,.08); }
.btn-outline.lg { padding: 13px 34px; font-size: 15px; border-radius: var(--radius); }
.btn-outline.dark-btn { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.75); }
.btn-outline.dark-btn:hover { background: rgba(255,255,255,.06); color: #fff; }

/* ── 7. HERO — LANDING ────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
  background: var(--bg-dark);
  display: grid; grid-template-columns: 55fr 45fr; align-items: stretch;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 80px 48px;
  display: flex; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(84,190,240,.1); border: 1px solid rgba(84,190,240,.25);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-left h1 { color: #ffffff; margin-bottom: 22px; }
.hero-left h1 em { color: var(--blue); font-style: normal; }
.hero-left .hero-sub {
  font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.65;
  max-width: 480px; margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero .btn-outline.dark-btn { border-color: var(--border); color: var(--text2); }
.hero .btn-outline.dark-btn:hover { background: var(--bg-alt); color: var(--text); }
.hero-stats {
  padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-live-indicator {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: pulse 2s infinite;
}
.hero-live-title {
  font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -.02em;
}
.hero-live-desc {
  font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7;
  max-width: 440px; margin: 0; margin-top: 2px;
}

/* Hero API card */
.hero-visual { position: relative; z-index: 1; }
.api-window {
  background: #0e1d33; border: 1px solid rgba(84,190,240,.2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.api-window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; background: #0a1628;
  border-bottom: 1px solid rgba(84,190,240,.12);
}
.win-dot { width: 10px; height: 10px; border-radius: 50%; }
.win-dot.r { background: #ff5f56; }
.win-dot.y { background: #ffbd2e; }
.win-dot.g { background: #27c93f; }
.win-title { font-size: 11.5px; color: rgba(255,255,255,.35); margin-left: 8px; letter-spacing: .04em; }
.api-window-body { padding: 20px 22px; }
.api-request {
  display: flex; align-items: center; gap: 10px;
  background: rgba(84,190,240,.06); border-radius: 6px;
  padding: 8px 14px; margin-bottom: 18px;
}
.api-method {
  font-size: 11px; font-weight: 700; background: var(--blue); color: #0a1628;
  border-radius: 4px; padding: 2px 7px; letter-spacing: .04em;
}
.api-endpoint { font-family: 'Courier New', monospace; font-size: 12px; color: rgba(255,255,255,.6); }
.api-json { font-family: 'Courier New', monospace; font-size: 12.5px; line-height: 1.8; white-space: pre-wrap; }
.jk { color: #54bef0; }
.jv { color: #4ec9b0; }
.jn { color: #b5cea8; }
.js { color: #ce9178; }
.api-window-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(84,190,240,.08);
  font-size: 12px;
}
.api-status { color: #4ec9b0; font-weight: 600; }
.api-time   { color: rgba(255,255,255,.35); }

/* Floating badges beside the card */
.hero-float-badges { position: absolute; right: -20px; bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.float-badge {
  background: rgba(10,22,40,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(84,190,240,.25); border-radius: 8px;
  padding: 8px 14px; font-size: 12.5px; font-weight: 600; color: #fff;
  white-space: nowrap;
}

/* ── 8. PAGE HERO (interior pages) ───────────────────────────── */
.page-hero {
  background: #ffffff;
  padding: calc(var(--nav-h) + 72px) 48px 72px;
  position: relative; overflow: hidden;
}
.page-hero::before { display: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; }
.page-hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.page-hero h1 { color: #0F172A; margin-bottom: 18px; }
.page-hero h1 em { color: var(--blue); font-style: normal; }
.page-hero p { font-size: 18px; color: #475569; max-width: 560px; line-height: 1.65; }
.page-hero-inner--split { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.page-hero-icon { width: 76px; height: auto; flex-shrink: 0; opacity: .82; }
@media (max-width: 900px) { .page-hero-icon { display: none; } }

/* ── 9. STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: #f0f6ff;
  padding: 48px 48px;
  border-bottom: 1px solid rgba(84,190,240,.12);
}
.stats-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-item {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(84,190,240,.18);
  border-radius: 16px;
  padding: 32px 20px 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.stat-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(84,190,240,.04) 0%, transparent 60%);
  pointer-events: none;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(84,190,240,.15);
  border-color: rgba(84,190,240,.45);
}
.stat-icon { font-size: 22px; margin-bottom: 14px; line-height: 1; }
.stat-num  { font-size: 52px; font-weight: 800; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #64748b; margin-top: 10px; }
.stat-sep { display: none; }

/* ── 10. CARD ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--border-blue); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-dark {
  background: #0a1628; border-color: rgba(84,190,240,.12); color: #fff;
}
.card-dark:hover { border-color: rgba(84,190,240,.3); }

/* ── 11. VALUE PILLARS ────────────────────────────────────────── */
.pillar { padding: 36px; }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-glow); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.pillar h4 { margin-bottom: 10px; }
.pillar p  { font-size: 14.5px; color: var(--text2); line-height: 1.65; }

/* ── 12. FEATURE ROW (split layout) ──────────────────────────── */
.feat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: var(--section-pad) 48px;
  max-width: calc(var(--wrap) + 96px); margin: 0 auto;
}
.feat-row.reverse .feat-visual { order: -1; }
.feat-content .section-tag { margin-bottom: 10px; }
.feat-content h2 { margin-bottom: 16px; }
.feat-content h2 em { color: var(--blue); font-style: normal; }
.feat-content p { color: var(--text2); margin-bottom: 32px; max-width: 480px; }
.feat-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text2); line-height: 1.5;
}
.feat-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--teal); margin-top: 1px;
}

/* Code / Visual panels */
.code-panel {
  background: #070e1a; border: 1px solid rgba(84,190,240,.15);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.code-panel-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(84,190,240,.1);
}
.code-panel-bar .win-dot { width: 9px; height: 9px; }
.code-panel-body { padding: 22px 24px; }
.code-label-block {
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 16px;
}
.code-json { font-family: 'Courier New', monospace; font-size: 12.5px; line-height: 1.8; white-space: pre-wrap; }
.code-arrow { text-align: center; padding: 10px 0; font-size: 18px; color: var(--blue); opacity: .7; }

/* ── 13. USE CASE CARDS ───────────────────────────────────────── */
.uc-card { padding: 36px; }
.uc-num {
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.uc-card h3 { font-size: 19px; margin-bottom: 28px; }
.uc-section-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text3); margin-bottom: 6px;
}
.uc-section-text { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 18px; }
.uc-outcome {
  background: var(--blue-glow); border-left: 3px solid var(--blue);
  padding: 12px 16px; border-radius: 0 6px 6px 0;
}
.uc-outcome .uc-section-label { color: var(--blue); }
.uc-outcome .uc-section-text  { color: var(--text); margin-bottom: 0; font-weight: 500; }

/* ── 14. PRODUCT SECTIONS ─────────────────────────────────────── */
.product-section {
  padding: var(--section-pad) 48px;
  border-bottom: 1px solid var(--border);
}
.product-section:last-child { border-bottom: none; }
.product-section.alt-bg { background: #ffffff; }
.product-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start;
}
.product-inner.rev { grid-template-columns: 1fr 380px; }
.product-inner.rev .product-aside { order: 2; }
.product-num {
  font-size: 72px; font-weight: 800; color: var(--border);
  line-height: 1; letter-spacing: -.04em; margin-bottom: -12px;
}
.product-badge {
  display: inline-block; background: var(--blue-glow); border: 1px solid var(--border-blue);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11px; font-weight: 600; color: var(--blue);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
}
.product-title { margin-bottom: 14px; }
.product-title em { color: var(--blue); font-style: normal; }
.product-desc { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }
.product-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.product-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--text2); line-height: 1.5;
}
.product-aside-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; position: sticky; top: calc(var(--nav-h) + 24px);
}
.product-aside-card h4 { font-size: 13px; margin-bottom: 16px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.product-spec-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.product-spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text2); }
.spec-val   { color: var(--blue); font-weight: 600; }

/* ── 15. TRUST / SOCIAL PROOF ─────────────────────────────────── */
.trust-section { padding: var(--section-pad) 48px; }
.trust-inner   { max-width: var(--wrap); margin: 0 auto; }
.trust-logos   { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; margin-top: 40px; }
.trust-logo {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 24px;
  font-size: 13px; font-weight: 700; color: var(--text3);
  letter-spacing: .04em;
}
.sfa-trust {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
}
.sfa-trust-name { font-size: 32px; font-weight: 900; letter-spacing: -.02em; }
.sfa-trust-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); }
.sfa-trust-full { font-size: 12px; color: var(--text2); line-height: 1.4; }

/* ── 16. COVERAGE ─────────────────────────────────────────────── */
.coverage-section { padding: var(--section-pad) 48px; background: #ffffff; }
.cov-inner        { max-width: var(--wrap); margin: 0 auto; }
.cov-counts { display: flex; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.cov-count-card {
  flex: 1; min-width: 160px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
}
.cov-icon  { font-size: 26px; }
.cov-num   { font-size: 34px; font-weight: 800; color: var(--blue); line-height: 1; }
.cov-lbl   { font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--text3); margin-top: 3px; }
.cov-regions { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cov-region { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.cov-region-title {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.cov-list { font-size: 13px; color: var(--text2); line-height: 2.1; }

/* ── 17. REGULATORY ───────────────────────────────────────────── */
.reg-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.reg-card   { padding: 36px; }
.reg-head   {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 700; margin-bottom: 28px;
}
.reg-tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-dim); border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--teal); flex-shrink: 0;
}
.reg-list   { display: flex; flex-direction: column; gap: 18px; }
.reg-item h4 { font-size: 13px; font-weight: 700; color: var(--blue-deep); margin-bottom: 3px; }
.reg-item p  { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ── 18. CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: var(--section-pad) 48px; text-align: center;
  background: #ffffff; color: var(--text);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; }
.cta-section h2 { color: var(--text); margin-bottom: 16px; }
.cta-section h2 em { color: var(--blue); font-style: normal; }
.cta-section p { font-size: 17px; color: var(--text2); max-width: 500px; margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline.dark-btn { border-color: var(--border); color: var(--text2); }
.cta-section .btn-outline.dark-btn:hover { background: var(--bg-alt); color: var(--text); }

/* ── 19. FOOTER ───────────────────────────────────────────────── */
footer {
  background: #04080f;
  padding: 64px 48px 32px;
  color: rgba(255,255,255,.5);
}
.foot-inner { max-width: var(--wrap); margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 36px;
}
.foot-brand p { font-size: 13px; margin-top: 10px; line-height: 1.6; }
.foot-nav { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.25); margin-bottom: 18px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 13.5px; color: rgba(255,255,255,.45); transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom p, .foot-bottom a { font-size: 12px; color: rgba(255,255,255,.25); }
.foot-bottom a:hover { color: rgba(255,255,255,.5); }
.foot-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── 20. CONTACT FORM ─────────────────────────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: start;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text2); }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14.5px; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(84,190,240,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa3bc' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; }
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.form-consent span { font-size: 12.5px; color: var(--text2); line-height: 1.5; }
.contact-info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-info-card h3 { margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; color: var(--text); }
.contact-item a { color: var(--blue); }

/* ── 21. MEDIA PAGE ───────────────────────────────────────────── */
.media-placeholder {
  background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: var(--radius); padding: 48px; text-align: center;
  color: var(--text3);
}
.media-placeholder p { font-size: 14px; margin-top: 8px; }

/* ── 22. COOKIE BANNER ────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 800px;
  background: #0a1628; border: 1px solid rgba(84,190,240,.2);
  border-radius: 12px; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
#cookie-banner p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
#cookie-banner p a { color: var(--blue); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--blue); color: #080f1c; padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .2s; }
.cookie-accept:hover { background: #7acfec; }
.cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); padding: 8px 18px; border-radius: 6px; font-size: 13px; cursor: pointer; white-space: nowrap; }
.cookie-decline:hover { color: rgba(255,255,255,.8); }

/* ── 23. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .wrap, .section, .stats-bar, .page-hero, .feat-row,
  .product-section, .trust-section, .coverage-section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-signin { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: clamp(30px, 7vw, 48px); }
  h2 { font-size: clamp(24px, 5vw, 36px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .feat-row.reverse .feat-visual { order: 0; }
  .product-inner, .product-inner.rev { grid-template-columns: 1fr; }
  .product-inner.rev .product-aside { order: 0; }
  .reg-grid, .cov-regions { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .foot-nav { gap: 32px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-sep { display: none; }
  .hero-inner { padding: 60px 24px; }
  .cov-counts { flex-direction: column; }
  #cookie-banner { flex-direction: column; align-items: flex-start; width: calc(100% - 32px); }
}

/* ── 24. INTRO ANIMATION ──────────────────────────────────────── */
#intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 36px;
  transition: opacity .6s ease;
}
#intro-overlay.fade-out { opacity: 0; pointer-events: none; }
.intro-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
}
.intro-orbit-ring {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(84,190,240,.3);
}
.intro-orbit-light {
  position: absolute;
  width: 72px; height: 72px;
  animation: orbit-spin 2s cubic-bezier(.4, 0, .2, 1) infinite;
}
.intro-orbit-light::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px 5px rgba(84,190,240,.55);
}
.intro-planet-core {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2d4a 0%, #070e1a 100%);
  border: 1.5px solid rgba(255,255,255,.3);
  position: relative; z-index: 1;
}
.intro-wordmark { width: 200px; height: auto; display: block; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── 25. NAV DROPDOWN ─────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-arrow { font-size: 9px; transition: transform .25s ease; }
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 2px 8px rgba(0,0,0,.2);
  z-index: 600;
  white-space: nowrap;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: var(--bg-dark);
  border-left: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
.nav-dropdown-menu li a {
  display: flex; align-items: center; padding: 10px 20px;
  font-size: 13px; color: rgba(255,255,255,.6);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
  border-radius: 0;
}
.nav-dropdown-menu li a:hover {
  background: rgba(84,190,240,.08);
  color: #fff;
  padding-left: 26px;
}

/* Mobile dropdown items */
.mob-menu .mob-sub {
  display: block; padding: 12px 0 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,.5);
}
.mob-menu .mob-sub:hover { color: rgba(255,255,255,.8); }

/* ── 26. CLM CARDS ────────────────────────────────────────────── */
.clm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clm-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text2);
}
.clm-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.clm-dot.verified { background: #27c93f; box-shadow: 0 0 6px rgba(39,201,63,.4); }
.clm-card-body { padding: 4px 0; }
.clm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.clm-row:last-child { border-bottom: none; }
.clm-label { font-size: 12.5px; color: var(--text3); font-weight: 500; flex-shrink: 0; }
.clm-value { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }
.clm-value.status-active { color: #0c9e2a; }
.clm-value.risk-low { color: var(--teal); }
.clm-value.confidence-high { color: var(--teal); }
.clm-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  font-size: 11.5px; color: var(--text3);
}
.clm-verified { color: var(--teal); font-weight: 600; }

/* CLM Verify Panel (products page) */
.clm-verify-panel {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.clm-verify-title {
  padding: 14px 20px;
  background: var(--bg-dark); color: rgba(255,255,255,.7);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid rgba(84,190,240,.15);
}
.clm-verify-section { padding: 4px 0 8px; }
.clm-verify-label {
  padding: 10px 20px 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--blue);
}
.clm-arrow {
  text-align: center; padding: 8px 0;
  font-size: 18px; color: var(--blue); opacity: .7;
}
.clm-arrow.match-found {
  font-size: 12px; font-weight: 700; color: #0c9e2a;
  background: rgba(12,158,42,.06); border-top: 1px solid rgba(12,158,42,.15);
  border-bottom: 1px solid rgba(12,158,42,.15); padding: 10px 20px;
  text-align: left; opacity: 1; letter-spacing: .04em;
}
.clm-divider {
  height: 1px; background: var(--border); margin: 0 20px;
}

/* ── 27. WORLD MAP ────────────────────────────────────────────── */
.world-map-wrap {
  position: relative; width: 100%; padding-top: 48%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(84,190,240,.1) 1px, transparent 1px);
  background-size: 28px 28px;
}
.world-map-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.map-pin-group { cursor: default; }
.map-pin-pulse {
  fill: var(--blue);
  animation: map-pulse 2s ease-in-out infinite;
}
.map-pin-pulse-2 {
  fill: none; stroke: rgba(84,190,240,.3);
  animation: map-pulse-ring 2s ease-in-out infinite;
}
@keyframes map-pulse {
  0%,100% { opacity: 1; r: 5; }
  50% { opacity: .7; r: 6; }
}
@keyframes map-pulse-ring {
  0% { r: 8; opacity: .6; }
  100% { r: 18; opacity: 0; }
}
.map-label { font-family: 'Inter',sans-serif; font-size: 11px; font-weight: 700; fill: var(--text); letter-spacing: .04em; }

/* ── 28. SFA PROMINENT BLOCK ──────────────────────────────────── */
.sfa-feature-block {
  display: inline-flex; align-items: center; gap: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none; color: inherit;
}
.sfa-feature-block:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.sfa-logo-img {
  height: 52px; width: auto; display: block; flex-shrink: 0;
}
.sfa-badge-text {
  display: flex; flex-direction: column; gap: 4px;
}
.sfa-feature-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--blue);
}
.sfa-feature-name {
  font-size: 16px; font-weight: 700; color: var(--text);
  line-height: 1.3;
}
.sfa-feature-link {
  font-size: 12px; color: var(--blue); font-weight: 600;
}

/* ── 29. MISSION BLOCK ────────────────────────────────────────── */
.mission-block {
  background: #ffffff; border: 1px solid var(--border); border-radius: 16px;
  padding: 64px 72px; color: var(--text);
  position: relative; overflow: hidden;
}
.mission-block-inner { position: relative; z-index: 1; }
.mission-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.mission-title { color: var(--text); margin-bottom: 20px; }
.mission-title em { color: var(--blue); font-style: normal; }
.mission-text { font-size: 18px; color: var(--text2); line-height: 1.75; max-width: 680px; margin-bottom: 48px; }
.mission-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mission-pillar {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.mission-pillar .pillar-icon { background: var(--blue-glow); border-color: var(--border-blue); margin-bottom: 16px; }
.mission-pillar h4 { color: var(--text); margin-bottom: 8px; }
.mission-pillar p { font-size: 14px; color: var(--text2); }
@media (max-width: 900px) {
  .mission-block { padding: 40px 24px; }
  .mission-pillars { grid-template-columns: 1fr; }
}

/* ── 30. FOUNDER PHOTO ────────────────────────────────────────── */
.founder-photo {
  width: 200px; height: 200px; border-radius: 50%;
  border: 3px solid var(--blue);
  object-fit: cover; object-position: center top;
  margin: 0 auto 28px; display: block;
}

/* ── 31. LEAFLET MAP ──────────────────────────────────────────── */
.presence-map-container {
  height: 420px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  margin-bottom: 24px;
}
.map-label-tip.leaflet-tooltip {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; color: var(--text);
  font-size: 12px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-sm);
  padding: 4px 10px; white-space: nowrap;
}
.map-label-tip.leaflet-tooltip::before { border-right-color: var(--border); }

/* ── 32. LEGAL PAGE ───────────────────────────────────────────── */
.legal-section { padding: var(--section-pad) 48px; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-inner h2 { font-size: 26px; margin: 36px 0 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal-inner h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-inner h3 { font-size: 18px; margin: 24px 0 8px; color: var(--blue-deep); }
.legal-inner p { color: var(--text2); margin-bottom: 14px; line-height: 1.75; }
.legal-inner ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-inner ul li { color: var(--text2); font-size: 15px; line-height: 1.75; margin-bottom: 6px; }
.legal-inner .legal-date { font-size: 13px; color: var(--text3); margin-bottom: 32px; }
.legal-inner a { color: var(--blue); }
