  :root {
    --bg-0: #080c16;
    --bg-1: #0f1525;
    --bg-2: #161d30;
    --line: rgba(255,255,255,0.10);
    --line-strong: rgba(255,255,255,0.18);
    --fg: #e8edf5;
    --fg-dim: #8a93a6;
    --fg-faint: #8a93a6;
    --accent: #00ffd1;
    --accent-2: #00b4ff;
    --accent-glow: 0 0 24px rgba(0,255,209,0.35);
    --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;
    --font-serif: "Instrument Serif", "Times New Roman", serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg-0);
    color: var(--fg);
    font-family: var(--font-display);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
  }

  ::selection { background: var(--accent); color: var(--bg-0); }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; }

  /* ---------- ATMOSPHERE ---------- */
  .grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    opacity: 0.035; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  }
  .vignette {
    position: fixed; inset: 0; pointer-events: none; z-index: 2;
    background: radial-gradient(120% 80% at 50% 0%, transparent 60%, rgba(0,0,0,0.25) 100%);
  }
  .grid-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 1;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 80%);
  }

  /* ---------- NAV ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    transition: backdrop-filter 0.3s, background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(5,8,15,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-links { display: flex; gap: 32px; font-size: 14px; color: var(--fg-dim); }
  .nav-links a { transition: color 0.2s; }
  .nav-links a:hover { color: var(--fg); }
  .nav-cta {
    padding: 10px 20px; border: 1px solid var(--accent);
    color: var(--accent); border-radius: 999px; font-size: 13px;
    background: rgba(0,255,209,0.05);
    transition: all 0.25s;
    cursor: pointer;
  }
  .nav-cta:hover {
    background: var(--accent); color: var(--bg-0);
    box-shadow: var(--accent-glow);
  }
  @media (max-width: 800px) { .nav-links { display: none; } .nav { padding: 16px 20px; } }

  /* ---------- LOGO ---------- */
  .logo-mark { width: 36px; height: 36px; position: relative; }
  .logo-mark svg { width: 100%; height: 100%; }
  .wordmark {
    font-family: var(--font-display);
    font-weight: 700; font-size: 20px; letter-spacing: 0.14em;
    color: var(--fg);
  }
  .wordmark .dot { color: var(--accent); }

  /* ---------- HERO ---------- */
  .hero {
    position: relative; min-height: 100vh; padding: 100px 40px 40px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-canvas {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    /* Size set in JS to a square so the sphere stays circular */
    z-index: 0;
    pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 3;
    max-width: 1200px; width: 100%;
    text-align: center;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; border: 1px solid var(--line-strong);
    border-radius: 999px; font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-dim);
    margin-bottom: 32px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
  }
  .hero-tag .live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 50% { opacity: 0.3; } }

  .hero h1 {
    font-size: clamp(32px, 5vw, 72px);
    line-height: 1.05; letter-spacing: -0.03em;
    margin: 0 0 28px; font-weight: 500;
  }
  .hero h1 .serif {
    font-family: var(--font-serif); font-style: italic; font-weight: 400;
  }
  .hero h1 .accent-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero p.lead {
    font-size: clamp(16px, 1.4vw, 20px);
    max-width: 620px; margin: 0 auto 40px;
    color: var(--fg-dim); line-height: 1.6;
  }
  .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn {
    padding: 16px 28px; border-radius: 999px; font-size: 14px;
    font-weight: 500; letter-spacing: 0.02em; cursor: pointer;
    transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid transparent;
  }
  .btn-primary {
    background: var(--accent); color: var(--bg-0);
    box-shadow: 0 0 0 0 rgba(0,255,209,0);
  }
  .btn-primary:hover {
    box-shadow: 0 0 30px rgba(0,255,209,0.4);
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: rgba(255,255,255,0.04); color: var(--fg);
    border-color: var(--line-strong);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
    display: flex; justify-content: center; gap: 60px;
    margin-top: 48px; padding-top: 24px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .hero-stats .stat-num {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500; letter-spacing: -0.02em;
    color: var(--fg);
    font-family: var(--font-display);
  }
  .hero-stats .stat-num .plus { color: var(--accent); }
  .hero-stats .stat-label {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--fg-faint); letter-spacing: 0.1em; text-transform: uppercase;
    margin-top: 4px;
  }

  .scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--fg-faint); text-transform: uppercase;
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .scroll-cue .line { width: 1px; height: 32px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scroll-line 2s ease-in-out infinite; }
  @keyframes scroll-line { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } }

  /* ---------- SECTION FRAMEWORK ---------- */
  section { position: relative; padding: 120px 40px; }
  section::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 60% 40% at 20% 0%, rgba(0,255,209,0.04), transparent 50%),
      radial-gradient(ellipse 50% 50% at 80% 100%, rgba(0,180,255,0.04), transparent 50%);
  }
  section:nth-child(even)::before {
    background:
      radial-gradient(ellipse 50% 50% at 80% 0%, rgba(0,180,255,0.05), transparent 50%),
      radial-gradient(ellipse 60% 40% at 20% 100%, rgba(0,255,209,0.03), transparent 50%);
  }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--accent);
  }
  .section-title {
    font-size: clamp(32px, 4vw, 64px); line-height: 1.05;
    letter-spacing: -0.03em; font-weight: 500;
    margin: 0 0 24px; max-width: 900px;
  }
  .section-title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
  .section-sub {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--fg-dim); max-width: 640px; margin: 0;
    line-height: 1.6;
  }

  /* Reveal animation — only when JS is active (avoids hiding LCP text before paint) */
  .js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
  .js .reveal-stagger.in > * { opacity: 1; transform: none; }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

  /* ---------- LOGO MARQUEE ---------- */
  .marquee-section {
    padding: 60px 0; border-block: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(0,255,209,0.03) 0%, transparent 40%, transparent 60%, rgba(0,180,255,0.03) 100%);
  }
  .marquee-label {
    text-align: center; font-family: var(--font-mono); font-size: 11px;
    color: var(--fg-faint); letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 32px;
  }
  .marquee {
    overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }
  .marquee-track {
    display: flex; gap: 80px;
    animation: scroll-left 40s linear infinite;
    width: max-content;
  }
  .marquee-track > div {
    font-family: var(--font-display); font-weight: 500; font-size: 22px;
    color: var(--fg-dim); white-space: nowrap; letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 80px;
  }
  .marquee-track > div::after { content: "◆"; color: var(--fg-faint); font-size: 8px; }
  @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ---------- WHY CARDS ---------- */
  .why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .why-card {
    border: 1px solid var(--line); padding: 40px; border-radius: 8px;
    background: var(--bg-1);
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .why-card::after {
    content: ""; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,209,0.12), transparent 70%);
    pointer-events: none;
    left: var(--mx, -100px); top: var(--my, -100px);
    transform: translate(-50%, -50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .why-card:hover::after { opacity: 1; }
  .why-card:hover { border-color: rgba(0,255,209,0.3); transform: translateY(-4px); }
  .why-num {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--fg-faint); letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .why-icon {
    width: 32px; height: 32px; color: var(--accent);
    margin-bottom: 20px;
  }
  .why-card h3 { font-size: 22px; margin: 0 0 12px; font-weight: 500; letter-spacing: -0.02em; }
  .why-card p { font-size: 14px; color: var(--fg-dim); margin: 0; line-height: 1.6; }
  @media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

  /* ---------- CHALLENGES ---------- */
  .challenges-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .challenge-card {
    border: 1px solid var(--line); padding: 32px; border-radius: 6px;
    background: var(--bg-1); transition: border-color 0.3s;
  }
  .challenge-card:hover { border-color: rgba(0,255,209,0.3); }
  .challenge-card .icon { width: 24px; height: 24px; color: var(--accent); margin-bottom: 16px; }
  .challenge-card h3 { font-size: 16px; margin: 0 0 8px; font-weight: 500; }
  .challenge-card p { font-size: 13px; color: var(--fg-dim); margin: 0; line-height: 1.55; }
  @media (max-width: 900px) { .challenges-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .challenges-grid { grid-template-columns: 1fr; } }

  .solution-band {
    margin-top: 80px; padding: 48px;
    border-radius: 8px;
    border: 1px solid rgba(0,255,209,0.15);
    background:
      radial-gradient(ellipse at 0% 0%, rgba(0,255,209,0.1), transparent 50%),
      radial-gradient(ellipse at 100% 100%, rgba(0,180,255,0.06), transparent 50%),
      var(--bg-1);
  }
  .solution-trio {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-top: 32px;
  }
  .solution-trio h4 { font-size: 14px; margin: 0 0 8px; color: var(--accent); }
  .solution-trio p { font-size: 13px; color: var(--fg-dim); margin: 0; line-height: 1.55; }
  @media (max-width: 800px) { .solution-trio { grid-template-columns: 1fr; } }

  /* ---------- TECHNOLOGY ---------- */
  .tech-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    margin-top: 60px;
  }
  .tech-card {
    border: 1px solid var(--line); padding: 40px; border-radius: 8px;
    background: var(--bg-1); transition: border-color 0.3s, transform 0.3s;
  }
  .tech-card:hover { border-color: rgba(0,255,209,0.3); transform: translateY(-2px); }
  .tech-num {
    font-family: var(--font-mono); font-size: 48px;
    color: var(--fg-faint); opacity: 0.3; font-weight: 500;
    line-height: 1; margin-bottom: 24px;
  }
  .badge {
    font-family: var(--font-mono); font-size: 10px;
    letter-spacing: 0.15em; color: var(--accent);
    border: 1px solid rgba(0,255,209,0.3);
    padding: 4px 10px; border-radius: 999px;
    display: inline-block; margin-bottom: 16px;
  }
  .tech-card h3 { font-size: 20px; margin: 0 0 12px; font-weight: 500; }
  .tech-card p { font-size: 14px; color: var(--fg-dim); margin: 0; line-height: 1.6; }
  @media (max-width: 700px) { .tech-grid { grid-template-columns: 1fr; } }

  /* ---------- SERVICES ---------- */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 60px; align-items: start;
  }
  .services-col {
    display: flex; flex-direction: column; gap: 24px; min-width: 0;
  }
  .service-card {
    border: 1px solid var(--line); padding: 32px 28px; border-radius: 8px;
    background: var(--bg-1); transition: border-color 0.3s, transform 0.3s;
    position: relative;
  }
  .service-card:hover { border-color: rgba(0,255,209,0.3); transform: translateY(-4px); }
  .service-card .service-icon {
    width: 40px; height: 40px; margin-bottom: 20px;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(0,255,209,0.08); color: var(--accent);
  }
  .service-card .service-icon svg { width: 22px; height: 22px; }
  .service-card h3 { font-size: 18px; margin: 0 0 8px; font-weight: 700; }
  .service-card .service-desc {
    font-size: 13px; color: var(--fg-dim); margin: 0 0 20px; line-height: 1.55;
  }
  .service-card ul { list-style: none; padding: 0; margin: 0; }
  .service-card ul li {
    font-size: 13px; color: var(--fg); padding: 6px 0;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 8px;
  }
  .service-card ul li:first-child { border-top: none; }
  .service-card ul li::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
  }
  .service-card ul li a {
    color: var(--fg); transition: color 0.2s;
  }
  .service-card ul li a:hover { color: var(--accent); }
  .ai-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--font-mono); font-size: 9px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bg-0); background: var(--accent);
    padding: 2px 8px; border-radius: 999px;
    margin-left: 6px; font-weight: 700;
    vertical-align: middle;
  }
  .service-card.highlighted {
    border-color: rgba(0,255,209,0.3);
    background: linear-gradient(135deg, var(--bg-1) 0%, rgba(0,255,209,0.04) 100%);
  }
  .service-card.highlighted::before {
    content: ""; position: absolute; inset: -1px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,255,209,0.2), transparent 60%);
    z-index: -1;
  }
  @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

  /* ---------- GLOBAL MAP ---------- */
  .map-section { padding-block: 120px; }
  .map-wrap {
    margin-top: 60px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(0,180,255,0.12), transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(0,255,209,0.06), transparent 50%),
      var(--bg-1);
    aspect-ratio: 16 / 9;
  }
  #world-map { position: absolute; inset: 0; width: 100%; height: 100%; }
  .map-legend {
    position: absolute; bottom: 24px; left: 24px;
    font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim);
    z-index: 2;
  }
  .map-legend-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
  .map-legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  .country-tooltip {
    position: absolute; pointer-events: none;
    background: rgba(5,8,15,0.95); border: 1px solid var(--accent);
    padding: 8px 14px; border-radius: 4px;
    font-family: var(--font-mono); font-size: 12px; color: var(--fg);
    z-index: 5; transform: translate(-50%, -100%) translateY(-12px);
    white-space: nowrap; opacity: 0; transition: opacity 0.2s;
  }
  .country-tooltip.show { opacity: 1; }

  .regions {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 32px;
  }
  .region {
    border: 1px solid var(--line); padding: 24px; border-radius: 6px;
    background: var(--bg-1);
  }
  .region h3 { margin: 0 0 8px; font-size: 14px; font-family: var(--font-mono); color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
  .region .countries { font-size: 14px; color: var(--fg); margin-bottom: 8px; }
  .region p { font-size: 13px; color: var(--fg-dim); margin: 0; line-height: 1.5; }
  @media (max-width: 800px) { .regions { grid-template-columns: 1fr; } }

  /* ---------- BIG STATS ---------- */
  .big-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--line);
    border: 1px solid var(--line);
    margin-top: 60px;
  }
  .big-stat { background: var(--bg-1); padding: 48px 32px; }
  .big-stat .num {
    font-size: clamp(48px, 6vw, 84px); line-height: 1;
    font-weight: 400; letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--fg) 0%, var(--fg-dim) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .big-stat .num .plus { color: var(--accent); -webkit-text-fill-color: var(--accent); }
  .big-stat .label {
    margin-top: 16px; font-family: var(--font-mono); font-size: 11px;
    color: var(--fg-dim); letter-spacing: 0.15em; text-transform: uppercase;
  }
  @media (max-width: 900px) { .big-stats { grid-template-columns: repeat(2, 1fr); } }

  /* ---------- CTA ---------- */
  .cta {
    text-align: center; padding: 160px 40px;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--line);
  }
  .cta::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(800px 500px at 50% 100%, rgba(0,255,209,0.2), transparent 60%),
      radial-gradient(600px 300px at 30% 0%, rgba(0,180,255,0.08), transparent 50%);
    pointer-events: none;
  }
  .cta-quote {
    font-family: var(--font-serif); font-style: italic;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.1; letter-spacing: -0.02em;
    max-width: 1000px; margin: 0 auto 32px;
    font-weight: 400;
  }
  .cta-quote .accent { color: var(--accent); }
  .cta-sub {
    color: var(--fg-dim); max-width: 560px; margin: 0 auto 48px;
    font-size: 16px; line-height: 1.6;
  }

  /* ---------- FOOTER ---------- */
  footer {
    padding: 60px 40px 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-0);
  }
  .footer-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 48px;
  }
  .footer-brand p { color: var(--fg-dim); font-size: 13px; line-height: 1.6; max-width: 360px; margin: 16px 0 0; }
  .footer-address {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 13px; color: var(--fg-dim); line-height: 1.6;
  }
  .footer-address strong { color: var(--fg); font-weight: 500; }
  .footer-heading {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--fg-dim); margin: 0 0 16px;
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 10px; font-size: 14px; color: var(--fg); }
  footer ul li a { color: var(--fg); transition: color 0.2s; }
  footer ul li a:hover { color: var(--accent); }
  .footer-bottom {
    max-width: 1280px; margin: 0 auto; padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim);
    flex-wrap: wrap; gap: 16px;
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

  /* ---------- GLOW DIVIDERS ---------- */
  .glow-divider {
    height: 1px; position: relative; overflow: visible;
  }
  .glow-divider::after {
    content: ""; position: absolute;
    left: 10%; right: 10%; top: -20px; bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(0,255,209,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .glow-divider.blue::after {
    background: radial-gradient(ellipse at center, rgba(0,180,255,0.12) 0%, transparent 70%);
  }

  /* ---------- MISC ---------- */
  @media (max-width: 600px) { section { padding: 80px 20px; } }
