/* ============ TOKENS ============ */
:root {
  --white: #FFFFFF;
  --cloud: #F4F4F6;
  --ink: #090A0F;
  --soft-black: #111217;
  --blue: #0E32E8;
  --indigo: #043EDB;
  --light-blue: #8FA7FF;
  --lavender: #8A9BEF;
  --glow: rgba(14, 50, 232, 0.5);
  --glow-soft: rgba(14, 50, 232, 0.18);
  --glow-faint: rgba(14, 50, 232, 0.08);
  --pill: #E8E8EA;
  --line: #C9CBD2;
  --muted: #6B7280;
  --block: rgba(120, 125, 138, 0.18);
  --success: #16A34A;
  --success-bg: #E7F6EC;
  --error: #DC2626;
  --error-bg: #FCEAEA;
}

/* ============ BASE ============ */
* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Satoshi", "Manrope", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0
}

img,
svg {
  display: block;
  max-width: 100%
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-variant-numeric: tabular-nums
}

.hi {
  color: var(--blue)
}

/* ============ TYPE SCALE ============ */
.h-hero {
  font-family: "Khand", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
}

.h-section {
  font-family: "Khand", sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

.h-mini {
  font-family: "Khand", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 0;
}

.sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px
}

.section {
  padding: 120px 0
}

@media (max-width:640px) {
  .section {
    padding: 80px 0
  }

  .container {
    padding: 0 20px
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn svg.arrow {
  transition: transform .2s ease
}

.btn:hover svg.arrow {
  transform: translateX(4px)
}

.btn-primary {
  background: var(--soft-black);
  color: #fff
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--glow-soft), 0 2px 6px rgba(0, 0, 0, 0.08)
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink)
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-1px)
}

.btn-white {
  background: #fff;
  color: var(--ink)
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.18)
}

.btn-ghost-w {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35)
}

.btn-ghost-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05)
}

.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-blue:hover {
  background: var(--indigo);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--glow-soft)
}

/* ============ CHIPS ============ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.chip svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.chip-blue {
  background: var(--glow-faint);
  color: var(--blue)
}

.chip-white {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink)
}

.chip-grey {
  background: var(--pill);
  color: var(--ink)
}

.chip-success {
  background: var(--success-bg);
  color: var(--success)
}

.chip-success svg {
  stroke: var(--success)
}

.chip-error {
  background: var(--error-bg);
  color: var(--error)
}

.chip-error svg {
  stroke: var(--error)
}

.chip-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18)
}

.chip-dark svg {
  stroke: #fff
}

/* ============ CARDS ============ */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  min-height: 280px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px var(--glow-faint), 0 4px 12px var(--glow-soft);
}

.card-ico {
  width: 36px;
  height: 36px;
  stroke: var(--blue);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ============ LIVE DOT ============ */
.live-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  flex-shrink: 0
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #16A34A;
  opacity: .5;
  animation: pulseDot 1.8s infinite ease-out;
}

@keyframes pulseDot {
  0% {
    transform: scale(.5);
    opacity: .6
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

/* ============ DIVIDER ============ */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 32px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--blue);
  opacity: .45;
}

.divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--glow-soft);
}

/* ============ NAV ============ */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  width: 100%;
  max-width: 1180px;
  transition: box-shadow .25s ease;
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(9, 10, 15, 0.08)
}

.brandlock {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.brandlock .convoy-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0
}

.brandlock .stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px
}

.brandlock .name {
  font-family: "Khand", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink)
}

.brandlock .byrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Manrope";
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em
}

.brandlock .byrow svg {
  width: 11px;
  height: 11px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-right: auto
}

.nav-links a {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s ease;
}

.nav-links a:hover {
  background: var(--pill)
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  background: #fff
}

.hamburger svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none
}

@media (max-width:900px) {
  .nav {
    justify-content: space-between
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: inline-flex
  }

  .nav-cta .btn {
    display: none
  }
}

@media (max-width:520px) {
  .brandlock .byrow {
    display: none
  }
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 49;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 24px 48px rgba(9, 10, 15, 0.12);
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-family: "Manrope";
  font-weight: 500;
  color: var(--ink)
}

.mobile-menu a:hover {
  background: var(--cloud)
}

