:root{
  --ink:        #0E1014;
  --ink-2:      #15181F;
  --ink-3:      #2A323D;
  --ink-soft:   #7E8A96;
  --line:       #D9DEE3;
  --line-soft:  #ECEFF3;
  --bg:         #FFFFFF;
  --bg-alt:     #F4F7FA;
  --cream:      #EAF1F7;
  --orange:     #1F6AA0;
  --orange-2:   #2E79B5;
  --orange-3:   #5AA0D6;
  --dark-1:     #0A456D;
  --dark-2:     #073452;
  --dark-3:     #0F4D7A;
  --glow-tint:  rgba(31,106,160,.22);
  --shadow-sm:  0 1px 2px rgba(14,16,20,.05), 0 2px 8px rgba(14,16,20,.04);
  --shadow-md:  0 8px 30px rgba(14,16,20,.08), 0 2px 6px rgba(14,16,20,.05);
  --shadow-lg:  0 30px 80px rgba(14,14,18,.14), 0 10px 30px rgba(14,14,18,.06);
  --r-sm:       10px;
  --r-md:       16px;
  --r-lg:       24px;
  --r-xl:       32px;
  --display:    "Sora", system-ui, -apple-system, sans-serif;
  --body:       "Manrope", system-ui, -apple-system, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, monospace;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; border:0; background:none; color:inherit; }
img, svg{ display:block; max-width:100%; }

