:root {
  --blue-900: #1e3a8a;
  --blue-700: #1d4ed8;
  --blue-500: #3b82f6;
  --red-700: #b91c1c;
  --red-500: #ef4444;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --white: #ffffff;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-100);
  background: linear-gradient(180deg, #07111f 0%, #0f172a 42%, #111827 100%);
  font-family: Inter, Aptos, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.light {
  color: var(--slate-900);
  background: var(--slate-100);
}

[hidden] {
  display: none !important;
}

.global-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(100, 116, 139, 0.25);
}

body.light .global-nav {
  background: rgba(241, 245, 249, 0.92);
}

.nav-inner {
  max-width: 1280px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-500));
  border: 1px solid var(--blue-700);
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.35);
}

.brand b {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand b span {
  color: var(--red-500);
}

.brand small {
  display: block;
  color: var(--slate-500);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mode-switch {
  display: flex;
  gap: 0.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mode-switch button,
.mode-switch a,
.theme-toggle,
.subnav button {
  border: 0;
  border-radius: 8px;
  padding: 0.52rem 0.72rem;
  color: var(--slate-500);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
}

.mode-switch button.active,
.mode-switch button:hover,
.mode-switch a:hover {
  color: #fff;
  background: var(--blue-700);
}

.mode-switch button,
.mode-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.public-nav {
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.public-nav a {
  min-height: 42px;
}

.public-nav button[data-portal-access] {
  color: #dbeafe;
  background: rgba(30, 58, 138, 0.28);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.public-nav button[data-portal-access="admin"] {
  color: #fecaca;
  background: rgba(185, 28, 28, 0.18);
  border-color: rgba(239, 68, 68, 0.22);
}

.public-nav button[data-portal-access="admin"]:hover {
  background: var(--red-700);
}

.public-nav .session-action {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.public-nav .session-action:hover {
  color: #fff;
  background: rgba(30, 41, 59, 0.95);
}

.mode-icon,
.menu-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: rgba(30, 58, 138, 0.78);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0;
}

.mode-icon {
  width: 24px;
  height: 24px;
}

.menu-icon {
  width: 28px;
  height: 28px;
}

.mode-switch button[data-mode-button="admin"].active {
  background: var(--red-700);
}

.theme-toggle {
  min-width: 48px;
  border: 1px solid rgba(100, 116, 139, 0.28);
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.access-modal[hidden] {
  display: none !important;
}

.access-card {
  width: min(520px, 100%);
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  background: var(--slate-900);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.5);
}

body.light .access-card {
  background: #fff;
}

.access-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  min-height: 34px;
}

.access-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.access-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--slate-400);
  font-size: 0.8rem;
  font-weight: 850;
}

.access-form input {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  padding: 0.75rem;
  color: inherit;
  background: rgba(15, 23, 42, 0.65);
}

body.light .access-form input {
  background: #fff;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  color: var(--slate-500);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.subnav {
  position: sticky;
  top: 80px;
  z-index: 40;
  overflow: visible;
  background: var(--slate-900);
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

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

body.light .subnav {
  background: var(--slate-100);
}

.subnav-track {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  white-space: normal;
}

.subnav a,
.subnav button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.35rem 0;
  color: var(--slate-500);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.subnav a.active,
.subnav button.active,
.subnav a:hover,
.subnav button:hover {
  color: var(--blue-500);
  border-bottom: 2px solid var(--red-500);
}

.source-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transform: scale(1.02);
  animation: heroSlideshow 21s infinite;
}

.hero-bg-one {
  opacity: 1;
}

.hero-bg-two {
  animation-delay: 7s;
}

.hero-bg-three {
  animation-delay: 14s;
}

@keyframes heroSlideshow {
  0%,
  28% {
    opacity: 1;
    transform: scale(1.02);
  }

  38%,
  90% {
    opacity: 0;
    transform: scale(1.07);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }

  .hero-bg-one {
    opacity: 1;
  }

  .hero-bg-two,
  .hero-bg-three {
    opacity: 0;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.18)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0) 32%);
}

body.light .hero-overlay {
  background: linear-gradient(90deg, rgba(241, 245, 249, 0.98), rgba(241, 245, 249, 0.84), rgba(241, 245, 249, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.1rem 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 2.5rem;
  align-items: center;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #bfdbfe;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.dashboard-head h1,
.status-surface h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 5vw, 4.45rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-500), var(--red-500));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p,
.dashboard-head p {
  max-width: 700px;
  color: var(--slate-500);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-state-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(191, 219, 254, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.32);
}

body.light .hero-state-card {
  background: rgba(255, 255, 255, 0.82);
}

.hero-state-card span {
  color: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hero-state-card strong {
  word-break: break-word;
  font-size: 1.4rem;
}

.hero-state-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  color: var(--slate-500);
  font-size: 0.84rem;
}

.hero-state-card dt {
  margin-top: 0.25rem;
  font-weight: 900;
  color: var(--slate-300);
}

body.light .hero-state-card dt {
  color: var(--slate-700);
}

.hero-state-card button {
  min-height: 46px;
}

.primary-action,
.secondary-action,
button[type="submit"],
.fleet-card a,
.fleet-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

.primary-action,
button[type="submit"],
.fleet-card a,
.fleet-card button {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 16px 38px rgba(30, 58, 138, 0.28);
}

.secondary-action {
  color: inherit;
  background: rgba(241, 245, 249, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.35);
}

.ops-card,
.booking-engine,
.control-panel,
.service-card,
.fleet-card,
.dashboard-grid article,
.admin-board article,
.status-surface {
  position: relative;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.84);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.22);
}

body.light .ops-card,
body.light .booking-engine,
body.light .control-panel,
body.light .service-card,
body.light .fleet-card,
body.light .dashboard-grid article,
body.light .admin-board article,
body.light .status-surface {
  background: #fff;
}

.ops-card,
.control-panel,
.status-surface {
  padding: 1.25rem;
}

.ops-card h2 {
  font-size: 1.2rem;
}

dt {
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0 0 0.8rem;
  overflow-wrap: anywhere;
}

.service-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.official-overview,
.rental-flow-section,
.route-public-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.route-public-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
  gap: 2rem;
  align-items: stretch;
}

.unique-route-experience {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 0.78fr);
  gap: 1rem;
  align-items: stretch;
}

.unique-route-experience.route-hero {
  max-width: none;
  min-height: calc(100vh - 72px);
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem) max(1rem, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82));
}

.unique-route-experience.route-hero.booking {
  min-height: calc(92vh - 72px);
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.84) 48%, rgba(185, 28, 28, 0.34) 100%);
}

.unique-route-experience.route-hero.fleet,
.unique-route-experience.route-hero.gallery {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(30, 58, 138, 0.28)),
    rgba(15, 23, 42, 0.88);
}

.unique-route-experience.route-hero.requirements,
.unique-route-experience.route-hero.apps,
.unique-route-experience.route-hero.business {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(30, 58, 138, 0.45) 58%, rgba(185, 28, 28, 0.28));
}

.unique-route-experience.route-hero.safari {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.72)),
    rgba(15, 23, 42, 0.9);
}

.unique-route-visual,
.unique-route-copy,
.unique-panel-grid article {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.unique-route-visual {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -180px 170px rgba(2, 6, 23, 0.76);
}

.unique-route-visual div {
  display: grid;
  gap: 0.55rem;
}

.unique-route-visual span {
  width: max-content;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: #fff;
  background: rgba(185, 28, 28, 0.82);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.unique-route-visual strong {
  max-width: 420px;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.unique-route-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(2, 6, 23, 0)),
    rgba(15, 23, 42, 0.7);
}

.unique-route-copy h1 {
  margin: 0.15rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.unique-route-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: var(--slate-300);
  line-height: 1.72;
  font-weight: 730;
}

.unique-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.unique-stat-grid article {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
}

.unique-stat-grid strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.unique-stat-grid span {
  color: var(--slate-400);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.unique-panel-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.unique-panel-grid article {
  min-height: 170px;
  padding: 1.15rem;
  background: rgba(15, 23, 42, 0.58);
}

.unique-panel-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.unique-panel-grid p {
  margin: 0;
  color: var(--slate-300);
  line-height: 1.62;
  font-weight: 720;
}

.unique-route-experience.booking {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
}

.unique-route-experience.booking .unique-route-visual {
  order: 2;
}

.unique-route-experience.fleet .unique-panel-grid,
.unique-route-experience.gallery .unique-panel-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.unique-route-experience.requirements .unique-panel-grid article,
.unique-route-experience.apps .unique-panel-grid article,
.unique-route-experience.business .unique-panel-grid article {
  border-left: 4px solid var(--red-700);
}

.unique-route-experience.airport .unique-route-copy,
.unique-route-experience.local .unique-route-copy {
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.42), rgba(15, 23, 42, 0.55)),
    rgba(15, 23, 42, 0.7);
}

.unique-route-experience.value .unique-route-copy,
.unique-route-experience.comparison .unique-route-copy {
  background:
    linear-gradient(135deg, rgba(185, 28, 28, 0.34), rgba(15, 23, 42, 0.55)),
    rgba(15, 23, 42, 0.7);
}

