@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("/assets/fonts/barlow-semi-condensed-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --road-blue: #1746d1;
  --road-blue-dark: #1036aa;
  --marker-yellow: #ffd43b;
  --asphalt: #141718;
  --winter: #f7f8f5;
  --fog: #d9e1e5;
  --ice: #eaf2ff;
  --white: #ffffff;
  --ink: #141718;
  --muted: #596266;
  --line: #d9e1e5;
  --ok: #16825d;
  --ok-soft: #e6f4ee;
  --warn: #b86b00;
  --warn-soft: #fff3d2;
  --danger: #c9362b;
  --danger-soft: #ffebe8;
  --page-width: 1344px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--winter);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.section-label,
.button,
.challenger-nav,
.text-link,
.operation-metrics strong,
.day-steps,
.route-table th,
.audience-switcher {
  font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--asphalt);
  transform: translateY(-150%);
}

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

.challenger-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 78px;
  display: grid;
  grid-template-columns: 226px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 14px max(30px, calc((100% - var(--page-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, .97);
  backdrop-filter: blur(14px);
}

.challenger-brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
}

.challenger-brand img {
  width: 188px;
  height: auto;
}

.challenger-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 17px;
  font-weight: 600;
}

.challenger-nav a,
.text-link {
  text-decoration: none;
}

.challenger-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.challenger-nav a:hover,
.challenger-nav a:focus-visible {
  border-bottom-color: var(--road-blue);
}

.mobile-nav-actions {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.text-link {
  font-size: 16px;
  font-weight: 600;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--asphalt);
  border-radius: 4px;
  color: var(--asphalt);
  background: transparent;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.button-dark {
  position: relative;
  color: var(--white);
  border-color: var(--asphalt);
  background: var(--asphalt);
}

.button-dark::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 5px;
  background: var(--marker-yellow);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--asphalt);
  border-color: var(--marker-yellow);
  background: var(--marker-yellow);
}

.button-link {
  padding-right: 4px;
  padding-left: 4px;
  border-bottom-color: var(--road-blue);
  color: var(--asphalt);
  background: transparent;
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--road-blue);
}

.button-yellow {
  color: var(--asphalt);
  border-color: var(--marker-yellow);
  background: var(--marker-yellow);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  border-color: var(--asphalt);
  background: var(--white);
}

:focus-visible {
  outline: 3px solid var(--marker-yellow);
  outline-offset: 3px;
}

.control-hero {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
  padding: 44px 0 0;
}

.hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(580px, 1.14fr);
  gap: 48px;
  align-items: start;
}

.hero-copy {
  max-width: 600px;
  padding-bottom: 20px;
}