/* ---------- Layout ---------- */
.wrap{ max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section{ position:relative; padding: var(--section-y, 120px) 0; }
.section--tight{ padding: 80px 0; }

/* Hero accent variants (driven by Tweaks panel) */
.hero[data-accent-style="italic"] h1 .accent{ font-style: italic; font-weight: 500; color: var(--orange); }
.hero[data-accent-style="italic"] h1 .accent::after{ display: none; }

.hero[data-accent-style="underline"] h1 .accent{
  font-style: normal; color: var(--ink);
  background-image: linear-gradient(transparent calc(100% - 10px), var(--orange) calc(100% - 10px));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}
.hero[data-accent-style="underline"] h1 .accent::after{ display: none; }

.hero[data-accent-style="block"] h1 .accent{
  font-style: normal;
  background: var(--orange);
  color: #fff;
  padding: 0 12px;
  border-radius: 6px;
  font-weight: 500;
  margin: 0 4px;
  display: inline-block;
  line-height: 1.05;
}
.hero[data-accent-style="block"] h1 .accent::after{ display: none; }

.hero[data-bold="1"] h1{ font-weight: 700; }

/* No-map hero: animated route background fills the visual void */
.hero[data-no-map="1"]{ padding: 180px 0 140px; text-align: center; }
.hero[data-no-map="1"] h1{ font-size: clamp(48px, 6.8vw, 96px); }
.hero[data-no-map="1"] .hero__lede{ max-width: 640px; font-size: clamp(18px, 1.3vw, 21px); }
.hero[data-no-map="1"] .hero__chips{ margin-top: 36px; }
.hero[data-no-map="1"] .hero__ctas{ margin-top: 40px; }
.hero-route-bg{
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2; pointer-events: none; opacity: .8;
}
.hero-bg-video{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-tint{
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(13,15,20,.35) 0%, rgba(13,15,20,.65) 55%, rgba(13,15,20,.88) 100%),
    linear-gradient(180deg, rgba(13,15,20,.45) 0%, rgba(13,15,20,.55) 60%, rgba(13,15,20,.95) 100%);
}
.hero[data-no-map="1"] > .wrap{ position: relative; z-index: 3; }

/* ---------- Type ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .dot{ width:6px; height:6px; border-radius:999px; background: var(--orange); box-shadow: 0 0 0 4px var(--glow-tint); }
.eyebrow--light{ color: rgba(255,255,255,.7); }
.eyebrow--light .dot{ box-shadow: 0 0 0 4px var(--glow-tint); }

h1,h2,h3,h4{ font-family: var(--display); color: var(--ink); margin:0; letter-spacing: -.02em; line-height: 1.05; font-weight: 600; }
h1{ font-size: clamp(44px, 5.6vw, 84px); letter-spacing: -.035em; font-weight: 600; }
h2{ font-size: clamp(34px, 3.8vw, 56px); letter-spacing: -.028em; }
h3{ font-size: clamp(20px, 1.5vw, 24px); }
p{ margin: 0; }
.lede{ font-size: clamp(17px, 1.25vw, 20px); color: var(--ink-soft); line-height: 1.55; max-width: 620px; }

.outline-text{
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary{
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px -8px var(--glow-tint), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn--primary:hover{ filter: brightness(.92); transform: translateY(-1px); box-shadow: 0 16px 32px -10px var(--glow-tint); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover{ background: var(--bg-alt); }
.btn--dark{ background: var(--ink); color: #fff; }
.btn--dark:hover{ background: #000; }
.btn--inv-ghost{ color: #fff; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.btn--inv-ghost:hover{ background: rgba(255,255,255,.1); }
.btn .arrow{
  display:inline-flex; width:22px; height:22px; align-items:center; justify-content:center;
  border-radius: 999px; background: rgba(255,255,255,.18);
  transition: transform .25s ease;
}
.btn:hover .arrow{ transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top: 18px; left: 0; right: 0; z-index: 80;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav__inner{
  pointer-events: auto;
  display:flex; align-items:center; gap: 20px;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(14,14,18,.06);
  box-shadow: var(--shadow-md);
}
.nav__logo{ display:flex; align-items:center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.nav__logo-img{ height: 38px; width: auto; display: block; }
.footer__logo{ display: inline-flex; }
.footer__logo-img{ height: 44px; width: auto; display: block; }
.nav__links{ display:flex; gap: 6px; }
.nav__links a{
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  transition: background .2s, color .2s;
}
.nav__links a:hover{ background: rgba(14,14,18,.05); color: var(--ink); }
.nav__cta{ display:flex; gap:8px; align-items:center; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(1100px 600px at 80% -10%, var(--glow-tint), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(14,14,18,.04), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero__chips{ display:flex; gap:8px; flex-wrap:wrap; margin-top: 24px; }
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--ink-3);
  box-shadow: var(--shadow-sm);
}
.chip svg{ color: var(--orange); }
.hero h1 .accent{
  position: relative;
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.hero h1 .accent::after{
  content:""; position:absolute; left:0; right:0; bottom: 6px; height: 8px;
  background: linear-gradient(90deg, transparent, var(--glow-tint), transparent);
  z-index:-1; border-radius: 999px;
}
.hero__lede{ margin-top: 22px; }
.hero__ctas{ display:flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__meta{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 64px; padding-top: 32px; border-top: 1px dashed var(--line);
}
.meta-num{
  font-family: var(--display); font-size: 36px; font-weight: 500; letter-spacing: -.02em;
  display:flex; align-items: baseline; gap: 4px;
}
.meta-num .unit{ color: var(--orange); font-size: 18px; }
.meta-label{ color: var(--ink-soft); font-size: 13px; margin-top: 4px; }

/* Hero map card */
.hero-map{
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-map::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 80% -20%, var(--glow-tint), transparent 60%),
    radial-gradient(500px 300px at -10% 110%, rgba(255,255,255,.04), transparent 60%);
  z-index:0;
}
.hero-map__head{
  position:relative; z-index:1;
  display:flex; justify-content:space-between; align-items:center; margin-bottom: 12px;
}
.hero-map__title{ font-family: var(--display); font-weight: 500; font-size: 14px; letter-spacing: -.01em; }
.hero-map__legend{ display:flex; gap:14px; font-size: 11px; font-family: var(--mono); color: rgba(255,255,255,.6); }
.hero-map__legend i{ display:inline-block; width:8px; height:8px; border-radius:999px; margin-right:6px; vertical-align:middle; }
.legend-air{ background: var(--orange); }
.legend-sea{ background: #6CA8FF; }
.legend-road{ background: #B6F0C2; }

.hero-map__svg{ width: 100%; height: 100%; position: relative; z-index: 1; }
.hero-map__ticker{
  position:absolute; left:24px; right:24px; bottom:18px; z-index:2;
  display:flex; gap: 8px; align-items:center;
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-map__ticker .pulse{ width:8px; height:8px; border-radius:999px; background:#7CD992; box-shadow:0 0 0 0 rgba(124,217,146,.7); animation: pulse 1.4s infinite; }
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(124,217,146,.65); }
  70%{ box-shadow: 0 0 0 8px rgba(124,217,146,0); }
  100%{ box-shadow: 0 0 0 0 rgba(124,217,146,0); }
}

.hero-map__floats{ position:absolute; inset: 0; pointer-events: none; z-index: 2; }
.float-card{
  position:absolute;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  display:flex; align-items:center; gap: 10px;
  border: 1px solid rgba(14,14,18,.06);
  animation: floaty 6s ease-in-out infinite;
}
.float-card .icon-wrap{
  width: 30px; height: 30px; border-radius: 10px;
  display:flex; align-items:center; justify-content:center;
  background: var(--cream); color: var(--orange);
}
.float-card .lbl{ font-weight: 600; }
.float-card .sub{ color: var(--ink-soft); font-size: 11px; }
.float-card.fc-1{ top: 16%; left: -16px; animation-delay: 0s; }
.float-card.fc-2{ top: 50%; right: -18px; animation-delay: 1.2s; }
.float-card.fc-3{ bottom: 26%; left: 8%; animation-delay: 2.4s; }
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* ---------- Marquee ---------- */
.marquee{
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
  overflow: hidden;
}
.marquee__track{
  display:flex; gap: 64px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee__item{
  display:flex; align-items:center; gap: 10px;
  color: var(--ink-3); font-weight: 600; font-size: 15px;
  font-family: var(--display);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.marquee__item svg{ color: var(--orange); }
@keyframes scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Services ---------- */
.section-head{ display:flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.section-head h2{ max-width: 720px; }
.section-head__right{ max-width: 380px; color: var(--ink-soft); }

.services{ display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.card{
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover{ border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .num{
  position:absolute; top: 20px; right: 22px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: .1em;
}
.card .ico{
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream); color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
  transition: background .3s, color .3s;
}
.card:hover .ico{ background: var(--orange); color:#fff; }
.card h3{ margin-bottom: 8px; }
.card p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.card .links{ margin-top: 18px; display:flex; gap: 16px; flex-wrap: wrap; }
.card .link{ font-size: 13px; color: var(--ink-3); font-weight: 600; display:inline-flex; align-items:center; gap:6px; padding-bottom: 2px; border-bottom: 1px solid rgba(14,14,18,.1); }
.card .link:hover{ color: var(--orange); border-color: var(--orange); }

.services .card{ grid-column: span 4; }
.services .card.feat{
  grid-column: span 8;
  background: linear-gradient(140deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color: #fff;
  border-color: transparent;
}
.services .card.feat h3{ color: #fff; }
.services .card.feat p{ color: rgba(255,255,255,.7); }
.services .card.feat .ico{ background: rgba(255,255,255,.08); color: var(--orange-3); }
.services .card.feat:hover .ico{ background: var(--orange); color:#fff; }
.services .card.feat .num{ color: rgba(255,255,255,.4); }
.services .card.feat .link{ color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }
.services .card.feat .stage{
  margin-top: 20px;
  height: 130px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

/* ---------- Industries ---------- */
.industries{
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ind-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ind{
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 18px;
  display:flex; flex-direction:column; gap: 14px; min-height: 160px;
  transition: transform .25s, border-color .25s, background .25s;
  cursor: pointer;
  overflow: hidden;
}
.ind:hover{ transform: translateY(-2px); border-color: rgba(14,14,18,.18); }
.ind__ico{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); color: var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.ind__name{ font-family: var(--display); font-weight: 600; font-size: 16px; }
.ind__sub{ font-size: 12.5px; color: var(--ink-soft); margin-top:auto; }
.ind__corner{ display: none; }

/* ---------- Why Crovix ---------- */
.why{
  background: var(--bg, #fff);
  padding: 0;
  border-top: 1px solid var(--line);
}

/* Cinematic slider */
.why-slider{
  position: relative;
  width: 100%;
  height: clamp(520px, 72vh, 760px);
  overflow: hidden;
  background: #0a0c12;
  isolation: isolate;
}
.why-slide{
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.why-slide.is-active{ opacity: 1; pointer-events: auto; }
.why-slide__media{
  position: absolute; inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-slide.is-active .why-slide__media{
  animation: whyKenBurns 9s ease-out forwards;
}
@keyframes whyKenBurns{
  from{ transform: scale(1.04); }
  to  { transform: scale(1.12); }
}
.why-slide__media image-slot,
.why-slide__media image-slot::part(image){ display: none; }
.why-slide__tint{
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,12,18,.86) 0%, rgba(10,12,18,.55) 45%, rgba(10,12,18,.25) 100%),
    linear-gradient(180deg, rgba(10,12,18,.15) 0%, rgba(10,12,18,.55) 100%);
  pointer-events: none;
}
.why-slide__content{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  max-width: 1240px; margin: 0 auto;
  padding: 0 56px;
}
.why-slide__eyebrow{
  font-family: var(--mono, JetBrains Mono);
  font-size: 12px; letter-spacing: .22em;
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.why-slide__title{
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0;
  max-width: 720px;
  text-wrap: balance;
}
.why-slide__desc{
  margin-top: 28px;
  max-width: 540px;
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,.78);
}

/* Slide entry motion */
.why-slide.is-active .why-slide__eyebrow{ animation: whyFadeUp .8s .15s both; }
.why-slide.is-active .why-slide__title  { animation: whyFadeUp .9s .25s both; }
.why-slide.is-active .why-slide__desc   { animation: whyFadeUp .9s .4s both; }
@keyframes whyFadeUp{
  from{ opacity: 0; transform: translateY(14px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* Arrows */
.why-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 0;
  cursor: pointer;
  transition: color .2s, transform .2s;
  z-index: 3;
}
.why-arrow:hover{ color: #fff; }
.why-arrow--l{ left: 12px; }
.why-arrow--r{ right: 12px; }
.why-arrow--l:hover{ transform: translateY(-50%) translateX(-2px); }
.why-arrow--r:hover{ transform: translateY(-50%) translateX(2px); }

/* Dots */
.why-dots{
  position: absolute; left: 0; right: 0; bottom: 32px;
  display: flex; justify-content: center; gap: 14px;
  z-index: 3;
}
.why-dot{
  background: transparent; border: 0; padding: 8px 0;
  cursor: pointer;
}
.why-dot__bar{
  display: block;
  width: 26px; height: 2px;
  background: rgba(255,255,255,.35);
  transition: background .25s, width .25s;
}
.why-dot.is-active .why-dot__bar{
  background: var(--orange);
  width: 36px;
}

/* Figures below slider */
.why-figures{
  padding: 110px 0 120px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.55fr);
  gap: 80px;
  align-items: start;
}
.why-figures__title{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 2.7vw, 42px);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
.why-figures__lede{
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.6;
  max-width: 380px;
}
.why-figures__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-fig{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 0;
  min-height: 0;
  display: flex; flex-direction: column;
}
.why-fig:hover{ transform: none; }
.why-fig__n{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 5.4vw, 84px);
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.why-fig__l{
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.why-fig__note{
  margin-top: 6px;
  font-family: var(--mono, JetBrains Mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  opacity: .7;
}

@media (max-width: 1080px){
  .why-figures{ grid-template-columns: 1fr; gap: 48px; padding: 80px 0 90px; }
  .why-figures__grid{ grid-template-columns: repeat(2, 1fr); }
  .why-slide__content{ padding: 0 32px; }
}
@media (max-width: 640px){
  .why-figures__grid{ grid-template-columns: 1fr; }
  .why-slider{ height: 560px; }
  .why-arrow{ width: 40px; height: 40px; }
}

/* ---------- Tracker / Quote ---------- */
.tools{ background: var(--bg-alt); }
.tools__inner{
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tabs{ display:flex; gap: 4px; padding: 6px; background: var(--bg-alt); border-radius: 999px; width: max-content; margin-bottom: 24px; }
.tab{
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-soft);
  display:inline-flex; align-items:center; gap: 8px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.tab.is-active{ background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.panel{ padding: 40px; }
.panel--left{ border-right: 1px solid var(--line); background: #fff; }
.panel--right{
  background: linear-gradient(160deg, #0B1535 0%, #16224A 100%);
  color: #fff; position: relative; overflow: hidden;
}
.panel--right::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(242,106,31,.2), transparent 60%);
}
.panel h3{ font-size: 28px; margin-bottom: 8px; }
.panel p.lede-sm{ color: var(--ink-soft); font-size: 14.5px; margin-bottom: 28px; }
.panel--right h3{ color: #fff; }
.panel--right p.lede-sm{ color: rgba(255,255,255,.65); }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field{ display:flex; flex-direction:column; gap: 8px; }
.field label{ font-size: 12px; font-weight: 600; color: var(--ink-3); letter-spacing: .01em; }
.field input, .field select{
  width: 100%;
  padding: 14px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-family: inherit; font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus{ outline:none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--glow-tint); }
.field input::placeholder{ color: #A6AECB; }

/* Tracker UI in right panel */
.tracker{ position: relative; z-index: 1; }
.tracker__input{
  display:flex; align-items:center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 6px 6px 6px 16px;
  margin-bottom: 24px;
}
.tracker__input input{
  flex:1; background: transparent; border: 0; color: #fff;
  font-family: var(--mono); font-size: 15px; letter-spacing: .02em;
  padding: 12px 0;
}
.tracker__input input:focus{ outline: none; }
.tracker__input .btn{ padding: 10px 18px; font-size: 13px; }

.tracker__id{ font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.tracker__title{ font-family: var(--display); font-weight: 500; font-size: 20px; margin-bottom: 4px; }
.tracker__route{ font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; display:flex; align-items:center; gap: 10px; }
.tracker__route .sep{ width: 16px; height: 1px; background: rgba(255,255,255,.3); }
.eta-pill{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(124,217,146,.12); color: #9DE6B0;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(124,217,146,.18);
}
.eta-pill .blip{ width: 6px; height: 6px; border-radius: 999px; background:#7CD992; animation: pulse 1.4s infinite; }

.track-steps{ margin-top: 20px; display:flex; flex-direction:column; gap: 0; }
.track-step{
  display:flex; gap: 14px; padding: 14px 0;
  position: relative;
}
.track-step__bullet{
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  flex-shrink:0;
  position: relative; z-index: 1;
}
.track-step__line{
  position:absolute; top: 28px; bottom: -6px; left: 10px;
  width: 2px; background: rgba(255,255,255,.12);
}
.track-step.done .track-step__bullet{ background: var(--orange); border-color: var(--orange); }
.track-step.done .track-step__line{ background: var(--orange); }
.track-step.current .track-step__bullet{
  background: #fff; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242,106,31,.25);
}
.track-step__body{ flex: 1; }
.track-step__loc{ font-weight: 600; font-size: 14px; color: #fff; }
.track-step__time{ font-size: 12px; color: rgba(255,255,255,.55); font-family: var(--mono); margin-top: 2px; }
.track-step:last-child .track-step__line{ display: none; }

.note{ font-size: 12px; color: var(--ink-soft); margin-top: 20px; display:flex; align-items:center; gap: 8px; }

/* ---------- Process ---------- */
.process{ background: var(--bg); position: relative; }
.process__rail{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 60px;
  position: relative;
}
.process__line{
  position: absolute; top: 28px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  overflow: visible;
  z-index: 0;
}
.process__line-fill{
  position: absolute; left: 0; top: 0; bottom: 0;
  width: calc((var(--active, 0) / (var(--count, 5) - 1)) * 100%);
  background: var(--orange);
  border-radius: 2px;
  transition: width .9s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 12px rgba(242,106,31,.55);
}
.proc{
  position: relative;
  z-index: 1;
  display:flex; flex-direction:column; align-items: start; gap: 16px;
}
.proc__node{
  width: 56px; height: 56px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .35s, border-color .35s, transform .35s, box-shadow .35s;
}
.proc__no{
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .35s;
}
.proc[data-state="past"] .proc__node{
  border-color: var(--orange);
  background: #fdebe1;
}
.proc[data-state="past"] .proc__no{ color: var(--orange); }
.proc[data-state="active"] .proc__node{
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 8px 24px -8px rgba(242,106,31,.6), 0 0 0 6px rgba(242,106,31,.12);
}
.proc[data-state="active"] .proc__no{ color: #fff; }
.proc[data-state="active"] .proc__node::after{
  content: "";
  position: absolute; inset: -4px;
  border-radius: 20px;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: procPulse 1.4s ease-out infinite;
}
@keyframes procPulse{
  0%   { transform: scale(.95); opacity: .55; }
  100% { transform: scale(1.25); opacity: 0; }
}
.proc__title{ font-family: var(--display); font-weight: 600; font-size: 17px; }
.proc__desc{ color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; }

/* ---------- CTA ---------- */
.cta{
  background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta::before{
  content:""; position:absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% 20%, var(--glow-tint), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(255,255,255,.04), transparent 60%);
}
.cta__inner{ position: relative; z-index: 1; text-align:center; padding: 120px 0; }
.cta h2{ color: #fff; max-width: 900px; margin: 0 auto; }
.cta h2 .accent{ color: var(--orange-2); font-style: italic; font-weight: 500; }
.cta p{ color: rgba(255,255,255,.7); margin: 22px auto 36px; max-width: 600px; }
.cta__ctas{ display:flex; gap: 14px; justify-content:center; flex-wrap: wrap; }

.cta__bg-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.cta__bg-tint{
  position:absolute; inset:0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(7,40,72,.55) 0%, rgba(7,40,72,.75) 60%, rgba(7,40,72,.92) 100%),
    linear-gradient(180deg, rgba(7,40,72,.55) 0%, rgba(7,40,72,.75) 100%);
}
.cta__bg-routes{ position:absolute; inset: 0; z-index: 2; opacity: .35; }
.cta__inner{ position: relative; z-index: 3; text-align:center; padding: 120px 0; }

/* ---------- Footer ---------- */
.footer{
  background: var(--dark-1); color: #fff;
  padding: 60px 0 32px;
  position: relative;
}
.footer__top{ display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand p{ color: rgba(255,255,255,.55); font-size: 13.5px; margin-top: 12px; max-width: 280px; }
.footer__col h5{ font-family: var(--display); font-size: 13px; font-weight: 600; margin: 0 0 14px; color: #fff; }
.footer__col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap: 10px; }
.footer__col a{ color: rgba(255,255,255,.6); font-size: 13.5px; transition: color .2s; }
.footer__col a:hover{ color: var(--orange-2); }
.footer__bot{ display:flex; justify-content:space-between; align-items:center; padding-top: 24px; color: rgba(255,255,255,.4); font-size: 12px; }

/* ---------- Logo ---------- */
.logo-mark{ display:inline-flex; align-items:center; gap:8px; }
.logo-mark .text{ font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; color: var(--ink); }
.nav__logo .text-inv{ color: var(--ink); }
.footer .logo-mark .text{ color:#fff; }

/* ---------- Reveal ---------- */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1); }
.reveal.in{ opacity: 1; transform: none; }
.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }
.reveal-delay-4{ transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .hero__grid{ grid-template-columns: 1fr; }
  .services .card, .services .card.feat{ grid-column: span 6; }
  .ind-grid{ grid-template-columns: repeat(3, 1fr); }
  .why__grid{ grid-template-columns: 1fr; }
  .tools__inner{ grid-template-columns: 1fr; }
  .panel--left{ border-right: 0; border-bottom: 1px solid var(--line); }
  .process__rail{ grid-template-columns: repeat(2, 1fr); }
  .process__line{ display: none; }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .nav__links{ display: none; }
}
@media (max-width: 640px){
  .section{ padding: 80px 0; }
  .wrap{ padding: 0 20px; }
  .services .card, .services .card.feat{ grid-column: span 12; }
  .ind-grid{ grid-template-columns: repeat(2, 1fr); }
  .process__rail{ grid-template-columns: 1fr; }
  .hero__meta{ grid-template-columns: repeat(2, 1fr); }
  .form-row{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; }
}