body.light .unique-route-copy,
body.light .unique-panel-grid article {
  background: #fff;
}

body.light .unique-route-copy p:not(.eyebrow),
body.light .unique-panel-grid p,
body.light .unique-stat-grid span {
  color: var(--slate-700);
}

body.light .unique-stat-grid article {
  background: var(--slate-100);
}

body.light .unique-stat-grid strong {
  color: var(--slate-900);
}

.route-specific-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.route-specific-body h2,
.route-specific-body h3,
.route-specific-body p {
  letter-spacing: 0;
}

.booking-command-strip,
.requirements-board,
.business-ops-layout,
.rental-service-layout,
.monthly-rhythm-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.booking-command-strip article,
.requirements-board article,
.business-ops-layout article,
.rental-service-layout article,
.monthly-rhythm-layout div,
.value-proof-stack article,
.proof-link-grid a {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.62);
}

.booking-command-strip article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
}

.booking-command-strip span,
.business-ops-layout span,
.rental-service-layout span,
.proof-link-grid span {
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-command-strip h2,
.requirements-board h2,
.business-ops-layout h2,
.rental-service-layout h2 {
  margin: 0.6rem 0 0.7rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.fleet-story-layout,
.apps-access-layout,
.location-landing-layout,
.value-comparison-layout,
.safari-expedition-layout,
.ownership-path-layout,
.proof-directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.fleet-story-layout > div:first-child,
.apps-access-layout > div:first-child,
.location-landing-layout aside,
.value-comparison-layout > div:first-child,
.safari-expedition-layout > div:first-child,
.ownership-path-layout article,
.proof-directory-layout > div:first-child {
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.36), rgba(185, 28, 28, 0.16)), rgba(15, 23, 42, 0.72);
}

.fleet-story-layout h2,
.apps-access-layout h2,
.location-landing-layout h2,
.value-comparison-layout h2,
.safari-expedition-layout h2,
.proof-directory-layout h2 {
  margin: 0.2rem 0 0.9rem;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.fleet-mini-grid,
.gallery-editorial-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fleet-mini-grid article,
.gallery-editorial-layout article {
  min-height: 240px;
  display: grid;
  align-content: end;
  border-radius: 8px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -150px 130px rgba(2, 6, 23, 0.82);
}

.fleet-mini-grid span,
.gallery-editorial-layout span {
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fleet-mini-grid strong,
.gallery-editorial-layout h2 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.05;
}

.apps-gate-grid {
  display: grid;
  gap: 1rem;
}

.apps-gate-grid button {
  min-height: 170px;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  padding: 1.2rem;
  color: #fff;
  background: rgba(30, 58, 138, 0.42);
}

.apps-gate-grid button strong,
.apps-gate-grid button small {
  display: block;
}

.location-landing-layout > div,
.value-proof-stack,
.safari-checks,
.proof-link-grid {
  display: grid;
  gap: 1rem;
}

.location-landing-layout article {
  border-left: 4px solid var(--blue-500);
  padding: 1rem 1rem 1rem 1.2rem;
  background: rgba(15, 23, 42, 0.62);
}

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

.safari-checks span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: rgba(185, 28, 28, 0.52);
  font-weight: 950;
}

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

.monthly-rhythm-layout div {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.monthly-rhythm-layout span {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.proof-link-grid a {
  color: inherit;
  text-decoration: none;
}

.route-seo-landing {
  max-width: 1280px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(0, 1.34fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.route-seo-lead {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 42vw, 560px);
  display: grid;
  align-content: end;
  gap: 1rem;
  border-radius: 8px;
  padding: clamp(1.15rem, 2.5vw, 2.25rem);
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.92)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.54), rgba(185, 28, 28, 0.28)),
    rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background-image:
    linear-gradient(160deg, rgba(2, 6, 23, 0.24), rgba(2, 6, 23, 0.92)),
    var(--route-seo-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.route-seo-lead > * {
  position: relative;
  z-index: 1;
  max-width: min(100%, 640px);
}

.route-seo-lead .eyebrow {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.route-seo-lead h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.02;
  max-width: 12ch;
  text-wrap: balance;
}

.route-seo-lead p:not(.eyebrow) {
  max-width: 54ch;
  color: var(--slate-200);
}

.route-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.route-seo-modules,
.route-copy-proof,
.route-faq-strip {
  display: grid;
  gap: 1rem;
}

.route-seo-modules {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: stretch;
}

.route-copy-proof {
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-faq-strip {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-seo-modules article,
.route-copy-proof article,
.route-faq-strip article {
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.68);
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  overflow-wrap: anywhere;
}

.route-seo-modules article {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.route-copy-proof article {
  min-height: 155px;
}

.route-faq-strip article {
  min-height: 190px;
  background: rgba(2, 6, 23, 0.76);
}

.route-seo-modules span,
.route-copy-proof span {
  display: block;
  margin-bottom: 0.8rem;
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-seo-modules h3,
.route-faq-strip h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.12;
}

.route-seo-landing.booking {
  grid-template-columns: minmax(480px, 0.92fr) minmax(0, 1.08fr);
}

.route-seo-landing.booking .route-seo-lead {
  min-height: clamp(420px, 38vw, 520px);
  background-position: center 58%;
}

.route-seo-landing.booking .route-seo-lead h2 {
  font-size: clamp(2.15rem, 3.05vw, 3.55rem);
  max-width: 10.5ch;
}

.route-seo-landing.booking .route-seo-modules {
  counter-reset: booking-step;
  grid-template-columns: 1fr;
}

.route-seo-landing.booking .route-seo-modules article {
  counter-increment: booking-step;
  min-height: auto;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-content: center;
}

.route-seo-landing.booking .route-seo-modules article::before {
  content: counter(booking-step);
  grid-row: 1 / span 3;
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 8px;
  background: var(--red-700);
  color: #fff;
  font-weight: 950;
}

.route-seo-landing.booking .route-seo-modules span,
.route-seo-landing.booking .route-seo-modules h3,
.route-seo-landing.booking .route-seo-modules p {
  grid-column: 2;
  margin-bottom: 0;
}

.route-seo-landing.booking .route-seo-modules h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.9rem);
}

.route-seo-landing.booking .route-seo-lead {
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.9)),
    var(--route-seo-image) center / cover;
}

.route-seo-landing.fleet .route-seo-lead,
.route-seo-landing.gallery .route-seo-lead {
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.9)),
    url("/media/fleet-detail.jpg") center / cover;
}

.route-seo-landing.airport .route-seo-lead,
.route-seo-landing.local .route-seo-lead {
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.9)),
    url("/media/hero-mercedes.png") center / cover;
}

.route-seo-landing.safari .route-seo-lead {
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.88)),
    url("/media/fleet/toyota-fortuner.jpg") center / cover;
}

.route-seo-landing.value .route-seo-lead,
.route-seo-landing.comparison .route-seo-lead,
.route-seo-landing.purchase .route-seo-lead,
.route-seo-landing.ownership .route-seo-lead {
  background:
    linear-gradient(160deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.9)),
    url("/media/bargains.png") center / cover;
}

body.light .route-seo-lead,
body.light .route-seo-modules article,
body.light .route-copy-proof article,
body.light .route-faq-strip article {
  background-color: #fff;
  color: var(--slate-900);
}

body.light .route-seo-lead p:not(.eyebrow),
body.light .route-seo-modules p,
body.light .route-copy-proof p,
body.light .route-faq-strip p {
  color: var(--slate-700);
}

body.light .route-specific-body article,
body.light .route-specific-body div,
body.light .route-specific-body a,
body.light .route-specific-body aside {
  color: var(--slate-900);
}

.route-detail-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.seo-intent-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.94fr);
  gap: 1rem;
  align-items: stretch;
}

.seo-intent-copy,
.seo-faq-grid article {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
}

.seo-intent-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.seo-intent-copy h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.seo-intent-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--slate-400);
  line-height: 1.7;
  font-weight: 720;
}

.seo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-faq-grid article {
  padding: 1rem;
}

.seo-faq-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.seo-faq-grid p {
  margin: 0;
  color: var(--slate-300);
  line-height: 1.58;
  font-size: 0.92rem;
  font-weight: 710;
}

body.light .seo-intent-copy,
body.light .seo-faq-grid article {
  background: #fff;
}

body.light .seo-intent-copy p:not(.eyebrow),
body.light .seo-faq-grid p {
  color: var(--slate-700);
}

.section-heading.compact {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.section-heading.compact h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0;
}

.route-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.route-detail-grid article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.6);
}

.route-detail-grid article span {
  width: max-content;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: #fff;
  background: var(--blue-700);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.route-detail-grid article p {
  margin: 0;
  color: var(--slate-300);
  line-height: 1.65;
  font-weight: 750;
}

body.light .route-detail-grid article {
  background: #fff;
}

body.light .route-detail-grid article p {
  color: var(--slate-700);
}

.scenario-section,
.service-directory-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.scenario-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 1rem;
  align-items: stretch;
}

