/* ════════════════════ RESET + TOKENS ════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

:root {
  --bg:      #0a101c;
  --bg2:     #0d1526;
  --bg3:     #121c30;
  --panel:   rgba(255,255,255,.045);
  --panel2:  rgba(255,255,255,.07);
  --line:    rgba(148,180,255,.16);
  --line2:   rgba(148,180,255,.26);
  --text:    #f2f6fd;
  --dim:     rgba(220,231,248,.74);
  --faint:   rgba(220,231,248,.5);
  --blue:    #3b82f6;
  --blue2:   #60a5fa;
  --cyan:    #22d3ee;
  --green:   #34d399;
  --amber:   #fbbf24;
  --gold:    #60a5fa;
  --grad:    #60a5fa;
  --font-h:  'Roboto', system-ui, sans-serif;
  --font-b:  'Roboto', system-ui, sans-serif;
  --font-m:  'Roboto', ui-monospace, monospace;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
h1,h2,h3,h4 { font-family: var(--font-h); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(96,165,250,.35); }

.wrap    { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-sm { max-width: 880px;  margin: 0 auto; padding: 0 28px; }

.mono {
  font-family: var(--font-m);
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.shimmer {
  color: #60a5fa;
  -webkit-text-fill-color: #60a5fa;
}
@keyframes shimmer { 0%,100% { background-position: 100% 0; } 50% { background-position: 0% 0; } }

/* ════════════════════ SCROLL PROGRESS ════════════════════ */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--grad); z-index: 200;
  box-shadow: 0 0 12px rgba(96,165,250,.6);
}

/* ════════════════════ NAV ════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,16,28,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--dim);
  padding: 7px 13px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  position: relative;
  font-size: 13px; font-weight: 600; color: #fff;
  padding: 9px 20px; border-radius: 100px;
  background: rgba(59,130,246,.16);
  border: 1px solid rgba(96,165,250,.35);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: rgba(59,130,246,.3);
  border-color: rgba(96,165,250,.6);
  box-shadow: 0 0 24px rgba(59,130,246,.35);
}
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: rgba(10,16,28,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 16px 28px 28px;
  flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--dim); padding: 12px 4px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ════════════════════ HERO ════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.68) saturate(.75) contrast(1.05);
}
.hero-media img { animation: kenburns 26s ease-in-out infinite alternate; }
.hero-media video { opacity: 0; transition: opacity 1.2s ease; }
.hero-media video.playing { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, 1.5%); }
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,16,28,.9) 0%, rgba(10,16,28,.76) 45%, rgba(10,16,28,.55) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  transform: translateZ(0); /* own compositor layer — keeps redraws off the video layer */
  /* Soft fade at all four edges so routes/pulses never hit a hard boundary. */
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent),
              linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent),
                      linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-composite: source-in;
}
.hero-glow-1, .hero-glow-2 {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 1;
}
.hero-glow-1 { width: 640px; height: 640px; top: -220px; left: -160px; background: rgba(37,99,235,.10); }
.hero-glow-2 { width: 520px; height: 520px; bottom: -200px; right: -120px; background: rgba(34,211,238,.06); }
.hero-grid-fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 120% 100% at 50% 45%, transparent 55%, rgba(10,16,28,.55) 100%);
}
.hero-layout {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 56px; }
  #hero { min-height: 0; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(52,211,153,.07);
  border: 1px solid rgba(52,211,153,.22);
  border-radius: 100px; padding: 7px 16px;
  font-family: var(--font-m); font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(214,226,245,.75);
  margin-bottom: 26px;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(52,211,153,.8); animation: pulse 1.8s ease-in-out infinite; will-change: transform, opacity; }
@keyframes pulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.4; transform:scale(.8)} }