.hero-kicker,
.section-label {
  margin-bottom: 12px;
  color: var(--road-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: 76px;
  font-weight: 800;
  line-height: .96;
}

.hero-promise {
  margin-bottom: 12px;
  color: var(--road-blue);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-lead {
  max-width: 500px;
  margin-bottom: 28px;
  color: #343a3d;
  font-size: 20px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-self-start {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.hero-self-start a {
  color: var(--asphalt);
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero-self-start a:hover,
.hero-self-start a:focus-visible {
  color: var(--road-blue);
}

.hero-operation {
  min-width: 0;
}

.operation-metrics {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.operation-metrics > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 7px 16px 20px;
  border-left: 1px solid var(--line);
}

.operation-metrics > div:first-child {
  justify-content: flex-start;
  border-left: 0;
}

.operation-metrics strong {
  color: var(--asphalt);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.operation-metrics span {
  color: var(--muted);
  font-size: 15px;
}

.operation-metrics .metric-time strong {
  color: var(--road-blue);
  font-size: 43px;
}

.operation-metrics .metric-time {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.operation-metrics .metric-ok {
  color: var(--ok);
}

.operation-metrics .metric-bad {
  color: var(--danger);
}

.route-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.route-map img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.route-label {
  position: absolute;
  left: 49%;
  top: 58%;
  padding: 6px 9px;
  border-radius: 4px;
  color: var(--white);
  background: var(--road-blue);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.transport-day {
  margin-top: 38px;
}

.day-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--marker-yellow);
}

.day-steps button {
  position: relative;
  min-height: 88px;
  display: grid;
  place-items: center;
  align-content: start;
  gap: 7px;
  padding: 0 10px 16px;
  border: 0;
  color: var(--asphalt);
  background: transparent;
}

.day-steps button span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: -22px;
  border: 2px solid var(--marker-yellow);
  border-radius: 50%;
  background: var(--winter);
  font-size: 18px;
  font-weight: 700;
}

.day-steps button strong {
  font-size: 17px;
}

.day-steps button.active span,
.day-steps button:hover span {
  color: var(--asphalt);
  background: var(--marker-yellow);
}

.day-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.route-table-wrap {
  min-width: 0;
  overflow-x: auto;
}

.route-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.route-table th,
.route-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.route-table th {
  color: var(--muted);
  background: #fbfcfa;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-table td {
  font-size: 14px;
  white-space: nowrap;
}

.route-table tbody tr:last-child td {
  border-bottom: 0;
}

.route-table tr.selected td:first-child {
  box-shadow: inset 5px 0 var(--road-blue);
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.status-ok {
  color: #0d6547;
  background: var(--ok-soft);
}

.status-warn {
  color: #7d4900;
  background: var(--warn-soft);
}

.status-bad {
  color: #a62b22;
  background: var(--danger-soft);
}

.row-action {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--asphalt);
  border-radius: 3px;
  color: var(--asphalt);
  background: var(--white);
  font-weight: 700;
}

.row-action:hover,
.row-action:focus-visible {
  border-color: var(--marker-yellow);
  background: var(--marker-yellow);
}

.action-queue {
  padding: 20px;
  border-left: 1px solid var(--line);
  background: #fbfcfa;
}

.action-queue h2 {
  margin-bottom: 17px;
  font-size: 25px;
  line-height: 1.08;
}

.action-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 12px 14px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--danger);
}

.action-item + .action-item {
  margin-top: 8px;
}

.action-warn {
  border-left-color: var(--warn);
}

.action-item strong,
.action-item span {
  display: block;
}

.action-item span,
.action-item small,
.queue-note {
  color: var(--muted);
  font-size: 13px;
}

.queue-note {
  margin: 18px 0 0;
}

.evidence-strip {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--white);
  background: var(--road-blue);
}

.evidence-strip > div {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 28px max(32px, calc((100vw - var(--page-width)) / 2));
}

.evidence-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.evidence-strip strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.evidence-strip span {
  color: #dfe7ff;
}

.section-light,
.trust-section,
.documentary-section,
.demo-section {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
}

.story-section,
.audience-section,
.trust-section,
.pricing-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading h2,
.documentary-copy h2,
.demo-copy h2 {
  margin-bottom: 18px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.02;
}

.section-heading > p:last-child,
.documentary-copy > p,
.demo-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.compact-heading {
  margin-bottom: 36px;
}

.flow-rows {
  border-top: 1px solid var(--asphalt);
}

.flow-rows article {
  display: grid;
  grid-template-columns: 170px minmax(250px, .65fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.flow-rows article > span {
  color: var(--road-blue);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.flow-rows h3 {
  margin: 0;
  font-size: 30px;
}

.flow-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.documentary-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: stretch;
  padding: 0;
  background: var(--asphalt);
}

.documentary-image {
  min-height: 640px;
}

.documentary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.documentary-copy {
  display: grid;
  align-content: center;
  padding: 62px;
  color: var(--white);
}

.documentary-copy .section-label {
  color: var(--marker-yellow);
}

.documentary-copy h2 {
  color: var(--white);
}

.documentary-copy > p {
  color: #bec6c9;
}

.proof-list {
  margin: 28px 0 0;
  border-top: 1px solid #454a4c;
}

.proof-list > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #454a4c;
}

.proof-list dt {
  color: var(--white);
  font-weight: 700;
}

.proof-list dd {
  margin: 0;
  color: #bec6c9;
}

.audience-switcher {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--asphalt);
  border-bottom: 1px solid var(--line);
}

.audience-switcher button {
  min-height: 54px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-size: 17px;
  font-weight: 700;
}

.audience-switcher button.active,
.audience-switcher button:hover {
  color: var(--asphalt);
  background: var(--marker-yellow);
}

.audience-detail {
  max-width: 900px;
  padding: 50px 0 0 25%;
}

.audience-detail h3 {
  margin-bottom: 14px;
  font-size: 35px;
  line-height: 1.08;
}

.audience-detail > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.trust-section {
  border-top: 1px solid var(--asphalt);
}

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

.trust-rows > div {
  display: grid;
  grid-template-columns: minmax(230px, .35fr) 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.trust-rows strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 21px;
}

.trust-rows span {
  color: var(--muted);
}

.pricing-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
}

.pricing-section .section-heading {
  margin-bottom: 0;
}

.pricing-section > .button {
  flex: 0 0 auto;
}

.self-start-section {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 60px;
  border-top: 1px solid var(--asphalt);
}

.self-start-section h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 42px;
  line-height: 1.04;
}