.mobile-menu .btn {
  margin-top: 6px;
  justify-content: center
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% 0%, var(--glow-faint), transparent 70%),
    radial-gradient(700px 400px at 10% 10%, rgba(143, 167, 255, 0.10), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  position: relative
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px
}

.hero-trust .avatars {
  display: flex
}

.hero-trust .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--light-blue), var(--blue));
  margin-left: -8px
}

.hero-trust .av:first-child {
  margin-left: 0
}

@media (max-width:900px) {
  .hero {
    padding: 120px 0 40px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ============ MOCK: laptop + phone ============ */
.mock-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.05/1;
  min-height: 480px
}

@media (max-width:900px) {
  .mock-stage {
    scale: 0.8;
    transform-origin: center;
    overflow: visible;
    left: -50px;
  }
}

.laptop {
  position: absolute;
  inset: 0;
  background: #0b0c11;
  border-radius: 18px;
  padding: 14px 14px 22px;
  box-shadow: 0 40px 80px rgba(9, 10, 15, 0.18), 0 8px 24px var(--glow-faint);
  border: 1px solid #1a1c24;
}

.laptop::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -10px;
  height: 10px;
  background: linear-gradient(180deg, #1a1c24, #0b0c11);
  border-radius: 0 0 24px 24px;
}

.laptop-screen {
  background: #fff;
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lap-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope";
  font-size: 11px;
  color: var(--muted)
}

.lap-dots {
  display: flex;
  gap: 5px
}

.lap-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E1E2E7
}

.lap-tabs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px
}

.lap-tabs span {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10.5px
}

.lap-tabs span.active {
  background: var(--glow-faint);
  color: var(--blue);
  font-weight: 600
}

.map-wrap {
  flex: 1;
  position: relative;
  background: #F6F7FB;
  overflow: hidden
}

.map-wrap svg.map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.map-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3
}

.map-overlay .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font-family: "Manrope";
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(9, 10, 15, 0.06)
}

.map-overlay .panel .num {
  font-family: "JetBrains Mono";
  font-weight: 600;
  color: var(--ink)
}

.map-legend {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Manrope";
  font-size: 10.5px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 3
}

.map-legend .lk {
  display: flex;
  align-items: center;
  gap: 6px
}

.map-legend .sw {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.veh-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-family: "JetBrains Mono";
  font-size: 9px;
  font-weight: 600;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px var(--glow-soft);
  transition: transform .8s cubic-bezier(.45, .05, .55, .95), left .8s linear, top .8s linear;
}

.veh-pin.idle {
  background: #9CA3AF
}

.veh-pin.flag {
  background: var(--error)
}

.veh-pin .pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .25;
  animation: vehPulse 2.2s infinite ease-out
}

.veh-pin.flag .pulse {
  background: var(--error)
}

@keyframes vehPulse {
  0% {
    transform: scale(.6);
    opacity: .35
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

/* phone overlay */
.phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 32%;
  min-width: 220px;
  background: #0b0c11;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(9, 10, 15, 0.30), 0 6px 20px var(--glow-soft);
  border: 1px solid #1a1c24;
}

@media (max-width:900px) {
  .phone {
    right: 10%;
    bottom: -20%;
    scale: 0.9;
  }
}

.phone-screen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  aspect-ratio: .5/1
}

.phone-top {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono";
  font-size: 10px;
  color: var(--muted)
}

.phone .trip-id {
  font-family: "Khand";
  font-weight: 600;
  font-size: 22px;
  line-height: 1
}

.phone .small {
  font-family: "Manrope";
  font-size: 11px;
  color: var(--muted)
}

.phone .veri-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: "Manrope";
  font-size: 11px
}

.phone .veri-row .ok {
  color: var(--success);
  font-weight: 600
}

.phone .veri-row .bad {
  color: var(--error);
  font-weight: 600
}

.phone .veri-row .mono {
  font-size: 11px;
  color: var(--ink)
}

.phone .verify-btn {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-align: center;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 12px
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 14px 30px rgba(9, 10, 15, 0.10);
  font-family: "Manrope";
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .04em
}

.floating-chip .mono {
  font-size: 11px
}

.floating-chip.top-left {
  top: 14px;
  left: -12px
}

.floating-chip.bot-right {
  bottom: 24%;
  right: -8px
}

.floating-chip .badge {
  color: var(--error);
  font-weight: 700
}