.scenario-copy,
.scenario-card-grid article {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
}

.scenario-copy {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.scenario-copy h2 {
  max-width: 820px;
  margin: 0.25rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.scenario-copy p:not(.eyebrow) {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 700;
}

.scenario-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.scenario-card-grid {
  display: grid;
  gap: 1rem;
}

.scenario-card-grid article {
  padding: 1.2rem;
}

.scenario-card-grid article span,
.service-directory-grid span {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 0.24rem 0.5rem;
  color: #fff;
  background: var(--red-700);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.scenario-card-grid article p {
  margin: 0.85rem 0 0;
  color: var(--slate-300);
  line-height: 1.6;
  font-weight: 780;
}

.service-journey-board {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 0.92fr);
  gap: 1rem;
  align-items: stretch;
}

.service-journey-media {
  min-height: 430px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -140px 160px rgba(2, 6, 23, 0.58);
}

.service-journey-copy {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.42), rgba(185, 28, 28, 0.16)),
    rgba(15, 23, 42, 0.78);
}

.service-journey-copy h2 {
  margin: 0.2rem 0 0.85rem;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-journey-copy > p:not(.eyebrow) {
  margin: 0 0 1.25rem;
  color: #dbeafe;
  line-height: 1.72;
  font-weight: 740;
}

.service-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-module-grid article {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem;
  background: rgba(2, 6, 23, 0.34);
}

.service-module-grid span {
  width: max-content;
  border-radius: 999px;
  padding: 0.25rem 0.52rem;
  color: #fff;
  background: rgba(185, 28, 28, 0.78);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-module-grid h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.service-module-grid p {
  margin: 0;
  color: var(--slate-300);
  line-height: 1.56;
  font-size: 0.92rem;
  font-weight: 700;
}

body.light .service-journey-copy,
body.light .service-module-grid article {
  background: #fff;
}

body.light .service-journey-copy > p:not(.eyebrow),
body.light .service-module-grid p {
  color: var(--slate-700);
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-directory-grid a {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 8px;
  padding: 1rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-directory-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(37, 99, 235, 0.13);
}

.service-directory-grid strong {
  line-height: 1.25;
  letter-spacing: 0;
}

.service-directory-grid small {
  color: var(--slate-500);
  font-weight: 850;
}

body.light .scenario-copy,
body.light .scenario-card-grid article,
body.light .service-directory-grid a {
  background: #fff;
}

body.light .scenario-copy p:not(.eyebrow),
body.light .scenario-card-grid article p {
  color: var(--slate-700);
}

.route-public-copy {
  min-height: 100%;
  display: grid;
  align-content: center;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(15, 23, 42, 0.56);
}

.route-public-copy h2 {
  max-width: 780px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.route-public-copy p:not(.eyebrow),
.route-highlight-grid p {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 650;
}

.route-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.route-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.route-highlight-grid article {
  display: grid;
  align-content: end;
  min-height: 160px;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.035);
}

.route-highlight-grid span {
  width: 38px;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--red-500);
}

.route-highlight-grid p {
  margin: 0;
  font-size: 1rem;
}

.official-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.official-heading .eyebrow,
.flow-copy > .eyebrow {
  justify-self: start;
  align-self: start;
  width: fit-content;
  max-width: max-content;
}

.official-heading h2,
.flow-copy h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.official-heading p:not(.eyebrow),
.flow-copy > p:not(.eyebrow) {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 650;
}

body.light .official-heading p:not(.eyebrow),
body.light .flow-copy > p:not(.eyebrow) {
  color: var(--slate-600);
}

.official-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.official-card-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.18);
}

body.light .official-card-grid article {
  background: #fff;
}

.official-card-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
}

.official-card-grid h3,
.flow-steps h3 {
  margin: 0;
}

.official-card-grid p,
.flow-steps p {
  color: var(--slate-500);
  line-height: 1.65;
  font-weight: 650;
}

.official-card-grid button,
.flow-steps button {
  min-height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  font-weight: 900;
}

.rental-flow-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.flow-media {
  min-height: 440px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.24);
}

.flow-copy {
  display: grid;
  align-content: center;
}

.flow-steps {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.flow-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.2rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.7);
}

body.light .flow-steps article {
  background: #fff;
}

.flow-steps span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red-700);
  font-weight: 950;
}

.public-route-panels {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.page-composition {
  max-width: 1280px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 5;
  padding: 0 1rem;
}

.composition-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.3);
}

body.light .composition-head,
body.light .composition-proof article,
body.light .composition-steps article,
body.light .related-routes a {
  background: #fff;
}

.composition-head h2 {
  margin: 0.25rem 0 0.5rem;
}

.composition-head p {
  max-width: 820px;
  color: var(--slate-400);
}

body.light .composition-head p {
  color: var(--slate-600);
}

.composition-actions,
.composition-proof,
.composition-steps,
.related-routes {
  display: grid;
  gap: 0.85rem;
}

.composition-actions {
  min-width: 230px;
}

.composition-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.composition-proof article,
.composition-steps article,
.related-routes a {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.78);
}

.composition-proof span,
.composition-steps span {
  color: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.composition-proof p,
.composition-steps p,
.related-routes span {
  color: var(--slate-500);
}

.composition-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.related-routes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.related-routes a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.route-source-section {
  max-width: 1280px;
  margin: 0 auto 2rem;
  padding: 3rem 1rem 0;
}

.route-source-head,
.source-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

.route-source-head,
.source-copy,
.source-controls {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 22px 70px rgba(2, 6, 23, 0.24);
}

body.light .route-source-head,
body.light .source-copy,
body.light .source-controls {
  background: #fff;
}

.route-source-head {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.route-source-head h2 {
  margin: 0.25rem 0 0.75rem;
}

.route-source-head dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.45rem 0.8rem;
  margin: 0;
  color: var(--slate-500);
}

.route-source-head dt {
  font-weight: 900;
  color: var(--slate-300);
}

body.light .route-source-head dt {
  color: var(--slate-700);
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.route-actions .secondary-action {
  border: 1px solid rgba(100, 116, 139, 0.35);
}

.source-copy,
.source-controls {
  padding: 1.5rem;
}

.source-copy p {
  color: var(--slate-400);
  line-height: 1.75;
}

body.light .source-copy p {
  color: var(--slate-600);
}

.source-controls {
  display: grid;
  gap: 0.75rem;
  position: sticky;
  top: 150px;
}

.source-controls button {
  min-height: 46px;
}

.placeholder-list {
  display: grid;
  gap: 0.45rem;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.placeholder-list span {
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.6);
}

body.light .placeholder-list span {
  background: var(--slate-100);
}

.page-feature-layer {
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.service-feature,
.testimonial-feature,
.form-feature,
.archive-grid {
  display: grid;
  gap: 1rem;
}

.service-feature {
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
}

.service-feature article,
.testimonial-feature,
.form-feature,
.archive-grid a {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.2);
}

body.light .service-feature article,
body.light .testimonial-feature,
body.light .form-feature,
body.light .archive-grid a {
  background: #fff;
}

.service-feature article span,
.archive-grid a span {
  color: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-feature p,
.testimonial-feature p,
.form-feature p,
.archive-grid small {
  color: var(--slate-500);
  line-height: 1.65;
}

.testimonial-feature,
.form-feature {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
}

.testimonial-feature aside {
  display: grid;
  gap: 0.7rem;
}

.testimonial-feature aside span {
  color: var(--slate-500);
  font-size: 0.82rem;
}

.archive-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.archive-grid a {
  color: inherit;
  text-decoration: none;
}

.archive-grid a strong {
  display: block;
  margin: 0.35rem 0;
}

.experience-registry {
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.experience-head,
.experience-grid article {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.22);
}

body.light .experience-head,
body.light .experience-grid article {
  background: #fff;
}

.experience-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.experience-head h2 {
  margin: 0.25rem 0 0.5rem;
}

.experience-head p,
.experience-grid p,
.experience-grid dd {
  color: var(--slate-500);
  line-height: 1.65;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.experience-grid article {
  padding: 1.25rem;
}

.experience-grid span {
  color: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-grid dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.35rem 0.65rem;
  margin: 1rem 0 0;
  font-size: 0.78rem;
}

.experience-grid dt {
  color: var(--slate-300);
  font-weight: 900;
}

body.light .experience-grid dt {
  color: var(--slate-700);
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.experience-actions button {
  min-height: 44px;
}

.completion-console {
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.completion-meter,
.completion-grid article,
.completion-missing,
.completion-interactions {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.2);
}

body.light .completion-meter,
body.light .completion-grid article,
body.light .completion-missing,
body.light .completion-interactions {
  background: #fff;
}

.completion-meter {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
}

.completion-meter h2 {
  margin: 0.25rem 0 0.5rem;
}

.completion-meter strong {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  white-space: nowrap;
}

.completion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.completion-grid article {
  padding: 1rem;
}

.completion-grid span {
  display: block;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.completion-grid b {
  display: block;
  margin-top: 0.25rem;
}

.completion-grid .done {
  border-color: rgba(34, 197, 94, 0.42);
}

.completion-grid .blocked {
  border-color: rgba(239, 68, 68, 0.55);
}

.completion-missing,
.completion-interactions,
.completion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem;
}

.completion-missing span,
.completion-interactions code {
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  color: var(--slate-100);
  background: rgba(30, 58, 138, 0.38);
  font-size: 0.78rem;
}

body.light .completion-missing span,
body.light .completion-interactions code {
  color: var(--slate-900);
  background: var(--slate-100);
}

.completion-actions {
  padding: 0;
}

.content-page,
.safari-panel,
.requirements-grid > div,
.portal-panel {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.84);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.16);
}

.content-page.compact {
  padding: 1.25rem 1.5rem;
}

.intro-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 1rem;
  align-items: center;
}

.intro-panel .icon-block {
  grid-row: span 3;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.intro-actions button {
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  font-weight: 900;
}

body.light .intro-actions button {
  color: var(--blue-900);
  background: #eff6ff;
}

.content-page ul,
.safari-panel ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.content-page li,
.requirements-grid p {
  color: var(--slate-500);
  font-weight: 700;
}

.faq-panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.faq-panel .icon-block {
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

.faq-grid div {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.faq-grid span {
  display: block;
  margin-top: 0.45rem;
  color: var(--slate-500);
  font-weight: 750;
  line-height: 1.55;
}

.icon-block {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-500);
  background: rgba(30, 58, 138, 0.28);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  font-weight: 950;
}

.safari-panel {
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.18));
}

.safari-panel > span {
  color: var(--red-500);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readiness-grid,
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-grid,
.policy-endpoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.policy-grid article,
.policy-endpoints span {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.policy-grid span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
}

.policy-grid h3 {
  margin: 0.75rem 0 0.4rem;
  font-size: 1rem;
}

.policy-grid p,
.policy-endpoints span {
  color: var(--slate-500);
  line-height: 1.55;
}

.policy-endpoints button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--red-700);
  font-weight: 950;
}

.readiness-grid div {
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.readiness-grid small {
  display: block;
  color: var(--slate-500);
  font-weight: 800;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  width: 100%;
  appearance: none;
  border: 1px solid rgba(100, 116, 139, 0.25);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card.image-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  color: #fff;
  background: #111827;
}

.service-card.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 180ms ease, filter 180ms ease;
}

.service-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16) 0%, rgba(15, 23, 42, 0.68) 58%, rgba(15, 23, 42, 0.92) 100%);
}