.self-start-section > div > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.self-start-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr);
  gap: 84px;
  padding: 86px;
  color: var(--white);
  background: var(--road-blue);
}

.demo-copy .section-label {
  color: var(--marker-yellow);
}

.demo-copy h2 {
  color: var(--white);
}

.demo-copy > p {
  color: #dfe7ff;
}

.demo-copy ol {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.demo-copy li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.demo-copy li strong {
  color: var(--marker-yellow);
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  color: var(--asphalt);
  background: var(--winter);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.demo-form label {
  display: grid;
  gap: 6px;
}

.demo-form label > span {
  font-size: 13px;
  font-weight: 700;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #aeb8bd;
  border-radius: 3px;
  color: var(--asphalt);
  background: var(--white);
  outline: none;
}

.demo-form textarea {
  min-height: 118px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--road-blue);
  box-shadow: 0 0 0 3px rgba(23, 70, 209, .16);
}

.demo-form [aria-invalid="true"] {
  border-color: var(--danger);
  background: #fff8f7;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-privacy a {
  color: var(--road-blue);
  font-weight: 700;
}

.demo-form .button {
  width: fit-content;
}

.form-notice {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.form-notice.error {
  color: var(--danger);
}

.form-notice.success {
  color: var(--ok);
  font-weight: 700;
}

.live-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(420px, calc(100vw - 32px));
  font-family: "Source Sans 3", system-ui, sans-serif;
}

.live-chat-toggle {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  margin-left: auto;
  padding: 12px 16px;
  border: 1px solid var(--asphalt);
  border-radius: 5px;
  color: var(--white);
  background: var(--asphalt);
  box-shadow: 0 18px 44px rgba(20, 23, 24, .25);
}

.live-chat-toggle strong,
.live-chat-toggle small {
  display: block;
  text-align: left;
}

.live-chat-toggle strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 19px;
  line-height: 1;
}

.live-chat-toggle small {
  margin-top: 3px;
  color: #d9e1e5;
  font-size: 13px;
}

.live-chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--warn);
  box-shadow: 0 0 0 4px rgba(255, 212, 59, .2);
}

.live-chat-widget.online .live-chat-dot {
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(54, 211, 153, .22);
}

.live-chat-panel {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--asphalt);
  border-radius: 6px;
  background: var(--winter);
  box-shadow: 0 24px 70px rgba(20, 23, 24, .28);
}

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

.live-chat-widget.open .live-chat-toggle {
  display: none;
}

.live-chat-widget.open .live-chat-panel {
  margin-top: 0;
}