.hero-h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -.035em;
  margin-bottom: 24px;
}
.hero-h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.15em; margin-bottom: -0.15em; }
.hero-h1 .word > span { display: inline-block; transform: translateY(110%); animation: wordUp .9s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes wordUp { to { transform: translateY(0); } }
.grad-text .word > span {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.hero-sub {
  font-size: 17px; color: var(--dim); line-height: 1.75;
  max-width: 520px; margin-bottom: 38px;
  opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .55s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .7s forwards; }

.btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  background: var(--grad); color: #04111f;
  font-size: 14.5px; font-weight: 700; font-family: var(--font-h);
  padding: 15px 32px; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 28px rgba(59,130,246,.35);
  overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0;
  width: 50%; transform: translateX(-160%) skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shine 4.2s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-160%) skewX(-22deg); } 100% { transform: translateX(360%) skewX(-22deg); } }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(59,130,246,.5); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04); color: var(--text);
  font-size: 14.5px; font-weight: 600; font-family: var(--font-h);
  padding: 15px 30px; border-radius: 100px;
  border: 1px solid var(--line2); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: rgba(148,180,255,.45); background: rgba(255,255,255,.07); }

.hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 44px;
  opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .85s forwards;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--faint); font-weight: 500; }
.hero-meta-item svg { flex-shrink: 0; }

/* ── Control tower card ── */
.ct-wrap { position: relative; opacity: 0; animation: fadeUp 1s cubic-bezier(.22,1,.36,1) .5s forwards; perspective: 1100px; }
.ct-wrap::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 20px;
  background: rgba(96,165,250,.25);
  z-index: 0;
}
.ct-card {
  position: relative; z-index: 1;
  background: #111b2e;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.ct-tilt { transform-style: preserve-3d; transition: transform .25s ease-out; will-change: transform; }
.ct-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.ct-header-l { display: flex; align-items: center; gap: 10px; }
.ct-dots { display: flex; gap: 5px; }
.ct-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.12); }
.ct-title { font-family: var(--font-m); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.ct-live {
  display: flex; align-items: center; gap: 6px;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.25);
  border-radius: 100px; padding: 3px 11px;
  font-family: var(--font-m); font-size: 9.5px; font-weight: 600; letter-spacing: .1em; color: var(--green);
}
.ct-body { padding: 20px; }
.ct-ship-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ct-ship-id {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(96,165,250,.09); border: 1px solid rgba(96,165,250,.22);
  border-radius: 7px; padding: 5px 12px;
  font-family: var(--font-m); font-size: 12px; font-weight: 600; color: var(--blue2); letter-spacing: .04em;
  transition: opacity .35s;
}
.ct-mode { font-family: var(--font-m); font-size: 10px; letter-spacing: .12em; color: var(--faint); text-transform: uppercase; transition: opacity .35s; }
.ct-route { position: relative; display: flex; justify-content: space-between; margin: 8px 4px 22px; }
.ct-route::before {
  content: ''; position: absolute; top: 5px; left: 12px; right: 12px; height: 2px;
  background: rgba(148,180,255,.12); border-radius: 2px;
}
.ct-route-fill {
  position: absolute; top: 5px; left: 12px; height: 2px;
  background: var(--grad); border-radius: 2px;
  box-shadow: 0 0 10px rgba(96,165,250,.6);
  transition: width 1s cubic-bezier(.22,1,.36,1);
}
.ct-stop { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ct-stop-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #111b2e; border: 2px solid rgba(148,180,255,.3);
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.ct-stop.done .ct-stop-dot { border-color: var(--green); background: var(--green); }
.ct-stop.active .ct-stop-dot { border-color: var(--blue2); background: var(--blue2); box-shadow: 0 0 14px rgba(96,165,250,.8); animation: pulse 1.6s ease-in-out infinite; }
.ct-stop-name { font-family: var(--font-m); font-size: 9.5px; letter-spacing: .06em; color: var(--faint); white-space: nowrap; transition: color .4s; }
.ct-stop.active .ct-stop-name { color: var(--blue2); }
.ct-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ct-stat {
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 11px; padding: 13px 15px;
}
.ct-stat-l { font-family: var(--font-m); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.ct-stat-v { font-size: 13.5px; font-weight: 600; transition: opacity .35s; }
.v-green { color: var(--green); } .v-blue { color: var(--blue2); } .v-amber { color: var(--amber); } .v-dim { color: var(--dim); }
.ct-feed { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 13px; }
.ct-feed-line {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-m); font-size: 10.5px; color: var(--faint);
  overflow: hidden; white-space: nowrap;
}
.ct-feed-line .tick { color: var(--green); }
.ct-fading { opacity: 0 !important; }

/* ════════════════════ STATS BAR ════════════════════ */
.stats-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); position: relative; z-index: 5; }
.stats-truck {
  position: absolute; top: -15px; left: 0; z-index: 6; pointer-events: none;
  animation: truckDrive 16s linear infinite;
  filter: drop-shadow(0 0 6px rgba(96,165,250,.7));
  will-change: transform;
}
@keyframes truckDrive {
  from { transform: translateX(-60px); }
  to   { transform: translateX(calc(100vw + 60px)); }
}
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 760px) { .stats-inner { grid-template-columns: repeat(2,1fr); } }
.stat-cell {
  padding: 34px 30px; border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 760px) {
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat-num {
  font-family: var(--font-h); font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1; margin-bottom: 7px;
}
.stat-num em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 12.5px; color: var(--faint); font-weight: 500; line-height: 1.5; }

