:root {
  --fog-opacity: 0.28;
  --particle-opacity: 0.3;
  --ember-opacity: 0.45;
}

body {
  background: radial-gradient(circle at top left, #152540 0, #05060a 55%, #020308 100%);
}

body.is-loading {
  overflow: hidden;
}

#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(2, 3, 8, 0.98), rgba(2, 3, 8, 1));
  display: grid;
  place-items: center;
  z-index: 1000;
  color: var(--off-grey);
}

.loader-inner {
  position: relative;
  width: min(520px, 90vw);
  text-align: center;
  padding: 2rem 1rem;
}

.loader-stripe {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), #ffdf4e, transparent);
  filter: blur(0.8px);
}

.loader-brand {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--white);
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.loader-crest {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -0.6rem auto 0.5rem;
  padding: 1.2rem;
  border-radius: 999px;
}

.loader-glow {
  position: absolute;
  inset: -12%;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 160, 120, 0.9) 0%, rgba(225, 6, 0, 0.35) 32%, transparent 60%),
    radial-gradient(circle at 12% 78%, rgba(90, 0, 0, 0.55), transparent 62%),
    radial-gradient(circle at 85% 10%, rgba(15, 0, 0, 0.4), transparent 58%);
  box-shadow:
    0 0 32px rgba(225, 6, 0, 0.65),
    0 0 95px rgba(15, 0, 0, 0.75);
  filter: blur(14px);
  opacity: 0.9;
  animation: loader-glow-pulse 4.8s ease-in-out infinite, loader-glow-ember 2.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

.loader-logo {
  position: relative;
  z-index: 1;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 3, 8, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  margin: 0;
}

.loader-logo .logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo .logo-mark span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.loader-logo .logo-mark::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.9) 45%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 100%
  );
  mix-blend-mode: screen;
  transform: translateX(-130%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  animation: logo-highlight-sweep 3.5s ease-in-out infinite;
  animation-delay: 1.1s;
}

.loader-logo .logo-text {
  text-align: left;
}

.loader-logo .logo-text span.name {
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.loader-logo .logo-text span.tagline {
  font-size: 0.78rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .loader-logo .logo-mark {
    box-shadow: 0 0 5px rgba(225, 6, 0, 0.45);
  }

  .loader-glow {
    box-shadow:
      0 0 10px rgba(225, 6, 0, 0.45),
      0 0 28px rgba(15, 0, 0, 0.55);
    filter: blur(3px);
  }
}

.loader-name {
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.4em;
  color: var(--off-grey);
}

.loader-skip {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--off-grey);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.loader-skip:hover,
.loader-skip:focus-visible {
  border-color: var(--red);
  color: var(--white);
}

@media (max-width: 768px) {
  .loader-skip {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff4136);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent, rgba(255, 255, 255, 0.25));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn span.icon {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  filter: brightness(1.05);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.35), 0 0 25px rgba(225, 6, 0, 0.5);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 0.6;
}

.btn:hover span.icon {
  transform: translateX(3px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5, 8, 15, 0.96), rgba(5, 8, 15, 0.85), transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #ff6f61 0, var(--red) 35%, #6b0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.5);
}

.logo-mark span {
  font-weight: 800;
  color: var(--white);
  font-size: 1.25rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span.name {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.logo-text span.tagline {
  font-size: 0.75rem;
  color: var(--off-grey);
  opacity: 0.75;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a {
  position: relative;
  color: var(--off-grey);
  font-weight: 500;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}

.site-nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 6, 10, 0.65);
  color: inherit;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
  z-index: 1001; /* keep toggle above the slide-out menu so it can close it */
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--red);
  outline: none;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--off-grey);
  transition: transform 0.3s ease, opacity 0.3s ease, background var(--transition-fast);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--red);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--red);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #ff9b71);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

nav a:hover {
  color: var(--white);
}

nav a:hover::after {
  width: 100%;
}

nav a:focus-visible {
  outline: none;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-fog,
.hero-particles,
.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-fog::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  opacity: var(--fog-opacity);
  animation: fog-drift 18s ease-in-out infinite alternate;
  filter: blur(60px);
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: var(--particle-opacity);
  animation: particles-rise 22s linear infinite;
}

.hero-particles::after {
  background-size: 100px 100px;
  animation-duration: 18s;
  opacity: calc(var(--particle-opacity) * 0.8);
}

.hero-embers::before,
.hero-embers::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.5) 0, transparent 70%);
  opacity: var(--ember-opacity);
  filter: blur(36px);
  animation: ember-pulse 6s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero/hero-bg-scania.webp');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.32;
  transform: translate3d(0, 0, 0);
  transition: transform 1.2s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(10, 10, 20, 0.1), rgba(0, 0, 0, 0.85));
}