.live-chat-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 20px;
  color: var(--white);
  background: var(--asphalt);
}

.live-chat-head h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.02;
}

.live-chat-head .section-label {
  color: var(--marker-yellow);
}

.live-chat-head button {
  width: 36px;
  height: 36px;
  border: 1px solid #4d5659;
  border-radius: 3px;
  color: var(--white);
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.live-chat-messages {
  display: grid;
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding: 16px 18px;
}

.live-chat-message {
  max-width: 92%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.live-chat-message.visitor {
  justify-self: end;
  color: var(--white);
  border-color: var(--road-blue);
  background: var(--road-blue);
}

.live-chat-message.superuser {
  border-color: #b9c6ff;
  background: #f2f5ff;
}

.live-chat-message span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.live-chat-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.live-chat-message small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  opacity: .78;
}

.live-chat-message button {
  margin-top: 7px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.live-chat-typing {
  margin: -4px 18px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.live-chat-form {
  display: grid;
  gap: 12px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}

.live-chat-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f7f8f4;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.live-chat-identity[hidden] {
  display: none;
}

.live-chat-form [data-chat-contact-fields][hidden] {
  display: none;
}

.live-chat-identity button {
  padding: 0;
  border: 0;
  color: var(--road-blue);
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.live-chat-form label {
  display: grid;
  gap: 5px;
}

.live-chat-form label > span {
  font-size: 12px;
  font-weight: 700;
}

.live-chat-form input,
.live-chat-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid #aeb8bd;
  border-radius: 3px;
  background: var(--white);
}

.live-chat-form textarea {
  min-height: 92px;
  resize: vertical;
}

.live-chat-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.live-chat-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.live-chat-actions p.error {
  color: var(--danger);
}

.live-chat-actions p.success {
  color: var(--ok);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.challenger-footer {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 160px;
}

.challenger-footer p,
.challenger-footer small {
  margin: 0;
  color: var(--muted);
}

.challenger-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.challenger-footer nav a {
  font-weight: 600;
  text-decoration: none;
}

.challenger-footer nav a:hover {
  color: var(--road-blue);
}

@media (max-width: 1180px) {
  .challenger-header {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .challenger-nav {
    gap: 20px;
  }

  .challenger-brand,
  .challenger-brand img {
    width: 164px;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, .8fr) minmax(500px, 1.2fr);
    gap: 30px;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .demo-section {
    gap: 50px;
    padding: 64px;
  }
}

@media (max-width: 980px) {
  .challenger-header {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 22px;
  }

  .menu-button {
    display: inline-flex;
  }

  .challenger-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 22px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--winter);
  }

  .challenger-nav.open {
    display: grid;
  }

  .challenger-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
  }

  .mobile-nav-actions {
    display: grid !important;
    gap: 12px;
    padding-top: 16px;
  }

  .mobile-nav-actions a {
    width: 100%;
  }

  .mobile-nav-actions .button {
    color: #fff;
    border-bottom: 1px solid #141718;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .documentary-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

  .control-hero {
    width: min(760px, calc(100% - 44px));
    padding-top: 54px;
  }

  .hero-grid {
    min-height: 0;
  }

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

  .hero-copy h1 {
    font-size: 68px;
  }

  .operation-metrics {
    margin-top: 10px;
  }

  .day-console {
    grid-template-columns: 1fr;
  }

  .action-queue {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .evidence-strip {
    grid-template-columns: 1fr;
  }

  .evidence-strip > div + div {
    border-top: 1px solid rgba(255, 255, 255, .32);
    border-left: 0;
  }

  .section-light,
  .trust-section,
  .documentary-section,
  .demo-section {
    width: min(760px, calc(100% - 44px));
  }

  .documentary-image {
    min-height: 460px;
  }

  .documentary-copy {
    padding: 52px;
  }

  .demo-section {
    gap: 36px;
  }

  .challenger-footer {
    width: min(760px, calc(100% - 44px));
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }

  .challenger-brand,
  .challenger-brand img {
    width: 145px;
  }

  .control-hero,
  .section-light,
  .trust-section,
  .documentary-section,
  .demo-section,
  .challenger-footer {
    width: calc(100% - 32px);
  }

  .control-hero {
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: 50px;
    line-height: .98;
  }

  .hero-promise {
    font-size: 22px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .operation-metrics > div {
    min-height: 74px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px;
  }

  .operation-metrics .metric-time {
    grid-column: 1 / -1;
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .operation-metrics > div:nth-child(2) {
    border-left: 0;
  }

  .operation-metrics strong,
  .operation-metrics .metric-time strong {
    font-size: 32px;
  }

  .route-map,
  .route-map img {
    min-height: 245px;
    height: 245px;
  }

  .transport-day {
    margin-top: 48px;
  }

  .day-steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 3px solid var(--marker-yellow);
  }

  .day-steps button {
    min-height: 58px;
    grid-template-columns: 42px 1fr;
    place-items: center start;
    align-content: center;
    padding: 6px 14px;
  }

  .day-steps button span {
    width: 36px;
    height: 36px;
    margin: 0 0 0 -34px;
    background: var(--winter);
  }

  .day-steps button strong {
    font-size: 18px;
  }

  .action-queue h2 {
    font-size: 23px;
  }

  .evidence-strip {
    margin-top: 38px;
  }

  .evidence-strip > div {
    min-height: 112px;
    padding: 24px;
  }

  .evidence-strip strong {
    font-size: 24px;
  }

  .story-section,
  .audience-section,
  .trust-section,
  .pricing-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .documentary-copy h2,
  .demo-copy h2 {
    font-size: 40px;
  }

  .flow-rows article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .flow-rows h3 {
    font-size: 27px;
  }

  .documentary-image {
    min-height: 330px;
  }

  .documentary-copy {
    padding: 34px 24px;
  }

  .proof-list > div,
  .trust-rows > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .audience-switcher {
    display: grid;
    grid-template-columns: 1fr;
  }

  .audience-switcher button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .audience-detail {
    padding: 34px 0 0;
  }

  .audience-detail h3 {
    font-size: 30px;
  }

  .pricing-section {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-section > .button {
    width: 100%;
  }

  .self-start-section {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 28px;
    padding: 54px 0;
  }

  .self-start-section h2 {
    font-size: 34px;
  }

  .self-start-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .self-start-actions .button {
    width: 100%;
  }

  .demo-section {
    padding: 42px 20px 20px;
  }

  .demo-form {
    padding: 22px 18px;
  }

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

  .demo-form .button {
    width: 100%;
  }

  .challenger-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding: 34px 0;
  }
}

@media (max-width: 390px) {
  .challenger-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .route-map,
  .route-map img {
    min-height: 220px;
    height: 220px;
  }

  .route-label {
    left: 44%;
    top: 58%;
  }
}

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

/* Ruteo attention and fleet expansion */
.control-hero .hero-grid {
  min-height: 540px;
  grid-template-columns: minmax(460px, .9fr) minmax(610px, 1.1fr);
  align-items: center;
}

.control-hero .hero-copy h1 {
  max-width: 650px;
  font-size: 72px;
}

.report-demo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--asphalt);
  border-top: 5px solid var(--road-blue);
  border-radius: 6px;
  background: var(--white);
}

.report-demo-head,
.fleet-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.report-demo-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.report-demo-head > div {
  display: grid;
  gap: 4px;
}

.report-demo-head .section-label {
  margin: 0;
}

.report-demo-head strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 29px;
}

.report-demo-state,
.planned-badge {
  padding: 7px 9px;
  border-radius: 3px;
  color: var(--asphalt);
  background: var(--marker-yellow);
  font-size: 13px;
  font-weight: 800;
}

.report-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.report-scenarios button {
  min-height: 48px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f4f6f5;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}

.report-scenarios button:last-child {
  border-right: 0;
}

.report-scenarios button.active,
.report-scenarios button:hover {
  background: var(--marker-yellow);
}

.report-source-row {
  display: grid;
  grid-template-columns: 80px minmax(170px, .8fr) minmax(220px, 1.2fr);
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.report-source-row span,
.report-source-row small {
  color: var(--muted);
}

.report-source-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.report-pipeline span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.report-pipeline strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--winter);
}

.report-pipeline span.active,
.report-pipeline span.complete {
  color: var(--asphalt);
  font-weight: 700;
}

.report-pipeline span.active strong {
  border-color: var(--marker-yellow);
  background: var(--marker-yellow);
}

.report-pipeline span.complete strong {
  border-color: var(--road-blue);
  color: var(--white);
  background: var(--road-blue);
}

.report-results,
.fleet-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-results > div,
.fleet-metrics > div {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.report-results > div:last-child,
.fleet-metrics > div:last-child {
  border-right: 0;
}

.report-results strong,
.fleet-metrics strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 38px;
}

.report-results span,
.fleet-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.report-review-list,
.fleet-event-list {
  border-top: 1px solid var(--line);
}

.report-review-list > div,
.fleet-event-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px 24px;
  border-bottom: 1px solid var(--line);
}