@media (max-width:900px) {
  .floating-chip.top-left {
    left: 0
  }

  .floating-chip.bot-right {
    right: auto;
    left: 2%;
    bottom: -5%;
    transform: scale(0.9);
    transform-origin: left bottom;
  }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 80px 0
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px
}

.trust-cell {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.trust-num {
  font-family: "Khand";
  font-weight: 600;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em
}

.trust-num .unit {
  color: var(--light-blue);
  font-size: .5em;
  vertical-align: super;
  margin-left: 6px
}

.trust-label {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope";
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5
}

@media (max-width:760px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* ============ TRUSTED BY ============ */
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .7
}

.logo-row .lg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: "Khand";
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase
}

.logo-row .lg svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media (max-width:760px) {
  .logo-row {
    justify-content: flex-start;
    gap: 36px
  }
}

/* ============ FEATURE GRID ============ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 780px
}

.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.section-head.center .sub {
  margin: 0 auto
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

@media (max-width:980px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .feat-grid {
    grid-template-columns: 1fr
  }
}

.feat-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.feat-card h3 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em
}

.feat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55
}

.feat-card .prev {
  margin-top: auto;
  background: var(--cloud);
  border-radius: 12px;
  padding: 14px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* mini map */
.mini-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 120px
}

.mini-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.mini-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--glow-soft);
  transition: left 1.2s linear, top 1.2s linear
}

/* gauge */
.gauges {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: space-around;
  align-items: center
}

.gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: "Manrope";
  font-size: 10px;
  color: var(--muted)
}

.gauge .ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) var(--pct, 68%), #E1E2E7 0);
  position: relative
}

.gauge .ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff
}

.gauge .val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono";
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  z-index: 1
}

/* timeline */
.tl {
  width: 100%
}

.tl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-family: "Manrope";
  font-size: 11px;
  color: var(--ink)
}

.tl-row .bar {
  flex: 1;
  height: 6px;
  background: #E1E2E7;
  border-radius: 999px;
  overflow: hidden;
  position: relative
}

.tl-row .bar i {
  position: absolute;
  inset: 0;
  background: var(--blue);
  width: var(--w, 40%)
}

.tl-row .due {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  color: var(--muted);
  min-width: 64px;
  text-align: right
}

/* verify mini */
.veri-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.veri-mini .line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: "Manrope";
  font-size: 11px
}

.veri-mini .line .ts {
  font-family: "JetBrains Mono";
  font-weight: 600
}

.veri-mini .delta {
  font-family: "Manrope";
  font-size: 10.5px;
  font-weight: 700;
  color: var(--error);
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 6px
}

/* rfq mini */
.rfq-mini {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.rfq-mini .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  font-family: "Manrope";
  font-size: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px
}

.rfq-mini .row .mono {
  font-family: "JetBrains Mono";
  font-weight: 600
}

.rfq-mini .row.in {
  transform: translateX(-6px);
  opacity: 0;
  animation: slideIn .9s .2s forwards
}

.rfq-mini .row.out {
  transform: translateX(6px);
  opacity: 0;
  animation: slideIn .9s 1.2s forwards
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1
  }
}

/* ownership */
.own-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.own-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: "Manrope";
  font-size: 11.5px
}

.own-row .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--light-blue), var(--blue));
  color: #fff;
  font-family: "JetBrains Mono";
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.own-row .pill {
  margin-left: auto;
  font-family: "Manrope";
  font-size: 9.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--glow-faint);
  color: var(--blue);
  font-weight: 700
}

.own-row .pill.alt {
  background: var(--pill);
  color: var(--ink)
}

/* qty flash on numbers */
.flash {
  animation: flash .9s ease
}

@keyframes flash {
  0% {
    background: var(--glow-soft);
    color: var(--blue)
  }

  100% {
    background: transparent
  }
}

/* ============ RECONCILE BLOCK ============ */
.recon {
  position: relative;
  background: #fff
}

.recon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  align-items: stretch
}

.recon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2
}

.recon-card.driver {
  border-color: #E0E2EA
}

.recon-card.vehicle {
  border-color: #E0E2EA
}

.recon-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.recon-card .head h4 {
  margin: 0;
  font-family: "Khand";
  font-weight: 600;
  font-size: 24px
}

.recon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  font-family: "Manrope";
  font-size: 13px
}

.recon-row .lbl {
  color: var(--muted)
}

