:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-2: #0d1117;
  --panel: #11161d;
  --panel-2: #171f2a;
  --panel-3: #0b0f14;
  --text: #f8f4ec;
  --muted: #b7b0a6;
  --soft: #817a70;
  --accent: #f2c14e;
  --accent-2: #6fd3c6;
  --wine: #7b2d34;
  --green: #17342f;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .22);
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 4%, rgba(242, 193, 78, .10), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(111, 211, 198, .08), transparent 26%),
    linear-gradient(180deg, #07080a 0%, #0c1016 42%, #07080a 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 99;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, .88);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(242, 193, 78, .75);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), #ffe39a);
  color: #090806;
  box-shadow: 0 10px 24px rgba(242, 193, 78, .14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 9px 0;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  padding: 9px 12px !important;
  border: 1px solid rgba(242, 193, 78, .5);
  border-radius: 6px;
  color: var(--text);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero {
  min-height: 76vh;
}

.page-hero {
  min-height: 56vh;
  background:
    linear-gradient(135deg, rgba(123, 45, 52, .22), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 40%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 60% 35%, #000 0%, transparent 72%);
  opacity: .38;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.lead,
.hero-copy > p:not(.eyebrow) {
  max-width: 810px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.64;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: rgba(242, 193, 78, .9);
  background: linear-gradient(135deg, var(--accent), #ffe39a);
  color: #080806;
  box-shadow: 0 14px 34px rgba(242, 193, 78, .14);
}

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

.button.secondary:hover {
  border-color: rgba(111, 211, 198, .55);
}

.hero-visual {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(123, 45, 52, .44), transparent 42%),
    linear-gradient(145deg, rgba(111, 211, 198, .16), transparent 36%),
    linear-gradient(135deg, #151923, #08090c);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 26px;
  overflow: hidden;
}

.hero-photo-panel {
  margin: 0;
  isolation: isolate;
}

.hero-photo-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(.96) contrast(1.04);
}

.hero-photo-panel::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, .72), rgba(7, 8, 10, .08) 58%, rgba(7, 8, 10, .42)),
    linear-gradient(0deg, rgba(7, 8, 10, .76), transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px, 70px 70px;
  opacity: 1;
}

.hero-photo-panel::after {
  z-index: 1;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .62;
}

.hero-visual::after {
  content: "ATL";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255, 255, 255, .08);
  font-size: 104px;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-visual.hero-photo-panel::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, .72), rgba(7, 8, 10, .08) 58%, rgba(7, 8, 10, .42)),
    linear-gradient(0deg, rgba(7, 8, 10, .76), transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: auto, auto, 70px 70px, 70px 70px;
  opacity: 1;
}

.hero-visual.hero-photo-panel::after {
  z-index: 1;
}

.route-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent), transparent);
  opacity: .72;
}

.route-line.one {
  left: 16%;
  top: 38%;
  width: 64%;
  transform: rotate(-17deg);
}

.route-line.two {
  left: 28%;
  top: 58%;
  width: 56%;
  transform: rotate(22deg);
}

.route-node {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #0b0f14;
  box-shadow: 0 0 0 8px rgba(242, 193, 78, .08);
}

.node-a {
  left: 17%;
  top: 35%;
}

.node-b {
  right: 18%;
  top: 28%;
}

.node-c {
  left: 46%;
  bottom: 28%;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(111, 211, 198, .08);
}

.visual-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  border: 1px solid rgba(111, 211, 198, .34);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(7, 8, 10, .76);
  backdrop-filter: blur(10px);
}

.card.media-card {
  padding-top: 0;
}

.card-media {
  position: relative;
  min-height: 156px;
  margin: -1px -1px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #090d12;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
  transition: transform .28s ease;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 8, 10, .86));
}

.card-media span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 6px 9px;
  border: 1px solid rgba(242, 193, 78, .36);
  border-radius: 6px;
  background: rgba(7, 8, 10, .64);
  color: var(--text);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.card.media-card:hover .card-media img {
  transform: scale(1.04);
}

.visual-kicker {
  margin: 0 0 8px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-panel h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.08;
}

.visual-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.visual-list li {
  padding-left: 18px;
  position: relative;
}

.visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--accent-2);
  text-decoration: none;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--soft);
}

.section {
  padding: clamp(54px, 6vw, 78px) clamp(18px, 5vw, 76px);
}

.section p {
  color: var(--muted);
  line-height: 1.72;
}

.section-intro {
  max-width: 900px;
  margin-top: 0;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

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

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

.card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 55%),
    var(--panel);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .45;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 211, 198, .35);
  background:
    linear-gradient(180deg, rgba(111, 211, 198, .05), transparent 62%),
    var(--panel);
}

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

.card h3 a {
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--accent);
}

.card p {
  margin: 0;
}

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

.checklist li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  line-height: 1.62;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(111, 211, 198, .08);
}

.notice {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(123, 45, 52, .18), transparent 50%),
    rgba(255, 255, 255, .025);
}

.notice p {
  max-width: 930px;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}

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

.step {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-3);
}

.step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.step p {
  margin: 0;
}

.quote-tool {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(320px, .92fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 12px 13px;
  background: #090d12;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(111, 211, 198, .42);
  border-color: rgba(111, 211, 198, .7);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.faq-list {
  background: rgba(255, 255, 255, .014);
}

details {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 12px 0;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

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

.related-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.related-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
}

.related-links a:hover {
  border-color: rgba(242, 193, 78, .45);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 8px;
}

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

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (prefers-reduced-motion: no-preference) {
  .route-node {
    animation: pulse 3.8s ease-in-out infinite;
  }

  .node-b {
    animation-delay: .8s;
  }

  .node-c {
    animation-delay: 1.4s;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: .85;
    }
    50% {
      transform: scale(1.18);
      opacity: 1;
    }
  }
}

@media (max-width: 1120px) {
  .grid.four,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .page-hero,
  .split,
  .quote-tool,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .grid,
  .grid.four,
  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

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

  .nav {
    gap: 10px 13px;
    font-size: 13px;
  }

  .button,
  .related-links a {
    width: 100%;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual {
    min-height: 330px;
    padding: 16px;
  }

  .visual-panel {
    padding: 18px;
  }
}

/* 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 */
.grid .media-card { min-height: 100%; }
.grid:not(.four) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1120px) { .grid:not(.four) { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .grid:not(.four) { grid-template-columns: 1fr; } }
