:root {
  --bg-0: #070d17;
  --bg-1: #0c1424;
  --bg-2: #111d33;
  --surface-0: rgba(14, 24, 42, 0.68);
  --surface-1: rgba(17, 30, 52, 0.78);
  --surface-2: rgba(20, 34, 58, 0.9);
  --line: rgba(128, 167, 255, 0.24);
  --line-strong: rgba(128, 167, 255, 0.38);
  --text-0: #f2f6ff;
  --text-1: #c7d5f8;
  --text-2: #92a8da;
  --brand: #4f88ff;
  --brand-strong: #2c63da;
  --accent: #f4b11f;
  --accent-strong: #da9306;
  --shadow-xl: 0 40px 100px rgba(2, 7, 16, 0.62);
  --shadow-lg: 0 20px 50px rgba(2, 8, 18, 0.45);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", "Inter", "Segoe UI", sans-serif;
  color: var(--text-0);
  background:
    radial-gradient(circle at 12% 8%, rgba(79, 136, 255, 0.22), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(244, 177, 31, 0.12), transparent 24%),
    linear-gradient(165deg, var(--bg-0), var(--bg-1) 58%, #091224 100%);
  min-height: 100vh;
}

body[data-nav-open="true"] {
  overflow: hidden;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(161, 189, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(161, 189, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.22;
  z-index: -1;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

main {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(121, 158, 240, 0.2);
  background: rgba(7, 13, 23, 0.72);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: var(--text-0);
  text-decoration: none;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: rgba(15, 24, 40, 0.9);
  color: var(--text-0);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.call-cta,
.app-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.call-cta {
  color: var(--text-0);
  border: 1px solid var(--line-strong);
  background: rgba(24, 39, 66, 0.75);
}

.call-cta.ghost {
  background: transparent;
}

.app-cta {
  color: #111827;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), #ffd15f);
  box-shadow: 0 8px 25px rgba(244, 177, 31, 0.35);
}

.call-cta:hover,
.app-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hero {
  position: relative;
  padding: 84px 0 34px;
}

.hero-home {
  overflow: clip;
}

.hero-home-immersive {
  min-height: min(900px, 100vh);
  padding: 118px 0 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(72, 146, 255, 0.24), transparent 36%),
    radial-gradient(circle at 80% 18%, rgba(49, 123, 247, 0.22), transparent 32%),
    radial-gradient(circle at 48% 58%, rgba(8, 36, 86, 0.72), transparent 63%),
    linear-gradient(180deg, #041022 0%, #020814 58%, #040f20 100%);
}

.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-cinematic-bg::before {
  content: "";
  position: absolute;
  inset: -2%;
  background:
    linear-gradient(0deg, rgba(2, 8, 17, 0.32), rgba(2, 8, 17, 0.32)),
    url("/images/oversize-load-convoy-front-hq-hero.webp");
  background-size: cover;
  background-position: center 56%;
  transform: scale(1.05);
  filter: saturate(0.96) brightness(0.78) contrast(1.04) blur(0.25px);
}

.hero-cinematic-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(80, 153, 255, 0.12), rgba(2, 8, 17, 0.02) 48%, rgba(2, 8, 17, 0.34) 100%),
    linear-gradient(180deg, rgba(2, 7, 16, 0.04) 0%, rgba(2, 7, 16, 0.36) 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(150, 192, 255, 0.16), transparent 35%),
    radial-gradient(circle at 78% 14%, rgba(109, 162, 255, 0.12), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(4, 17, 37, 0) 40%, rgba(1, 6, 14, 0.54) 100%);
}

.hero-strobe-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.strobe {
  position: absolute;
  width: clamp(6px, 0.6vw, 10px);
  aspect-ratio: 1;
  border-radius: 1.5px;
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(0.94);
  filter: blur(0.1px);
}

.strobe::before {
  content: "";
  position: absolute;
  inset: -220%;
  border-radius: inherit;
  opacity: 0.82;
  filter: blur(5px);
}

.strobe-quad {
  top: 72.1%;
  background: linear-gradient(180deg, rgba(255, 236, 171, 0.95) 0%, rgba(255, 178, 46, 0.96) 62%, rgba(255, 139, 34, 0.98) 100%);
  box-shadow:
    0 0 3px rgba(255, 172, 38, 0.8),
    0 0 9px rgba(255, 154, 43, 0.54);
  animation: hero-strobe-quad 2.25s linear infinite;
}

.strobe-quad::before {
  background: radial-gradient(circle, rgba(255, 189, 86, 0.52) 0%, rgba(255, 189, 86, 0) 72%);
}

.strobe-quad-1 { left: 49%; }
.strobe-quad-2 {
  left: 49.8%;
  animation-delay: 0.12s;
}
.strobe-quad-3 {
  left: 50.6%;
  animation-delay: 0.24s;
}
.strobe-quad-4 {
  left: 51.4%;
  animation-delay: 0.36s;
}

.strobe-white {
  top: 73.8%;
  width: clamp(6px, 0.62vw, 11px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.99) 0%, rgba(222, 242, 255, 0.82) 52%, rgba(222, 242, 255, 0.05) 100%);
  box-shadow:
    0 0 3px rgba(227, 246, 255, 0.88),
    0 0 7px rgba(162, 216, 255, 0.46);
  animation: hero-strobe-white-alt 0.9s linear infinite;
}

.strobe-white::before {
  inset: -130%;
  opacity: 0.64;
  filter: blur(3.5px);
  background: radial-gradient(circle, rgba(191, 228, 255, 0.52) 0%, rgba(191, 228, 255, 0) 76%);
}

.strobe-white-left {
  left: 45.8%;
}

.strobe-white-right {
  left: 54.2%;
  animation-delay: 0.45s;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-1 {
  width: clamp(280px, 34vw, 460px);
  aspect-ratio: 1;
  left: -7%;
  top: 10%;
  background: radial-gradient(circle, rgba(79, 136, 255, 0.48), rgba(79, 136, 255, 0) 68%);
}

.orb-2 {
  width: clamp(230px, 24vw, 360px);
  aspect-ratio: 1;
  right: -3%;
  top: 14%;
  background: radial-gradient(circle, rgba(244, 177, 31, 0.34), rgba(244, 177, 31, 0) 66%);
}

.orb-3 {
  width: clamp(180px, 22vw, 300px);
  aspect-ratio: 1;
  right: 28%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(132, 173, 255, 0.2), rgba(132, 173, 255, 0) 65%);
}

.hero-smoke-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.smoke-a {
  width: clamp(440px, 52vw, 920px);
  aspect-ratio: 1.4;
  left: -6%;
  top: 10%;
  background: radial-gradient(circle at 42% 42%, rgba(40, 112, 255, 0.9), rgba(8, 22, 56, 0) 73%);
}

.smoke-b {
  width: clamp(420px, 44vw, 780px);
  aspect-ratio: 1.3;
  right: -4%;
  top: 24%;
  background: radial-gradient(circle at 50% 40%, rgba(28, 96, 233, 0.78), rgba(8, 18, 49, 0) 70%);
}

.smoke-c {
  width: clamp(360px, 36vw, 660px);
  aspect-ratio: 1.2;
  left: 20%;
  bottom: -8%;
  background: radial-gradient(circle at 42% 46%, rgba(22, 78, 200, 0.8), rgba(10, 19, 43, 0) 70%);
}

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

.hero-copy {
  max-width: 640px;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-logo-shell {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 8px rgba(176, 229, 255, 0.28))
    drop-shadow(0 0 18px rgba(86, 161, 246, 0.22))
    drop-shadow(0 10px 22px rgba(3, 11, 26, 0.36));
}

.hero-logo-svg {
  width: clamp(360px, 66vw, 1080px);
  max-width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  mix-blend-mode: normal;
  shape-rendering: geometricPrecision;
  text-rendering: geometricPrecision;
}

.hero-logo-svg .logo-primary {
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 14px rgba(234, 95, 112, 0.28))
    drop-shadow(0 0 28px rgba(217, 58, 119, 0.24));
}

.hero-logo-svg .logo-secondary {
  fill: rgba(226, 238, 255, 0.96) !important;
  filter: drop-shadow(0 0 10px rgba(169, 214, 255, 0.24));
}

.eyebrow {
  margin: 0 0 10px;
  color: #9db8f3;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.8vw, 4rem);
  max-width: 15ch;
  text-wrap: balance;
}

.lead {
  margin: 18px 0 0;
  color: var(--text-1);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.62;
  max-width: 60ch;
}

.hero-subline {
  margin: 18px 0 0;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-tagline {
  margin: 17px 0 0;
  color: #dce9ff;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.71rem;
  font-weight: 700;
}

.hero-summary {
  margin: 16px auto 0;
  max-width: 60ch;
  color: rgba(219, 232, 255, 0.84);
  line-height: 1.58;
  font-size: 0.92rem;
}

.hero-minimal-actions {
  margin: 24px 0 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 0.69rem;
  letter-spacing: 0.17em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-minimal-actions a {
  color: #e9f1ff;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(158, 197, 255, 0.25);
}

.hero-minimal-actions a:hover {
  text-decoration: none;
  color: #ffffff;
  border-color: rgba(235, 245, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.phone-link {
  color: var(--text-1);
  font-weight: 700;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(135, 171, 250, 0.28);
  background: var(--surface-0);
  box-shadow: var(--shadow-xl);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.cred-band {
  padding: 14px 0 36px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cred-card {
  background: linear-gradient(145deg, rgba(25, 40, 66, 0.75), rgba(12, 22, 39, 0.9));
  border: 1px solid rgba(123, 161, 243, 0.28);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.cred-value {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: #fff;
  font-weight: 800;
}

.cred-label {
  margin: 8px 0 0;
  color: #9fb8ef;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cred-copy {
  margin: 10px 0 0;
  color: var(--text-1);
  font-size: 0.92rem;
  line-height: 1.45;
}

.content {
  padding: 22px 0 42px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
}

.section-head p {
  margin: 12px 0 0;
  color: var(--text-1);
  line-height: 1.62;
}

.prose {
  max-width: 78ch;
  color: var(--text-1);
  line-height: 1.68;
}

.prose h2,
.prose h3 {
  color: var(--text-0);
  margin-top: 1.8rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--text-2);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--text-1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-proof .proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(127, 164, 243, 0.26);
  background: linear-gradient(180deg, rgba(22, 36, 60, 0.78), rgba(14, 24, 41, 0.95));
  box-shadow: var(--shadow-lg);
}

.proof-card img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-card figcaption {
  margin: 0;
  padding: 12px 13px;
  color: var(--text-1);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-grid li a {
  display: block;
  height: 100%;
  border-radius: var(--radius-md);
  padding: 15px 14px;
  background: linear-gradient(145deg, rgba(24, 39, 65, 0.78), rgba(14, 24, 41, 0.92));
  border: 1px solid rgba(122, 160, 240, 0.24);
  color: #dce8ff;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid li a:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 192, 255, 0.5);
  box-shadow: 0 16px 28px rgba(5, 12, 24, 0.45);
}

.coverage-map-grid {
  margin: 12px 0 6px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.coverage-state-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 96px;
  border-radius: var(--radius-md);
  padding: 14px 12px;
  background: linear-gradient(145deg, rgba(24, 39, 65, 0.78), rgba(14, 24, 41, 0.92));
  border: 1px solid rgba(122, 160, 240, 0.24);
  color: #dce8ff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.coverage-state-tile span {
  font-weight: 700;
  line-height: 1.35;
}

.coverage-state-tile small {
  color: var(--text-2);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.coverage-state-tile:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(159, 192, 255, 0.5);
  box-shadow: 0 16px 28px rgba(5, 12, 24, 0.45);
}

.link-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.link-grid li a {
  display: block;
  border-radius: var(--radius-md);
  padding: 13px 12px;
  background: linear-gradient(145deg, rgba(24, 39, 65, 0.78), rgba(14, 24, 41, 0.92));
  border: 1px solid rgba(122, 160, 240, 0.24);
  color: #dce8ff;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.link-grid li a:hover {
  border-color: rgba(159, 192, 255, 0.5);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-radius: var(--radius-md);
  padding: 16px 14px;
  background: linear-gradient(150deg, rgba(23, 38, 63, 0.78), rgba(12, 22, 38, 0.9));
  border: 1px solid rgba(124, 162, 240, 0.24);
}

.step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, rgba(79, 136, 255, 0.26), rgba(244, 177, 31, 0.32));
  border: 1px solid rgba(159, 192, 255, 0.45);
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
}

.timeline h3 {
  font-size: 1.06rem;
}

.timeline p {
  margin: 7px 0 0;
  color: var(--text-1);
  line-height: 1.52;
}

.section-final-cta {
  padding-bottom: 66px;
}

.final-cta {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(164, 197, 255, 0.36);
  background:
    linear-gradient(145deg, rgba(27, 45, 76, 0.8), rgba(11, 21, 37, 0.96));
  box-shadow: var(--shadow-xl);
}

.final-cta h2 {
  margin-top: 10px;
  font-size: clamp(1.65rem, 3.8vw, 2.8rem);
  max-width: 18ch;
}

.final-cta p {
  margin: 14px 0 0;
  color: var(--text-1);
  line-height: 1.62;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid rgba(121, 158, 240, 0.22);
  background: rgba(6, 11, 20, 0.76);
  backdrop-filter: blur(4px);
}

.footer-grid {
  display: grid;
  gap: 22px;
  padding: 30px 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.footer-grid h4 {
  margin: 0 0 10px;
  color: #ecf3ff;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 4px 0;
  color: var(--text-1);
  line-height: 1.5;
}

.legal {
  border-top: 1px solid rgba(121, 158, 240, 0.17);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 0 24px;
  color: var(--text-2);
  font-size: 0.88rem;
}

body.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-direction: column;
    border: 1px solid rgba(121, 158, 240, 0.25);
    background: rgba(8, 14, 24, 0.95);
    border-radius: 14px;
    padding: 12px;
    gap: 8px;
  }

  body[data-nav-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 8px 6px;
  }

  .header-ctas {
    justify-self: end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-home-immersive {
    min-height: min(760px, 100vh);
    padding-top: 102px;
  }

  .cred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-proof .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .header-ctas {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-home-immersive {
    min-height: min(700px, 100vh);
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .hero-tagline {
    letter-spacing: 0.12em;
  }

  .hero-minimal-actions {
    gap: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
  }

  .cred-grid {
    grid-template-columns: 1fr;
  }

  .section-proof .proof-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .step {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.home-hero-logo-wrap {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  line-height: 0;
  --logo-float-duration: 7.2s;
  --logo-breathe-duration: 6.2s;
  --logo-sweep-duration: 4.8s;
  animation: logo-liquid-float var(--logo-float-duration) ease-in-out infinite;
  will-change: transform, opacity;
}

.home-hero-logo-wrap.hero-logo-shell { filter: none; }

.home-hero-logo-wrap .home-hero-logo {
  position: relative;
  z-index: 2;
  opacity: 0.82;
  filter:
    drop-shadow(0 0 8px rgba(176, 229, 255, 0.24))
    drop-shadow(0 0 18px rgba(86, 161, 246, 0.16))
    brightness(1.03)
    saturate(1.04);
}

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .home-hero-logo-wrap::before,
  .home-hero-logo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    -webkit-mask-image: url("/images/osow-shape.svg?v=1");
    mask-image: url("/images/osow-shape.svg?v=1");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    will-change: transform, opacity, background-position;
  }

  .home-hero-logo-wrap::before {
    background:
      linear-gradient(
        130deg,
        rgba(244, 251, 255, 0.34) 0%,
        rgba(172, 216, 255, 0.18) 24%,
        rgba(120, 186, 255, 0.14) 48%,
        rgba(222, 244, 255, 0.24) 74%,
        rgba(255, 255, 255, 0.30) 100%
      );
    -webkit-backdrop-filter: blur(6px) saturate(1.35) brightness(1.08);
    backdrop-filter: blur(6px) saturate(1.35) brightness(1.08);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.42),
      inset 0 -1px 2px rgba(0, 30, 70, 0.22);
    opacity: 0.64;
    animation: logo-liquid-breathe var(--logo-breathe-duration) ease-in-out infinite;
  }

  .home-hero-logo-wrap::after {
    z-index: 4;
    background:
      linear-gradient(
        112deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 43%,
        rgba(255, 255, 255, 0.24) 49%,
        rgba(255, 255, 255, 0.58) 52%,
        rgba(255, 255, 255, 0.20) 56%,
        rgba(255, 255, 255, 0) 64%,
        rgba(255, 255, 255, 0) 100%
      );
    background-size: 220% 100%;
    background-position: -160% 50%;
    mix-blend-mode: screen;
    opacity: 0.82;
    animation: logo-liquid-sweep var(--logo-sweep-duration) linear infinite;
  }

  .home-hero-logo-wrap .home-hero-logo {
    opacity: 0.62;
  }
}

@keyframes logo-liquid-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -1.5px, 0); }
}

@keyframes logo-liquid-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.70;
  }
  50% {
    transform: translate3d(0, -1.5px, 0) scale(1.007);
    opacity: 0.72;
  }
}

@keyframes logo-liquid-sweep {
  0% {
    background-position: -160% 50%;
    opacity: 0;
  }
  10% { opacity: 0.52; }
  55% { opacity: 0.86; }
  100% {
    background-position: 160% 50%;
    opacity: 0;
  }
}

@keyframes hero-strobe-quad {
  0%, 64%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  66% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(1.03);
  }
  68% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.95);
  }
  71% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1.08);
  }
  74% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(0.97);
  }
  77% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.04);
  }
  80% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@keyframes hero-strobe-white-alt {
  0%, 8% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  10%, 34% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(1.04);
  }
  36%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-logo-wrap,
  .home-hero-logo-wrap::before,
  .home-hero-logo-wrap::after,
  .strobe {
    animation: none !important;
  }
}