.recon-row .val {
  font-family: "JetBrains Mono";
  font-weight: 600;
  color: var(--ink)
}

.recon-row.mismatch {
  background: #FCEAEA;
  border-color: #F4C5C5
}

.recon-row.mismatch .val {
  color: var(--error)
}

.recon-row.match {
  background: var(--success-bg);
  border-color: #C7E6D2
}

.recon-row.match .val {
  color: var(--success)
}

.recon-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid var(--error);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.18);
  z-index: 3;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recon-center .badge-r {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--error);
  font-family: "Manrope";
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.recon-center ul {
  margin: 0;
  padding-left: 16px;
  font-family: "Manrope";
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5
}

.recon-center ul li {
  margin: 2px 0
}

@media (max-width:760px) {
  .recon-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .recon-center {
    position: static;
    transform: none;
    margin: 6px 0;
    max-width: none
  }
}

.recon-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.recon-lines path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.2;
  opacity: .35;
  stroke-dasharray: 4 4;
  animation: dashFlow 6s linear infinite
}

.recon-lines path.flag {
  stroke: var(--error);
  opacity: .55
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -200
  }
}

/* ============ RFQ FLOW ============ */
.rfq-section {
  background: var(--cloud)
}

.rfq-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 32px
}

.rfq-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.rfq-step .stepnum {
  font-family: "JetBrains Mono";
  font-size: 11px;
  color: var(--blue);
  font-weight: 700
}

.rfq-step h4 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 24px;
  margin: 0
}

.rfq-step .body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55
}

.rfq-step .demo {
  margin-top: auto;
  background: var(--cloud);
  border-radius: 10px;
  padding: 12px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.rfq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue)
}

.rfq-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none
}

@media (max-width:900px) {
  .rfq-flow {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .rfq-arrow {
    transform: rotate(90deg);
    padding: 4px 0
  }
}

.rfq-footnote {
  margin-top: 24px;
  font-family: "Manrope";
  font-size: 13px;
  color: var(--muted);
  text-align: center
}

/* email demo */
.email-demo {
  font-family: "Manrope";
  font-size: 11.5px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px
}

.email-demo .from {
  color: var(--muted);
  font-size: 10.5px
}

.email-demo .subj {
  font-weight: 600
}

.email-demo .body-txt {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45
}

/* rate card calc */
.calc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%
}

.calc-row {
  display: flex;
  justify-content: space-between;
  font-family: "Manrope";
  font-size: 11.5px;
  color: var(--ink)
}

.calc-row .v {
  font-family: "JetBrains Mono";
  font-weight: 600
}

.calc-row.total {
  border-top: 1px solid var(--line);
  padding-top: 6px;
  margin-top: 4px;
  color: var(--blue);
  font-weight: 700
}

.calc-row.total .v {
  color: var(--blue);
  font-size: 14px
}

/* pdf preview */
.pdf-prev {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Manrope";
  font-size: 9.5px
}

.pdf-prev .ttl {
  font-family: "Khand";
  font-weight: 600;
  font-size: 14px;
  color: var(--ink)
}

.pdf-prev .ln {
  height: 5px;
  background: #E1E2E7;
  border-radius: 2px
}

.pdf-prev .ln.short {
  width: 60%
}

.pdf-prev .stamp {
  margin-top: 4px;
  display: inline-flex;
  width: max-content;
  font-family: "Manrope";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--success-bg);
  color: var(--success);
  padding: 3px 7px;
  border-radius: 999px
}

/* ============ HARDWARE BLOCK ============ */
.hw-stage {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hw-flow {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 24px;
  align-items: center;
  min-height: 280px;
  position: relative
}

.hw-devices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2
}

.hw-dev {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-family: "Manrope";
  font-size: 12.5px;
  font-weight: 600
}

.hw-dev svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.hw-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 240px;
  z-index: 2
}

.hw-hub {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 30px 60px var(--glow-soft);
  position: relative;
  z-index: 3;
}