.service-card.image-card > * {
  position: relative;
  z-index: 1;
}

.service-card.image-card:hover::before,
.service-card.image-card:focus-visible::before {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(37, 99, 235, 0.72);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.24);
  outline: none;
}

.service-card.featured,
.fleet-card.featured {
  border-color: rgba(239, 68, 68, 0.45);
}

.top-choice {
  position: absolute;
  top: 0;
  right: 1.5rem;
  transform: translateY(-50%);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  color: #fff;
  background: var(--red-700);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.35);
}

.service-card span,
.fleet-card p,
.admin-board strong,
.ai-badge {
  color: var(--red-500);
  font-weight: 950;
}

.panel-action {
  margin-top: 1.5rem;
}

.booking-section,
.fleet-section,
.content-grid,
.portal-view {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.portal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem;
}

.portal-sidebar {
  align-self: start;
  position: sticky;
  top: 150px;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.86);
  padding: 1rem;
}

.portal-drawer-toggle,
.portal-drawer-overlay {
  display: none;
}

.portal-identity {
  margin: -1rem -1rem 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.25);
  background: rgba(100, 116, 139, 0.08);
}

.portal-identity p {
  margin: 0 0 0.35rem;
  color: var(--red-500);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-identity h2 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.portal-identity span {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--blue-500);
  font-size: 0.75rem;
  font-weight: 950;
}

body.light .portal-identity h2 {
  color: var(--slate-900);
}

.admin-identity {
  background: rgba(30, 41, 59, 0.88);
}

.portal-sidebar b {
  display: block;
  margin: 1rem 0 0.45rem;
  color: var(--slate-500);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.portal-sidebar button {
  width: 100%;
  min-height: 42px;
  margin-bottom: 0.4rem;
  border: 0;
  border-radius: 10px;
  color: var(--slate-500);
  background: transparent;
  text-align: left;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.portal-sidebar button.active,
.portal-sidebar button:hover {
  color: #fff;
  background: var(--blue-700);
}

.admin-sidebar button.active {
  background: var(--red-700);
}

.portal-main table {
  width: 100%;
  border-collapse: collapse;
}

.portal-main th,
.portal-main td {
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
  padding: 0.85rem;
  text-align: left;
}

.portal-main th {
  color: var(--slate-500);
  text-transform: uppercase;
  font-size: 0.74rem;
}

.portal-grid,
.detail-grid,
.ops-lanes,
.crm-layout,
.report-grid,
.settings-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

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

.metric-card,
.detail-grid > div,
.ops-lanes article,
.crm-layout > div,
.quote-card,
.audit-stack article,
.timeline > div,
.report-grid span,
.settings-grid span,
.upload-drop {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

body.light .metric-card,
body.light .detail-grid > div,
body.light .ops-lanes article,
body.light .crm-layout > div,
body.light .quote-card,
body.light .audit-stack article,
body.light .timeline > div,
body.light .report-grid span,
body.light .settings-grid span,
body.light .upload-drop {
  background: #fff;
}

.metric-card span,
.quote-card span,
.audit-stack span {
  display: block;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.metric-card strong,
.quote-card strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.55rem;
  color: #fff;
}

body.light .metric-card strong,
body.light .quote-card strong,
body.light .sidebar-meta {
  color: var(--slate-900);
}

.metric-card.alert,
.audit-stack .blocked {
  border-color: rgba(239, 68, 68, 0.48);
}

.booking-card {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

body.light .booking-card {
  background: rgba(255, 255, 255, 0.82);
}

.booking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.22);
}

.booking-card h3 {
  margin: 0.75rem 0 0.2rem;
  color: #fff;
  font-size: 1.8rem;
}

body.light .booking-card h3 {
  color: var(--slate-900);
}

.booking-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--slate-500);
  background: rgba(100, 116, 139, 0.12);
  font-weight: 950;
  letter-spacing: 0;
}

.booking-note {
  margin: 1rem 0 0;
  color: var(--slate-500);
  font-size: 0.85rem;
  font-weight: 800;
}

.state-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.state-flow span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.state-flow span {
  border: 1px solid rgba(100, 116, 139, 0.28);
  color: var(--slate-500);
}

.state-flow .done,
.status-pill.success {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.state-flow .active,
.status-pill.warning {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.34);
}

.status-pill.danger {
  color: #fecaca;
  background: rgba(220, 38, 38, 0.16);
  border: 1px solid rgba(220, 38, 38, 0.34);
}

.upload-drop {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0;
}

.quote-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.mini-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.mini-form button,
.mini-form output {
  grid-column: 1 / -1;
}

.audit-stack {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.timeline {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.timeline b,
.crm-layout b,
.detail-grid b,
.ops-lanes h3 {
  color: #fff;
}

body.light .timeline b,
body.light .crm-layout b,
body.light .detail-grid b,
body.light .ops-lanes h3 {
  color: var(--slate-900);
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.22);
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-700), var(--red-500));
}

.red-progress span {
  background: var(--red-500);
}

.task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0;
  background: rgba(255, 255, 255, 0.04);
}

.task-row span {
  color: #e2e8f0;
  font-weight: 850;
}

.task-row em {
  color: var(--red-500);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.light .task-row span {
  color: var(--slate-900);
}

.inline-link {
  border: 0;
  padding: 0;
  color: var(--blue-500);
  background: transparent;
  font-weight: 950;
  cursor: pointer;
}

.settings-grid,
.report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-engine {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: inherit;
  font-weight: 800;
}

input,
select {
  min-height: 44px;
  border: 1px solid rgba(100, 116, 139, 0.35);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

body.light input,
body.light select {
  background: #fff;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0;
}

output {
  display: block;
  margin-top: 1rem;
  color: var(--blue-500);
  font-weight: 900;
}

.action-output {
  min-height: 1.2rem;
  font-size: 0.78rem;
}

.governed-receipt {
  width: 100%;
  max-width: 100%;
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.32);
  border-radius: 8px;
  padding: 1rem;
  color: #e5edff;
  background: rgba(15, 23, 42, 0.92);
  overflow: hidden;
}

.governed-receipt.blocked {
  border-color: rgba(239, 68, 68, 0.45);
}

.governed-receipt header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
}

.governed-receipt header span {
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.22);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.governed-receipt header strong,
.governed-receipt dd,
.governed-receipt p,
.governed-receipt li {
  overflow-wrap: anywhere;
}

.receipt-flow,
.governed-receipt dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.receipt-flow div,
.governed-receipt dl div {
  min-width: 0;
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(2, 6, 23, 0.32);
}