/* ════════════════════ LOGO MARQUEE ════════════════════ */
.logo-strip { background: var(--bg); padding: 34px 0 38px; border-bottom: 1px solid var(--line); overflow: hidden; position: relative; }
.logo-strip-label { text-align: center; margin-bottom: 24px; color: var(--faint); }
.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: scrollRight 13s linear infinite;
  will-change: transform;
}
.marquee-track .logo-item { margin-right: 84px; }
@keyframes scrollRight { from { transform: translateX(-33.333%); } to { transform: translateX(0); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-33.333%); } }
.logo-item {
  font-family: var(--font-h); font-weight: 700; font-size: 16px;
  color: rgba(220,231,248,.45); white-space: nowrap; letter-spacing: .02em;
  transition: color .25s; flex-shrink: 0;
}
.logo-item:hover { color: rgba(214,226,245,.7); }

/* ════════════════════ SECTION BASE ════════════════════ */
section { position: relative; padding: 110px 0; }
.sec-line-top { border-top: 1px solid var(--line); }
.sh { margin-bottom: 64px; }
.sh.c { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-m); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue2); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blue2); opacity: .6; }
.sh.c .eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--blue2); opacity: .6; }
.s-h2 {
  font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px;
}
.s-p { font-size: 16px; color: var(--dim); line-height: 1.8; max-width: 560px; }
.sh.c .s-p { margin: 0 auto; }

/* ════════════════════ MEDIA BREAKS ════════════════════ */
.media-break {
  position: relative; height: 62vh; min-height: 420px; max-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.media-break .mb-media {
  position: absolute; inset: -12% 0;
  will-change: transform;
}
.media-break img, .media-break video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.85);
}
.media-break img { animation: kenburns 28s ease-in-out infinite alternate; }
.media-break video { opacity: 0; transition: opacity 1.2s ease; }
.media-break video.playing { opacity: 1; }
.media-break::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%, transparent 55%, rgba(10,16,28,.88) 100%);
}
.mb-content { position: relative; z-index: 2; width: 100%; padding-bottom: 56px; }
.mb-eyebrow {
  font-family: var(--font-m); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.mb-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--cyan); opacity: .7; }
.mb-h {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.15; max-width: 720px;
}
.mb-h em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ════════════════════ WHY MEDIA CARD ════════════════════ */
.why-media {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  aspect-ratio: 4/4.4;
  max-height: 560px;
}
.why-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.9);
}
.why-media::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,16,28,.5);
  pointer-events: none;
}
.why-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,11,20,.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line2); border-radius: 100px;
  padding: 8px 15px;
  font-family: var(--font-m); font-size: 10px; font-weight: 600; letter-spacing: .08em;
}
.why-chip .cdot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.why-chip.c1 { top: 22px; left: 20px; color: var(--green); }
.why-chip.c1 .cdot { background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,.8); }
.why-chip.c2 { top: 50%; right: 18px; color: var(--blue2); }
.why-chip.c2 .cdot { background: var(--blue2); box-shadow: 0 0 8px rgba(96,165,250,.8); }
.why-chip.c3 { bottom: 26px; left: 24px; color: var(--amber); }
.why-chip.c3 .cdot { background: var(--amber); box-shadow: 0 0 8px rgba(251,191,36,.8); }