.hw-hub svg {
  width: 46px;
  height: 46px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hw-hub::after {
  content: "Convoy";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Khand";
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em
}

.hw-dashboard {
  position: relative;
  z-index: 2
}

.hw-lines {
  position: absolute;
  top: 0;
  left: 200px;
  width: calc(100% - 420px);
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hw-lines path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.2;
  opacity: .5;
  stroke-dasharray: 4 6;
  animation: dashFlow 4s linear infinite;
  vector-effect: non-scaling-stroke
}

.hw-dashboard {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hw-dashboard .ttl {
  font-family: "Manrope";
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.hw-dashboard .row {
  display: flex;
  justify-content: space-between;
  font-family: "Manrope";
  font-size: 12px
}

.hw-dashboard .row .v {
  font-family: "JetBrains Mono";
  font-weight: 600
}

.hw-dashboard .bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin-top: 6px
}

.hw-dashboard .bars span {
  flex: 1;
  background: var(--blue);
  border-radius: 2px;
  opacity: .85
}

.hw-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center
}

@media (max-width:900px) {
  .hw-flow {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .hw-center {
    min-height: 160px
  }

  .hw-lines {
    display: none
  }
}

/* ============ INDUSTRIES ============ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

@media (max-width:900px) {
  .ind-grid {
    grid-template-columns: 1fr
  }
}

.ind-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 28px;
  min-height: 340px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, var(--ink), #1c1f2e);
  border: 1px solid #1a1c24;
}

.ind-card.b {
  background: linear-gradient(160deg, var(--blue), var(--indigo))
}

.ind-card.c {
  background: linear-gradient(160deg, #2c2f3d, #0b0c11)
}

.ind-card h3 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 32px;
  line-height: 1.05;
  margin: 0
}

.ind-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin: 0;
  max-width: 320px
}

.ind-card .ind-icon {
  width: 64px;
  height: 64px;
  stroke: #fff;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95
}

.ind-card .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px
}

.ind-card .meta span {
  font-family: "JetBrains Mono";
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18)
}

/* ============ COMPARISON TABLE ============ */
.cmp-section {
  background: var(--cloud)
}

.cmp-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 40px
}

table.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px
}

.cmp th,
.cmp td {
  padding: 18px 20px;
  text-align: left;
  font-family: "Manrope";
  font-size: 14px;
  border-bottom: 1px solid var(--line)
}

.cmp th {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff
}

.cmp th.us {
  color: var(--blue)
}

.cmp tr:last-child td {
  border-bottom: none
}

.cmp td.us {
  background: rgba(14, 50, 232, 0.04);
  font-weight: 600;
  color: var(--ink)
}

.cmp .yes {
  color: var(--success);
  font-family: "Manrope";
  font-weight: 700
}

.cmp .no {
  color: var(--muted)
}

.cmp .partial {
  color: #A16207
}

.cmp tr:first-child th {
  position: sticky;
  top: 0
}

/* ============ SECURITY ============ */
.sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media (max-width:900px) {
  .sec-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.sec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px
}

.sec-visual {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #FAFAFC);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec-visual .log-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 12px;
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  color: var(--ink);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sec-visual .log-row .who {
  color: var(--blue);
  font-weight: 600
}

.sec-visual .log-row .act {
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.sec-visual .log-row .ts {
  color: var(--muted);
  text-align: right
}

/* ============ ONBOARDING ============ */
.ob-section {
  background: var(--cloud)
}

.ob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

@media (max-width:900px) {
  .ob-grid {
    grid-template-columns: 1fr
  }
}

.ob-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  position: relative
}

.ob-num {
  font-family: "Khand";
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--blue)
}

.ob-card h4 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  line-height: 1.1
}

.ob-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55
}

/* ============ PRICING ============ */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px
}

@media (max-width:900px) {
  .pr-grid {
    grid-template-columns: 1fr
  }
}

.pr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative
}

.pr-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-4px)
}

.pr-card.featured .pr-price {
  color: #fff
}

.pr-card.featured .pr-feat li {
  color: rgba(255, 255, 255, 0.85)
}

.pr-card.featured .pr-feat li svg {
  stroke: var(--light-blue)
}

.pr-card.featured .pr-eyebrow {
  color: var(--light-blue)
}

.pr-card .pr-eyebrow {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em
}

.pr-card h3 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 30px;
  margin: 0
}

.pr-price {
  font-family: "Khand";
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--ink)
}

.pr-price .per {
  font-family: "Manrope";
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  margin-left: 6px
}

.pr-card.featured .pr-price .per {
  color: rgba(255, 255, 255, 0.7)
}

.pr-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Manrope";
  font-size: 14px
}

.pr-feat li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink)
}

.pr-feat li svg {
  width: 16px;
  height: 16px;
  stroke: var(--success);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px
}