.receipt-flow b,
.governed-receipt dt {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.receipt-flow p,
.governed-receipt dd {
  margin: 0.22rem 0 0;
  color: #fff;
  line-height: 1.38;
  font-size: 0.82rem;
  font-weight: 800;
}

.governed-receipt ul {
  margin: 0;
  padding-left: 1rem;
  color: #dbeafe;
  line-height: 1.45;
  font-size: 0.82rem;
}

.action-state-active {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 2px;
}

.muted {
  color: var(--slate-500);
  font-weight: 700;
}

.readiness-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

body.light .readiness-preview {
  background: #fff;
}

.readiness-preview h3 {
  margin: 0 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  color: #fff;
  font-size: 0.86rem;
}

body.light .readiness-preview h3 {
  color: var(--slate-900);
}

.readiness-preview ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--slate-500);
  font-weight: 800;
}

.readiness-preview li {
  margin: 0.4rem 0;
}

.system-note {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: #bfdbfe;
  background: rgba(30, 58, 138, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
}

.fleet-grid,
.dashboard-grid,
.admin-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

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

.featured-catalogue .fleet-card:nth-child(n + 9) {
  display: none;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.filter-pills button {
  min-height: 32px;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--slate-500);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 900;
}

.filter-pills button.active,
.filter-pills button:hover {
  color: #fff;
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.fleet-card {
  overflow: hidden;
  padding: 1rem;
}

.fleet-visual {
  height: 145px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background-color: #111827;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.fleet-photo-state {
  display: block;
  margin-top: 0.55rem;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.35;
}

.visual-asset-section {
  padding: 5rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(100, 116, 139, 0.18);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.visual-frame {
  min-height: 150px;
  background-position: center;
  background-size: cover;
}

.visual-card > div:last-child {
  padding: 1rem;
}

.visual-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.visual-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.visual-card p {
  min-height: 42px;
  margin: 0 0 1rem;
  color: var(--slate-500);
  overflow-wrap: anywhere;
}

.visual-card button {
  min-height: 36px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.fleet-card span,
.page-content p,
.dashboard-grid p,
.admin-board p {
  color: var(--slate-500);
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
}

.page-content h3 {
  margin-top: 2rem;
}

.content-bullet {
  padding-left: 1rem;
  border-left: 4px solid var(--red-500);
}

.control-panel {
  align-self: start;
  position: sticky;
  top: 150px;
}

.dashboard-head {
  padding-top: 4rem;
}

.admin-module-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.3);
}

.admin-module-bar h2 {
  margin: 0;
  font-size: 1.8rem;
  text-transform: capitalize;
}

.admin-module-bar span {
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  color: #fff;
  background: var(--red-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.24);
}

.admin-table-head h2 {
  margin: 0;
}

.admin-table-head label {
  min-width: 220px;
  color: var(--slate-500);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.admin-table-head input {
  width: 100%;
}

.doc-list,
.crm-workbench,
.asset-workbench,
.finance-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.doc-row,
.asset-row,
.asset-task,
.finance-grid article,
.crm-list,
.crm-detail {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
}

body.light .doc-row,
body.light .asset-row,
body.light .asset-task,
body.light .finance-grid article,
body.light .crm-list,
body.light .crm-detail {
  background: #fff;
}

.doc-row,
.asset-row,
.crm-head,
.crm-linked {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.doc-row span,
.asset-row span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-900);
  font-size: 0.65rem;
  font-weight: 950;
}

.doc-row button,
.asset-task button,
.finance-grid button {
  border: 0;
  border-radius: 8px;
  padding: 0.48rem 0.8rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.doc-row.pending,
.asset-task.danger,
.finance-grid .red {
  border-color: rgba(239, 68, 68, 0.38);
}

.crm-workbench {
  grid-template-columns: 300px minmax(0, 1fr);
}

.crm-list {
  align-self: stretch;
}

.crm-list input {
  width: 100%;
  margin: 0.7rem 0 1rem;
}

.crm-person {
  padding: 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.18);
}

.crm-person.active {
  border-left: 4px solid var(--blue-500);
  background: rgba(37, 99, 235, 0.14);
}

.crm-person span,
.crm-head p,
.asset-row p,
.asset-task p,
.finance-grid p {
  display: block;
  margin: 0.25rem 0 0;
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 800;
}

.crm-linked {
  margin: 1rem 0;
}

.crm-linked div {
  flex: 1;
  border: 1px solid rgba(100, 116, 139, 0.18);
  border-radius: 12px;
  padding: 0.85rem;
}

.agent-note {
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 12px;
  padding: 1rem;
  color: #bfdbfe;
  background: rgba(30, 58, 138, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
}

.agent-audit-workspace {
  display: grid;
  gap: 2.2rem;
}

.agent-audit-section {
  display: grid;
  gap: 1.15rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(100, 116, 139, 0.24);
}

.agent-audit-section.priority {
  border-top: 0;
  padding-top: 0.25rem;
}

.agent-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
  gap: 1.2rem;
  align-items: end;
}

.agent-section-head span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  color: var(--blue-300);
  background: rgba(37, 99, 235, 0.14);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agent-section-head h3 {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

body.light .agent-section-head h3 {
  color: var(--blue-950);
}

.agent-section-head p {
  max-width: 48ch;
  margin: 0;
  color: var(--slate-500);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.agent-command-summary,
.agent-command-grid,
.agent-task-board,
.agent-runtime-panel,
.agent-mvp-readiness,
.agent-value-demo,
.agent-smoke-test,
.value-demo-compare,
.value-demo-interventions,
.value-demo-outcomes,
.smoke-test-results,
.mvp-gate-grid,
.agent-backtest-panel,
.backtest-table,
.agent-learning-panel,
.learning-grid,
.agent-decision-panel,
.decision-grid {
  display: grid;
  gap: 1rem;
}

.agent-command-summary {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0;
}

.agent-command-summary article,
.agent-command-card,
.agent-task-card,
.runtime-overview,
.mvp-overview,
.value-demo-head,
.value-demo-compare article,
.value-demo-interventions article,
.value-demo-outcomes article,
.smoke-test-head,
.smoke-test-results article,
.mvp-gate-grid article,
.backtest-overview,
.backtest-table article,
.learning-overview,
.learning-grid article,
.decision-overview,
.decision-grid article,
.agent-loading {
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.045);
}

body.light .agent-command-summary article,
body.light .agent-command-card,
body.light .agent-task-card,
body.light .runtime-overview,
body.light .mvp-overview,
body.light .value-demo-head,
body.light .value-demo-compare article,
body.light .value-demo-interventions article,
body.light .value-demo-outcomes article,
body.light .smoke-test-head,
body.light .smoke-test-results article,
body.light .mvp-gate-grid article,
body.light .backtest-overview,
body.light .backtest-table article,
body.light .learning-overview,
body.light .learning-grid article,
body.light .decision-overview,
body.light .decision-grid article,
body.light .agent-loading {
  background: #fff;
}

.agent-command-summary span,
.agent-task-card span,
.agent-command-card header span,
.runtime-overview span,
.mvp-overview span,
.value-demo-head span,
.value-demo-compare span,
.value-demo-interventions span,
.value-demo-outcomes span,
.smoke-test-head span,
.smoke-test-results span,
.mvp-gate-grid span,
.backtest-overview span,
.backtest-table span,
.learning-overview span,
.learning-grid span,
.decision-overview span,
.decision-grid span {
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.agent-command-summary strong,
.mvp-overview strong,
.backtest-overview strong,
.learning-overview strong,
.decision-overview strong {
  display: block;
  margin: 0.25rem 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1;
}

body.light .agent-command-summary strong,
body.light .mvp-overview strong,
body.light .backtest-overview strong,
body.light .learning-overview strong,
body.light .decision-overview strong {
  color: var(--blue-950);
}

.agent-command-summary p,
.agent-task-card p,
.agent-command-card p,
.agent-command-card li,
.runtime-overview p,
.mvp-overview p,
.mvp-gate-grid p,
.backtest-overview p,
.backtest-table p,
.learning-overview p,
.learning-grid p,
.decision-overview p,
.decision-grid p,
.agent-guardrail {
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.agent-value-demo {
  margin: 1rem 0;
}

.value-demo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(185, 28, 28, 0.12)),
    rgba(255, 255, 255, 0.045);
}

.value-demo-head h3,
.value-demo-compare h3,
.value-demo-interventions h3 {
  margin: 0.35rem 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.12;
}

body.light .value-demo-head h3,
body.light .value-demo-compare h3,
body.light .value-demo-interventions h3 {
  color: var(--blue-950);
}

.value-demo-head p,
.value-demo-compare p,
.value-demo-compare li,
.value-demo-interventions dd,
.value-demo-interventions small,
.value-demo-outcomes p,
.value-demo-outcomes small {
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.value-demo-head button {
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
}

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

.value-demo-compare article {
  display: grid;
  gap: 0.6rem;
}

.value-demo-compare b {
  width: fit-content;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: #fecaca;
  background: rgba(185, 28, 28, 0.18);
  font-size: 0.78rem;
}

.value-demo-compare article:nth-child(2) b {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.14);
}

.value-demo-compare ul {
  margin: 0;
  padding-left: 1.1rem;
}

.value-demo-interventions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-demo-interventions article {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.value-demo-interventions header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.value-demo-interventions b {
  color: #bfdbfe;
  font-size: 0.72rem;
}

.value-demo-interventions dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.value-demo-interventions dt {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.light .value-demo-interventions dt {
  color: var(--blue-950);
}

.value-demo-interventions dd {
  margin: 0.2rem 0 0;
}

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

.value-demo-outcomes article {
  display: grid;
  gap: 0.7rem;
}

.value-demo-outcomes b {
  color: #fff;
  font-size: 0.76rem;
}

body.light .value-demo-outcomes b {
  color: var(--blue-950);
}

.agent-smoke-test {
  margin: 1rem 0;
}

.smoke-test-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.smoke-test-head h3,
.smoke-test-step h3 {
  margin: 0.35rem 0;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.15;
}

body.light .smoke-test-head h3,
body.light .smoke-test-step h3 {
  color: var(--blue-950);
}

.smoke-test-head p,
.smoke-test-results p,
.smoke-test-results dd,
.smoke-test-results small {
  color: var(--slate-500);
  font-size: 0.84rem;
  font-weight: 800;
}

.smoke-test-head button {
  border: 0;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  background: var(--red-500);
  font-weight: 950;
}

.smoke-test-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smoke-test-summary {
  grid-column: 1 / -1;
}

.smoke-test-summary strong {
  display: block;
  margin: 0.3rem 0;
  color: #fff;
  font-size: 1.8rem;
}

.smoke-test-results article:not(.smoke-test-summary) strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  line-height: 1.15;
}

body.light .smoke-test-summary strong {
  color: var(--blue-950);
}

body.light .smoke-test-results article:not(.smoke-test-summary) strong {
  color: var(--blue-950);
}

.smoke-test-step {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.smoke-test-step header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.smoke-test-step b {
  color: var(--blue-300);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.smoke-test-step dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.smoke-test-step dt {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.light .smoke-test-step dt {
  color: var(--blue-950);
}

.smoke-test-step dd {
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.smoke-test-step.passed,
.smoke-test-summary.passed {
  border-color: rgba(34, 197, 94, 0.34);
}

.smoke-test-step.blocked,
.smoke-test-summary.blocked {
  border-color: rgba(245, 158, 11, 0.42);
}

.agent-mvp-readiness {
  grid-template-columns: 1fr;
  margin: 0;
}

.runtime-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr) auto;
  align-items: start;
  gap: 1rem;
  margin: 0;
}

.runtime-overview strong {
  display: block;
  margin: 0.25rem 0;
  color: #fff;
  font-size: 1.6rem;
}

body.light .runtime-overview strong {
  color: var(--blue-950);
}

.runtime-overview dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
}

.runtime-overview dt {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.runtime-overview dd {
  margin: 0.2rem 0 0;
  color: #e2e8f0;
  font-weight: 950;
}

body.light .runtime-overview dd {
  color: var(--blue-950);
}

.runtime-overview button {
  border: 0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--red-500);
  font-weight: 950;
}

.mvp-gate-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.agent-backtest-panel {
  grid-template-columns: 1fr;
  margin: 0;
}

.agent-learning-panel {
  grid-template-columns: 1fr;
  margin: 0;
}

.agent-decision-panel {
  grid-template-columns: 1fr;
  margin: 0;
}

.backtest-table,
.learning-grid,
.decision-grid {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.backtest-table h3,
.learning-grid h3,
.decision-grid h3 {
  margin: 0.45rem 0;
  color: #fff;
  font-size: 0.95rem;
}

body.light .backtest-table h3,
body.light .learning-grid h3,
body.light .decision-grid h3 {
  color: var(--blue-950);
}

.backtest-table header,
.learning-grid header,
.decision-grid header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: flex-start;
  min-width: 0;
}

.backtest-table b,
.learning-grid b,
.decision-grid b {
  color: var(--blue-300);
  font-size: 0.72rem;
  text-transform: uppercase;
  max-width: 132px;
  overflow-wrap: anywhere;
  text-align: left;
  line-height: 1.15;
}

.backtest-table dl,
.learning-grid dl,
.decision-grid dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0.75rem 0;
}

.backtest-table dt,
.learning-grid dt,
.decision-grid dt {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.backtest-table dd,
.learning-grid dd,
.decision-grid dd {
  margin: 0.2rem 0 0;
  color: #e2e8f0;
  font-weight: 950;
}

body.light .backtest-table dd,
body.light .learning-grid dd,
body.light .decision-grid dd {
  color: var(--blue-950);
}

.learning-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  align-items: center;
  gap: 1rem;
}

.decision-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
}

.decision-grid small {
  display: block;
  border-left: 3px solid var(--blue-500);
  padding-left: 0.7rem;
  color: var(--slate-400);
  font-weight: 850;
}

.learning-actions {
  display: grid;
  gap: 0.6rem;
}

.learning-overview button {
  border: 0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
}

.mvp-gate-grid article.ready {
  border-color: rgba(34, 197, 94, 0.34);
}

.mvp-overview,
.backtest-overview,
.decision-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
}

.mvp-overview p,
.backtest-overview p,
.decision-overview p {
  grid-column: 1 / -1;
  margin: 0;
}

.mvp-gate-grid article.needs-evidence {
  border-color: rgba(245, 158, 11, 0.4);
}

.mvp-gate-grid header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.mvp-gate-grid b {
  color: var(--blue-300);
  font-size: 0.72rem;
  text-transform: uppercase;
  max-width: 92px;
  line-height: 1.15;
}

.mvp-gate-grid strong {
  display: block;
  margin: 0.5rem 0;
  color: #fff;
  font-size: 1.55rem;
}

body.light .mvp-gate-grid strong {
  color: var(--blue-950);
}

.agent-command-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.agent-command-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.agent-command-card header {
  display: grid;
  gap: 0.35rem;
}

.agent-command-card header strong,
.agent-task-card h3 {
  color: #fff;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

body.light .agent-command-card header strong,
body.light .agent-task-card h3 {
  color: var(--blue-950);
}

.agent-command-card dl,
.agent-task-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
}

.agent-command-card dl .metric-state,
.agent-task-card dl .metric-state {
  grid-column: 1 / -1;
}

.agent-command-card dl div,
.agent-task-card dl div {
  border-radius: 8px;
  padding: 0.7rem;
  background: rgba(15, 23, 42, 0.28);
}

body.light .agent-command-card dl div,
body.light .agent-task-card dl div {
  background: #f8fafc;
}

.agent-command-card dt,
.agent-task-card dt {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.agent-command-card dd,
.agent-task-card dd {
  margin: 0.25rem 0 0;
  color: #e2e8f0;
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

body.light .agent-command-card dd,
body.light .agent-task-card dd {
  color: var(--blue-950);
}

.agent-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.24);
}

.agent-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-500);
}

