/* ============================================================
   Agent Bridge — landing page styles
   Palette: #E0EAF5 / #2E77AE / #050607 / #FF8E2B
   ============================================================ */

:root {
  --bg: #050607;
  --bg-soft: #0b0d10;
  --surface: rgba(224, 234, 245, 0.05);
  --border: rgba(224, 234, 245, 0.12);
  --text: #e0eaf5;
  --muted: #9db4cc;
  --blue: #2e77ae;
  --sky: #6fb1e3;
  --orange: #ff8e2b;
  --grad: linear-gradient(92deg, #2e77ae 0%, #6fb1e3 48%, #ff8e2b 115%);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-h: 72px;
  --radius: 18px;
}

* { 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, svg, canvas { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

::selection { background: rgba(46, 119, 174, 0.45); }

/* ---------- typography helpers ---------- */

.accent-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.section__sub {
  color: var(--muted);
  max-width: 540px;
  font-size: 17px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  will-change: transform;
}

.btn--lg { padding: 16px 30px; font-size: 16px; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 32px rgba(46, 119, 174, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 12px 44px rgba(123, 97, 255, 0.5);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ---------- glass card ---------- */

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

/* ---------- pulse dot ---------- */

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  position: relative;
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   Preloader
   ============================================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

/* black backdrop split into two panels so the exit can open along the wave */
.preloader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #050607;
  overflow: hidden;
}
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }

/* animated film grain */
.preloader__panel::after {
  content: "";
  position: absolute;
  inset: -110%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  animation: plGrain 0.85s steps(8) infinite;
  pointer-events: none;
}
@keyframes plGrain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-4%, -7%); }
  50% { transform: translate(5%, 3%); }
  75% { transform: translate(-3%, 6%); }
  100% { transform: translate(4%, -4%); }
}

/* faint blue light behind the signal */
.preloader__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 64% 42% at 50% 50%,
    rgba(46, 119, 174, 0.18),
    rgba(111, 177, 227, 0.05) 48%,
    transparent 72%
  );
}

.preloader__stage {
  position: relative;
  width: min(880px, 88vw);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.5vh, 22px);
}

