/* ═══════════════════════════════════════════════════════════════
   VORQO NEXUS — style.css
   Morocco's Digital Gift Card Gateway
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:       #03050D;
  --bg2:      #070B18;
  --bg3:      #0C1225;
  --blue:     #2F7DFF;
  --cyan:     #00E5FF;
  --violet:   #7C3CFF;
  --purple:   #A855F7;
  --mint:     #37FFCE;
  --indigo:   #5B8CFF;
  --text:     #E8EEFF;
  --text2:    #8A97C0;
  --text3:    #5A6890;
  --border:   rgba(47,125,255,0.12);
  --border2:  rgba(47,125,255,0.06);
  --nav-h:    68px;
  --radius:   12px;
  --radius-lg:20px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(47,125,255,0.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(47,125,255,0.32); }
* { scrollbar-width: thin; scrollbar-color: rgba(47,125,255,0.18) var(--bg); }

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Shared ── */
.section { padding: 100px 0; }
.s-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.s-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.s-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  color: var(--text);
  margin-bottom: 16px;
}
.s-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.75;
}
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.s-header .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.s-header .eyebrow::before {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,0.5));
}
.s-header .eyebrow::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(270deg, transparent, rgba(47,125,255,0.5));
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), box-shadow 0.22s, background 0.22s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, #3D8AFF, #1B5FCC);
  color: #fff;
  box-shadow: 0 0 28px rgba(47,125,255,0.35), 0 4px 16px rgba(47,125,255,0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #5599FF, #2F7DFF);
  box-shadow: 0 0 48px rgba(47,125,255,0.55), 0 8px 24px rgba(47,125,255,0.3);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-ghost {
  background: rgba(47,125,255,0.06);
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(47,125,255,0.12);
  color: var(--text);
  border-color: rgba(47,125,255,0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(47,125,255,0.1);
}
.btn-submit { width: 100%; justify-content: center; padding: 15px 26px; font-size: 1rem; letter-spacing: 0.02em; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(3,5,13,0);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(3,5,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta {
  background: rgba(47,125,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(47,125,255,0.2);
}
.nav-cta:hover {
  background: rgba(47,125,255,0.18);
  color: var(--text);
  border-color: rgba(47,125,255,0.4);
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(55,255,206,0.05);
  border: 1px solid rgba(55,255,206,0.15);
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mint);
  white-space: nowrap;
  flex-shrink: 0;
}
.nb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(7,11,24,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ml {
  display: block;
  padding: 12px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: var(--transition);
}
.ml:hover, .ml:focus { color: var(--text); background: rgba(255,255,255,0.04); }
.ml-cta {
  margin-top: 8px;
  text-align: center;
  background: rgba(47,125,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(47,125,255,0.2);
}
.ml-cta:hover { background: rgba(47,125,255,0.18); color: var(--text); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 60px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.g1 {
  width: 1100px; height: 1100px;
  top: -380px; left: -320px;
  background: radial-gradient(circle, rgba(47,125,255,0.26) 0%, rgba(47,125,255,0.08) 45%, transparent 70%);
}
.g2 {
  width: 900px; height: 900px;
  top: -120px; right: -240px;
  background: radial-gradient(circle, rgba(124,60,255,0.2) 0%, rgba(124,60,255,0.05) 55%, transparent 70%);
}
.g3 {
  width: 780px; height: 780px;
  bottom: -220px; left: 32%;
  background: radial-gradient(circle, rgba(0,229,255,0.14) 0%, transparent 65%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(47,125,255,0.08);
  border: 1px solid rgba(47,125,255,0.24);
  border-radius: 20px;
  font-size: 0.68rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  align-self: flex-start;
  box-shadow: 0 0 32px rgba(47,125,255,0.14), inset 0 1px 0 rgba(47,125,255,0.12);
}
.hb-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}
.hb-sep {
  width: 1px;
  height: 10px;
  background: rgba(47,125,255,0.25);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  line-height: 1.08;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hl-row { overflow: hidden; }
.hl-inner {
  display: block;
  transform: translateY(105%);
  animation: lineReveal 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hl-row:nth-child(1) .hl-inner { animation-delay: 0.1s; }
.hl-row:nth-child(2) .hl-inner { animation-delay: 0.22s; }
.hl-row:nth-child(3) .hl-inner { animation-delay: 0.36s; }
.hl-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 50%, var(--violet) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s linear infinite;
}
.hl-sub { margin-top: 6px; }
.hl-sub .hl-inner {
  font-size: 0.38em;
  font-weight: 400;
  color: var(--text3);
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--text3);
}
.cursor-blink {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  animation: blink 1.1s step-end infinite;
}
.hero-body {
  font-size: 1.12rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-micro {
  font-size: 0.8rem;
  color: var(--text3);
  letter-spacing: 0.03em;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ht {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text3);
}
.ht-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ht-blue   { background: var(--blue); }
.ht-cyan   { background: var(--cyan); }
.ht-violet { background: var(--violet); }
.ht-mint   { background: var(--mint); }

/* ══════════════════════════════════════════════
   ACCESS CORE — Hero Right
══════════════════════════════════════════════ */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-core {
  position: relative;
  width: 580px;
  height: 580px;
  flex-shrink: 0;
}

/* Portal Rings */
.pr {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  pointer-events: none;
}
.pr-xl {
  width: 560px; height: 560px;
  border-color: rgba(47,125,255,0.05);
  background: conic-gradient(
    from 0deg,
    rgba(47,125,255,0.04) 0deg,
    rgba(0,229,255,0.07) 90deg,
    rgba(124,60,255,0.04) 180deg,
    rgba(47,125,255,0.04) 270deg,
    rgba(47,125,255,0.04) 360deg
  );
  animation: portalSpin 30s linear infinite;
}
.pr-lg {
  width: 460px; height: 460px;
  border-color: rgba(47,125,255,0.08);
  animation: portalSpin 22s linear infinite reverse;
}
.pr-md {
  width: 380px; height: 380px;
  border-color: rgba(124,60,255,0.07);
  background: conic-gradient(
    from 120deg,
    transparent 0deg,
    rgba(124,60,255,0.05) 60deg,
    transparent 120deg
  );
  animation: portalSpin 16s linear infinite;
}
.pr-sm {
  width: 300px; height: 300px;
  border-color: rgba(0,229,255,0.1);
  animation: portalSpin 10s linear infinite reverse;
}

/* Orbit path ring */
.orbit-path {
  position: absolute;
  top: 50%; left: 50%;
  width: 440px; height: 440px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(47,125,255,0.1);
  pointer-events: none;
}

/* ── VQ Card ── */
.vq-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 1.5px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 40%, var(--violet) 80%, var(--blue) 100%);
  background-size: 300% 300%;
  z-index: 10;
  box-shadow: 0 0 40px rgba(47,125,255,0.3), 0 0 80px rgba(0,229,255,0.14), 0 0 120px rgba(124,60,255,0.08);
}
.vq-card {
  position: relative;
  width: 340px;
  height: 213px;
  border-radius: 17px;
  background: linear-gradient(160deg, #0E1A3A 0%, #060B1C 50%, #100C2A 100%);
  overflow: hidden;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}
.vqc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,125,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,125,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
/* Holographic shimmer sweep */
.vqc-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(255,255,255,0.03) 40%,
    rgba(0,229,255,0.07) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 80%
  );
  pointer-events: none;
  animation: holoSweep 4s ease-in-out infinite;
}
/* Deep ambient glow layers */
.vq-card::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,60,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.vq-card::after {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.vqc-corner {
  position: absolute;
  width: 18px; height: 18px;
  pointer-events: none;
}
.vqc-tl { top: 10px; left: 10px; border-top: 2px solid rgba(47,125,255,0.7); border-left: 2px solid rgba(47,125,255,0.7); border-radius: 4px 0 0 0; }
.vqc-tr { top: 10px; right: 10px; border-top: 2px solid rgba(0,229,255,0.5); border-right: 2px solid rgba(0,229,255,0.5); border-radius: 0 4px 0 0; }
.vqc-bl { bottom: 10px; left: 10px; border-bottom: 2px solid rgba(0,229,255,0.5); border-left: 2px solid rgba(0,229,255,0.5); border-radius: 0 0 0 4px; }
.vqc-br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(124,60,255,0.6); border-right: 2px solid rgba(124,60,255,0.6); border-radius: 0 0 4px 0; }

.vqc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.vqc-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}
.vqc-sym {
  width: 22px;
  height: 22px;
  mix-blend-mode: screen;
}
.vqc-chip {
  width: 28px;
  height: 22px;
  opacity: 0.8;
}
.vqc-chip svg { width: 100%; height: 100%; }

.vqc-mid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.vqc-code {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  text-shadow: 0 0 28px rgba(47,125,255,0.6), 0 0 60px rgba(0,229,255,0.2);
}
.vqc-type {
  font-size: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text3);
  text-transform: uppercase;
}

.vqc-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.vqc-network {
  font-size: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.vqc-secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mint);
}
.vqcs-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 1.8s infinite;
}

/* ── Orbit Modules ── */
.om-carrier {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  transform-origin: 0 0;
  animation: orbitCarrier 24s linear infinite;
  z-index: 20;
}
.omc-1 { animation-delay: 0s; }
.omc-2 { animation-delay: -4s; }
.omc-3 { animation-delay: -8s; }
.omc-4 { animation-delay: -12s; }
.omc-5 { animation-delay: -16s; }
.omc-6 { animation-delay: -20s; }

.om-pill {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  animation: orbitCounter 24s linear infinite;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px 6px 8px;
  background: rgba(6,9,22,0.95);
  border: 1px solid;
  border-color: var(--mc, var(--blue));
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mc, var(--blue));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(47,125,255,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0.9;
}
.omc-1 .om-pill { animation-delay: 0s; }
.omc-2 .om-pill { animation-delay: -4s; }
.omc-3 .om-pill { animation-delay: -8s; }
.omc-4 .om-pill { animation-delay: -12s; }
.omc-5 .om-pill { animation-delay: -16s; }
.omc-6 .om-pill { animation-delay: -20s; }

.om-icon {
  width: 14px; height: 14px;
  color: var(--mc, var(--blue));
  flex-shrink: 0;
}

/* ── Console Panels ── */
.cp {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  background: rgba(6,9,22,0.95);
  border: 1px solid rgba(47,125,255,0.18);
  border-radius: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 15;
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.cp-launch   { top: 58px;   left: 20px; }
.cp-code     { top: 70px;   right: 20px; }
.cp-morocco  { bottom: 90px; right: 20px; }
.cp-delivery { bottom: 78px; left: 18px; }

.cp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}
.cp-amber { background: #F59E0B; }
.cp-green { background: var(--mint); }
.cp-cyan  { background: var(--cyan); }
.cp-blue  { background: var(--blue); }

.cp-body { display: flex; flex-direction: column; gap: 1px; }
.cp-label { color: var(--text3); font-size: 0.63rem; letter-spacing: 0.06em; text-transform: uppercase; }
.cp-val   { color: var(--text); font-weight: 600; font-size: 0.72rem; }

.cp-bar {
  width: 56px; height: 3px;
  background: rgba(47,125,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.cp-bar-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  animation: barPulse 2.5s ease-in-out infinite;
}

/* ── Core Route SVG Lines ── */
.core-routes {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5;
}
.cr {
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0;
  animation: routeDraw 1.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
.cr-1 { stroke: var(--blue);   stroke-dasharray: 300; stroke-dashoffset: 300; animation-delay: 0.6s; }
.cr-2 { stroke: var(--cyan);   stroke-dasharray: 300; stroke-dashoffset: 300; animation-delay: 0.85s; }
.cr-3 { stroke: var(--violet); stroke-dasharray: 280; stroke-dashoffset: 280; animation-delay: 1.1s; }
.cr-4 { stroke: var(--blue);   stroke-dasharray: 280; stroke-dashoffset: 280; animation-delay: 1.35s; }

/* ══════════════════════════════════════════════
   ACCESS PROTOCOL BAR
══════════════════════════════════════════════ */
.protocol-bar {
  background: linear-gradient(180deg, rgba(5,8,18,0.99) 0%, rgba(4,6,14,1) 100%);
  border-top: 1px solid rgba(47,125,255,0.18);
  border-bottom: 1px solid rgba(47,125,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(47,125,255,0.08), 0 8px 50px rgba(0,0,0,0.6), 0 -1px 0 rgba(47,125,255,0.05);
}
.protocol-console {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.protocol-bg-code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', monospace;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(47,125,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.protocol-scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(47,125,255,0.5), transparent);
  animation: scanSlide 4s ease-in-out infinite;
  pointer-events: none;
}
.protocol-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  border-bottom: 1px solid var(--border2);
}
.ph-left, .ph-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: 10px;
}
.ph-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 2s infinite;
}
.ph-label { color: var(--text3); }
.ph-status { color: var(--mint); }
.ph-ver { color: var(--text3); }

.protocol-modules {
  display: flex;
  align-items: stretch;
  padding: 20px 0;
  gap: 0;
}
.pm {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(47,125,255,0.04);
  border: 1px solid rgba(47,125,255,0.1);
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.pm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.22s;
}
.pm:hover {
  background: rgba(47,125,255,0.09);
  border-color: rgba(47,125,255,0.22);
  box-shadow: 0 0 24px rgba(47,125,255,0.08), inset 0 0 20px rgba(47,125,255,0.03);
  transform: translateY(-1px);
}
.pm:hover::before { opacity: 1; }
.pm:focus {
  outline: none;
  border-color: rgba(47,125,255,0.4);
  background: rgba(47,125,255,0.09);
}
.pm-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(47,125,255,0.1);
  border: 1px solid rgba(47,125,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, box-shadow 0.22s;
}
.pm:hover .pm-icon-wrap {
  background: rgba(47,125,255,0.18);
  box-shadow: 0 0 16px rgba(47,125,255,0.2);
}
.pm-icon { width: 18px; height: 18px; color: var(--blue); }
.pm-content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pm-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.84rem; font-weight: 600; color: var(--text); }
.pm-meta  { font-size: 0.63rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: 0.08em; color: var(--text3); }
.pm-tag {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.63rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.pm-active   { background: rgba(55,255,206,0.08); color: var(--mint);   border: 1px solid rgba(55,255,206,0.2); }
.pm-secure   { background: rgba(47,125,255,0.08); color: var(--blue);   border: 1px solid rgba(47,125,255,0.2); }
.pm-ready    { background: rgba(0,229,255,0.08);  color: var(--cyan);   border: 1px solid rgba(0,229,255,0.2); }
.pm-building { background: rgba(168,85,247,0.08); color: var(--purple); border: 1px solid rgba(168,85,247,0.2); }

.pm-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  flex-shrink: 0;
}
.pmc-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--border2), rgba(47,125,255,0.15), var(--border2));
  position: relative;
  overflow: hidden;
}
.pmc-pulse {
  position: absolute;
  top: 0; left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: pulseLine 2.4s ease-in-out infinite;
}
.pmc-node {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(47,125,255,0.3);
  border: 1px solid rgba(47,125,255,0.45);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(47,125,255,0.25);
}