.agent-guardrail {
  border-left: 3px solid var(--red-500);
  padding-left: 0.75rem;
}

.agent-command-card button,
.agent-task-card button,
.agent-loading button {
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
  min-height: 44px;
}

.agent-task-board {
  grid-template-columns: 1fr;
  align-items: start;
}

.agent-task-bulk-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(100, 116, 139, 0.26);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.22);
}

.agent-task-bulk-panel span,
.agent-task-lane header span,
.agent-task-select span,
.task-review-head span {
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.agent-task-bulk-panel h3,
.agent-task-lane header h3,
.task-review-head h3 {
  margin: 0.35rem 0;
  color: #fff;
  line-height: 1.12;
}

body.light .agent-task-bulk-panel h3,
body.light .agent-task-lane header h3,
body.light .task-review-head h3 {
  color: var(--blue-950);
}

.agent-task-bulk-panel p,
.agent-task-lane header p,
.task-review-head p {
  margin: 0;
  color: var(--slate-500);
  font-weight: 800;
  line-height: 1.45;
}

.agent-task-bulk-actions,
.task-review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.agent-task-bulk-actions button,
.task-review-actions button {
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
  min-height: 42px;
}

.agent-task-bulk-actions .danger-action,
.task-review-actions .danger-action {
  background: var(--red-700);
}

.agent-task-lane {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(100, 116, 139, 0.24);
}

.agent-task-lane header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: 1rem;
  align-items: end;
}

.agent-task-lane-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.agent-task-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
  min-width: 0;
}

.agent-task-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.agent-task-select label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate-400);
  font-size: 0.75rem;
  font-weight: 900;
}

.agent-task-select input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue-500);
}

.agent-task-main {
  min-width: 0;
}