@media (max-width: 768px) {
  .hero-bg::before {
    content: none;
    background-image: none;
  }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
  align-items: center;
  z-index: 1;
}

.hero-copy {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--off-grey);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.75);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 span.highlight {
  color: var(--red);
  text-shadow: 0 0 22px rgba(225, 6, 0, 0.45);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--off-grey);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--off-grey);
  opacity: 0.9;
  margin-bottom: 2.2rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-metadata span {
  position: relative;
  padding-left: 1.2rem;
}

.hero-metadata span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff9b71);
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.hero-secondary-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-grey);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.hero-secondary-link::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--off-grey), transparent);
  transition: width var(--transition-fast), background var(--transition-fast);
}

.hero-secondary-link:hover::after {
  width: 34px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero-secondary-link:focus-visible {
  outline: none;
  color: var(--white);
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
}

.hero-card {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.01) 38%, rgba(0, 0, 0, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.35s ease;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.hero-underglow {
  position: absolute;
  bottom: -24px;
  left: 8%;
  right: 8%;
  height: 60px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.55), transparent 70%);
  filter: blur(22px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.hero-truck-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.hero-truck-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 4s ease-out;
  position: relative;
  z-index: 0;
}

.hero-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55));
  pointer-events: none;
  z-index: 1;
}

.hero-wireframe {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    linear-gradient(225deg, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
  mix-blend-mode: screen;
  opacity: 0;
  animation: wireframe-fade 2.5s ease-out forwards;
}

@keyframes wireframe-fade {
  0% {
    opacity: 0.8;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

.hero-specs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.1rem;
  padding: 1rem 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(3, 4, 8, 0) 0%, rgba(3, 4, 8, 0.6) 35%, rgba(0, 0, 0, 0.9) 85%);
  z-index: 2;
}

.hero-spec {
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--off-grey);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateY(10px);
  opacity: 0;
  animation: spec-pop 0.6s var(--transition-med) forwards;
}

.hero-spec:nth-child(1) {
  animation-delay: 0.4s;
}

.hero-spec:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-spec:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes spec-pop {
  from {
    transform: translateY(14px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.hero-spec-label {
  opacity: 0.8;
}

.hero-spec-value {
  font-size: 0.85rem;
  color: var(--white);
}

.hero-spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--off-grey);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(225, 6, 0, 0.9);
}

.hero-floating-badge {
  position: absolute;
  right: -0.6rem;
  top: 1.1rem;
  background: radial-gradient(circle at top left, rgba(225, 6, 0, 0.25), rgba(0, 0, 0, 0.95));
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(225, 6, 0, 0.6);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--off-grey);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  transform: translate3d(0, 0, 0);
  animation: float-badge 4s ease-in-out infinite alternate;
}

@keyframes float-badge {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-6px, 6px, 0);
  }
}

.hero-floating-badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2dffb8;
  box-shadow: 0 0 16px rgba(45, 255, 184, 0.8);
}

.hero-mesh-lines {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 20%, rgba(225, 6, 0, 0.22) 0, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(74, 144, 226, 0.2) 0, transparent 50%);
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-mesh-lines::before,
.hero-mesh-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18) 0, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.12) 0, transparent 60%);
  opacity: 0.3;
  mix-blend-mode: soft-light;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--off-grey);
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}

.section-subtitle {
  font-size: 0.95rem;
  max-width: 32rem;
  color: var(--off-grey);
  margin-top: 0.7rem;
}

.panel-alt {
  background: radial-gradient(circle at top, #151d30 0, #05060a 80%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.routes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.map-card {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.02);
  max-width: 500px;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
  transform-origin: center;
}

.map-card-shell {
  display: flex;
  width: 100%;
}

.map-inner {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0, #1b293e, #020309);
  overflow: hidden;
  padding: 0.75rem;
  min-height: 470px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: soft-light;
  opacity: 0.7;
}

.map-uk {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

.map-uk img {
  width: 100%;
  display: block;
  filter: saturate(0.95) contrast(1.05);
}

.map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-route {
  fill: none;
  stroke: rgba(225, 6, 0, 0.8);
  stroke-width: 2;
  stroke-dasharray: 4 10;
  animation: map-route-dash 3s linear infinite;
  animation-play-state: paused;
}

.map-route--south {
  animation-duration: 3.8s;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 223, 78, 0.95);
  box-shadow: 0 0 12px rgba(255, 223, 78, 0.85);
  animation: map-dot-travel 4s linear infinite;
  animation-play-state: paused;
  offset-rotate: auto;
}

.map-dot--north {
  offset-path: path('M250 280 C236 230 228 180 218 110');
}

.map-dot--south {
  offset-path: path('M250 280 C258 300 266 320 274 335');
  animation-duration: 4.2s;
  animation-delay: 0.4s;
}

.map-glow {
  position: absolute;
  left: 61%;
  top: 69%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 40, 20, 0.42) 0%, rgba(175, 20, 10, 0.2) 45%, transparent 70%);
  filter: blur(16px);
  opacity: 0.75;
  box-shadow: 0 0 32px rgba(255, 40, 20, 0.28);
  animation: map-glow-pulse 4.5s ease-in-out infinite;
  animation-play-state: paused;
}

