/* ============================================================
   AC Logistics — dark premium theme
   ============================================================ */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #040b18;
  --bg-2: #071228;
  --panel: rgba(13, 30, 56, 0.55);
  --line: rgba(80, 160, 220, 0.16);
  --blue: #1f6baa;
  --cyan: #3cc5da;
  --cyan-soft: rgba(60, 197, 218, 0.14);
  --text: #eaf3fb;
  --muted: #9db4c9;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 18px;
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04121f;
  background: linear-gradient(120deg, #4fd2e6, #2b8fd4);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 30px rgba(46, 160, 220, 0.35);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(46, 160, 220, 0.5); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(140, 200, 240, 0.35);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--cyan); background: var(--cyan-soft); box-shadow: none; }
.btn--small { padding: 10px 22px; font-size: 12px; }
.btn--large { padding: 18px 42px; font-size: 15px; }

/* ---------------- Header ---------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 28px;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.header.is-scrolled {
  background: rgba(4, 11, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 8px 28px;
}
.header__logo { display: flex; align-items: center; }
.header__logo img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: height 0.35s ease;
}
.header.is-scrolled .header__logo img { height: 48px; }
.header__nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.header__nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s ease;
}
.header__nav a:hover { color: var(--text); }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.header__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(4, 11, 24, 0.96);
  backdrop-filter: blur(18px);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
body.nav-open .header__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
body.nav-open .header__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------------- Operation / 3D scrolly ---------------- */
.operation {
  position: relative;
  height: 420vh;
  background:
    radial-gradient(120% 90% at 70% 0%, #0d2244 0%, #071228 42%, #040b18 100%);
}
.operation__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
#bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transform-origin: center;
  opacity: 0; /* fades in over the poster on first scroll */
}
.operation__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transform-origin: center;
  pointer-events: none;
}
.operation__shade { position: absolute; inset: 0; pointer-events: none; }
.operation__shade--top {
  background: linear-gradient(180deg, rgba(4, 11, 24, 0.85), transparent 26%);
}
.operation__shade--bottom {
  background: linear-gradient(0deg, rgba(4, 11, 24, 0.9), transparent 30%);
}