.agent-task-card h3 {
  margin: 0.45rem 0 0.65rem;
  max-width: 100%;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.16;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.agent-task-card p {
  max-width: 68ch;
  overflow-wrap: anywhere;
}

.agent-task-card .agent-task-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agent-task-card button {
  width: fit-content;
  justify-self: start;
}

.agent-task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.agent-task-actions button {
  width: auto;
}

.agent-task-actions .danger-action {
  background: var(--red-700);
}

.agent-task-actions button:disabled,
.agent-task-bulk-actions button:disabled,
.task-review-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.agent-task-card.approvedbyoperator {
  border-color: rgba(34, 197, 94, 0.42);
}

.agent-task-card.rejectedbyoperator {
  border-color: rgba(239, 68, 68, 0.42);
}

.agent-task-card.underoperatorreview {
  border-color: rgba(59, 130, 246, 0.48);
}

.agent-task-decision {
  border-left: 3px solid var(--blue-500);
  padding-left: 0.7rem;
}

.agent-task-card.high {
  border-color: rgba(239, 68, 68, 0.38);
}

.agent-task-card.medium {
  border-color: rgba(59, 130, 246, 0.34);
}

.agent-task-card.high.approvedbyoperator,
.agent-task-card.medium.approvedbyoperator {
  border-color: rgba(34, 197, 94, 0.42);
}

.agent-task-card.high.rejectedbyoperator,
.agent-task-card.medium.rejectedbyoperator {
  border-color: rgba(239, 68, 68, 0.5);
}

.agent-task-card.high.underoperatorreview,
.agent-task-card.medium.underoperatorreview {
  border-color: rgba(59, 130, 246, 0.5);
}

.agent-loading.blocked {
  border-color: rgba(239, 68, 68, 0.42);
}

.task-review-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.task-review-modal[hidden] {
  display: none !important;
}

.task-review-dialog {
  width: min(860px, 100%);
  max-height: min(820px, 88vh);
  overflow: auto;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  background: #0f172a;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.45);
}

body.light .task-review-dialog {
  background: #fff;
}

.task-review-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  color: #fff;
  background: var(--red-700);
  font-weight: 950;
}

.task-review-head,
.task-review-meta,
.task-review-receipt {
  margin-bottom: 1rem;
}

.task-review-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.task-review-meta div {
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.28);
}

body.light .task-review-meta div {
  background: #f8fafc;
}

.task-review-meta dt {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 950;
  text-transform: uppercase;
}

.task-review-meta dd {
  margin: 0.25rem 0 0;
  color: #e2e8f0;
  font-weight: 950;
  overflow-wrap: anywhere;
}

body.light .task-review-meta dd {
  color: var(--blue-950);
}

.ai-registry-console {
  width: 100%;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.ai-registry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  border: 1px solid rgba(100, 116, 139, 0.24);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.48);
}

.ai-registry-form label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-registry-form input,
.ai-registry-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: #fff;
  background: rgba(2, 6, 23, 0.32);
  font: inherit;
  text-transform: none;
}

.ai-registry-form button {
  align-self: end;
  min-height: 46px;
}

.ai-registry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-registry-card {
  min-width: 0;
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.7);
}

.ai-registry-card header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.ai-registry-card header span,
.ai-registry-card header b {
  color: #bfdbfe;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-registry-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.ai-registry-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.ai-registry-card dl div {
  min-width: 0;
  border-radius: 8px;
  padding: 0.65rem;
  background: rgba(2, 6, 23, 0.3);
}

.ai-registry-card dt {
  color: var(--slate-500);
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-registry-card dd,
.ai-registry-card p {
  margin: 0.2rem 0 0;
  color: #e2e8f0;
  line-height: 1.4;
  font-size: 0.8rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ai-registry-card button {
  width: fit-content;
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
}

body.light .governed-receipt,
body.light .ai-registry-form,
body.light .ai-registry-card {
  color: var(--slate-900);
  background: #fff;
}

body.light .receipt-flow p,
body.light .governed-receipt dd,
body.light .ai-registry-card h3,
body.light .ai-registry-card dd,
body.light .ai-registry-card p {
  color: var(--slate-900);
}

body.light .receipt-flow div,
body.light .governed-receipt dl div,
body.light .ai-registry-card dl div {
  background: #f8fafc;
}

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

.asset-column {
  display: grid;
  gap: 1rem;
}

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

.finance-grid h3 {
  margin: 0 0 1rem;
  color: var(--slate-500);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.panel-kicker {
  color: var(--slate-500);
  font-weight: 900;
}

.asset-column h4 {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.finance-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--blue-500);
}

.finance-grid .blue {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(30, 58, 138, 0.13);
}

.centered-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.centered-panel p {
  max-width: 540px;
  color: var(--slate-500);
  font-weight: 800;
}

.panel-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 950;
}

.muted-icon {
  background: rgba(100, 116, 139, 0.3);
  color: var(--slate-500);
}

.dark-action {
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 1.2rem;
  color: var(--slate-900);
  background: var(--slate-100);
  font-weight: 950;
}

.dashboard-grid article,
.admin-board article {
  padding: 1.5rem;
}

.admin {
  border-top: 3px solid var(--red-700);
}

.floating-chat {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
}

.floating-chat.chat-expanded {
  inset: 5.5rem 1.5rem 1.5rem auto;
}

.floating-chat > button {
  width: 76px;
  height: 76px;
  border: 2px solid var(--slate-100);
  border-radius: 999px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(30, 64, 175, 0.45);
}

.floating-chat > button span {
  display: block;
  font-size: 0.8rem;
}

.floating-chat > button em {
  display: block;
  margin-top: 0.1rem;
  font-style: normal;
  font-size: 0.62rem;
}

.chat-panel header strong {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-panel {
  width: min(350px, calc(100vw - 2rem));
  height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.35);
  border-radius: 18px;
  background: var(--slate-900);
  box-shadow: 0 25px 70px rgba(2, 6, 23, 0.5);
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-expanded .chat-panel {
  width: min(760px, calc(100vw - 3rem));
  height: calc(100vh - 7rem);
}

.chat-panel header,
.chat-panel form {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--blue-900);
}

.chat-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.chat-tools button,
.chat-panel form button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 950;
}

.chat-endpoint {
  margin: 0;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.35);
  color: var(--slate-400);
  font-size: 0.72rem;
  font-weight: 800;
}

.chat-endpoint code {
  display: inline-block;
  margin: 0.1rem 0.25rem 0.1rem 0;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: var(--slate-800);
}

.chat-status {
  min-height: 32px;
  padding: 0.45rem 1rem;
  border-top: 1px solid rgba(100, 116, 139, 0.24);
  color: #bfdbfe;
  background: rgba(30, 58, 138, 0.22);
  font-size: 0.72rem;
  font-weight: 850;
}

.chat-panel form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top: 1px solid rgba(100, 116, 139, 0.25);
  padding: 3rem 1rem 2rem;
  background: #07111f;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 950;
}

.site-footer a,
.site-footer button {
  display: block;
  margin: 0.5rem 0;
  padding: 0;
  border: 0;
  color: var(--slate-500);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  text-align: left;
}

.status-surface {
  max-width: 820px;
  margin: 5rem auto;
}

.route-content-system {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.28)),
    var(--slate-900);
  box-shadow: 0 24px 70px rgba(2, 6, 23, 0.28);
}

.public-feature-block {
  scroll-margin-top: 150px;
}

.route-content-head,
.route-content-grid,
.route-endpoint-grid {
  display: grid;
  gap: 1rem;
}

.route-content-head {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.6fr);
  align-items: start;
  margin-bottom: 1rem;
}

.route-content-head h2,
.route-content-grid h3 {
  margin-top: 0;
}

.journey-note {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: var(--slate-400);
  background: rgba(15, 23, 42, 0.7);
}

.journey-note strong {
  color: #fff;
  font-size: 1.05rem;
}

body.light .journey-note {
  color: var(--slate-600);
  background: #fff;
}

body.light .journey-note strong {
  color: var(--slate-900);
}

.route-content-head dl,
.route-content-grid article,
.route-endpoint-grid article {
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.7);
}

.route-content-head dl {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.route-content-head dt,
.route-content-grid li,
.route-endpoint-grid small {
  color: var(--slate-400);
  font-size: 0.78rem;
  font-weight: 850;
}

.route-content-head dd {
  margin: 0 0 0.65rem;
  color: #fff;
  font-weight: 900;
}

.route-content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-content-grid article {
  padding: 1rem;
}

.route-content-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.route-content-grid li + li {
  margin-top: 0.35rem;
}

.route-endpoint-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.route-endpoint-grid article {
  padding: 0.9rem;
}

.route-endpoint-grid span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.28);
  font-size: 0.68rem;
  font-weight: 950;
}

.route-endpoint-grid code {
  display: block;
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}

.route-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.agent-control-layer {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 1.25rem;
  border: 1px solid rgba(220, 38, 38, 0.22);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.88);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.agent-grid article {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.agent-grid span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  color: #fecaca;
  background: rgba(185, 28, 28, 0.22);
  font-size: 0.7rem;
  font-weight: 950;
}