/* ══════════════════════════════════════════════
   DIGITAL WORLDS GRID
══════════════════════════════════════════════ */
.worlds-section {
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(47,125,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: -8px -8px;
}
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wc-gaming        { --wc: #2F7DFF; }
.wc-streaming     { --wc: #00E5FF; }
.wc-apps          { --wc: #7C3CFF; }
.wc-music         { --wc: #A855F7; }
.wc-entertainment { --wc: #37FFCE; }
.wc-productivity  { --wc: #5B8CFF; }

.wc {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg,
    color-mix(in srgb, var(--wc, var(--blue)) 6%, rgba(9,13,32,0.97)),
    rgba(6,8,22,0.99)
  );
  border: 1px solid color-mix(in srgb, var(--wc, var(--blue)) 10%, rgba(255,255,255,0.04));
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.wc:hover {
  border-color: color-mix(in srgb, var(--wc, var(--blue)) 32%, transparent);
  box-shadow: 0 16px 60px rgba(0,0,0,0.5), 0 0 44px color-mix(in srgb, var(--wc, var(--blue)) 11%, transparent), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(-6px);
}
.wc:focus {
  outline: none;
  border-color: rgba(47,125,255,0.35);
}
/* Per-category top accent line */
.wc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, color-mix(in srgb, var(--wc, var(--blue)) 60%, transparent) 50%, transparent 95%);
  z-index: 3;
  pointer-events: none;
}
/* Shine sweep on world cards */
.wc::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.025) 50%, transparent 80%);
  pointer-events: none;
  transition: left 0.6s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.wc:hover::before { left: 150%; }
.wc-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,125,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,125,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  border-radius: inherit;
}
.wc-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--wc, var(--blue)) 22%, transparent) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.28;
  transition: opacity 0.35s;
}
.wc:hover .wc-glow { opacity: 1; }
.wc-corner-code {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.58rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text3);
  opacity: 0.7;
}
.wc-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--wc, var(--blue)) 12%, rgba(7,9,22,0.85));
  border: 1px solid color-mix(in srgb, var(--wc, var(--blue)) 28%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 0 16px color-mix(in srgb, var(--wc, var(--blue)) 10%, transparent);
}
.wc:hover .wc-icon-wrap {
  box-shadow: 0 0 28px color-mix(in srgb, var(--wc, var(--blue)) 30%, transparent);
  transform: scale(1.05);
}
.wc-icon { width: 32px; height: 32px; color: var(--wc, var(--blue)); }
.wc-body { flex: 1; }
.wc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.wc-desc { font-size: 0.87rem; color: var(--text2); line-height: 1.65; }
.wc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border2);
}
.wc-meta {
  font-size: 0.63rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text3);
  text-transform: uppercase;
}
.wc-badge {
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.63rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: color-mix(in srgb, var(--wc, var(--blue)) 10%, transparent);
  color: var(--wc, var(--blue));
  border: 1px solid color-mix(in srgb, var(--wc, var(--blue)) 25%, transparent);
}

