:root {
  --bg: #07090a;
  --bg-2: #0b1112;
  --panel: #101619;
  --panel-2: #141d20;
  --text: #f7f2e8;
  --muted: #b8c0b8;
  --soft: #d7dfd6;
  --line: rgba(247, 242, 232, .14);
  --accent: #f3b35f;
  --accent-2: #69d4c6;
  --coral: #f07f62;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(105, 212, 198, .06), transparent 360px),
    linear-gradient(135deg, #07090a 0%, #0d1112 46%, #090b0e 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 70%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(7, 9, 10, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 179, 95, .8);
  border-radius: 8px;
  color: #111;
  background: linear-gradient(135deg, var(--accent), #ffe0a9);
  box-shadow: 0 12px 28px rgba(243, 179, 95, .18);
  font-weight: 950;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .92rem;
}

.nav a,
.header-cta,
.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 11px;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}

.header-cta {
  border: 1px solid rgba(105, 212, 198, .45);
  color: var(--soft);
  background: rgba(105, 212, 198, .08);
  font-weight: 800;
}

.header-cta:hover {
  border-color: rgba(243, 179, 95, .7);
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 18px 72px;
}

.hero-copy,
.hero-media,
.card,
.truth-card,
.check-list p,
.link-grid a {
  animation: liftIn .55s ease both;
}

.hero-copy {
  animation-delay: .04s;
}

.hero-media {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(247, 242, 232, .16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 10, .66), rgba(7, 9, 10, .08) 42%, rgba(7, 9, 10, .34)),
    linear-gradient(180deg, transparent 48%, rgba(7, 9, 10, .74));
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03);
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 9, 10, .68);
  backdrop-filter: blur(12px);
}

.media-caption span,
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.media-caption strong {
  color: var(--text);
  font-size: 1.04rem;
}

.eyebrow {
  margin: 0 0 14px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 920px;
  font-size: 5rem;
  line-height: .96;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  color: var(--soft);
  font-size: 1.28rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.button::after {
  content: ">";
  margin-left: 10px;
  font-weight: 900;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #ffe0a9);
  border-color: rgba(243, 179, 95, .9);
  color: #121212;
}

.button.secondary {
  background: rgba(255, 255, 255, .045);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 212, 198, .72);
}

.section {
  padding: 76px 18px;
}

.section > *,
.split {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 2.9rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section > p,
.section div > p {
  color: var(--muted);
  line-height: 1.75;
}

.intro-section {
  padding-top: 42px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 26px;
}

.truth-card {
  border: 1px solid rgba(105, 212, 198, .26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(105, 212, 198, .11), rgba(240, 127, 98, .07)),
    var(--panel);
  padding: 22px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .23);
}

.truth-card h3 {
  margin: 0 0 10px;
}

.truth-card p {
  margin: 0;
  color: var(--soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

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

.card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    var(--panel);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 212, 198, .42);
  background:
    linear-gradient(180deg, rgba(105, 212, 198, .075), rgba(255, 255, 255, .018)),
    var(--panel);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.muted-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(105, 212, 198, .08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    var(--bg-2);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.check-list p {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 22, 25, .78);
  color: var(--soft);
  line-height: 1.6;
}

.check-list span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(105, 212, 198, .13);
  border: 1px solid rgba(105, 212, 198, .46);
}

.check-list span::before {
  content: "";
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(42deg) translateY(-1px);
}

.link-grid {
  columns: 3 260px;
  column-gap: 16px;
  margin-top: 28px;
}

.link-grid a {
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 29, 32, .78);
  color: var(--text);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.link-grid a:hover {
  transform: translateX(3px);
  border-color: rgba(243, 179, 95, .55);
  background: rgba(243, 179, 95, .09);
}

.compact {
  padding-top: 54px;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .018), transparent);
}

.provider-hub {
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(18px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: #050607;
  color: var(--muted);
}

.site-footer div:first-child {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.image-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(201, 154, 77, .08), transparent 42%),
    rgba(255, 255, 255, .018);
}

.image-strip h2 {
  max-width: 940px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.image-grid figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
  transition: transform .3s ease;
}

.image-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 8, .86));
}

.image-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--text);
  font-size: .92rem;
  font-weight: 850;
}

.image-grid figure:hover img {
  transform: scale(1.035);
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-cta {
    width: max-content;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 58px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .split,
  .grid,
  .image-grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
    gap: 10px 12px;
  }

  .brand {
    font-size: .88rem;
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    overflow-x: visible;
    gap: 2px;
    font-size: .8rem;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 31px;
    padding: 5px 6px;
  }

  .hero {
    padding: 44px 14px 56px;
    gap: 28px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .media-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .section {
    padding: 54px 14px;
  }

  .section h2 {
    font-size: 2.15rem;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 14px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.42rem;
  }

  .section h2 {
    font-size: 1.86rem;
  }

  .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Verified-media safety: avoid presenting generated or unlicensed vehicle photos as fleet proof. */
.verified-media-placeholder {
  position: relative;
  display: grid;
  min-height: 100%;
  width: 100%;
  aspect-ratio: 16 / 10;
  place-items: end start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(226, 177, 80, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(16, 16, 16, 0.96), rgba(38, 32, 24, 0.94) 58%, rgba(8, 8, 8, 0.98));
  color: #f7f2e8;
}
.verified-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.verified-media-placeholder::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, rgba(226, 177, 80, 0), rgba(226, 177, 80, 0.9));
}
.verified-media-placeholder > span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  max-width: 24rem;
}
.verified-media-placeholder strong {
  display: block;
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.verified-media-placeholder small {
  color: rgba(247, 242, 232, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}
.media-pending-frame img {
  display: none !important;
}

/* 20260608-fleet-board */
.fleet-board-section .section-intro { max-width: 850px; color: var(--soft); line-height: 1.7; }
.fleet-model-board { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.fleet-model-card { min-height: 100%; border: 1px solid rgba(243,179,95,.22); border-radius: 8px; padding: 18px; background: linear-gradient(145deg, rgba(16,22,25,.96), rgba(7,9,10,.98)); box-shadow: 0 20px 58px rgba(0,0,0,.25); transition: transform .2s ease, border-color .2s ease; }
.fleet-model-card:hover { transform: translateY(-3px); border-color: rgba(105,212,198,.52); }
.fleet-model-card h3 { margin: 8px 0 10px; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.fleet-model-card p { color: var(--soft); line-height: 1.62; }
.model-kicker { color: var(--accent); font-weight: 950; font-size: .74rem; text-transform: uppercase; }
@media (max-width: 980px) { .fleet-model-board { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .fleet-model-board { grid-template-columns: 1fr; } }