.agent-grid button {
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .nav-inner,
  .mode-switch,
  .service-strip,
  .official-heading,
  .official-card-grid,
  .rental-flow-section,
  .route-public-page,
  .unique-route-experience,
  .unique-panel-grid,
  .unique-stat-grid,
  .booking-command-strip,
  .requirements-board,
  .business-ops-layout,
  .rental-service-layout,
  .monthly-rhythm-layout,
  .fleet-story-layout,
  .fleet-mini-grid,
  .apps-access-layout,
  .location-landing-layout,
  .value-comparison-layout,
  .safari-expedition-layout,
  .ownership-path-layout,
  .proof-directory-layout,
  .gallery-editorial-layout,
  .route-seo-landing,
  .route-seo-modules,
  .route-copy-proof,
  .route-faq-strip,
  .seo-intent-section,
  .seo-faq-grid,
  .route-detail-grid,
  .scenario-section,
  .service-journey-board,
  .service-module-grid,
  .service-directory-grid,
  .route-highlight-grid,
  .hero-inner,
  .content-grid,
  .route-source-head,
  .composition-head,
  .composition-proof,
  .composition-steps,
  .related-routes,
  .route-content-head,
  .route-content-grid,
  .route-endpoint-grid,
  .agent-grid,
  .source-content-grid,
  .service-feature,
  .testimonial-feature,
  .form-feature,
  .experience-head,
  .completion-meter,
  .footer-grid,
  .portal-layout,
  .portal-grid,
  .portal-grid.two,
  .readiness-preview,
  .detail-grid,
  .ops-lanes,
  .crm-workbench,
  .asset-workbench,
  .finance-grid,
  .agent-command-summary,
  .agent-command-grid,
  .runtime-overview,
  .agent-mvp-readiness,
  .agent-smoke-test,
  .smoke-test-head,
  .smoke-test-results,
  .mvp-gate-grid,
  .agent-value-demo,
  .value-demo-head,
  .value-demo-compare,
  .value-demo-interventions,
  .value-demo-outcomes,
  .agent-backtest-panel,
  .backtest-table,
  .agent-learning-panel,
  .learning-grid,
  .agent-decision-panel,
  .decision-grid,
  .agent-task-board,
  .agent-task-bulk-panel,
  .agent-task-lane header,
  .agent-task-lane-grid,
  .task-review-meta,
  .agent-task-card,
  .ai-registry-form,
  .ai-registry-grid,
  .mini-form,
  .settings-grid,
  .report-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .route-seo-lead {
    position: static;
    min-height: 420px;
  }

  .route-copy-proof,
  .route-faq-strip {
    grid-column: auto;
  }

  .nav-inner {
    height: auto;
    padding-block: 1rem;
    flex-wrap: wrap;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mode-switch {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 10;
  }

  .mode-switch.open {
    display: grid;
  }

  .hero-inner {
    padding: 4rem 1rem;
  }

  .official-overview,
  .rental-flow-section {
    padding: 2.5rem 1rem;
  }

  .flow-media {
    min-height: 280px;
  }

  .intro-panel {
    grid-template-columns: 1fr;
  }

  .intro-panel .icon-block {
    grid-row: auto;
  }

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

  .control-panel {
    position: static;
  }

  .portal-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .portal-view {
    position: relative;
    max-width: none;
    padding-top: 5.5rem;
  }

  .portal-layout,
  .portal-layout.admin-layout {
    display: block;
  }

  .portal-main {
    min-width: 0;
    width: 100%;
  }

  .portal-drawer-toggle {
    position: fixed;
    top: calc(76px + 0.85rem);
    left: 0.85rem;
    z-index: 92;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    max-width: calc(100vw - 1.7rem);
    border: 1px solid rgba(147, 197, 253, 0.34);
    border-radius: 999px;
    padding: 0.65rem 1rem;
    color: #fff;
    background: rgba(29, 78, 216, 0.95);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.38);
    font-weight: 950;
  }

  .portal-drawer-toggle::before {
    content: "☰";
    margin-right: 0.5rem;
    font-size: 1rem;
    line-height: 1;
  }

  .portal-view.portal-drawer-open .portal-drawer-toggle::before {
    content: "×";
    font-size: 1.25rem;
  }

  .portal-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 89;
    display: block;
    background: rgba(2, 6, 23, 0.54);
    backdrop-filter: blur(2px);
  }

  .portal-drawer-overlay[hidden] {
    display: none;
  }

  .portal-sidebar,
  .portal-sidebar.admin-sidebar {
    position: fixed;
    top: 76px;
    left: 0;
    z-index: 91;
    width: min(320px, calc(100vw - 3rem));
    height: calc(100dvh - 76px);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0 18px 18px 0;
    border-left: 0;
    padding: 1rem;
    transform: translateX(calc(-100% - 1rem));
    transition: transform 180ms ease;
    box-shadow: 24px 0 70px rgba(2, 6, 23, 0.46);
  }

  .portal-view.portal-drawer-open .portal-sidebar {
    transform: translateX(0);
  }

  .portal-sidebar button {
    min-height: 48px;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
  }

  .portal-identity {
    position: sticky;
    top: -1rem;
    z-index: 1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .mode-shell,
  .fleet-section,
  .booking-section,
  .content-grid,
  .portal-view,
  .public-route-panels,
  .page-composition,
  .route-source-section,
  .visual-asset-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .global-nav {
    position: sticky;
  }

  .nav-inner {
    gap: 0.8rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 210px;
  }

  .brand b,
  .brand small {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section-heading h2,
  .route-public-copy h2,
  .official-heading h2,
  .flow-copy h2,
  .unique-route-copy h1,
  .route-seo-lead h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.05;
  }

  .section-heading p,
  .route-public-copy p:not(.eyebrow),
  .official-heading p:not(.eyebrow),
  .flow-copy > p:not(.eyebrow),
  .unique-route-copy p,
  .route-seo-lead p,
  .unique-panel-grid p,
  .route-seo-modules p,
  .route-copy-proof p,
  .route-faq-strip p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .unique-route-experience,
  .route-seo-landing,
  .seo-intent-section,
  .scenario-section,
  .service-journey-board {
    gap: 1rem;
    padding: 2.5rem 1rem;
  }

  .unique-route-visual,
  .unique-route-experience.route-hero.apps .unique-route-visual,
  .unique-route-experience.route-hero.fleet .unique-route-visual {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 300px;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
  }

  .unique-route-visual div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem;
  }

  .unique-route-visual strong {
    max-width: 100%;
    font-size: clamp(1.4rem, 7vw, 2.1rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .unique-stat-grid,
  .unique-panel-grid,
  .route-seo-modules,
  .route-copy-proof,
  .route-faq-strip,
  .composition-proof,
  .composition-steps,
  .related-routes {
    grid-template-columns: 1fr;
  }

  .fleet-grid,
  .featured-catalogue,
  .full-catalogue,
  .fleet-mini-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .featured-catalogue .fleet-card:nth-child(n + 9) {
    display: grid;
  }

  .fleet-card {
    display: grid;
    grid-template-columns: minmax(118px, 36%) minmax(0, 1fr);
    grid-template-areas:
      "image category"
      "image title"
      "image features"
      "image state"
      "image action";
    gap: 0.45rem 1rem;
    align-items: start;
    min-height: auto;
    padding: 0.9rem;
    overflow: hidden;
  }

  .fleet-card .fleet-visual {
    grid-area: image;
    width: 100%;
    height: auto;
    min-height: 168px;
    aspect-ratio: 3 / 4;
    margin: 0;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
  }

  .fleet-card p {
    grid-area: category;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .fleet-card h3 {
    grid-area: title;
    margin: 0;
    font-size: clamp(1.22rem, 5.5vw, 1.65rem);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .fleet-card span:not(.top-choice) {
    grid-area: features;
    display: block;
    color: var(--slate-300);
    font-size: 0.98rem;
    line-height: 1.42;
    overflow-wrap: normal;
    word-break: normal;
  }

  .fleet-photo-state {
    grid-area: state;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .fleet-card button,
  .fleet-card a {
    grid-area: action;
    width: 100%;
    min-height: 48px;
    margin-top: 0.25rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .filter-pills {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .filter-pills button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
  }

  .fleet-mini-grid article,
  .gallery-editorial-layout article {
    min-height: 220px;
  }

  .apps-access-layout {
    gap: 1rem;
  }

  .apps-access-layout > div:first-child,
  .apps-gate-grid button,
  .portal-grid.two .metric-card {
    min-height: auto;
    padding: 1.15rem;
  }

  .apps-gate-grid button {
    display: grid;
    gap: 0.45rem;
  }

  .apps-gate-grid button strong,
  .portal-grid.two .metric-card strong {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .route-seo-lead {
    min-height: 360px;
    padding: 1.25rem;
    background-position: center;
  }

  .route-seo-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-action,
  .secondary-action,
  button[type="submit"] {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .floating-chat {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-chat > button {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 420px) {
  .mode-shell,
  .fleet-section,
  .booking-section,
  .content-grid,
  .portal-view {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .fleet-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 0.45rem 0.8rem;
  }

  .fleet-card .fleet-visual {
    min-height: 156px;
  }

  .fleet-card h3 {
    font-size: 1.22rem;
  }

  .fleet-card span:not(.top-choice) {
    font-size: 0.94rem;
  }

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

  .brand b,
  .brand small {
    max-width: 160px;
  }
}