/* ══════════════════════════════════════════════
   TRUST ARCHITECTURE CONSOLE
══════════════════════════════════════════════ */
.trust-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.trust-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,60,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.trust-window {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(7,9,26,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.tw-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(47,125,255,0.04);
  border-bottom: 1px solid var(--border2);
}
.tw-controls { display: flex; gap: 6px; }
.twc {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.twc-r { background: rgba(239,68,68,0.6); }
.twc-y { background: rgba(234,179,8,0.6); }
.twc-g { background: rgba(34,197,94,0.6); }
.tw-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text3);
  flex: 1;
  text-align: center;
}
.tw-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text3);
}
.tw-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F59E0B;
  animation: pulseDot 2.5s infinite;
}
.tw-body { padding: 28px 24px 24px; }

/* Delivery Flow */
.df-wrap { margin-bottom: 28px; }
.df-label {
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.df-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.df-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(47,125,255,0.05);
  border: 1px solid rgba(47,125,255,0.08);
  border-radius: 8px;
  transition: background 0.22s, border-color 0.22s;
}
.df-step:hover {
  background: rgba(47,125,255,0.1);
  border-color: rgba(47,125,255,0.18);
}
.df-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  opacity: 0.6;
}
.df-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.df-arrow {
  padding: 0 4px;
  color: var(--text3);
  flex-shrink: 0;
}
.df-arrow svg { width: 28px; height: 10px; }