.report-review-list > div:last-child,
.fleet-event-list > div:last-child {
  border-bottom: 0;
}

.report-review-list span,
.fleet-event-list span,
.fleet-event-list small {
  color: var(--muted);
}

.report-demo.processing .report-results,
.report-demo.processing .report-review-list {
  opacity: .42;
}

.operations-section,
.registry-proof-section,
.pilot-section,
.problem-section {
  padding: 96px 0;
}

.operations-heading {
  margin-bottom: 34px;
}

.operation-stage {
  max-width: 860px;
  margin: 0 0 74px auto;
}

.operations-section .transport-day {
  margin-top: 0;
}

.registry-console {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  border: 1px solid var(--asphalt);
  border-top: 5px solid var(--road-blue);
  background: var(--white);
}

.registry-selector {
  border-right: 1px solid var(--line);
  background: #f4f6f5;
}

.registry-selector button {
  width: 100%;
  min-height: 94px;
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
}

.registry-selector button:last-child {
  border-bottom: 0;
}

.registry-selector button.active,
.registry-selector button:hover {
  background: var(--marker-yellow);
}

.registry-selector strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 24px;
}

.registry-selector span {
  color: var(--muted);
}

.registry-summary {
  display: grid;
  grid-template-columns: minmax(210px, .5fr) minmax(360px, 1fr) minmax(220px, .55fr);
  min-width: 0;
}