/* one word above each pulse cluster of the waveform */
.preloader__motto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-family: var(--font-display);
  font-size: clamp(24px, 5.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-align: center;
}
.pm-mask {
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.pm-word {
  display: inline-block;
  will-change: transform;
}
/* pre-paint hidden states so nothing flashes before the (deferred) JS runs */
.js .pm-word { visibility: hidden; }
.js .preloader__foot { opacity: 0; }
.js .preloader__wave-line { visibility: hidden; }
.pm-word--ring { color: var(--text); }
.pm-word--answer { color: var(--sky); }

/* the signal — draws left to right as real progress */
.preloader__wave {
  width: 100%;
  height: clamp(72px, 16vh, 150px);
  display: block;
  overflow: visible;
}
.preloader__wave-track {
  fill: none;
  stroke: rgba(224, 234, 245, 0.08);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.preloader__wave-line {
  fill: none;
  stroke: url(#plWaveGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter:
    drop-shadow(0 0 10px rgba(111, 177, 227, 0.5))
    drop-shadow(0 0 28px rgba(46, 119, 174, 0.35));
}

.preloader__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 40px) clamp(22px, 5vw, 48px);
}

.preloader__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.preloader__count {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.preloader__count i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin-left: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .preloader__panel::after { animation: none; }
}

/* ============================================================
   Nav
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.nav__logo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(46, 119, 174, 0.9);
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--muted);
}
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(5, 6, 7, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}
.mobile-menu__cta { margin-top: 12px; font-size: 16px; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, transparent 0%, rgba(5, 6, 7, 0.55) 75%),
    linear-gradient(to bottom, rgba(5, 6, 7, 0.4), transparent 30%, transparent 60%, var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: 0;
}
.hero .container { margin-inline: auto; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero__badge strong { color: var(--orange); font-variant-numeric: tabular-nums; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.2vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner { display: inline-block; will-change: transform; }

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(24px, 4vw, 56px);
  justify-content: start;
}
.hero__stat dt {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.hero__stat dd {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.hero__scroll-hint span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--text);
  margin-top: 6px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Ticker
   ============================================================ */

.ticker {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__track i { color: var(--blue); font-style: normal; font-size: 11px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   How it works
   ============================================================ */

.how__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

/* flowing chevrons between cards */
.how__connector {
  position: absolute;
  top: 84px;
  z-index: 2;
  display: flex;
  gap: 3px;
  transform: translateX(-50%);
}
.how__connector--1 { left: calc((100% - 44px) / 3 + 11px); }
.how__connector--2 { left: calc(((100% - 44px) / 3) * 2 + 33px); }
.how__connector i {
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: rotate(45deg);
  animation: chevronFlow 1.6s ease-in-out infinite;
}
.how__connector i:nth-child(2) { animation-delay: 0.2s; }
.how__connector i:nth-child(3) { animation-delay: 0.4s; }
@keyframes chevronFlow {
  0%, 100% { opacity: 0.15; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 1; transform: rotate(45deg) translate(2px, -2px); }
}

.how__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 30px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  --mx: 50%;
  --my: 30%;
}
.how__card:hover {
  border-color: rgba(111, 177, 227, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 20, 34, 0.5);
}
.how__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.how__card:hover::before { opacity: 1; }
.how__card .spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(111, 177, 227, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.how__card:hover .spot { opacity: 1; }
.how__num {
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(224, 234, 245, 0.07);
}
.how__card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin-bottom: 10px;
}
.how__card p { color: var(--muted); font-size: 15px; }

/* ---- animated mini-scenes ---- */
.how__scene {
  position: relative;
  height: 116px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 22, 38, 0.55);
  margin-bottom: 22px;
  overflow: hidden;
}

/* scene 1 — ringing phone */
.ring-phone {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46, 119, 174, 0.28);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-phone svg {
  width: 20px;
  height: 20px;
  animation: phoneWiggle 2.4s ease-in-out infinite;
}
@keyframes phoneWiggle {
  0%, 14%, 100% { transform: rotate(0); }
  2%, 6%, 10% { transform: rotate(-13deg); }
  4%, 8%, 12% { transform: rotate(13deg); }
}
.ring-wave {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(111, 177, 227, 0.6);
  animation: ringWave 2.4s ease-out infinite;
}
.ring-wave:nth-of-type(2) { animation-delay: 0.8s; }
.ring-wave:nth-of-type(3) { animation-delay: 1.6s; }
@keyframes ringWave {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(2.4); opacity: 0; }
}
.scene-chip {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text);
  background: rgba(5, 6, 7, 0.85);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 999px;
}
.scene-chip em { font-style: normal; color: var(--orange); font-variant-numeric: tabular-nums; }
.scene-chip--call { animation: chipFloat 2.4s ease-in-out infinite; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(calc(-50% - 2px)); }
  50% { transform: translateY(calc(-50% + 2px)); }
}

/* scene 2 — AI qualification checklist */
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(111, 177, 227, 0.14), transparent);
  animation: scanMove 5.1s linear infinite;
}
@keyframes scanMove {
  0% { top: -40px; }
  55%, 100% { top: 124px; }
}
.qualify-list {
  position: relative;
  list-style: none;
  padding: 15px 18px;
  display: grid;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.qualify-list li { display: flex; align-items: center; gap: 10px; }
.q-box {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1px solid rgba(111, 177, 227, 0.45);
  flex: none;
  animation: qBox 5.1s linear infinite;
}
.q-box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  animation: qTick 5.1s linear infinite;
}
.qualify-list li:nth-child(2) .q-box,
.qualify-list li:nth-child(2) .q-box::after { animation-delay: 0.55s; }
.qualify-list li:nth-child(3) .q-box,
.qualify-list li:nth-child(3) .q-box::after { animation-delay: 1.1s; }
@keyframes qBox {
  0%, 10% { background-color: transparent; border-color: rgba(111, 177, 227, 0.45); }
  16%, 72% { background-color: var(--blue); border-color: var(--blue); }
  80%, 100% { background-color: transparent; border-color: rgba(111, 177, 227, 0.45); }
}
@keyframes qTick {
  0%, 10% { opacity: 0; transform: scale(0.4); }
  16%, 72% { opacity: 1; transform: scale(1); }
  80%, 100% { opacity: 0; transform: scale(0.4); }
}