/* ════════════════════ CROSSINGS TICKER ════════════════════ */
.ticker {
  overflow: hidden; position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 13px 0; margin-bottom: 56px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: scroll 32s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 26px; padding-right: 26px;
  font-family: var(--font-m); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--faint);
  white-space: nowrap;
}
.ticker-item::after { content: '⬢'; color: rgba(96,165,250,.45); font-size: 8px; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ════════════════════ ZIGHT ════════════════════ */
#zight { background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,.07), transparent), var(--bg2); }
.zight-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 920px) { .zight-layout { grid-template-columns: 1fr; gap: 52px; } }
.zight-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(96,165,250,.08); border: 1px solid rgba(96,165,250,.25);
  border-radius: 100px; padding: 6px 16px 6px 7px;
  font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 22px;
}
.zight-pill-tag {
  background: var(--grad); color: #04111f;
  font-family: var(--font-m); font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  padding: 4px 10px; border-radius: 100px;
}
.zight-steps { margin-top: 34px; display: flex; flex-direction: column; }
.zstep { display: flex; gap: 18px; padding: 19px 0; border-top: 1px solid var(--line); }
.zstep:last-child { border-bottom: 1px solid var(--line); }
.zstep-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m); font-size: 12px; font-weight: 600; color: var(--blue2);
}
.zstep-h { font-size: 15px; font-weight: 600; margin-bottom: 4px; letter-spacing: -.01em; }
.zstep-p { font-size: 13.5px; color: var(--faint); line-height: 1.7; }
.zight-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ── Email demo ── */
.email-shell { position: relative; }
.email-shell::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.12), transparent 70%);
  pointer-events: none;
}
.email-card {
  position: relative;
  background: #101a2c; border: 1px solid var(--line2);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 36px 80px rgba(0,0,0,.5);
}
.em-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.em-bar span:nth-child(1) { width: 10px; height: 10px; border-radius: 50%; background: #fc5c57; }
.em-bar span:nth-child(2) { width: 10px; height: 10px; border-radius: 50%; background: #fdbc2c; }
.em-bar span:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: #25c940; }
.em-bar-title { font-family: var(--font-m); font-size: 10.5px; letter-spacing: .1em; color: var(--faint); margin-left: 8px; text-transform: uppercase; }
.em-msg { padding: 18px 20px; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.em-msg.show { opacity: 1; transform: none; }
.em-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.em-from { font-size: 12.5px; font-weight: 600; }
.em-time { font-family: var(--font-m); font-size: 10px; color: var(--faint); }
.em-to { font-size: 11.5px; color: var(--faint); margin-bottom: 7px; }
.em-to b { color: var(--blue2); font-weight: 600; }
.em-subject { font-size: 12.5px; font-weight: 600; color: var(--dim); margin-bottom: 7px; }
.em-body { font-size: 12.5px; color: var(--dim); line-height: 1.65; }
.em-attach-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.em-attach {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(96,165,250,.08); border: 1px solid rgba(96,165,250,.22);
  border-radius: 7px; padding: 5px 11px;
  font-family: var(--font-m); font-size: 10.5px; font-weight: 500; color: var(--blue2);
}
.em-attach svg { width: 11px; height: 11px; }

.zight-processing {
  display: none; align-items: center; gap: 10px;
  padding: 13px 20px; border-bottom: 1px solid var(--line);
  font-family: var(--font-m); font-size: 11px; color: var(--cyan); letter-spacing: .06em;
}
.zight-processing.show { display: flex; }
.spinner {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid rgba(34,211,238,.2); border-top-color: var(--cyan);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.em-msg.zr {
  background: rgba(37,99,235,.08);
  border-left: 2px solid var(--blue2); border-bottom: 0;
  max-height: 0; padding-top: 0; padding-bottom: 0; overflow: hidden;
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1),
              max-height .7s cubic-bezier(.22,1,.36,1), padding .7s cubic-bezier(.22,1,.36,1);
}
.em-msg.zr.show { max-height: 820px; padding-top: 18px; padding-bottom: 18px; }
.zr .em-from { color: var(--blue2); }
.entry-table { margin-top: 10px; background: rgba(10,16,28,.55); border: 1px solid var(--line2); border-radius: 10px; padding: 11px 14px; }
.et-row { display: flex; justify-content: space-between; padding: 3px 0; font-size: 11.5px; opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .4s; }
.et-row.show { opacity: 1; transform: none; }
.et-l { color: var(--faint); }
.et-v { font-weight: 600; font-family: var(--font-m); font-size: 11px; }
.et-div { height: 1px; background: var(--line); margin: 7px 0; }
.filed-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.3);
  border-radius: 100px; padding: 5px 13px; margin-top: 11px;
  font-family: var(--font-m); font-size: 10.5px; font-weight: 600; color: var(--green); letter-spacing: .04em;
  opacity: 0; transform: scale(.85); transition: opacity .45s, transform .45s cubic-bezier(.34,1.56,.64,1);
}
.filed-badge.show { opacity: 1; transform: scale(1); }
.filed-badge .fdot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(52,211,153,.8); }