.registry-vehicle,
.registry-decision {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 28px;
}

.registry-vehicle {
  border-right: 1px solid var(--line);
}

.registry-vehicle > strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 40px;
}

.registry-status-list > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.registry-status-list > div:last-child {
  border-bottom: 0;
}

.registry-status-list span {
  color: var(--muted);
}

.registry-decision {
  border-left: 1px solid var(--line);
  border-top: 5px solid var(--ok);
  background: #f0f8f4;
}

.registry-decision.warn {
  border-top-color: var(--warn);
  background: #fff8e4;
}

.registry-decision span {
  color: var(--muted);
}

.registry-decision strong {
  font-size: 20px;
}

.example-disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.sprint-section {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr);
  gap: 70px;
  padding: 68px;
  color: var(--white);
  background: var(--road-blue);
}

.sprint-copy .section-label {
  color: var(--marker-yellow);
}

.sprint-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.02;
}

.sprint-copy p:not(.section-label) {
  margin-bottom: 28px;
  color: #dfe7ff;
  font-size: 18px;
  line-height: 1.55;
}

.sprint-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .36);
  list-style: none;
}

.sprint-steps li {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .36);
}

.sprint-steps strong {
  color: var(--marker-yellow);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 21px;
}

.pilot-section {
  position: relative;
  border-top: 1px solid var(--asphalt);
}