/* scene 3 — live transfer route */
.route {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.route-node {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(46, 119, 174, 0.22);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.route-node svg { width: 18px; height: 18px; }
.route-node--agent { animation: agentGlow 4.2s ease-in-out infinite; }
@keyframes agentGlow {
  0%, 52% { box-shadow: none; color: var(--sky); }
  60%, 82% { box-shadow: 0 0 0 1px rgba(255, 142, 43, 0.65), 0 0 20px rgba(255, 142, 43, 0.45); color: var(--orange); }
  94%, 100% { box-shadow: none; color: var(--sky); }
}
.route-track {
  position: relative;
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: rgba(224, 234, 245, 0.13);
}
.route-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 142, 43, 0.9);
  animation: routeTravel 4.2s ease-in-out infinite;
}
@keyframes routeTravel {
  0%, 6% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  54% { left: calc(100% - 8px); opacity: 1; }
  64%, 100% { left: calc(100% - 8px); opacity: 0; }
}
.scene-chip--timer {
  top: auto;
  bottom: 12px;
  transform: none;
  animation: timerPop 4.2s ease-in-out infinite;
}
@keyframes timerPop {
  0%, 52% { opacity: 0.3; }
  62%, 88% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* ============================================================
   Live feed
   ============================================================ */

.live { background: var(--bg-soft); }
.live__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.live__points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 13px;
  color: var(--text);
  font-size: 15.5px;
}
.live__points .check {
  color: var(--orange);
  font-weight: 700;
  margin-right: 10px;
}

.live__panel {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.live__panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.live__panel-meta {
  margin-left: auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
}
.live__feed {
  list-style: none;
  min-height: 320px;
  max-height: 320px;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.live__feed li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}
.live__feed .feed__avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  flex: none;
}
.live__feed .feed__info strong { display: block; font-weight: 600; }
.live__feed .feed__info span { color: var(--muted); font-size: 12.5px; }
.live__feed .feed__status {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.feed__status--qualified { background: rgba(255, 142, 43, 0.14); color: var(--orange); }
.feed__status--transfer { background: rgba(46, 119, 174, 0.16); color: #86c0ec; }
.feed__status--screening { background: rgba(111, 177, 227, 0.16); color: #b3d4ef; }
.live__panel-foot {
  display: flex;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
}
.live__panel-foot strong { color: var(--orange); font-variant-numeric: tabular-nums; }

/* ============================================================
   Verticals
   ============================================================ */

.verticals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.vcard {
  padding: 30px 26px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.vcard:hover {
  border-color: rgba(255, 142, 43, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.vcard h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}
.vcard p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.vcard__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 142, 43, 0.1);
  border: 1px solid rgba(255, 142, 43, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ============================================================
   Stats band
   ============================================================ */

.band {
  position: relative;
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(224, 234, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 234, 245, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 25%, transparent 78%);
  pointer-events: none;
}
.band__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.band__aurora::before,
.band__aurora::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.band__aurora::before {
  background: radial-gradient(circle, rgba(46, 119, 174, 0.35), transparent 65%);
  top: -30%;
  left: -12%;
  animation: auroraDrift 14s ease-in-out infinite alternate;
}
.band__aurora::after {
  background: radial-gradient(circle, rgba(255, 142, 43, 0.18), transparent 65%);
  bottom: -35%;
  right: -10%;
  animation: auroraDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes auroraDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8%, 10%, 0) scale(1.15); }
}

.band__head {
  position: relative;
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.band__head .section__title { margin-bottom: 0; }

.band__viz { position: relative; }
.band__bridge {
  position: absolute;
  left: -4%;
  top: 0;
  width: 108%;
  height: clamp(140px, 18vw, 220px);
  transform: translateY(-62%);
  overflow: visible;
  pointer-events: none;
}
.band__pulse {
  fill: var(--orange);
  filter: drop-shadow(0 0 7px rgba(255, 142, 43, 0.95));
}
.band__pulse--alt {
  fill: var(--sky);
  filter: drop-shadow(0 0 7px rgba(111, 177, 227, 0.95));
}

.band__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.band__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 26px;
  background: rgba(5, 6, 7, 0.66);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.35s;
}
.band__stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 142, 43, 0.45);
  box-shadow: 0 22px 54px rgba(8, 20, 34, 0.6), 0 0 0 1px rgba(255, 142, 43, 0.12);
}
.band__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(46, 119, 174, 0.18);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.band__icon svg { width: 21px; height: 21px; }
.band__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.band__label { color: var(--muted); font-size: 14px; }
.band__delta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange);
  background: rgba(255, 142, 43, 0.1);
  border: 1px solid rgba(255, 142, 43, 0.22);
  padding: 5px 11px;
  border-radius: 999px;
}
.band__delta--dim {
  color: var(--muted);
  background: rgba(224, 234, 245, 0.05);
  border-color: var(--border);
}