/* Trust Layer Grid */
.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tl-wide { grid-column: 3 / 5; }
.tl-card {
  padding: 20px 18px;
  background: linear-gradient(145deg, rgba(10,15,35,0.9), rgba(6,8,20,0.95));
  border: 1px solid rgba(47,125,255,0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.tl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,0.2), transparent);
}
.tl-card::after {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), transparent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.tl-card:hover {
  border-color: rgba(47,125,255,0.2);
  box-shadow: 0 4px 28px rgba(47,125,255,0.08);
  transform: translateY(-2px);
}
.tl-card:hover::after { opacity: 1; }
.tlc-header {
  display: flex;
  align-items: center;
  gap: 7px;
}
.tlc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tlc-active { background: var(--mint); animation: pulseDot 2s infinite; }
.tlc-build  { background: #F59E0B; animation: pulseDot 2.5s infinite; }
.tlc-status {
  font-size: 0.62rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text3);
  text-transform: uppercase;
}
.tlc-icon {
  width: 36px; height: 36px;
  color: var(--blue);
}
.tlc-icon svg { width: 100%; height: 100%; }
.tlc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.tlc-desc {
  font-size: 0.78rem;
  color: var(--text2);
  line-height: 1.55;
  flex: 1;
}
.tlc-bar {
  height: 3px;
  background: rgba(47,125,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.tlc-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 10px rgba(0,229,255,0.5), 0 0 4px rgba(47,125,255,0.8);
}
.tlc-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tlc-bar-row .tlc-bar { flex: 1; }
.tlc-pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  opacity: 0.65;
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}