.pilot-measures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.pilot-measures > div {
  display: grid;
  gap: 8px;
  padding: 25px 24px 25px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pilot-measures > div + div {
  padding-left: 24px;
}

.pilot-measures > div:last-child {
  border-right: 0;
}

.pilot-measures strong {
  color: var(--road-blue);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 26px;
}

.pilot-measures span {
  color: var(--muted);
  line-height: 1.5;
}

.fleet-section {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
  padding: 86px 64px;
  color: var(--white);
  background: var(--asphalt);
}

.fleet-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.fleet-heading .section-label {
  color: var(--marker-yellow);
}

.fleet-heading h2 {
  max-width: 760px;
  color: var(--white);
  font-size: 54px;
  line-height: 1;
}

.fleet-heading > p {
  color: #cbd4d8;
  font-size: 19px;
  line-height: 1.55;
}

.fleet-workspace {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  border: 1px solid #596266;
  background: #202526;
}

.fleet-tabs {
  border-right: 1px solid #596266;
}

.fleet-tabs button {
  width: 100%;
  min-height: 96px;
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid #596266;
  color: var(--white);
  text-align: left;
  background: transparent;
}

.fleet-tabs button:last-child {
  border-bottom: 0;
}

.fleet-tabs button.active,
.fleet-tabs button:hover {
  color: var(--asphalt);
  background: var(--marker-yellow);
}

.fleet-tabs button span {
  color: #aeb9bd;
}

.fleet-tabs button.active span,
.fleet-tabs button:hover span {
  color: #3d4548;
}

.fleet-preview {
  min-width: 0;
}

.fleet-preview-head {
  padding: 24px;
  border-bottom: 1px solid #596266;
}

.fleet-preview-head .section-label {
  margin-bottom: 5px;
  color: #91a8ff;
}

.fleet-preview h3 {
  color: var(--white);
  font-size: 31px;
}

.fleet-metrics > div {
  border-right-color: #596266;
}

.fleet-metrics span,
.fleet-event-list span,
.fleet-event-list small {
  color: #b9c4c8;
}

.fleet-event-list {
  border-top-color: #596266;
}

.fleet-event-list > div {
  grid-template-columns: 120px minmax(0, 1fr) auto;
  border-bottom-color: #596266;
}

.fleet-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 26px 0;
  border-bottom: 1px solid #596266;
}

.fleet-audiences strong {
  color: var(--marker-yellow);
}

.fleet-audiences span {
  color: #d6dfe2;
}

.fleet-privacy-note {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 40px;
  padding: 26px 0 30px;
}

.fleet-privacy-note span {
  color: #b9c4c8;
  line-height: 1.55;
}

.problem-section {
  border-top: 1px solid var(--asphalt);
}

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

.problem-links button {
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: 36px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
}

.problem-links button:hover,
.problem-links button:focus-visible {
  padding-left: 14px;
  color: var(--road-blue);
  background: #f2f5ff;
}

.problem-links strong {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 24px;
}

.problem-links span {
  color: var(--muted);
}