.zight-result { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 13px; overflow: hidden; margin-top: 22px; position: relative; }
.zres-cell { background: var(--bg2); padding: 17px 12px; text-align: center; }
.zres-num { font-family: var(--font-h); font-size: 1.55rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.zres-num em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.zres-label { font-size: 11px; color: var(--faint); margin-top: 5px; line-height: 1.45; }

/* ════════════════════ SERVICES ════════════════════ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
.spot-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 38px 34px;
  transition: border-color .3s, transform .3s;
}
.spot-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(96,165,250,.10), transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.spot-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.spot-card:hover::before { opacity: 1; }
.svc-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(96,165,250,.08); border: 1px solid rgba(96,165,250,.22);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-h { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.svc-p { font-size: 14.5px; color: var(--dim); line-height: 1.75; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.svc-tag {
  font-family: var(--font-m); font-size: 10px; font-weight: 500; letter-spacing: .08em;
  color: var(--faint); background: rgba(255,255,255,.04);
  border: 1px solid var(--line); border-radius: 100px; padding: 4px 12px;
  text-transform: uppercase;
}

/* ════════════════════ PLATFORM ════════════════════ */
#platform { background: var(--bg2); }
.plat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 920px) { .plat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .plat-grid { grid-template-columns: 1fr; } }
.plat-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 15px; padding: 28px 24px;
  transition: border-color .3s, background .3s;
}
.plat-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(96,165,250,.09), transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.plat-card:hover { border-color: var(--line2); }
.plat-card:hover::before { opacity: 1; }
.plat-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(96,165,250,.08); border: 1px solid rgba(96,165,250,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.plat-icon svg { width: 20px; height: 20px; }
.plat-h { font-size: 15px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.plat-p { font-size: 13px; color: var(--faint); line-height: 1.7; }

/* ════════════════════ CORRIDOR MAP ════════════════════ */
#corridor { background: radial-gradient(ellipse 60% 45% at 50% 100%, rgba(37,99,235,.08), transparent), var(--bg); overflow: hidden; }
.map-shell {
  position: relative;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px 20px 12px; margin-bottom: 60px;
  overflow: hidden;
}
.map-shell::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(148,180,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,180,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 40%, transparent 100%);
}
.map-svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.map-label { font-family: var(--font-m); font-size: 10px; letter-spacing: .06em; fill: rgba(220,231,248,.78); }
.map-label-dim { font-family: var(--font-m); font-size: 9px; letter-spacing: .08em; fill: rgba(220,231,248,.45); text-transform: uppercase; }
.flow-path { stroke-dasharray: 7 9; animation: flow 1.2s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -16; } }
.node-pulse { animation: nodePulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes nodePulse { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 0; transform: scale(2.6); } }