/* ══════════════════════════════════════════════
   MOROCCO NETWORK MAP
══════════════════════════════════════════════ */
.map-section { background: var(--bg); position: relative; overflow: hidden; }
.map-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 64px;
}
.map-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* System chips */
.map-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.map-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(47,125,255,0.05);
  border: 1px solid rgba(47,125,255,0.12);
  border-radius: 4px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--text3);
  text-transform: uppercase;
}
.chip-cyan   { border-color: rgba(0,229,255,0.15);  color: rgba(0,229,255,0.6);    background: rgba(0,229,255,0.04); }
.chip-violet { border-color: rgba(124,60,255,0.15); color: rgba(168,85,247,0.65);  background: rgba(124,60,255,0.04); }
.chip-amber  { border-color: rgba(245,158,11,0.15); color: rgba(245,158,11,0.65);  background: rgba(245,158,11,0.04); }
.map-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text2);
  padding-left: 16px;
  border-left: 2px solid var(--blue);
  font-style: normal;
}
.map-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
/* Metric cards */
.map-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-metric {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex: 1;
  min-width: 88px;
  padding: 12px 14px;
  background: rgba(7,11,24,0.6);
  border: 1px solid rgba(47,125,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.22s, box-shadow 0.22s;
}
.map-metric:hover {
  border-color: rgba(47,125,255,0.22);
  box-shadow: 0 0 20px rgba(47,125,255,0.07);
}
.mm-accent {
  width: 2px;
  border-radius: 2px;
  background: var(--blue);
  flex-shrink: 0;
  align-self: stretch;
}
.mm-body { display: flex; flex-direction: column; gap: 2px; }
.mm-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mm-label {
  font-size: 0.65rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text2);
  text-transform: uppercase;
}
.mm-meta {
  font-size: 0.58rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text3);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
/* Map command panel */
.map-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  background: rgba(5,9,26,0.78);
  border: 1px solid rgba(47,125,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(47,125,255,0.04),
    0 8px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(47,125,255,0.07),
    inset 0 1px 0 rgba(47,125,255,0.09);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.map-panel:hover {
  box-shadow:
    0 0 0 1px rgba(47,125,255,0.09),
    0 8px 60px rgba(0,0,0,0.65),
    0 0 100px rgba(47,125,255,0.14),
    inset 0 1px 0 rgba(47,125,255,0.12);
}
.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(47,125,255,0.1);
  background: rgba(47,125,255,0.03);
}
.mp-header-left { display: flex; flex-direction: column; gap: 3px; }
.mp-title {
  font-size: 0.62rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text2);
  text-transform: uppercase;
}
.mp-meta {
  font-size: 0.52rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.07em;
  color: var(--text3);
  opacity: 0.55;
}
.mp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mint);
}
.mp-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 2s infinite;
}
.mp-scanlines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(47,125,255,0.013) 2px, rgba(47,125,255,0.013) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.mp-scan-beam {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,229,255,0.22) 50%, transparent 100%);
  animation: mpScanSlide 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.mp-body { position: relative; padding: 10px 14px 14px; }
.morocco-map {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(47,125,255,0.14));
}
.m-shape {
  fill: none;
  stroke: rgba(47,125,255,0.24);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 5px rgba(47,125,255,0.35));
}
.m-route {
  opacity: 0;
  animation: routeDraw 1.6s cubic-bezier(0.4,0,0.2,1) forwards;
  transition: opacity 0.25s;
}
.npr {
  animation: nodeRing 3s ease-out infinite;
  transform-origin: 0 0;
}
.cnode { cursor: default; }
.hub-node .npr { animation-duration: 2.5s; }
.sec-node { cursor: pointer; transition: filter 0.2s; }