.comparison-section {
  width: min(var(--page-width), calc(100% - 60px));
  margin: 0 auto;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.comparison-table {
  border-top: 1px solid var(--asphalt);
}

.comparison-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.comparison-row > * {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-row > span:first-child,
.comparison-head strong {
  font-weight: 700;
}

.comparison-head {
  color: var(--white);
  background: var(--asphalt);
}

.comparison-row > span:last-child {
  background: #f2f5ff;
}

@media (max-width: 1180px) {
  .control-hero .hero-grid {
    grid-template-columns: minmax(390px, .82fr) minmax(520px, 1.18fr);
  }

  .control-hero .hero-copy h1 {
    font-size: 62px;
  }

  .registry-summary {
    grid-template-columns: minmax(200px, .6fr) minmax(330px, 1fr);
  }

  .registry-decision {
    grid-column: 1 / -1;
    min-height: 100px;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-bottom: 5px solid var(--ok);
  }

  .registry-decision.warn {
    border-bottom-color: var(--warn);
  }
}

@media (max-width: 980px) {
  .control-hero .hero-grid,
  .fleet-heading,
  .sprint-section {
    grid-template-columns: 1fr;
  }

  .control-hero .hero-grid {
    min-height: 0;
  }

  .report-demo {
    margin-top: 26px;
  }

  .operation-stage {
    max-width: none;
  }

  .registry-console,
  .fleet-workspace {
    grid-template-columns: 1fr;
  }

  .registry-selector,
  .fleet-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .registry-selector button,
  .fleet-tabs button {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .registry-selector button:last-child,
  .fleet-tabs button:last-child {
    border-right: 0;
  }

  .fleet-tabs {
    border-bottom-color: #596266;
  }

  .fleet-tabs button {
    border-right-color: #596266;
  }

  .sprint-section {
    gap: 42px;
  }

  .fleet-heading {
    gap: 24px;
  }
}

@media (max-width: 780px) {
  .control-hero .hero-copy h1 {
    font-size: 48px;
  }

  .operations-section,
  .registry-proof-section,
  .pilot-section,
  .problem-section,
  .comparison-section {
    padding: 64px 0;
  }

  .report-source-row,
  .registry-status-list > div,
  .problem-links button,
  .comparison-row,
  .fleet-privacy-note {
    grid-template-columns: 1fr;
  }

  .report-source-row {
    gap: 5px;
  }

  .report-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .report-results,
  .fleet-metrics,
  .pilot-measures {
    grid-template-columns: 1fr;
  }

  .report-results > div,
  .fleet-metrics > div,
  .pilot-measures > div,
  .pilot-measures > div + div {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .report-results > div:last-child,
  .fleet-metrics > div:last-child,
  .pilot-measures > div:last-child {
    border-bottom: 0;
  }

  .registry-selector,
  .fleet-tabs {
    grid-template-columns: 1fr;
  }

  .registry-selector button,
  .fleet-tabs button {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fleet-tabs button {
    border-bottom-color: #596266;
  }

  .registry-summary {
    grid-template-columns: 1fr;
  }

  .registry-vehicle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .registry-decision {
    grid-column: auto;
  }

  .sprint-section,
  .fleet-section {
    width: calc(100% - 28px);
    padding: 42px 20px;
  }

  .sprint-section {
    margin-bottom: 64px;
  }

  .sprint-copy h2,
  .fleet-heading h2 {
    font-size: 38px;
  }

  .sprint-steps li {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .fleet-event-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .fleet-preview-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fleet-preview-head .planned-badge {
    justify-self: start;
  }

  .comparison-row {
    padding: 14px 0;
  }

  .comparison-row > * {
    padding: 6px 0;
    border-right: 0;
    background: transparent !important;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row > span:first-child {
    color: var(--road-blue);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 20px;
  }

  .comparison-row [data-mobile-label]::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    content: attr(data-mobile-label);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .comparison-row [data-mobile-label="Ruteo-start"] {
    padding: 10px 12px;
    background: #f2f5ff !important;
  }

  .live-chat-widget {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .live-chat-panel {
    display: flex;
    max-height: calc(100dvh - 28px);
    flex-direction: column;
    overflow: hidden;
  }

  .live-chat-messages {
    min-height: 0;
    max-height: none;
    flex: 1 1 auto;
  }

  .live-chat-actions {
    grid-template-columns: 1fr;
  }

  .live-chat-actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .control-hero .hero-copy h1 {
    font-size: 43px;
  }

  .report-scenarios button {
    min-height: 56px;
    padding: 8px 5px;
    font-size: 14px;
  }

  .report-demo-head,
  .fleet-preview-head {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-demo,
  .report-demo * {
    transition: none !important;
  }
}