.map-destination {
  position: absolute;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.map-destination--north {
  left: 54%;
  top: 22%;
}

.map-destination--south {
  left: 70%;
  top: 78%;
}

.map-caption {
  position: absolute;
  left: 1.4rem;
  top: 1.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--off-grey);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-caption span.swatch {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ffdf4e);
}

.map-card.is-active .map-arc,
.map-card.is-active .map-dot,
.map-card.is-active .map-glow {
  animation-play-state: running;
}

.routes-list {
  display: grid;
  gap: 1rem;
}

.route-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.02), rgba(4, 6, 14, 0.96));
  background-size: 220%;
  animation: chrome-shimmer 22s linear infinite;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  font-size: 0.85rem;
  cursor: default;
  overflow: hidden;
  transition: transform var(--transition-med), border-color var(--transition-fast), box-shadow var(--transition-med), background-position 1.2s ease;
}

.route-item::before {
  content: '';
  position: absolute;
  inset: -30% -60%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.25), transparent 55%);
  transform: translateX(-40%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.route-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(225, 6, 0, 0.08));
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 0;
}

.route-item > * {
  position: relative;
  z-index: 1;
}

.route-item:hover,
.route-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
  background-position: 100% 50%;
}

.route-item:hover::before,
.route-item:focus-within::before {
  opacity: 0.8;
  transform: translateX(10%);
}

.route-item:hover::after,
.route-item:focus-within::after {
  opacity: 0.4;
}

.route-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.route-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--off-grey);
}

.route-value {
  color: var(--white);
}

.route-pill {
  position: relative;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--off-grey);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.9));
  background-size: 200%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4), 0 8px 18px rgba(0, 0, 0, 0.35);
  cursor: default;
  transition: transform var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), background-position 0.6s ease, box-shadow var(--transition-fast);
}

.route-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 0;
}

.route-pill span {
  position: relative;
  z-index: 1;
}

.route-pill:hover,
.route-pill:focus-visible {
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(225, 6, 0, 0.7);
  color: var(--white);
  background-position: 100% 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  outline: none;
}

.route-pill:hover::after,
.route-pill:focus-visible::after {
  opacity: 0.35;
}

.route-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.9);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.route-pill:hover .route-pill-dot,
.route-pill:focus-visible .route-pill-dot {
  transform: scale(1.35);
  box-shadow: 0 0 18px rgba(225, 6, 0, 0.95);
}

.fleet-chip,
.hero-spec,
.card,
.hero-card {
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.65));
  background-size: 220%;
  animation: chrome-shimmer 18s linear infinite;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.fleet-card-shell {
  display: flex;
  width: 100%;
}

.fleet-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, #1a2639, #05070c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
  --tilt-lift: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(var(--tilt-lift, 0px));
  transform-style: preserve-3d;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-fast);
  will-change: transform;
}

.fleet-card:hover {
  --tilt-lift: 12px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.9);
  border-color: rgba(225, 6, 0, 0.7);
}

.fleet-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 0;
}

.fleet-media img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  transition: transform 0.6s ease;
  transform-origin: center;
}

.fleet-card:hover .fleet-media img {
  transform: translateZ(12px) scale(1.08);
}

.fleet-body {
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--off-grey);
}

.fleet-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.72rem;
}

.fleet-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-placeholder {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--off-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(4, 6, 14, 0.96));
  background-size: 220%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--transition-med),
    border-color var(--transition-fast),
    box-shadow var(--transition-med),
    background-position 1.2s ease;
}

.contact-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(225, 6, 0, 0.08));
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.contact-placeholder:focus-within,
.contact-placeholder:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.5);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.7);
  background-position: 100% 50%;
}

.contact-placeholder:hover::after,
.contact-placeholder:focus-within::after {
  opacity: 0.35;
}

.contact-placeholder span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.contact-placeholder span::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E10600' viewBox='0 0 16 16'%3E%3Cpath d='M8 1.2a6.8 6.8 0 1 0 0 13.6A6.8 6.8 0 0 0 8 1.2Zm.6 2.3v3.8l2.5 2.5-.9.9-2.9-2.9V3.5h1.3Z'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(225, 6, 0, 0.4));
}