/* ══════════════════════════════════════════════
   STANDARD SHIFT
══════════════════════════════════════════════ */
.brand-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.brand-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(47,125,255,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.brand-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brand-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text2);
  padding: 12px 16px;
  background: rgba(47,125,255,0.04);
  border: 1px solid rgba(47,125,255,0.09);
  border-radius: 10px;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.bp::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--bp-c, var(--blue));
  opacity: 0;
  transition: opacity 0.25s;
}
.bp:hover {
  border-color: color-mix(in srgb, var(--bp-c, var(--blue)) 28%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--bp-c, var(--blue)) 8%, rgba(7,9,22,0));
  transform: translateX(4px);
}
.bp:hover .bp-label { opacity: 1; }
.bp:hover::before { opacity: 1; }
.bp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--bp-c, var(--blue)) 55%, var(--text3));
  flex-shrink: 0;
  min-width: 22px;
  opacity: 0.65;
}
.bp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bp-c, var(--blue));
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--bp-c, var(--blue));
}
.bp-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bp-c, var(--blue));
  opacity: 0.8;
  margin-left: auto;
  text-transform: uppercase;
}
.brand-card-wrap {
  display: flex;
  justify-content: center;
}
.brand-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 340px;
  background: linear-gradient(160deg, rgba(10,16,38,0.98), rgba(6,8,20,1) 60%, rgba(12,8,28,0.98) 100%);
  border: 1px solid rgba(47,125,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(47,125,255,0.04), 0 0 60px rgba(47,125,255,0.05), inset 0 1px 0 rgba(47,125,255,0.07);
}
.brand-card:hover {
  box-shadow: 0 16px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(47,125,255,0.1), 0 0 100px rgba(47,125,255,0.1), inset 0 1px 0 rgba(47,125,255,0.1);
}
.brand-card-shine {
  position: absolute;
  top: -40%; left: -30%;
  width: 150%; height: 150%;
  background: linear-gradient(135deg, rgba(47,125,255,0.06) 0%, rgba(0,229,255,0.03) 30%, transparent 55%);
  pointer-events: none;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,0.3), rgba(0,229,255,0.2), rgba(47,125,255,0.3), transparent);
  pointer-events: none;
}
.brand-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,125,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,125,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  border-radius: inherit;
}
.brand-sym-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.brand-sym {
  width: 72px; height: 72px;
  mix-blend-mode: screen;
  opacity: 0.7;
}
.brand-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text2);
  font-style: normal;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  background: rgba(47,125,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(47,125,255,0.1);
  box-shadow: inset 0 1px 0 rgba(47,125,255,0.08);
}
.brand-card-sig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.bcs-line {
  width: 40px; height: 1px;
  background: var(--border);
}
.brand-card-sig span {
  font-size: 0.68rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text3);
  text-align: center;
}

/* ══════════════════════════════════════════════
   EARLY ACCESS CONSOLE
══════════════════════════════════════════════ */
.eac-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.eac-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,125,255,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.eac-wrap { max-width: 700px; margin: 0 auto; }
.eac-console {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47,125,255,0.2);
  background: rgba(5,7,18,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(47,125,255,0.04), 0 0 60px rgba(47,125,255,0.05), inset 0 1px 0 rgba(47,125,255,0.07);
  position: relative;
  z-index: 1;
}
.eac-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(47,125,255,0.04);
  border-bottom: 1px solid var(--border2);
}
.eac-controls { display: flex; gap: 6px; }
.eac-controls span {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.eac-controls span:nth-child(1) { background: rgba(239,68,68,0.6); }
.eac-controls span:nth-child(2) { background: rgba(234,179,8,0.6); }
.eac-controls span:nth-child(3) { background: rgba(34,197,94,0.6); }
.eac-title {
  flex: 1;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text3);
}
.eac-ping {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--text3);
}
.eac-ping-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 2s infinite;
}
.eac-form { padding: 28px 28px 24px; }
.eac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.fg { display: flex; flex-direction: column; gap: 6px; }
.fl {
  font-size: 0.78rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text2);
}
.fl-opt { font-weight: 400; color: var(--text3); }
.fi {
  background: rgba(47,125,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.fi:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,125,255,0.12), 0 0 20px rgba(47,125,255,0.08);
  background: rgba(47,125,255,0.06);
}
.fi::placeholder { color: var(--text3); }
.fi-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%235A6890' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
.fi-select option { background: var(--bg2); color: var(--text); }
.eac-micro {
  margin-top: 12px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text3);
}
.eac-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  text-align: center;
}
.eac-success[hidden] { display: none !important; }
.eac-check {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(55,255,206,0.08);
  border: 1px solid rgba(55,255,206,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eac-check svg { width: 26px; height: 26px; color: var(--mint); }
.eac-success p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
  max-width: 380px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(47,125,255,0.06);
  padding: 56px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,0.18), rgba(0,229,255,0.1), rgba(47,125,255,0.18), transparent);
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  height: 26px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 4px;
}
.footer-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
}
.footer-sub {
  font-size: 0.78rem;
  color: var(--text3);
}
.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-link {
  padding: 7px 14px;
  font-size: 0.85rem;
  color: var(--text3);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.footer-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border2);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy, .footer-made {
  font-size: 0.78rem;
  color: var(--text3);
}

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes lineReveal {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes portalSpin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes orbitCarrier {
  from { transform: rotate(0deg)   translateY(-220px); }
  to   { transform: rotate(360deg) translateY(-220px); }
}
@keyframes orbitCounter {
  from { transform: translate(-50%,-50%) rotate(0deg);    }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@keyframes routeDraw {
  to { stroke-dashoffset: 0; opacity: 0.5; }
}
@keyframes barPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes scanSlide {
  0%   { left: -2px;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes nodeRing {
  0%   { opacity: 0.5; r: var(--nr, 20); }
  70%  { opacity: 0;   r: calc(var(--nr, 20) * 1.8); }
  100% { opacity: 0;   r: calc(var(--nr, 20) * 2); }
}
@keyframes pulseLine {
  0%   { left: -40%; }
  100% { left: 140%; }
}
@keyframes holoSweep {
  0%   { left: -100%; }
  60%  { left: 160%; }
  100% { left: 160%; }
}
@keyframes borderGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes energyRing {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Hero system micro-labels ── */
.hero-sys {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.hero-sys-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(47,125,255,0.05);
  border: 1px solid rgba(47,125,255,0.1);
  border-radius: 4px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text3);
  white-space: nowrap;
}
.hero-sys-tag.tag-cyan { border-color: rgba(0,229,255,0.15); color: rgba(0,229,255,0.5); }
.hero-sys-tag.tag-violet { border-color: rgba(124,60,255,0.15); color: rgba(124,60,255,0.6); }
.hero-sys-tag.tag-mint { border-color: rgba(55,255,206,0.15); color: rgba(55,255,206,0.5); }

/* ── Portal ring glow enhancements ── */
.pr-xl::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg at 50% 50%,
    transparent 0deg,
    rgba(0,229,255,0.08) 60deg,
    transparent 120deg,
    rgba(47,125,255,0.07) 200deg,
    transparent 280deg,
    rgba(124,60,255,0.07) 320deg,
    transparent 360deg
  );
  pointer-events: none;
  animation: portalSpin 18s linear infinite;
}

/* ── Access core floating + gradient border ── */
.vq-wrap { animation: borderGrad 6s linear infinite, vqFloat 5s ease-in-out infinite; }
.vq-wrap:hover { animation-play-state: paused; }
@keyframes vqFloat {
  0%, 100% { transform: translate(-50%, calc(-50% + 0px)); }
  50%       { transform: translate(-50%, calc(-50% - 7px)); }
}

/* ── Section system labels ── */
.sys-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  padding: 4px 10px;
  background: rgba(47,125,255,0.04);
  border: 1px solid rgba(47,125,255,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}
.sys-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 2s infinite;
}

/* ── Trust window scan line ── */
.tw-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
  animation: twScanSlide 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes twScanSlide {
  0%   { top: 0; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}
@keyframes mpScanSlide {
  0%   { top: 38px;             opacity: 0; }
  6%   { opacity: 1; }
  92%  { opacity: 0.35; }
  100% { top: calc(100% - 2px); opacity: 0; }
}

/* ── Form status row ── */
.eac-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(47,125,255,0.04);
  border: 1px solid rgba(47,125,255,0.1);
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.eac-status-path { color: var(--text3); }
.eac-status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
}
.eac-status-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulseDot 1.6s infinite;
}