.corr-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (max-width: 820px) { .corr-stats { grid-template-columns: repeat(2,1fr); } }
.corr-cell { background: var(--bg2); padding: 28px 24px; }
.corr-num { font-family: var(--font-h); font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.corr-label { font-size: 12.5px; color: var(--dim); margin-top: 8px; line-height: 1.5; }
.corr-src { font-family: var(--font-m); font-size: 8.5px; letter-spacing: .04em; color: var(--faint); margin-top: 6px; opacity: .7; }

/* ════════════════════ WHO ════════════════════ */
#who { background: var(--bg2); }
.who-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 920px) { .who-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 15px; padding: 30px 24px;
  transition: border-color .3s, transform .3s;
}
.who-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(96,165,250,.09), transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.who-card:hover { border-color: var(--line2); transform: translateY(-3px); }
.who-card:hover::before { opacity: 1; }
.who-num { font-family: var(--font-m); font-size: 11px; font-weight: 600; color: var(--blue2); letter-spacing: .1em; margin-bottom: 16px; }
.who-h { font-size: 16px; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
.who-p { font-size: 13px; color: var(--faint); line-height: 1.7; }

/* ════════════════════ HOW ════════════════════ */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; position: relative; }
@media (max-width: 820px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 34px 28px;
  transition: border-color .3s;
}
.how-card:hover { border-color: var(--line2); }
.how-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m); font-size: 14px; font-weight: 600; color: var(--blue2);
  margin-bottom: 22px;
}
.how-h { font-size: 16.5px; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
.how-p { font-size: 13.5px; color: var(--faint); line-height: 1.75; }
.how-note { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-m); font-size: 10.5px; font-weight: 500; letter-spacing: .05em; color: var(--cyan); }

/* ════════════════════ WHY ════════════════════ */
#why { background: var(--bg2); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
@media (max-width: 880px) { .why-layout { grid-template-columns: 1fr; gap: 48px; } }
.why-points { display: flex; flex-direction: column; margin-top: 30px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.why-point:last-child { border-bottom: 1px solid var(--line); }
.why-check {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; margin-top: 2px;
  background: rgba(52,211,153,.08); border: 1px solid rgba(52,211,153,.3);
  display: flex; align-items: center; justify-content: center;
}
.why-point-h { font-size: 14px; font-weight: 600; margin-bottom: 4px; letter-spacing: -.01em; }
.why-point-p { font-size: 13px; color: var(--faint); line-height: 1.7; }

/* ════════════════════ FAQ ════════════════════ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 24px 4px; color: var(--text);
  font-family: var(--font-h); font-size: 17px; font-weight: 600; letter-spacing: -.01em;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue2); }
.faq-chev { flex-shrink: 0; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.faq-item.open .faq-chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.22,1,.36,1); }
.faq-a p { font-size: 14.5px; color: var(--dim); line-height: 1.8; padding: 0 4px 26px; max-width: 760px; }
@media (max-width: 640px) { .faq-q { font-size: 15.5px; } }

/* ════════════════════ CTA ════════════════════ */
#cta {
  background:
    var(--bg2);
  border-top: 1px solid var(--line);
}
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 880px) { .cta-layout { grid-template-columns: 1fr; gap: 52px; } }
.cta-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 30px; }
.cta-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--dim); }
.chk {
  width: 21px; height: 21px; border-radius: 7px; flex-shrink: 0; margin-top: 2px;
  background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.3);
  display: flex; align-items: center; justify-content: center;
}
.form-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line2);
  border-radius: 20px; padding: 38px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.form-title { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 5px; }