.contact-placeholder p {
  position: relative;
  margin: 0.35rem 0;
  z-index: 1;
}

.contact-placeholder p a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.contact-placeholder p a::before {
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(225, 6, 0, 0.35));
}

.contact-placeholder p a[href^="mailto:"]::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Crect width='18' height='12.5' x='1' y='3.75' rx='1.75' ry='1.75' fill='rgba(255,255,255,0.1)' stroke='%23E10600' stroke-width='1.2'/%3E%3Cpath stroke='%23ffffff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' d='M2.3 5l7.7 5 7.7-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-placeholder p a[href^="tel:"]::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E10600' viewBox='0 0 20 20'%3E%3Cpath d='M6.24 8.97a11.9 11.9 0 0 0 4.8 4.8l1.67-1.67a.8.8 0 0 1 .84-.19c.93.31 1.92.48 2.94.48.44 0 .8.36.8.8v2.78c0 .44-.36.8-.8.8C9.33 17.77 2.23 10.67 2.23 1.8c0-.44.36-.8.8-.8h2.78c.44 0 .8.36.8.8 0 1.02.17 2.01.48 2.94.08.29.02.6-.19.84L6.24 8.97Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-placeholder p a:hover,
.contact-placeholder p a:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(225, 6, 0, 0.8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  color: var(--white);
  outline: none;
}

.compliance-card {
  max-width: 520px;
}

.compliance-caption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}

.compliance-card .map-inner {
  min-height: 470px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 0, rgba(27, 41, 62, 0.92), rgba(2, 3, 9, 0.98));
}

.compliance-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.compliance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compliance-visual::after {
  display: none;
}

footer {
  padding: 2.4rem 0 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition-med), transform 0.7s var(--transition-med);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid,
  .routes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 5.5rem;
    align-items: flex-start;
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .hero-visual {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    width: min(480px, calc(100% - 2.5rem));
    transform: translate(-50%, -8px) scale(0.98);
    transform-origin: top center;
    background: rgba(5, 6, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.3s var(--transition-med),
      transform 0.3s var(--transition-med);
    z-index: 999;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-align: right;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    text-align: left;
    margin-inline: 0;
    padding-inline: 0;
    max-width: none;
  }

  .hero h1 {
    max-width: 22rem;
    margin-inline: 0;
    letter-spacing: 0.1em;
  }

  .hero-subtitle {
    max-width: 22rem;
    margin-inline: 0;
  }

  .hero-actions,
  .hero-metadata {
    justify-content: center;
  }

  .hero-mesh-lines {
    opacity: 0.35;
  }

  .hero-bg::before {
    opacity: 0.22;
  }

  .map-inner {
    min-height: auto;
    padding-bottom: 0.5rem;
  }

  .map-card {
    max-width: none;
  }

  .compliance-card .map-inner {
    min-height: auto;
    padding: 0.75rem;
  }

  .compliance-visual {
    aspect-ratio: auto;
  }

  .contact-placeholder .contact-label {
    display: none;
  }
}

@keyframes fog-drift {
  from {
    transform: translate3d(-40px, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -20px, 0) scale(1.1);
  }
}

@keyframes particles-rise {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-40px);
  }
}

@keyframes ember-pulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: var(--ember-opacity);
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes chrome-shimmer {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes map-dot-travel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

@keyframes map-route-dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes map-glow-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.85;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0.45;
  }
}

@keyframes loader-glow-pulse {
  0% {
    transform: translate3d(0, 0, 0) scale(0.97);
    opacity: 0.55;
  }
  30% {
    transform: translate3d(0, 1px, 0) scale(1);
    opacity: 0.98;
  }
  60% {
    transform: translate3d(0, -1px, 0) scale(1.015);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.97);
    opacity: 0.55;
  }
}


@keyframes loader-glow-ember {
  0% {
    box-shadow: 0 0 24px rgba(185, 0, 0, 0.45), 0 0 70px rgba(10, 0, 0, 0.55);
    filter: blur(13px);
  }
  50% {
    box-shadow: 0 0 42px rgba(255, 40, 15, 0.85), 0 0 125px rgba(30, 0, 0, 0.85);
    filter: blur(16px);
  }
  100% {
    box-shadow: 0 0 24px rgba(185, 0, 0, 0.45), 0 0 70px rgba(10, 0, 0, 0.55);
    filter: blur(13px);
  }
}

@keyframes logo-highlight-sweep {
  0% {
    transform: translateX(-130%) rotate(18deg);
    opacity: 0;
  }
  18% {
    opacity: 0.85;
  }
  32% {
    transform: translateX(130%) rotate(18deg);
    opacity: 0;
  }
  100% {
    transform: translateX(130%) rotate(18deg);
    opacity: 0;
  }
}