/* ── Map metrics (replaced map-stat) — styles now in map section block ── */

/* ── Orbit path gradient ── */
.orbit-path {
  border: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 48.5%, rgba(47,125,255,0.08) 49%, rgba(47,125,255,0.08) 50.5%, transparent 51%);
}

/* ── Nav scrolled glow ── */
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(47,125,255,0.1);
}

/* ── Worlds section card module ID ── */
.wc-id {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px 8px;
  background: linear-gradient(0deg, rgba(6,8,22,0.92) 0%, transparent 100%);
  font-size: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: color-mix(in srgb, var(--wc, var(--blue)) 45%, var(--text3));
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.wc:hover .wc-id { opacity: 0.7; }
.wc-foot { position: relative; z-index: 2; }

/* ══════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-left {
    align-items: center;
    order: 1;
  }
  .hero-right { order: 2; justify-content: center; }
  .hero-headline { align-items: center; }
  .hero-body { max-width: 560px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { align-self: center; }

  .access-core { width: 480px; height: 480px; }
  .pr-xl { width: 460px; height: 460px; }
  .pr-lg { width: 380px; height: 380px; }
  .pr-md { width: 310px; height: 310px; }
  .pr-sm { width: 250px; height: 250px; }
  .orbit-path { width: 360px; height: 360px; }
  .om-carrier { animation: orbitCarrier1024 24s linear infinite; }
  .om-pill    { animation: orbitCounter    24s linear infinite; }
  .omc-1 .om-pill { animation-delay: 0s; }
  .omc-2 .om-pill { animation-delay: -4s; }
  .omc-3 .om-pill { animation-delay: -8s; }
  .omc-4 .om-pill { animation-delay: -12s; }
  .omc-5 .om-pill { animation-delay: -16s; }
  .omc-6 .om-pill { animation-delay: -20s; }

  .cp-launch  { top: 30px;  left: 10px; }
  .cp-code    { top: 40px;  right: 10px; }
  .cp-morocco { bottom: 50px; right: 10px; }
  .cp-delivery { bottom: 40px; left: 8px; }

  .worlds-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-wide { grid-column: 1 / 3; }
  .map-layout   { grid-template-columns: 1fr; gap: 40px; }
  .map-visual   { order: -1; }
  .map-text     { text-align: center; }
  .map-chips    { justify-content: center; }
  .map-metrics  { justify-content: center; }
  .map-quote    { border-left: none; border-top: 2px solid var(--blue); padding: 12px 0 0; }
  .hero-sys     { justify-content: center; }
  .brand-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .brand-text   { align-items: center; }
  .brand-card-wrap { order: -1; }
}

@keyframes orbitCarrier1024 {
  from { transform: rotate(0deg)   translateY(-180px); }
  to   { transform: rotate(360deg) translateY(-180px); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links  { display: none; }
  .nav-badge  { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 72px 0; }
  .s-inner { padding: 0 20px; }
  .s-header { margin-bottom: 40px; }
  .hero-inner { padding: 0 20px; }
  .hero-sys { display: none; }
  .map-panel { border-radius: 14px; }
  .mp-header { padding: 10px 14px; }
  .mp-meta { display: none; }
  .map-chips { gap: 5px; }
  .map-chip { font-size: 0.54rem; padding: 3px 8px; }
  .map-metrics { gap: 8px; }
  .map-metric { padding: 10px 12px; }
  .mm-val { font-size: 1rem; }
  .eac-status-row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .wc-id { opacity: 0.45; }
  .eac-section::before { width: 380px; height: 380px; }
  .wc { padding: 24px 20px 20px; gap: 14px; }
  .wc-icon-wrap { width: 52px; height: 52px; }
  .wc-icon { width: 26px; height: 26px; }
  .worlds-grid { gap: 14px; }
  .tlc-bar-row { gap: 8px; }
  .bp-num { display: none; }

  .access-core { width: 340px; height: 340px; }
  .pr-xl { width: 330px; height: 330px; }
  .pr-lg { width: 270px; height: 270px; }
  .pr-md { width: 220px; height: 220px; }
  .pr-sm { width: 175px; height: 175px; }
  .orbit-path { width: 260px; height: 260px; }
  .om-carrier { animation: orbitCarrier768 24s linear infinite; }
  .omc-1 .om-pill { animation-delay: 0s; }
  .omc-2 .om-pill { animation-delay: -4s; }
  .omc-3 .om-pill { animation-delay: -8s; }
  .omc-4 .om-pill { animation-delay: -12s; }
  .omc-5 .om-pill { animation-delay: -16s; }
  .omc-6 .om-pill { animation-delay: -20s; }

  .vq-card { width: 250px; height: 157px; padding: 14px 16px 12px; }
  .vqc-brand { font-size: 0.68rem; gap: 5px; }
  .vqc-code  { font-size: 0.82rem; }
  .vqc-sym   { width: 16px; height: 16px; }

  .cp { padding: 6px 9px; font-size: 0.65rem; }
  .cp-launch   { top: 20px;  left: 6px; }
  .cp-code     { top: 26px;  right: 6px; }
  .cp-morocco  { bottom: 36px; right: 6px; }
  .cp-delivery { bottom: 26px; left: 4px; }
  .cp-val { font-size: 0.65rem; }
  .cp-bar { width: 40px; }

  .om-pill {
    padding: 4px 9px 4px 6px;
    font-size: 0.65rem;
    gap: 4px;
  }
  .om-icon { width: 12px; height: 12px; }

  .worlds-grid { grid-template-columns: 1fr; }
  .protocol-modules { flex-direction: column; gap: 8px; }
  .pm-connector { display: none; }

  .df-steps { gap: 4px; }
  .df-step { padding: 8px 10px; }
  .df-text { font-size: 0.75rem; }
  .df-arrow svg { width: 18px; }

  .tl-grid { grid-template-columns: 1fr; }
  .tl-wide { grid-column: 1; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-inner { padding: 0 20px; }

  .eac-grid { grid-template-columns: 1fr; }
  .eac-form { padding: 20px; }

  .brand-card { padding: 28px 22px; }
  .core-routes { display: none; }
  .nav-inner { padding: 0 20px; }
  .mobile-menu ul { padding: 16px 20px; }
  .protocol-console { padding: 0 20px; }
}

@keyframes orbitCarrier768 {
  from { transform: rotate(0deg)   translateY(-130px); }
  to   { transform: rotate(360deg) translateY(-130px); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { padding-bottom: 40px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .access-core { width: 280px; height: 280px; }
  .pr-xl { width: 272px; height: 272px; }
  .pr-lg { width: 224px; height: 224px; }
  .pr-md { width: 182px; height: 182px; }
  .pr-sm { width: 144px; height: 144px; }
  .orbit-path { width: 212px; height: 212px; }
  .om-carrier { animation: orbitCarrier480 24s linear infinite; }
  .vq-card { width: 210px; height: 132px; padding: 10px 12px; }
  .vqc-chip { display: none; }
  .cp { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .df-steps { flex-direction: column; align-items: flex-start; }
  .df-arrow { transform: rotate(90deg); }
  .footer-links { gap: 0; }
  .tw-body { padding: 18px 14px 14px; }
}

@keyframes orbitCarrier480 {
  from { transform: rotate(0deg)   translateY(-106px); }
  to   { transform: rotate(360deg) translateY(-106px); }
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hl-inner {
    transform: translateY(0) !important;
    animation: none !important;
    opacity: 1 !important;
  }
  .hl-gradient { animation: none !important; }
  .cursor-glow { display: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .om-carrier, .om-pill { animation: none !important; }
  .pr-xl, .pr-lg, .pr-md, .pr-sm { animation: none !important; }
  .cr { animation: none !important; opacity: 0.3 !important; stroke-dashoffset: 0 !important; }
  .m-route { animation: none !important; opacity: 0.4 !important; stroke-dashoffset: 0 !important; }
  .vq-wrap { animation: none !important; transform: translate(-50%, -50%) !important; }
  .vqc-shine { animation: none !important; }
}