/* ============================================================
   Compliance
   ============================================================ */

.compliance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.compliance__list {
  list-style: none;
  display: grid;
  gap: 18px;
}
.compliance__list li { padding: 24px 26px; }
.compliance__list h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.compliance__list h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}
.compliance__list p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   Quote
   ============================================================ */

.quote { padding-top: 0; }
.quote__block {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.quote__block p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.quote__block footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
}
.quote__block footer span { color: var(--muted); font-size: 14px; }

/* ============================================================
   CTA
   ============================================================ */

.cta {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  text-align: center;
}
.cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 100%, rgba(46, 119, 174, 0.22), transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 90%, rgba(111, 177, 227, 0.16), transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 16px;
}
.cta__form input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 16px 24px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.cta__form input::placeholder { color: var(--muted); }
.cta__form input:focus { border-color: var(--blue); background: rgba(255, 255, 255, 0.09); }
.cta__note { font-size: 13px; color: var(--muted); }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
  max-width: 280px;
}
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.footer__col a { font-size: 14.5px; color: var(--text); opacity: 0.85; transition: opacity 0.2s; }
.footer__col a:hover { opacity: 1; }
.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   Reveal defaults (GSAP takes over; safe without JS)
   ============================================================ */

.js [data-reveal] { opacity: 0; transform: translateY(36px); }
.js .hero__title .line__inner { transform: translateY(110%); }
.js [data-hero-fade] { opacity: 0; transform: translateY(24px); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .how__grid, .verticals__grid { grid-template-columns: repeat(2, 1fr); }
  .how__connector { display: none; }
  .live__grid, .compliance__grid { grid-template-columns: 1fr; }
  .band__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__login { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--primary { padding: 10px 16px; font-size: 13.5px; }

  .hero { padding-top: calc(var(--nav-h) + 28px); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .how__grid, .verticals__grid { grid-template-columns: 1fr; }
  .band__grid { gap: 14px; }
  .band__stat { padding: 22px 18px 20px; }
  .band__bridge { opacity: 0.45; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 460px) {
  .nav__inner { gap: 10px; }
  .nav__logo { font-size: 16.5px; gap: 7px; }
  .nav__logo-dot { width: 9px; height: 9px; }
  .nav__actions { gap: 8px; }
  .nav__actions .btn--primary { padding: 9px 13px; font-size: 12.5px; }
  .nav__burger { width: 38px; height: 38px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal], .js [data-hero-fade] { opacity: 1; transform: none; }
  .js .hero__title .line__inner { transform: none; }
  .js .pm-word { visibility: visible; }
  .js .preloader__foot { opacity: 1; }
  .js .preloader__wave-line { visibility: visible; }
  .band__pulse { display: none; }
}