.form-sub { font-size: 13px; color: var(--faint); margin-bottom: 26px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .frow { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.field.full { grid-column: 1/-1; }
.field label { font-family: var(--font-m); font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
input, select, textarea {
  font-family: var(--font-b); font-size: 14px; color: var(--text);
  background: rgba(10,16,28,.5); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 15px; width: 100%;
  outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(214,226,245,.22); }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
textarea { resize: vertical; min-height: 96px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(214,226,245,.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 38px;
  cursor: pointer;
}
select option { background: #101a2c; color: var(--text); }
.form-btn {
  width: 100%; padding: 15px;
  font-family: var(--font-h); font-size: 15px; font-weight: 700;
  background: var(--grad); color: #04111f;
  border: 0; border-radius: 100px; cursor: pointer; margin-top: 6px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(37,99,235,.3);
}
.form-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 34px rgba(37,99,235,.45); }
.form-btn:disabled { opacity: .6; cursor: default; transform: none; }
.form-note { text-align: center; font-size: 11.5px; color: var(--faint); margin-top: 12px; }
.form-error { display: none; color: #f87171; font-size: 12.5px; margin-bottom: 10px; }

/* ════════════════════ FOOTER ════════════════════ */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 48px 0; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-h); font-size: 16px; font-weight: 700; }
.footer-tag { font-size: 12px; color: var(--faint); margin-top: 8px; max-width: 320px; line-height: 1.6; }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 26px; justify-content: flex-end; margin-bottom: 12px; }
.footer-links a { font-size: 13px; color: var(--faint); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: rgba(220,231,248,.4); }
.footer-addresses { display: flex; gap: 32px; margin-top: 16px; flex-wrap: wrap; justify-content: flex-end; }
.footer-addresses address { font-style: normal; font-size: 11px; color: rgba(220,231,248,.35); line-height: 1.7; }
.footer-addresses address strong { color: rgba(220,231,248,.55); font-size: 11px; }
.footer-copy a { color: rgba(220,231,248,.55); }
@media (max-width: 640px) { .footer-right { text-align: left; } .footer-links { justify-content: flex-start; } }

/* ════════════════════ MOBILE OPTIMIZATION ════════════════════ */
/* All rules are max-width gated — desktop layout is unchanged. */
@media (max-width: 640px) {
  /* iOS zooms the page when a focused input is < 16px. Stop that. */
  input, select, textarea { font-size: 16px; }

  /* Tighter vertical rhythm so the page isn't cavernous on a phone */
  section { padding: 70px 0; }
  .sh { margin-bottom: 40px; }

  #hero { padding: 104px 0 64px; }
  .hero-sub { margin-bottom: 30px; }
  .hero-meta { gap: 14px 24px; margin-top: 32px; }

  /* More usable text width on narrow screens */
  .wrap, .wrap-sm { padding: 0 20px; }

  /* Trim chunky card padding so copy isn't squeezed */
  .spot-card { padding: 30px 24px; }
  .how-card  { padding: 28px 22px; }
  .form-card { padding: 28px 22px; }
  .ct-body   { padding: 18px 16px; }
  .stat-cell { padding: 28px 20px; }

  /* Section spacers */
  .map-shell { margin-bottom: 40px; }
  .ticker    { margin-bottom: 40px; }
}

@media (max-width: 400px) {
  .wrap, .wrap-sm { padding: 0 16px; }
}

/* iOS Safari fixes — gated to phone widths, desktop/tablet untouched. */
@media (max-width: 760px) {
  /* The hero rAF canvas is skipped in JS on phones; drop the masked layer too. */
  #hero-canvas { display: none; }

  /* blur(120px) on large layers is brutal to repaint in mobile Safari. */
  .hero-glow-1, .hero-glow-2 { display: none; }

  /* Continuously scaling full-bleed images cause scroll jank on iOS. */
  .hero-media img, .media-break img { animation: none; transform: none; }

  /* WebKit blanks -webkit-background-clip:text when the element animates a
     transform inside an overflow:hidden mask. Render the hero words
     statically — the final appearance is identical. */
  .hero-h1 .word { overflow: visible; }
  .hero-h1 .word > span { transform: none; animation: none; }
}

/* ════════════════════ REDUCED MOTION ════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-sub, .hero-btns, .hero-meta, .ct-wrap { opacity: 1; }
  .hero-h1 .word > span { transform: none; }
  #hero-canvas { display: none; }
}