/* Hero overlay */
.hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(6vw, 28px);
  padding-right: 28px;
  max-width: 900px;
  pointer-events: none;
}
.hero a { pointer-events: auto; }
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__title span { display: block; }
.hero__sub {
  max-width: 480px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll hint */
.operation__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}
.operation__scrollhint i {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--cyan), transparent);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stage overlays */
.stage {
  position: absolute;
  left: max(6vw, 28px);
  bottom: 12vh;
  max-width: 520px;
  padding-right: 28px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.stage.is-active { opacity: 1; transform: translateY(0); }
.stage__kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.stage__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.stage__body { color: var(--muted); font-size: clamp(14px, 1.3vw, 16.5px); max-width: 460px; }

/* Progress rail */
.rail {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rail.is-visible { opacity: 1; }
.rail__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(140, 200, 240, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.rail__dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  transform: scale(1.35);
}
.rail__fill { display: none; }

/* ---------------- Generic sections ---------------- */
.section { padding: 130px 0; position: relative; }
.section__eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.section__title--wide { max-width: 900px; text-transform: none; }
.section__title em {
  font-style: normal;
  background: linear-gradient(100deg, #4fd2e6, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Services cards */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 34px 30px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 197, 218, 0.45);
  background: rgba(17, 40, 72, 0.7);
}
.card__icon {
  width: 34px; height: 34px;
  color: var(--cyan);
  margin-bottom: 22px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.card p { color: var(--muted); font-size: 14.5px; }

/* Technology */
.tech { background: var(--bg-2); }
.tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.tech__item { border-top: 1px solid var(--line); padding-top: 24px; }
.tech__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  background: linear-gradient(100deg, #4fd2e6, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.tech__unit { font-size: 20px; }
.tech__item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.tech__item p { color: var(--muted); font-size: 14px; }

/* Stats */
.stats {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(43, 143, 212, 0.16), transparent 60%),
    var(--bg);
  padding: 100px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff, #79c7e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Clients marquee */
.clients { background: var(--bg); overflow: hidden; }
.clients .section__eyebrow { text-align: center; margin-bottom: 50px; }
.marquee { display: flex; flex-direction: column; gap: 22px; margin-bottom: 80px; }
.marquee__row { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__row:hover .marquee__track { animation-play-state: paused; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  will-change: transform;
  animation: marquee 38s linear infinite;
}
.marquee__row--reverse .marquee__track { animation-direction: reverse; animation-duration: 44s; }
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: rgba(157, 180, 201, 0.6);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marquee__track span:hover { color: var(--text); }
.marquee__track img {
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.marquee__track img:hover { filter: none; opacity: 1; }
/* logos that ship on a solid white background: inverted into dark chips */
.marquee__track img.inv { filter: invert(1) grayscale(1) brightness(1.7); border-radius: 5px; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - 32px)); }
}
.integrations__label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.integrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px 34px;
  max-width: 980px;
  margin-inline: auto;
}
.integrations img {
  height: 22px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.integrations img:hover { filter: none; opacity: 1; }
.integrations img.inv { filter: invert(1) grayscale(1) brightness(1.7); border-radius: 5px; }

/* Standards */
.standards { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.standards__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.standards__body { color: var(--muted); max-width: 480px; }
.standards .section__title { margin-bottom: 24px; }
.standards__list { list-style: none; display: flex; flex-direction: column; }
.standards__list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.standards__list li:first-child { border-top: 1px solid var(--line); }
.standards__list strong {
  font-family: var(--font-display);
  font-size: 18px;
  min-width: 110px;
  background: linear-gradient(100deg, #4fd2e6, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.standards__list span { color: var(--muted); font-size: 14px; }

/* CTA */
.cta { text-align: center; overflow: hidden; }
.cta__inner { position: relative; padding: 40px 0; }
.cta__bunny {
  width: 120px;
  margin: 0 auto 34px;
  filter: brightness(1.1) drop-shadow(0 6px 30px rgba(60, 197, 218, 0.35));
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.cta__sub { color: var(--muted); max-width: 520px; margin: 0 auto 40px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.footer__logo img { height: 44px; width: auto; }
.footer__credits { font-size: 11px; opacity: 0.6; }
.footer__nav { display: flex; gap: 22px; margin-left: auto; }
.footer__nav a { font-size: 13px; color: var(--muted); transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--text); }
.footer__note { width: 100%; font-size: 12.5px; color: rgba(157, 180, 201, 0.55); }
.footer__note a { color: var(--muted); }
.footer__note a:hover { color: var(--cyan); }

/* Reveal animation (hero) */
.reveal { opacity: 0; transform: translateY(26px); animation: reveal 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.hero__eyebrow.reveal { animation-delay: 0.15s; }
.hero__title .reveal:nth-child(1) { animation-delay: 0.25s; }
.hero__title .reveal:nth-child(2) { animation-delay: 0.37s; }
.hero__title .reveal:nth-child(3) { animation-delay: 0.49s; }
.hero__sub.reveal { animation-delay: 0.65s; }
.hero__actions.reveal { animation-delay: 0.8s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

/* ---------------- Responsive ---------------- */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .standards__inner { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 760px) {
  .header { padding: 10px 18px; }
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; margin-left: auto; }
  .header__logo img { height: 104px; }
  .header.is-scrolled .header__logo img { height: 38px; }
  .operation { height: 360vh; }
  .hero { justify-content: flex-end; padding-bottom: 16vh; }
  .stage { left: 22px; right: 22px; bottom: 9vh; padding-right: 0; }
  .rail { right: 16px; }
  .cards, .tech__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 90px 0; }
  .marquee__track { gap: 40px; }
  .marquee__track span { font-size: 20px; }
  .marquee__track img { height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation-duration: 0.01s; animation-delay: 0s; }
  .operation__scrollhint i { animation: none; }
  .marquee__track { animation-duration: 200s; }
}

/* ---------------- Anchor offset for the fixed header ---------------- */
section[id] { scroll-margin-top: 80px; }

/* ---------------- Track ---------------- */
.track { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.track .section__title { margin-bottom: 40px; }
.track__box {
  max-width: 860px;
  margin-inline: auto;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.track__form { display: flex; gap: 14px; }
.track__input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(140, 200, 240, 0.28);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.track__input::placeholder { color: rgba(157, 180, 201, 0.5); }
.track__input:focus {
  border-color: var(--cyan);
  background: rgba(60, 197, 218, 0.08);
  box-shadow: 0 0 0 4px rgba(60, 197, 218, 0.12);
}
.track__input.is-error { border-color: #ff5c5c; animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.track__hint { margin-top: 14px; font-size: 13px; color: var(--muted); }
.track__loading[hidden], .track__result[hidden] { display: none; }
.track__loading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14.5px;
}
.track__spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(60, 197, 218, 0.25);
  border-top-color: var(--cyan);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.track__result { margin-top: 30px; }
.track__result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.track__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.track__number strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.03em;
}
.track__head-actions { display: flex; align-items: center; gap: 14px; }
.track__pill {
  position: relative;
  padding: 8px 16px 8px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(60, 197, 218, 0.4);
}
.track__pill::before {
  content: '';
  position: absolute;
  left: 11px; top: 50%;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.45; transform: translateY(-50%) scale(0.8); }
}
.track__timeline {
  list-style: none;
  position: relative;
  margin-top: 26px;
  padding-left: 26px;
}
.track__timeline::before {
  content: '';
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(rgba(60, 197, 218, 0.5), rgba(60, 197, 218, 0.08));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.track__timeline.is-drawn::before { transform: scaleY(1); }
.track__item {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 14px 0 14px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.track__item.is-in { opacity: 1; transform: translateY(0); }
.track__dot {
  position: absolute;
  left: -26px; top: 22px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(60, 197, 218, 0.55);
}
.track__item.is-active .track__dot {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.track__item-info { flex: 1; }
.track__item-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 3px;
}
.track__item-info p { font-size: 13.5px; color: var(--muted); }
.track__item-info span {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(157, 180, 201, 0.7);
}
.track__item.is-active .track__item-info strong { color: var(--cyan); }
.track__item time {
  font-size: 12.5px;
  color: var(--muted);
  text-align: right;
  line-height: 1.45;
  white-space: nowrap;
}
.track__item.is-active time { color: var(--text); }

/* ---------------- Success stories ---------------- */
.cases { background: var(--bg-2); }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  position: relative;
  padding: 32px 30px 26px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.case-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.case-card:hover { transform: translateY(-6px); border-color: rgba(60, 197, 218, 0.45); background: rgba(17, 40, 72, 0.7); }
.case-card:hover::after { opacity: 1; }
.case-card__sector {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.case-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.case-card__metric {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60, 197, 218, 0.35);
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(60, 197, 218, 0.08);
}

/* ---------------- FAQ ---------------- */
.faq { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.faq__lede { color: var(--muted); max-width: 380px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--cyan); }
.faq__icon {
  position: relative;
  flex: none;
  width: 14px; height: 14px;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  transition: transform 0.3s ease;
}
.faq__icon::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq__icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg) scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq__a p {
  padding: 0 30px 24px 4px;
  color: var(--muted);
  font-size: 14.5px;
}
.faq__item.is-open .faq__a { max-height: 320px; }

/* ---------------- Contact / CTA ---------------- */
.cta { background: radial-gradient(80% 120% at 50% 0%, rgba(43, 143, 212, 0.12), transparent 60%), var(--bg); }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.cta__info .cta__bunny { width: 110px; margin: 0 0 30px; filter: brightness(1.1) drop-shadow(0 6px 30px rgba(60, 197, 218, 0.35)); }
.cta__title { text-align: left; margin-bottom: 22px; }
.cta__sub { text-align: left; margin: 0 0 40px; }
.cta__meta { list-style: none; display: flex; flex-direction: column; }
.cta__meta li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cta__meta li:first-child { border-top: 1px solid var(--line); }
.cta__meta span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.cta__meta a, .cta__meta p { font-size: 14.5px; color: var(--text); }
.cta__meta a:hover { color: var(--cyan); }
.cta__form {
  padding: 38px 34px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta__form input, .cta__form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(140, 200, 240, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.cta__form input::placeholder, .cta__form textarea::placeholder { color: rgba(157, 180, 201, 0.5); }
.cta__form input:focus, .cta__form textarea:focus {
  border-color: var(--cyan);
  background: rgba(60, 197, 218, 0.08);
  box-shadow: 0 0 0 4px rgba(60, 197, 218, 0.12);
}
.cta__form .is-error { border-color: #ff5c5c; }
.cta__submit { margin-top: 6px; }
.cta__submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.cta__note { min-height: 20px; font-size: 13.5px; color: var(--cyan); text-align: center; }

/* ---------------- Footer ---------------- */
.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}
.footer__brand p { margin-top: 18px; font-size: 13.5px; color: var(--muted); max-width: 300px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col strong {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.footer__col a { font-size: 13.5px; color: var(--muted); transition: color 0.2s ease; }
.footer__col a:hover { color: var(--cyan); }

/* ---------------- New-section responsive ---------------- */
@media (max-width: 1020px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta__grid { grid-template-columns: 1fr; gap: 50px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .track__box { padding: 24px 20px; }
  .track__form { flex-direction: column; }
  .track__result-head { flex-direction: column; align-items: flex-start; }
  .cases__grid { grid-template-columns: 1fr; }
  .cta__form { padding: 26px 20px; }
  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------------- Scroll reveals ---------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Case card logos ---------------- */
.case-card__logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}

/* ---------------- Persistent tracking widget — kinetic type + aurora (no card) ---------------- */
.track-widget {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: min(430px, 32vw);
  opacity: 0;
  translate: 32px 0;
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), translate 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.track-widget.is-visible { opacity: 1; translate: 0 0; }

/* drifting aurora behind */
.track-widget__aurora {
  position: absolute;
  inset: -45px -55px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(50% 55% at 35% 40%, rgba(60, 197, 218, 0.24), transparent 72%),
    radial-gradient(55% 60% at 70% 65%, rgba(43, 143, 212, 0.18), transparent 72%);
  filter: blur(55px);
  animation: auroraDrift 11s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes auroraDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(26px, -20px) scale(1.12); }
}

/* kinetic title lines */
.track-widget__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 34px;
  text-shadow: 0 4px 30px rgba(4, 11, 24, 0.55);
}
.track-widget__title span { display: block; overflow: hidden; }
.track-widget__title i {
  display: block;
  font-style: normal;
  transform: translateY(118%) skewY(4deg);
  transform-origin: left bottom;
}
.track-widget.is-visible .track-widget__title i { animation: heroLine 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.track-widget.is-visible .track-widget__title span:nth-child(2) i { animation-delay: 0.16s; }
.track-widget__title em {
  font-style: normal;
  background: linear-gradient(100deg, #4fd2e6, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* label + live pulse */
.track-widget__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  transition: color 0.25s ease;
}
.track-widget__label::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
  flex: none;
}
.track-widget__field:focus-within .track-widget__label { color: var(--cyan); }

/* underline field */
.track-widget__row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.track-widget__row input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(140, 200, 240, 0.35);
  border-radius: 0;
  padding: 12px 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.track-widget__row input:focus {
  border-bottom-color: var(--cyan);
  box-shadow: 0 14px 24px -16px rgba(60, 197, 218, 0.55);
}

/* gradient button with rotating charge ring */
.track-widget__row button {
  position: relative;
  flex: none;
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #04121f;
  background: linear-gradient(120deg, #4fd2e6, #2b8fd4);
  box-shadow: 0 10px 30px rgba(46, 160, 220, 0.45);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}
.track-widget__row button::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0deg 70deg, transparent 70deg 360deg);
  animation: chargeSpin 2.6s linear infinite;
  opacity: 0.9;
  z-index: -1;
  filter: blur(1px);
}
.track-widget__row button::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(6, 16, 32, 0.9);
  z-index: -1;
}
.track-widget__row button svg { width: 26px; height: 26px; }
.track-widget__row button:hover { transform: scale(1.07); box-shadow: 0 14px 36px rgba(46, 160, 220, 0.65); }
@keyframes chargeSpin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .track-widget {
    top: 128px;
    right: 20px;
    left: 20px;
    width: auto;
    transform: none;
  }
  .track-widget__title { font-size: 34px; margin-bottom: 22px; }
  .track-widget__row button { width: 54px; height: 54px; }
  .rail { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .track-widget__aurora { animation: none; }
  .track-widget__row button::before { animation: none; opacity: 0.4; }
  .track-widget__title i { transform: none; animation: none !important; }
}

/* ---------------- Case card logos ---------------- */
.case-card__logo {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 16px;
}


/* ============================================================
   Premium polish
   ============================================================ */

/* text selection + scrollbar */
::selection { background: rgba(60, 197, 218, 0.35); color: #eaf3fb; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #12293f; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #1b3d5c; }
html { scrollbar-color: #12293f var(--bg); }

/* accessible focus */
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* film grain (subtle, sits above everything, never interactive) */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 40;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* nav links: animated underline */
.header__nav a {
  position: relative;
  padding: 6px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.header__nav a:hover::after { transform: scaleX(1); }

/* eyebrow with dash */
.section__eyebrow { display: flex; align-items: center; gap: 12px; }
.section__eyebrow::before {
  content: '';
  flex: none;
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.clients .section__eyebrow { justify-content: center; }
.clients .section__eyebrow::before { display: none; }

/* buttons: sliding arrow */
.btn::after {
  content: '→';
  display: inline-block;
  margin-left: 2px;
  transform: translateX(0);
  transition: transform 0.25s ease;
}
.btn:hover::after { transform: translateX(4px); }
.btn--ghost::after { color: var(--cyan); }
.track__btn::after, .cta__submit::after, .hero__track button::after { content: none; }

/* stats: hairline separators */
.stats__grid .stat { position: relative; }
.stats__grid .stat + .stat::before {
  content: '';
  position: absolute;
  left: -12px; top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(transparent, rgba(80, 160, 220, 0.25), transparent);
}
@media (max-width: 1020px) {
  .stats__grid .stat + .stat::before { display: none; }
}

/* card hover sheen */
.card, .case-card, .track__box, .cta__form {
  position: relative;
}
.card::before, .case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(60% 50% at 20% 0%, rgba(60, 197, 218, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover::before, .case-card:hover::before { opacity: 1; }

/* footer hairline */
.footer { border-top: 0; position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 197, 218, 0.45), transparent);
}

/* ---------------- Live tracking response ---------------- */
.track__raw {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}
.track__detail {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: color 0.2s ease, transform 0.2s ease;
}
.track__detail:hover { color: var(--text); transform: translateX(3px); }
.track__pill.is-muted {
  color: var(--muted);
  background: rgba(157, 180, 201, 0.12);
  border-color: rgba(157, 180, 201, 0.3);
}
.track__pill.is-muted::before { background: var(--muted); box-shadow: none; animation: none; }

/* ---------------- Language toggle ---------------- */
.lang-toggle {
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(140, 200, 240, 0.25);
  overflow: hidden;
  flex: none;
}
.lang-toggle button {
  background: none;
  border: 0;
  padding: 7px 13px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-toggle button + button { border-left: 1px solid rgba(140, 200, 240, 0.18); }
.lang-toggle button.is-active {
  background: linear-gradient(120deg, #4fd2e6, #2b8fd4);
  color: #04121f;
}
.lang-toggle button:not(.is-active):hover { color: var(--text); }
.lang-toggle--mobile { margin-top: 20px; }
.lang-toggle--mobile button { font-size: 14px; padding: 10px 20px; }
@media (max-width: 760px) {
  .header .lang-toggle { margin-left: auto; margin-right: 4px; }
  .header__burger { margin-left: 0 !important; }
}

/* ============================================================
   Product suite showcase
   ============================================================ */
.platforms { margin-top: 110px; }
.platforms__head { margin-bottom: 50px; }
.platforms__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.platforms__title em {
  font-style: normal;
  background: linear-gradient(100deg, #4fd2e6, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.platforms__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.platforms__list { display: flex; flex-direction: column; }
.platforms__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-areas: 'idx name' 'idx cat';
  column-gap: 16px;
  align-items: baseline;
  padding: 20px 8px 20px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 2px solid transparent;
  text-align: left;
  cursor: pointer;
  color: var(--muted);
  transition: border-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
}
.platforms__item:first-child { border-top: 1px solid var(--line); }
.platforms__index {
  grid-area: idx;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(157, 180, 201, 0.5);
  transition: color 0.3s ease;
}
.platforms__name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}
.platforms__name small {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-left: 6px;
}
.platforms__cat {
  grid-area: cat;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.platforms__item:hover { padding-left: 10px; color: var(--text); }
.platforms__item.is-active {
  border-left-color: var(--cyan);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(60, 197, 218, 0.07), transparent 60%);
}
.platforms__item.is-active .platforms__index { color: var(--cyan); }
.platforms__item.is-active .platforms__name { color: var(--cyan); }

.platforms__stage {
  position: sticky;
  top: 110px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.platforms__visual {
  position: relative;
  height: 240px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(60, 197, 218, 0.22), transparent 55%),
    radial-gradient(70% 100% at 10% 100%, rgba(43, 143, 212, 0.22), transparent 60%),
    linear-gradient(160deg, #0a1a30, #060f1e);
  overflow: hidden;
}
.platforms__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(80, 160, 220, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 160, 220, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 50%, #000, transparent);
}
.platforms__monogram {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  background: linear-gradient(160deg, #eaf3fb, #4fd2e6 70%, #2b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 30px rgba(60, 197, 218, 0.35));
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.platforms__stage.is-switching .platforms__monogram { opacity: 0; transform: translateY(14px) scale(0.96); }
.platforms__glow {
  position: absolute;
  inset: auto 0 -40% 0;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(60, 197, 218, 0.25), transparent 70%);
}
.platforms__panel { padding: 34px 36px 30px; transition: opacity 0.3s ease, transform 0.3s ease; }
.platforms__stage.is-switching .platforms__panel { opacity: 0; transform: translateY(10px); }
.platforms__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.platforms__desc { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.platforms__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.platforms__chips span {
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(60, 197, 218, 0.32);
  font-size: 12.5px;
  color: var(--cyan);
  background: rgba(60, 197, 218, 0.07);
}
.platforms__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.platforms__logos:empty { display: none; }
.platforms__logos img {
  height: 20px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.platforms__logos span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(157, 180, 201, 0.75);
}

@media (max-width: 1020px) {
  .platforms__inner { grid-template-columns: 1fr; gap: 40px; }
  .platforms__stage { position: static; }
  .platforms__list {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--line);
  }
  .platforms__list::-webkit-scrollbar { display: none; }
  .platforms__item {
    flex: none;
    grid-template-columns: 1fr;
    grid-template-areas: 'idx' 'name' 'cat';
    row-gap: 2px;
    padding: 14px 18px 14px 0;
    border-bottom: 0;
    border-left: 0;
    border-top: 0;
  }
  .platforms__item:first-child { border-top: 0; }
  .platforms__item.is-active { border-left: 0; border-bottom: 2px solid var(--cyan); padding-left: 0; background: none; }
}

/* ============================================================
   Awwwards-tier polish
   ============================================================ */
/* masked title reveals (transform-based: clip-path zeroes the observer's
   intersection ratio and the reveal would never fire) */
.reveal-title {
  transform: translateY(38px) skewY(1.5deg);
  transform-origin: left bottom;
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease;
}
.reveal-title.is-visible {
  transform: translateY(0) skewY(0);
  opacity: 1;
}

/* services card index numbers */
.cards { counter-reset: svc; }
.card { counter-increment: svc; }
.card::after {
  content: '0' counter(svc);
  position: absolute;
  top: 26px; right: 26px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(157, 180, 201, 0.4);
  transition: color 0.3s ease;
}
.card:hover::after { color: var(--cyan); }

/* case cards: tilt transition helpers */
.case-card { transform-style: preserve-3d; will-change: transform; transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease; }

/* page scroll progress hairline */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #2b8fd4, #4fd2e6);
  box-shadow: 0 0 12px rgba(60, 197, 218, 0.6);
  z-index: 70;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* platform logos on white backgrounds (inverted to dark chips) */
.platforms__logos img[src*="Meli"],
.platforms__logos img[src*="TikTok"] {
  filter: invert(1) grayscale(1) brightness(1.7);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 2px 6px;
  opacity: 0.85;
}

/* ============================================================
   Second design-tier pass
   ============================================================ */

/* --- clients marquee: bigger, more present logos --- */
.marquee__track { gap: 56px; animation-duration: 46s; }
.marquee__row--reverse .marquee__track { animation-duration: 52s; }
.marquee__track img {
  height: 36px;
  max-width: 190px;
  opacity: 0.65;
}
.marquee__track span { font-size: 24px; }
@media (max-width: 760px) {
  .marquee__track { gap: 36px; }
  .marquee__track img { height: 24px; }
}

/* --- services: icon chips + deeper hover --- */
.card__icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(60, 197, 218, 0.1);
  border: 1px solid rgba(60, 197, 218, 0.3);
  box-shadow: 0 0 22px rgba(60, 197, 218, 0.1);
  margin-bottom: 24px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: 0 18px 50px rgba(2, 10, 20, 0.5), 0 0 30px rgba(60, 197, 218, 0.07); }
.card:hover .card__icon {
  background: rgba(60, 197, 218, 0.18);
  box-shadow: 0 0 32px rgba(60, 197, 218, 0.26);
  transform: translateY(-2px);
}

/* --- stats: bolder statement band --- */
.stats {
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(43, 143, 212, 0.22), transparent 62%),
    var(--bg);
  padding: 110px 0;
}
.stat__num { font-size: clamp(34px, 3.8vw, 54px); }

/* --- standards: numbered rows --- */
.standards__list { counter-reset: std; }
.standards__list li { counter-increment: std; }
.standards__list li::before {
  content: '0' counter(std);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(157, 180, 201, 0.45);
  min-width: 34px;
  flex: none;
  transition: color 0.25s ease;
}
.standards__list li:hover::before { color: var(--cyan); }

/* --- integrations: unified panel --- */
.integrations {
  padding: 36px 38px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.integrations img { height: 24px; max-width: 130px; }

/* --- hairline dividers between sections --- */
.section { position: relative; }
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80, 160, 220, 0.16), transparent);
  pointer-events: none;
}
.services::before, .stats::before { display: none; }

/* optical balance: emblem (PNG) logos a touch larger than wordmark (SVG) logos */
.marquee__track img[src$=".png"] { height: 42px; }
@media (max-width: 760px) {
  .marquee__track img[src$=".png"] { height: 28px; }
}

/* ============================================================
   PARADIGM SHIFT — editorial, alternating rhythm
   ============================================================ */

/* --- mega editorial section titles --- */
.section__title {
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.cta__title { font-size: clamp(46px, 6.5vw, 92px); }

/* --- section numbering --- */
main { counter-reset: sect; }
main > .section { counter-increment: sect; }
.section__eyebrow::after {
  content: '· 0' counter(sect);
  opacity: 0.55;
  margin-left: 2px;
}

/* --- services: editorial rows --- */
.svc { border-top: 1px solid var(--line); }
.svc__row {
  display: grid;
  grid-template-columns: 64px 52px 1.1fr 1.4fr 44px;
  align-items: center;
  gap: 20px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease, padding-left 0.35s ease;
  position: relative;
}
.svc__index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(157, 180, 201, 0.45);
  transition: color 0.3s ease;
}
.svc__icon {
  width: 34px; height: 34px;
  color: var(--cyan);
  opacity: 0.8;
  transition: transform 0.35s ease, opacity 0.3s ease;
}
.svc__row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: 0.005em;
  transition: color 0.3s ease;
}
.svc__row p { color: var(--muted); font-size: 14.5px; }
.svc__arrow {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.svc__row:hover {
  background: linear-gradient(90deg, rgba(60, 197, 218, 0.06), transparent 65%);
  padding-left: 22px;
}
.svc__row:hover .svc__index { color: var(--cyan); }
.svc__row:hover .svc__icon { transform: translateY(-3px) scale(1.08); opacity: 1; }
.svc__row:hover .svc__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
  .svc__row { grid-template-columns: 44px 40px 1fr 32px; }
  .svc__row p { grid-column: 3 / -1; grid-row: 2; margin-top: 6px; }
}

/* --- light sections (paradigm: alternating rhythm) --- */
.section--light { background: #e9f1f7; color: #0a1626; }
.section--light .section__eyebrow { color: #1478a0; }
.section--light .section__title { color: #0a1626; }
.section--light .section__title em {
  background: linear-gradient(100deg, #0e86b0, #1565d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* stats on light */
.stats.section--light { background: radial-gradient(70% 130% at 50% 0%, rgba(43, 143, 212, 0.14), transparent 62%), #e9f1f7; }
.stats.section--light .stat__num {
  background: linear-gradient(180deg, #0a1626, #1565a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats.section--light .stat__label { color: #4a6076; }
.stats.section--light .stat + .stat::before {
  background: linear-gradient(transparent, rgba(20, 90, 140, 0.3), transparent);
}

/* cases on light */
.cases.section--light .case-card {
  background: #ffffff;
  border: 1px solid #d8e4ee;
  box-shadow: 0 10px 34px rgba(10, 40, 70, 0.06);
}
.cases.section--light .case-card:hover {
  border-color: rgba(14, 134, 176, 0.5);
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(10, 40, 70, 0.14);
}
.cases.section--light .case-card::before { display: none; }
.cases.section--light .case-card::after {
  background: linear-gradient(90deg, transparent, #0e86b0, transparent);
}
.cases.section--light .case-card__sector { color: #1478a0; }
.cases.section--light .case-card p { color: #4a6076; }
.cases.section--light .case-card__metric {
  color: #1478a0;
  border-color: rgba(14, 134, 176, 0.4);
  background: rgba(14, 134, 176, 0.08);
}
.cases.section--light .case-card__logo {
  filter: none;
  opacity: 0.9;
}

/* --- footer mega wordmark --- */
.footer__mega {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 10.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(140, 200, 240, 0.3);
  user-select: none;
  margin: 30px 0 44px;
  transition: color 0.6s ease, -webkit-text-stroke 0.6s ease;
}
.footer__mega:hover {
  color: rgba(60, 197, 218, 0.12);
  -webkit-text-stroke: 1.5px rgba(60, 197, 218, 0.55);
}

/* --- magnetic button baseline (JS drives the rest) --- */
.btn { will-change: transform; }

/* ============================================================
   Logo wall — static hairline grid on white (award paradigm)
   ============================================================ */
.clients--white { background: #ffffff; }
.clients--white .section__eyebrow { color: #1478a0; justify-content: center; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: #dde7ee;
  border: 1px solid #dde7ee;
  margin-bottom: 70px;
}
.logo-wall__cell {
  background: #ffffff;
  aspect-ratio: 2.1 / 1;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 18px;
  transition: background 0.3s ease;
}
.logo-wall__cell img {
  height: var(--h, 36px);
  width: auto;
  max-width: var(--mw, 150px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
/* per-logo --h normalizes visual weight (ink-density calibrated) */
/* blank filler cells keep the hairline grid complete at every width */
.logo-wall__cell--blank { display: none; }
@media (min-width: 641px) {
  .logo-wall__cell--blank1 { display: grid; }
}
@media (min-width: 1021px) {
  .logo-wall__cell--blank2, .logo-wall__cell--blank3 { display: grid; }
}
.logo-wall__cell:hover { background: #f4f9fc; }
.logo-wall__cell:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 1020px) {
  .logo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo-wall__cell img { height: calc(var(--h, 32px) * 0.84); }
}
@media (max-width: 640px) {
  .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-wall__cell { padding: 12px; }
  .logo-wall__cell img { height: calc(var(--h, 26px) * 0.66); max-width: 110px; }
}

/* logo wall: legibility + integrations as a dark island on white */
.logo-wall__cell img { opacity: 0.85; }
.clients--white .integrations {
  background: #081426;
  border-color: rgba(8, 20, 38, 0.9);
}
.clients--white .integrations img { opacity: 0.85; }
.clients--white .integrations img:hover { opacity: 1; }
.clients--white .integrations__label { color: #4a6076; }

/* ============================================================
   Entry — groundbreaking treatment
   ============================================================ */

/* kinetic hero lines (masked rise) */
.hero__title span { display: block; overflow: hidden; }
.hero__title i {
  display: block;
  font-style: normal;
  transform: translateY(118%) skewY(4deg);
  transform-origin: left bottom;
  animation: heroLine 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__title span:nth-child(1) i { animation-delay: 0.3s; }
.hero__title span:nth-child(2) i { animation-delay: 0.44s; }
.hero__title span:nth-child(3) i { animation-delay: 0.58s; }
@keyframes heroLine {
  to { transform: translateY(0) skewY(0); }
}

/* eyebrow dash */
.hero__eyebrow { display: flex; align-items: center; gap: 12px; }
.hero__eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  flex: none;
}

/* scroll hint pill */
.scrollpill {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(140, 200, 240, 0.45);
  border-radius: 14px;
  display: grid;
  justify-items: center;
  padding-top: 6px;
}
.scrollpill i {
  width: 4px; height: 8px;
  border-radius: 3px;
  background: var(--cyan);
  animation: pillDot 1.8s ease-in-out infinite;
}
@keyframes pillDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}
.operation__scrollhint { gap: 10px; }

/* stage ghost numbers */
.stage__num {
  position: absolute;
  right: 0;
  top: -30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(70px, 7vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(140, 200, 240, 0.25);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  opacity: 0;
  transform: translateY(20px);
}
.stage.is-active .stage__num { opacity: 1; transform: translateY(0); }
@media (max-width: 760px) {
  .stage__num { font-size: 56px; top: -18px; }
}

/* numbered rail */
.rail__dot {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(157, 180, 201, 0.5);
  padding: 4px 2px;
  border-top: 2px solid rgba(157, 180, 201, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.rail__dot.is-active {
  background: none;
  box-shadow: none;
  transform: none;
  color: var(--cyan);
  border-top-color: var(--cyan);
}

/* integrations hairline wall (7 cols) */
.logo-wall--integrations { grid-template-columns: repeat(7, 1fr); }
.logo-wall--integrations .logo-wall__cell img { height: 32px; max-width: 120px; }
.logo-wall--integrations img[src*="oracle"] { filter: invert(1) grayscale(1); }
.logo-wall--integrations .logo-wall__cell:hover img[src*="oracle"] { filter: invert(1); }
@media (max-width: 1020px) {
  .logo-wall--integrations { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .logo-wall--integrations { grid-template-columns: repeat(3, 1fr); }
  .logo-wall--integrations .logo-wall__cell img { height: 24px; max-width: 90px; }
}

/* platform stage: real product shots */
.platforms__visual { height: 300px; }
.platforms__shot {
  position: absolute;
  width: min(86%, 560px);
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(140, 200, 240, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(60, 197, 218, 0.1);
  transform: perspective(1200px) rotateX(5deg) rotateY(-7deg) rotateZ(1deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
}
.platforms__stage.is-switching .platforms__shot {
  opacity: 0;
  transform: perspective(1200px) rotateX(5deg) rotateY(-7deg) rotateZ(1deg) translateY(18px);
}
.platforms__visual:hover .platforms__shot {
  transform: perspective(1200px) rotateX(2deg) rotateY(-3deg) rotateZ(0.5deg) scale(1.03);
}
@media (max-width: 760px) {
  .platforms__visual { height: 220px; }
  .platforms__shot { width: 92%; transform: none; }
  .platforms__visual:hover .platforms__shot { transform: none; }
}

/* integrations: same white hairline style as the clients wall (no blue bg) */
.clients--white .integrations {
  background: none;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.clients--white .integrations .logo-wall__cell img { opacity: 0.85; filter: grayscale(1); }
.clients--white .integrations .logo-wall__cell:hover img { opacity: 1; filter: none; }
.clients--white .integrations .logo-wall__cell img[src*="oracle"] { filter: invert(1) grayscale(1); }
.clients--white .integrations .logo-wall__cell:hover img[src*="oracle"] { filter: invert(1); }

/* ============================================================
   Platform stage: full-bleed cinematic shot
   ============================================================ */
.platforms__stage {
  height: 600px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.platforms__visual {
  position: absolute;
  inset: 0;
  height: auto;
  display: block;
}
.platforms__shot {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%) scale(1.001);
  width: auto;
  height: 84%;
  max-width: none;
  border-radius: 12px;
  border: 1px solid rgba(140, 200, 240, 0.22);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 50px rgba(60, 197, 218, 0.12);
  transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.platforms__stage.is-switching .platforms__shot {
  opacity: 0;
  transform: translateX(-50%) scale(0.985) translateY(14px);
}
.platforms__shot.is-settled { transform: translateX(-50%) scale(1.001); }

/* scrim + overlay copy */
.platforms__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(4, 11, 24, 0.78) 58%, rgba(4, 11, 24, 0.97) 88%);
  pointer-events: none;
}
.platforms__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 34px 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.platforms__tagline {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}
.platforms__desc { font-size: 14px; line-height: 1.7; margin-bottom: 18px; max-width: 720px; }
.platforms__chips span { padding: 7px 13px; }
.platforms__logos { margin-top: 16px; padding-top: 14px; }

@media (max-width: 1020px) {
  .platforms__stage { height: 520px; }
}
@media (max-width: 760px) {
  .platforms__stage { height: auto; }
  .platforms__visual { position: relative; height: 230px; }
  .platforms__shot { height: 86%; top: 6%; }
  .platforms__panel { position: static; padding: 22px 22px 24px; background: rgba(4, 11, 24, 0.94); }
}

/* platform stage: shot on top, copy below (no text over UI) */
.platforms__stage { height: 620px; }
.platforms__visual {
  top: 0;
  bottom: auto;
  height: 57%;
}
.platforms__visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(7, 18, 38, 1));
}
.platforms__shot { top: 5%; height: 86%; }
.platforms__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: 57%;
  background: #071226;
  padding: 22px 34px 24px;
}
.platforms__tagline { font-size: clamp(24px, 2.3vw, 32px); margin-bottom: 8px; }
.platforms__desc { margin-bottom: 14px; }
.platforms__logos { margin-top: 12px; padding-top: 10px; }
@media (max-width: 760px) {
  .platforms__stage { height: auto; }
  .platforms__panel { position: static; padding: 20px 22px 22px; }
}

/* loader (production): gate the page until poster + video are ready */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__logo { width: 120px; animation: loaderPulse 1.8s ease-in-out infinite; }
@keyframes loaderPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
.loader__bar {
  position: absolute;
  bottom: 18vh;
  width: 170px;
  height: 2px;
  border-radius: 2px;
  background: rgba(140, 200, 240, 0.15);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loaderSweep 1.2s ease-in-out infinite;
}
@keyframes loaderSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(430%); }
}

/* left scrim for hero + stage legibility */
.operation__shade--left {
  background: linear-gradient(90deg, rgba(4, 11, 24, 0.9) 0%, rgba(4, 11, 24, 0.55) 36%, transparent 66%);
}

/* ============================================================
   Presence map — Mexico × Colombia
   ============================================================ */
.geosec {
  background:
    radial-gradient(1100px 620px at 76% 42%, rgba(21, 68, 102, 0.55) 0%, transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, #08182e 50%, var(--bg) 100%);
  overflow: hidden;
}
.geosec__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.geosec__body { color: var(--muted); max-width: 460px; margin-top: 22px; }
.geosec__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding: 0;
}
.geosec__chips li {
  border: 1px solid rgba(120, 190, 230, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9d9ec;
}
.geosec__map { position: relative; }
.geosec__map svg { width: 100%; height: auto; display: block; overflow: visible; }
.geo__land {
  fill: url(#geoDots);
  stroke: rgba(88, 205, 235, 0.5);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
.geo__name {
  fill: rgba(126, 190, 226, 0.13);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: 0.22em;
}
.geo__arc {
  fill: none;
  stroke: url(#geoArc);
  stroke-width: 1.8;
  stroke-dasharray: 7 9;
  animation: geoDash 1.4s linear infinite;
}
@keyframes geoDash { to { stroke-dashoffset: -16; } }
.geo__packet { fill: #3ec6e0; filter: drop-shadow(0 0 7px rgba(62, 198, 224, 0.95)); }
.geo__pin { fill: #3ec6e0; stroke: #062033; stroke-width: 2; }
.geo__pulse {
  fill: none;
  stroke: rgba(62, 198, 224, 0.85);
  stroke-width: 1.6;
  animation: geoPulse 2.8s ease-out infinite;
}
.geo__pulse--late { animation-delay: 1.4s; }
@keyframes geoPulse {
  0% { r: 7; opacity: 0.9; }
  100% { r: 34; opacity: 0; }
}
.geosec__tag {
  position: absolute;
  background: rgba(6, 19, 36, 0.88);
  border: 1px solid rgba(88, 205, 235, 0.4);
  color: #d4ecf9;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.geosec__tag--mx { left: 37.1%; top: 37%; transform: translate(-50%, -190%); }
.geosec__tag--co { left: 82.1%; top: 73.6%; transform: translate(-50%, 130%); }
@media (max-width: 1020px) {
  .geosec__grid { grid-template-columns: 1fr; gap: 48px; }
  .geosec__body { max-width: 620px; }
}