.pr-featured-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-family: "Manrope";
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: "Khand";
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  transition: color .2s ease;
}

.faq-q:hover {
  color: var(--blue)
}

.faq-q .ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease
}

.faq-q .ico svg {
  width: 12px;
  height: 12px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none
}

.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--glow-faint)
}

.faq-item.open .faq-q .ico svg {
  stroke: var(--blue)
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr
}

.faq-a>div {
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 760px
}

.faq-a>div p {
  margin: 0 0 14px
}

/* ============ CTA BANNER + FOOTER ============ */
.cta-band {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 88px 0 0
}

.cta-band .container {
  position: relative;
  z-index: 2
}

.cta-band h2 {
  font-family: "Khand";
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  max-width: 840px
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 560px;
  margin: 0 0 28px
}

.cta-band .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.dot-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 0 clamp(24px, 4vw, 64px)
}

/* Convoy road */
.convoy-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.25) 100%);
  z-index: 4
}

.convoy-road::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2)
}

.convoy-road::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 16px, transparent 16px 32px);
  animation: roadDash 0.8s linear infinite
}

@keyframes roadDash {
  from { transform: translateX(0) }
  to   { transform: translateX(-32px) }
}

/* Convoy fleet */
.convoy-fleet {
  position: absolute;
  bottom: -76px;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 348px;
  z-index: 5;
  pointer-events: none;
  animation: convoyDrive 22s linear infinite
}

.convoy-v {
  flex-shrink: 0;
  height: auto;
  opacity: 0.9
}

@keyframes convoyDrive {
  0%   { transform: translateX(calc(100vw + 100px)) }
  100% { transform: translateX(-1600px) }
}


.dot-mark {
  position: relative;
  flex-shrink: 0;
  width: clamp(140px, 16vw, 220px);
  height: clamp(140px, 16vw, 220px);
  z-index: 2
}

.dot-mark svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 1.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0.001 1.1
}

.dotted-wordmark {
  position: relative;
  font-family: "Khand", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(96px, 14vw, 220px);
  line-height: .85;
  color: transparent;
  background-image: radial-gradient(circle, #fff 1.4px, transparent 1.6px);
  background-size: 6px 6px;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: .95;
  z-index: 2;
  padding-right: 0.12em
}

@media (max-width:640px) {
  .dot-band {
    gap: 14px;
    padding: 0 16px;
    height: 220px
  }
}

footer.foot {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 32px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px
}

@media (max-width:760px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:480px) {
  .foot-grid {
    grid-template-columns: 1fr
  }
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 340px
}

.foot-brand .lock {
  display: flex;
  align-items: center;
  gap: 10px
}

.foot-brand .lock .stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px
}

.foot-brand .lock .stack .name {
  font-family: "Khand";
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  display: block
}

.foot-brand .lock .stack .byrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px
}

.foot-brand .lock .convoy-mark {
  stroke: #fff !important
}

.foot-brand .blurb {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.55
}

.foot-col h5 {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 14px
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-family: "Manrope"
}

.foot-col a:hover {
  color: #fff
}

.foot-fine {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope";
  flex-wrap: wrap;
  gap: 12px
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 10, 15, 0.55);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px;
  overflow-y: auto;
}

.modal-overlay.open {
  display: flex
}

.modal {
  background: #fff;
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  padding: 32px;
  animation: modalIn .28s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0
  }

  to {
    transform: none;
    opacity: 1
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none
}

.modal h3 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 6px
}

.modal .modal-sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px
}

.modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.modal .field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.modal .field.full {
  grid-column: 1/-1
}

.modal label {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted)
}

.modal input,
.modal select,
.modal textarea {
  font-family: "Manrope";
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--glow-faint)
}

.modal textarea {
  min-height: 96px;
  resize: vertical
}

.modal .submit-row {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px
}

.modal .succ {
  display: none;
  text-align: center;
  padding: 32px 16px
}

.modal .succ.show {
  display: block
}

.modal .succ svg {
  width: 48px;
  height: 48px;
  stroke: var(--success);
  stroke-width: 1.8;
  fill: none;
  margin-bottom: 14px
}

.modal .succ h4 {
  font-family: "Khand";
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 8px
}

.modal .succ p {
  color: var(--muted);
  margin: 0
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============ FOCUS ============ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 6px
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}