:root {
  color-scheme: light;
  --navy: #12314b;
  --blue: #24699a;
  --green: #287b65;
  --gold: #a46b00;
  --red: #a43a3a;
  --ink: #17212b;
  --muted: #5e6b76;
  --surface: #ffffff;
  --canvas: #f3f6f8;
  --border: #d9e1e7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; color: var(--ink); background: var(--canvas); }
.verification-page { min-height: 100vh; background: radial-gradient(circle at 50% 5%, #e7f7fa 0, var(--canvas) 45%); }
.verification-shell { width: min(580px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px; }
.verification-brand { display: inline-block; margin-bottom: 24px; color: var(--blue); font-weight: 900; letter-spacing: .12em; text-decoration: none; }
.verification-card { padding: clamp(26px, 6vw, 44px); border: 1px solid var(--border); border-radius: 24px; text-align: center; background: white; box-shadow: 0 24px 70px rgb(18 49 75 / .1); }
.verification-card h1 { margin: 8px 0 12px; color: var(--navy); font-size: clamp(1.8rem, 7vw, 2.6rem); }
.verification-icon { display: grid; width: 68px; height: 68px; margin: 0 auto 20px; place-items: center; border-radius: 50%; font-size: 2rem; font-weight: 900; }
.verification-icon.pending { color: var(--blue); background: #e6f2f8; }
.verification-icon.valid { color: white; background: var(--green); box-shadow: 0 12px 28px rgb(40 123 101 / .22); }
.verification-icon.invalid { color: white; background: var(--red); box-shadow: 0 12px 28px rgb(164 58 58 / .2); }
.verification-message { margin: 0 auto 24px; color: var(--muted); line-height: 1.6; }
.verification-details { display: grid; gap: 0; margin: 24px 0; border: 1px solid var(--border); border-radius: 16px; text-align: left; overflow: hidden; }
.verification-details div { display: grid; grid-template-columns: 1fr 1.35fr; gap: 16px; padding: 13px 16px; }
.verification-details div + div { border-top: 1px solid var(--border); }
.verification-details dt { color: var(--muted); }
.verification-details dd { margin: 0; color: var(--navy); font-weight: 800; overflow-wrap: anywhere; }
.verification-privacy { margin: 24px 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.verification-home { display: inline-block; width: auto; text-decoration: none; }
button, textarea, input { font: inherit; }
.shell { width: min(800px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 72px; }
.hero { margin-bottom: 22px; }
.hero h1 { max-width: 680px; margin: 0; color: var(--navy); font-size: clamp(2rem, 7vw, 3.6rem); line-height: 1.04; letter-spacing: -.035em; }
.hero p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.topbar, .account-bar, .panel-title-row, .station-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar { flex-wrap: wrap; }
.topbar > .account-bar { margin-left: auto; }
.account-bar { justify-content: flex-end; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.eyebrow { color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.panel { min-height: 390px; margin-top: 18px; padding: clamp(22px, 5vw, 36px); border: 1px solid var(--border); border-radius: 22px; background: var(--surface); box-shadow: 0 18px 55px rgb(18 49 75 / .08); }
.panel h2 { margin: 0 0 18px; color: var(--navy); }
.panel-title-row h2 { margin: 5px 0 12px; }
.choice-grid, .button-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice-grid { margin-bottom: 18px; }
.button-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice { display: flex; gap: 12px; padding: 16px; border: 1px solid var(--border); border-radius: 14px; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--blue); background: #edf6fc; box-shadow: inset 0 0 0 1px var(--blue); }
.choice input { margin-top: 4px; accent-color: var(--blue); }
.choice strong, .choice small { display: block; }
.choice small { margin-top: 4px; color: var(--muted); line-height: 1.4; }
.field { display: grid; gap: 8px; margin: 16px 0; font-weight: 700; }
.field textarea, .field input { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 12px; color: var(--ink); background: var(--surface); }
.field textarea { min-height: 110px; resize: vertical; }
.primary, .secondary { width: 100%; padding: 14px 18px; border-radius: 12px; font-weight: 800; cursor: pointer; }
.primary { border: 0; color: white; background: var(--navy); }
.primary:hover { background: #1b4668; }
.secondary { border: 1px solid var(--border); color: var(--navy); background: var(--surface); }
.secondary:hover { border-color: var(--blue); background: #edf6fc; }
.compact { width: auto; padding: 7px 11px; border-radius: 9px; }

.simulation-pause-control {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid #9bc9dc;
  border-radius: 14px;
  background: rgb(255 255 255 / .94);
  box-shadow: 0 14px 38px rgb(17 57 78 / .2);
  backdrop-filter: blur(10px);
}
.simulation-pause-control[hidden] { display: none; }
.simulation-pause-control button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: #153b54;
  font-weight: 850;
  cursor: pointer;
}
.simulation-pause-control button:hover { background: #0d6f9c; }
.simulation-pause-control button.is-paused { background: #17895f; }
.simulation-pause-icon { width: 18px; text-align: center; }
.simulation-pause-status { padding-right: 7px; color: #176b50; font-size: .78rem; font-weight: 850; }
.simulation-pause-control:not(.is-paused) .simulation-pause-status { display: none; }

@media (max-width: 620px) {
  .simulation-pause-control { right: 10px; bottom: 10px; }
  .simulation-pause-status { display: none; }
}
.primary:disabled, .secondary:disabled { cursor: not-allowed; opacity: .55; }
.link-button { padding: 4px; border: 0; color: var(--blue); background: transparent; cursor: pointer; text-decoration: underline; }
.cancel-link { width: auto; padding: 7px 10px; border: 1px solid #e8baba; border-radius: 9px; color: var(--red); background: #fff7f7; font-weight: 800; cursor: pointer; }
.cancel-link:hover { border-color: var(--red); background: #fceaea; }
.danger { width: 100%; padding: 14px 18px; border: 0; border-radius: 12px; color: white; background: var(--red); font-weight: 800; cursor: pointer; }
.danger:hover { background: #872d2d; }
.danger:disabled { cursor: wait; opacity: .6; }
.error { color: var(--red); font-weight: 700; }
.form-message { color: var(--green); font-weight: 700; }
.session-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.session-head h2 { margin: 0; }
.session-status-message { margin: 12px 0 0; color: var(--muted); line-height: 1.5; }
.status-badge { padding: 7px 10px; border-radius: 999px; color: var(--navy); background: #e8f0f5; font-size: .8rem; font-weight: 800; }
.status-badge.online { color: #145440; background: #e3f3ed; }
.status-badge.offline { color: #7a2929; background: #f9e7e7; }
.vehicle-status-entry, .obd-help-entry { display: grid; width: 100%; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid #cfe1e9; border-radius: 14px; color: var(--navy); background: #f5fafc; text-align: left; cursor: pointer; }
.vehicle-status-entry { margin-bottom: 10px; border-color: #9ed3e3; background: linear-gradient(135deg, #eaf8fb, #f7fcfd); }
.vehicle-status-entry:hover, .obd-help-entry:hover { border-color: var(--blue); background: #edf7fb; }
.vehicle-status-entry-pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 0 rgb(36 105 154 / .35); animation: vehicle-entry-pulse 1.8s ease-out infinite; }
.vehicle-status-entry strong, .vehicle-status-entry small { display: block; }
.vehicle-status-entry small { margin-top: 2px; color: var(--muted); font-size: .8rem; font-weight: 500; }
.vehicle-status-entry > span:last-child { color: var(--blue); font-size: 1.6rem; line-height: 1; }
.obd-help-entry-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-weight: 900; }
.obd-help-entry strong, .obd-help-entry small { display: block; }
.obd-help-entry small { margin-top: 2px; color: var(--muted); font-size: .8rem; font-weight: 500; }
.obd-help-entry > span:last-child { color: var(--blue); font-size: 1.6rem; line-height: 1; }
.obd-location-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr); gap: 22px; padding: 20px; border: 1px solid #cfe1e9; border-radius: 18px; background: linear-gradient(145deg, #f8fcfd, #edf7fa); }
.obd-location-illustration { display: grid; place-items: center; min-height: 220px; margin-top: 16px; border-radius: 14px; background: radial-gradient(circle at 50% 35%, #e3f6fa, #d7ebf1); overflow: hidden; }
.obd-location-illustration img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.obd-dashboard { fill: #d4e5eb; stroke: #4c7d95; stroke-width: 5; }
.obd-windshield { fill: #c5eef4; stroke: #4c7d95; stroke-width: 4; }
.obd-wheel-outer, .obd-wheel-inner, .obd-wheel-spoke { fill: none; stroke: var(--navy); stroke-width: 9; stroke-linecap: round; }
.obd-wheel-inner { fill: #edf7fa; stroke-width: 7; }
.obd-console { fill: #b8d1dc; stroke: #4c7d95; stroke-width: 4; }
.obd-port { fill: var(--navy); stroke: #25b8c7; stroke-width: 4; }
.obd-port-pins { fill: none; stroke: white; stroke-width: 3; stroke-linecap: round; }
.obd-arrow, .obd-arrow-tip { fill: none; stroke: #df7d26; stroke-width: 7; stroke-linecap: round; stroke-linejoin: round; }
.obd-label { fill: var(--navy); font-size: 18px; font-weight: 900; }
.obd-label-small { fill: var(--muted); font-size: 14px; font-weight: 700; }
.obd-location-copy { align-content: center; }
.obd-location-copy h3 { margin: 6px 0 12px; color: var(--navy); font-size: 1.35rem; }
.obd-location-copy ol { display: grid; gap: 8px; margin: 0; padding-left: 21px; color: var(--muted); line-height: 1.42; }
.obd-help-link { margin-top: 16px; font-weight: 800; }
.vehicle-connection-dialog { width: min(560px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 24px; color: var(--ink); background: transparent; box-shadow: 0 28px 90px rgb(18 49 75 / .3); overflow: hidden; }
.vehicle-connection-dialog::backdrop { background: rgb(9 35 53 / .64); backdrop-filter: blur(5px); }
.vehicle-connection-card { padding: clamp(22px, 5vw, 34px); border-radius: 24px; background: white; }
.vehicle-connection-card h2 { margin: 5px 0 0; color: var(--navy); }
.vehicle-connection-focus { display: grid; grid-template-columns: 142px 1fr; align-items: center; gap: 24px; margin-top: 24px; padding: 22px; border: 1px solid #cae3eb; border-radius: 20px; background: linear-gradient(145deg, #f8fcfd, #eaf7fa); }
.vehicle-connection-ring { --vehicle-progress: 36deg; position: relative; display: grid; width: 132px; height: 132px; flex: 0 0 132px; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) var(--vehicle-progress), #dce8ed 0); transition: background .45s ease; }
.vehicle-connection-ring::before { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: white; }
.vehicle-connection-ring > div { position: relative; z-index: 1; display: grid; justify-items: center; color: var(--navy); }
.vehicle-connection-ring strong { font-size: 1.65rem; line-height: 1; }
.vehicle-connection-ring span { margin-top: 5px; color: var(--muted); font-size: .7rem; }
.vehicle-connection-ring.is-pulsing { animation: vehicle-ring-pulse 1.55s ease-in-out infinite; }
.vehicle-connection-copy { display: grid; gap: 6px; }
.vehicle-connection-copy > strong { color: var(--navy); font-size: 1.15rem; line-height: 1.25; }
.vehicle-connection-copy > small { color: var(--muted); line-height: 1.45; }
.vehicle-connection-steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 26px 0 0; padding: 0; list-style: none; }
.vehicle-connection-steps li { position: relative; display: grid; justify-items: center; gap: 7px; color: #82939c; font-size: .72rem; font-weight: 800; text-align: center; }
.vehicle-connection-steps li::before { content: ""; position: absolute; z-index: 0; width: 100%; height: 2px; right: 50%; top: 15px; background: #d5e1e6; }
.vehicle-connection-steps li:first-child::before { display: none; }
.vehicle-connection-steps li > span { position: relative; z-index: 1; display: grid; width: 32px; height: 32px; place-items: center; border: 2px solid #cad8df; border-radius: 50%; background: white; }
.vehicle-connection-steps li.completed::before, .vehicle-connection-steps li.active::before { background: var(--green); }
.vehicle-connection-steps li.completed > span { border-color: var(--green); color: white; background: var(--green); }
.vehicle-connection-steps li.active > span { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 5px rgb(36 105 154 / .12); }
.vehicle-connection-steps li.completed, .vehicle-connection-steps li.active { color: var(--navy); }
.vehicle-connection-note { margin: 22px 0 0; padding-top: 17px; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; line-height: 1.5; text-align: center; }
@keyframes vehicle-ring-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgb(36 105 154 / .16); }
  50% { transform: scale(1.035); box-shadow: 0 0 0 12px rgb(36 105 154 / 0); }
}
@keyframes vehicle-entry-pulse {
  0% { box-shadow: 0 0 0 0 rgb(36 105 154 / .38); }
  70%, 100% { box-shadow: 0 0 0 9px rgb(36 105 154 / 0); }
}
.obd-help-dialog { width: min(620px, calc(100% - 28px)); max-height: min(780px, calc(100vh - 28px)); padding: 0; border: 0; border-radius: 22px; color: var(--ink); background: transparent; box-shadow: 0 28px 90px rgb(18 49 75 / .28); overflow: hidden; }
.obd-help-dialog::backdrop { background: rgb(9 35 53 / .62); backdrop-filter: blur(4px); }
.obd-help-card { max-height: min(780px, calc(100vh - 28px)); padding: clamp(22px, 5vw, 34px); border-radius: 22px; background: white; overflow-y: auto; }
.obd-help-card h2 { margin: 5px 0 8px; color: var(--navy); }
.obd-help-card > p { margin: 0; color: var(--muted); line-height: 1.5; }
.obd-help-intro { max-width: 470px; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.obd-help-decision { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.obd-help-decision button { display: grid; grid-template-columns: 34px 1fr; gap: 2px 10px; width: 100%; min-height: 74px; padding: 13px 15px; align-items: center; border-radius: 13px; text-align: left; cursor: pointer; }
.obd-help-decision button > span { grid-row: span 2; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; font-size: 1rem; font-weight: 950; }
.obd-help-decision button strong { align-self: end; font-size: .9rem; }
.obd-help-decision button small { align-self: start; font-size: .72rem; }
.obd-help-found { border: 1px solid #168467; color: white; background: linear-gradient(135deg, #158365, #20a77d); box-shadow: 0 10px 24px rgb(21 131 101 / .18); }
.obd-help-found > span { background: rgb(255 255 255 / .2); }
.obd-help-found small { color: #d9fff2; }
.obd-help-not-found { border: 1px solid #d9a6b1; color: #8e3349; background: #fff5f7; }
.obd-help-not-found > span { background: #b54a62; }
.obd-help-not-found small { color: #9b6270; }
.obd-vehicle-help-dialog { width: min(580px, calc(100% - 28px)); }
.obd-vehicle-help-dialog .obd-help-fields { margin-top: 22px; }
.obd-vehicle-help-dialog .primary { width: 100%; }
.obd-help-fields { display: grid; grid-template-columns: 1fr 1fr .65fr; gap: 12px; }
.dialog-close { display: grid; width: 38px; height: 38px; padding: 0; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--navy); background: white; font-size: 1.5rem; cursor: pointer; }
.obd-help-result { margin-top: 16px; padding: 16px; border-left: 4px solid var(--blue); border-radius: 8px; color: var(--muted); background: #edf6fc; line-height: 1.5; }
.obd-help-result strong { display: block; margin-bottom: 6px; color: var(--navy); }
.progress { height: 8px; margin: 24px 0 12px; overflow: hidden; border-radius: 99px; background: #e9eef2; }
.progress span { display: block; width: 10%; height: 100%; border-radius: inherit; background: var(--blue); transition: width .35s ease; }
.journey-progress { margin-top: 18px; padding: 18px; border: 1px solid #d7e6ed; border-radius: 20px; background: linear-gradient(145deg, #f8fcfd, #edf7fa); }
.journey-layout { width: 100%; max-width: 620px; margin: 0 auto; }
.journey-stage-card { display: grid; align-content: center; justify-items: center; gap: 18px; min-width: 0; padding: 24px; border: 1px solid #cbe2ea; border-radius: 18px; background: rgb(255 255 255 / .82); box-shadow: 0 16px 34px rgb(24 82 112 / .08); text-align: center; }
.journey-current { display: grid; width: 100%; justify-items: center; gap: 16px; }
.journey-current-copy { display: grid; min-width: 0; justify-items: center; gap: 5px; }
.journey-current-copy > strong { color: var(--navy); font-size: 1.3rem; line-height: 1.2; }
.journey-current-copy > small { color: var(--muted); line-height: 1.45; text-align: center; }
.journey-ring { position: relative; isolation: isolate; display: grid; width: 104px; height: 104px; place-items: center; border-radius: 50%; background: conic-gradient(rgb(32 139 190 / 12%) 1turn); box-shadow: 0 0 0 10px rgb(32 139 190 / 8%), 0 10px 30px rgb(20 55 78 / 12%); }
.journey-ring::before { position: absolute; inset: 5px; border-radius: inherit; background: conic-gradient(from 0deg, transparent 0deg 218deg, rgb(32 139 190 / 5%) 244deg, rgb(32 139 190 / 28%) 282deg, var(--blue) 326deg, var(--cyan) 352deg, transparent 360deg); content: ""; -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 0); mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 0); }
.journey-ring::after { position: absolute; top: 4px; left: calc(50% - 5px); width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgb(37 184 199 / 16%), 0 2px 8px rgb(20 55 78 / 20%); content: ""; transform-origin: 5px 48px; }
.journey-ring.is-pulsing::before, .journey-ring.is-pulsing::after { animation: journey-loader-spin 3s linear infinite; }
.journey-ring.is-complete::before { background: conic-gradient(var(--green) 1turn); animation: none; }
.journey-ring.is-complete::after { opacity: 0; animation: none; }
.journey-ring > div { position: relative; z-index: 1; display: grid; width: 72px; height: 72px; place-items: center; border-radius: 50%; text-align: center; background: white; box-shadow: inset 0 0 0 1px rgb(20 55 78 / 7%); }
.journey-ring strong { display: none; }
.journey-ring span { display: none; }
.journey-ring[hidden] { display: none; }
.rpm-stage { --rpm-hold-progress: 0deg; display: grid; width: min(100%, 520px); gap: 16px; justify-items: center; padding: 20px; border: 1px solid #cfe1e8; border-radius: 22px; background: radial-gradient(circle at 50% 18%, rgb(43 165 194 / .12), transparent 45%), linear-gradient(145deg, #fff, #f3f9fb); box-shadow: 0 18px 40px rgb(21 70 96 / .12); transition: border-color .3s ease, box-shadow .3s ease; }
.rpm-stage[hidden] { display: none; }
.rpm-dial { position: relative; display: grid; width: 180px; height: 180px; place-items: center; border-radius: 50%; background: conic-gradient(from -90deg, #e4edf1 0 25%, #f1c8c5 25% 40%, #bcebdc 40% 72%, #e4edf1 72%); box-shadow: 0 20px 50px rgb(18 62 85 / .16), inset 0 0 0 1px rgb(20 55 78 / .08); }
.rpm-dial::before { position: absolute; inset: 11px; border-radius: inherit; background: conic-gradient(var(--green) var(--rpm-hold-progress), transparent 0); content: ""; -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 0); mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 0); transition: background .25s linear; }
.rpm-dial-core { position: relative; z-index: 1; display: grid; width: 132px; height: 132px; place-content: center; border-radius: 50%; background: rgb(255 255 255 / .96); box-shadow: inset 0 0 0 1px rgb(20 55 78 / .08); }
.rpm-dial-core strong { color: #c33e38; font-size: 2.65rem; line-height: 1; font-variant-numeric: tabular-nums; transition: color .25s ease, transform .25s ease; }
.rpm-dial-core span { margin-top: 7px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.rpm-target-mark { position: absolute; top: 7px; left: calc(50% - 2px); width: 4px; height: 18px; border-radius: 99px; background: var(--green); box-shadow: 0 0 0 4px rgb(31 163 120 / .14); transform: rotate(54deg); transform-origin: 2px 83px; }
.rpm-stage.is-target, .rpm-stage.is-stable { border-color: rgb(31 163 120 / .45); box-shadow: 0 20px 48px rgb(31 163 120 / .18); }
.rpm-stage.is-target .rpm-dial-core strong, .rpm-stage.is-stable .rpm-dial-core strong { color: var(--green); animation: rpm-value-pulse 1.1s ease-in-out infinite; }
.rpm-stage.is-stable .rpm-dial-core strong { animation-duration: .75s; }
.rpm-guidance-copy { display: grid; width: 100%; gap: 9px; }
.rpm-guidance-copy > span { color: var(--muted); font-size: .82rem; }
.rpm-guidance-copy > span strong { color: var(--navy); }
.rpm-guidance-copy > strong { color: var(--navy); font-size: 1rem; }
.rpm-hold-track { width: 100%; height: 10px; overflow: hidden; border-radius: 99px; background: #dde9ed; }
.rpm-hold-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--green)); box-shadow: 0 0 18px rgb(31 163 120 / .35); transition: width .25s linear; }
.rpm-safety-note { margin: 0; padding: 12px 14px; border-radius: 12px; color: #594513; background: #fff7dc; font-size: .78rem; line-height: 1.45; text-align: left; }
@keyframes rpm-value-pulse { 0%, 100% { opacity: .76; transform: scale(.96); text-shadow: 0 0 0 transparent; } 50% { opacity: 1; transform: scale(1.055); text-shadow: 0 0 22px rgb(31 163 120 / .38); } }
.session-obd-help-entry { width: 100%; margin-top: 14px; }
.journey-substeps { display: grid; width: 100%; gap: 9px; margin: 0; padding: 14px 0; border-top: 1px solid #d7e6ed; border-bottom: 1px solid #d7e6ed; list-style: none; text-align: left; }
.journey-substeps[hidden] { display: none; }
.journey-substeps li { display: grid; grid-template-columns: 26px minmax(0, 1fr); align-items: center; gap: 10px; color: #7a8d98; font-size: .86rem; font-weight: 700; }
.journey-substeps li > span { display: grid; width: 24px; height: 24px; place-items: center; border: 2px solid #cad9df; border-radius: 50%; color: #7b919c; background: white; font-size: .7rem; }
.journey-substeps li.completed { color: #286b59; }
.journey-substeps li.completed > span { border-color: var(--green); color: white; background: var(--green); }
.journey-substeps li.active { color: var(--navy); }
.journey-substeps li.active > span { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 5px rgb(36 105 154 / .11); animation: journey-step-pulse 1.6s ease-in-out infinite; }
.journey-stage-action { width: 100%; margin: 0; }
.journey-stage-card.is-pulsing #journey-current-label { animation: journey-label-pulse 1.6s ease-in-out infinite; transform-origin: center; }
@keyframes journey-loader-spin { to { transform: rotate(360deg); } }
@keyframes journey-label-pulse {
  0%, 100% { opacity: .72; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.035); }
}
@keyframes journey-step-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.report-loading-panel {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 34%, rgb(42 177 200 / .13), transparent 34%),
    linear-gradient(145deg, #fff, #f2fafc);
}
.report-loading-copy { max-width: 620px; margin: 0 auto; }
.report-loading-copy h2 { margin: 8px 0 10px; }
.report-loading-copy p { margin: 0; color: var(--muted); }
.report-loading-visual { display: grid; min-height: 260px; place-items: center; }
.report-loading-ring {
  --report-loading-progress: 0deg;
  position: relative;
  isolation: isolate;
  display: grid;
  width: 190px;
  height: 190px;
  padding: 14px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal) var(--report-loading-progress), #dce9ee 0);
  box-shadow: 0 24px 60px rgb(18 94 133 / .2);
  transition: background .45s ease;
}
.report-loading-ring::before {
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: #fff;
  z-index: 1;
  content: "";
}
.report-loading-pulse {
  position: absolute;
  inset: -15px;
  z-index: 0;
  border: 3px solid rgb(27 163 184 / .28);
  border-radius: 50%;
  animation: report-pump 1.55s ease-in-out infinite;
}
.report-loading-pulse::after {
  position: absolute;
  inset: 12px;
  border: 2px solid rgb(33 126 178 / .2);
  border-radius: inherit;
  content: "";
  animation: report-pump 1.55s .25s ease-in-out infinite;
}
.report-loading-value { position: relative; z-index: 2; display: grid; gap: 2px; }
.report-loading-value strong { color: var(--navy); font-size: 2.6rem; line-height: 1; }
.report-loading-value span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.report-loading-track {
  position: relative;
  overflow: hidden;
  height: 10px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #deeaef;
}
.report-loading-track span {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width .45s ease;
}
.report-loading-track span::after {
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / .65), transparent);
  content: "";
  animation: report-shimmer 1.4s linear infinite;
}
.report-loading-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}
.report-loading-steps li {
  display: grid;
  min-height: 92px;
  padding: 14px;
  place-items: center;
  align-content: center;
  border: 1px solid #d6e5eb;
  border-radius: 15px;
  color: #78909d;
  background: rgb(255 255 255 / .72);
}
.report-loading-steps li span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
  place-items: center;
  border-radius: 50%;
  background: #e3edf1;
}
.report-loading-steps li strong { font-size: .85rem; }
.report-loading-steps li.active { border-color: #83cfdb; color: var(--navy); background: #eaf9fb; }
.report-loading-steps li.active span { color: #fff; background: var(--teal); }
.report-loading-steps li.completed { color: #287b67; background: #edf9f4; }
.report-loading-steps li.completed span { color: #fff; background: #2b8b72; }
.report-loading-note { margin: 22px 0 0; color: var(--muted); font-size: .88rem; }

@keyframes report-pump {
  0%, 100% { opacity: .35; transform: scale(.93); }
  50% { opacity: .8; transform: scale(1.06); }
}
@keyframes report-shimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(280%); }
}
.report-summary, .free-result { padding: 18px; border-left: 4px solid var(--gold); border-radius: 8px; background: #fff8e6; }
.free-result.clear { border-left-color: var(--green); background: #eaf7f2; }
.free-result h3 { margin: 0 0 8px; color: var(--navy); }
.free-driver-report { margin-bottom: 18px; }
.paywall { margin-top: 18px; padding: 20px; border: 1px solid var(--border); border-radius: 14px; background: #f7fafc; }
.paywall h3 { margin-top: 0; color: var(--navy); }
.locked-report { position: relative; min-height: 490px; margin-top: 20px; overflow: hidden; border: 1px solid #cad7e0; border-radius: 18px; background: #f7fafc; isolation: isolate; }
.locked-preview { padding: 24px; color: var(--navy); filter: blur(5px); opacity: .58; pointer-events: none; user-select: none; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--border); font-size: 1.1rem; font-weight: 800; }
.preview-badge { padding: 6px 10px; border-radius: 999px; color: #7a2929; background: #f9e7e7; font-size: .75rem; }
.preview-summary-lines { display: grid; gap: 9px; margin: 22px 0; }
.preview-summary-lines span { display: block; width: 92%; height: 12px; border-radius: 99px; background: #a9bdcb; }
.preview-summary-lines span:last-child { width: 64%; }
.preview-finding { margin-top: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 12px; background: white; }
.preview-finding p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.preview-code { margin-bottom: 10px; color: var(--blue); font-weight: 900; letter-spacing: .08em; }
.locked-overlay { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; text-align: center; background: linear-gradient(180deg, rgb(247 250 252 / .56), rgb(247 250 252 / .92)); backdrop-filter: blur(3px); }
.locked-overlay h3 { margin: 10px 0 8px; color: var(--navy); font-size: clamp(1.35rem, 4vw, 1.85rem); }
.locked-overlay > p:not(.price, .countdown) { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.5; }
.locked-overlay .price { margin: 18px 0 14px; }
.pilot-free-label { margin: -7px 0 14px; color: var(--green); font-weight: 800; }
.locked-overlay .countdown { margin: 14px 0 0; font-size: .88rem; }
.unlock-button { max-width: 390px; box-shadow: 0 10px 28px rgb(18 49 75 / .2); }
.lock-symbol { position: relative; width: 42px; height: 34px; margin: 10px 0 16px; border-radius: 8px; background: var(--navy); box-shadow: 0 8px 20px rgb(18 49 75 / .18); }
.lock-symbol::before { content: ""; position: absolute; width: 22px; height: 20px; left: 8px; top: -15px; border: 4px solid var(--navy); border-bottom: 0; border-radius: 14px 14px 0 0; }
.lock-symbol::after { content: ""; position: absolute; width: 5px; height: 10px; left: 18px; top: 12px; border-radius: 99px; background: white; }
.result-action { margin-top: 18px; }
.account-save-card { display: grid; grid-template-columns: 1fr minmax(210px, 280px); align-items: center; gap: 20px; margin-top: 18px; padding: 20px; border: 1px solid #c8dce6; border-radius: 16px; background: #f4fafd; }
.account-save-card strong { display: block; color: var(--navy); font-size: 1.05rem; }
.account-save-card p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }
.account-save-card.saved { grid-template-columns: auto 1fr; border-color: #b9dfd2; background: #eaf7f2; }
.account-save-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 1.2rem; font-weight: 900; }
.result-flow-message { max-width: 430px; margin: 12px auto 0; font-size: .82rem; }
.expired-result { display: grid; justify-items: center; padding: 34px 20px 20px; text-align: center; }
.expired-result-icon { display: grid; width: 62px; height: 62px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: var(--blue); background: #e7f4fa; font-size: 2rem; font-weight: 900; }
.expired-result h3 { margin: 10px 0 8px; color: var(--navy); font-size: clamp(1.45rem, 4vw, 2rem); }
.expired-result > p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.6; }
.expired-result-instruction { display: grid; gap: 6px; max-width: 540px; margin-top: 24px; padding: 20px; border: 1px solid #c8dce6; border-radius: 15px; color: var(--navy); background: #edf7fb; }
.expired-result-instruction span { color: var(--muted); line-height: 1.5; }
.price { color: var(--navy); font-size: 1.7rem; font-weight: 800; }
.countdown { color: var(--gold); font-weight: 800; }
.finding { padding: 18px 0; border-bottom: 1px solid var(--border); }
.finding h3 { margin: 0 0 7px; color: var(--navy); }
.finding code { color: var(--blue); font-weight: 800; }
.finding p { line-height: 1.55; }
.finding ul, .report-list { padding-left: 20px; line-height: 1.6; }
.correlation { padding: 16px; border-radius: 12px; background: #edf6fc; line-height: 1.55; }
.driver-report { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 25px; padding: 25px; border: 1px solid #dce7ec; border-radius: 20px; background: linear-gradient(145deg, #ffffff, #f3f9fb); }
.driver-score { --score-angle: 223deg; display: grid; width: 126px; height: 126px; padding: 10px; place-items: center; border-radius: 50%; background: conic-gradient(var(--score-color, var(--blue)) var(--score-angle), #e2eaee 0); box-shadow: 0 18px 38px rgb(18 49 75 / .13); }
.driver-score > div { display: grid; width: 100%; height: 100%; place-content: center; border-radius: 50%; text-align: center; background: white; }
.driver-score strong { color: var(--score-color, var(--blue)); font-size: 2.35rem; line-height: .95; }
.driver-score span { margin-top: 6px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.driver-report.positive { --score-color: var(--green); }
.driver-report.attention { --score-color: #c48b12; }
.driver-report.urgent { --score-color: var(--red); }
.driver-result-copy h3 { margin: 5px 0 8px; color: var(--navy); font-size: clamp(1.55rem, 4vw, 2.15rem); }
.driver-result-copy p { margin: 0; color: var(--muted); line-height: 1.6; }
.score-help-link { margin-top: 13px; padding: 0; border: 0; color: var(--blue); background: transparent; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.report-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 4px 0 8px; }
.report-actions button { display: flex; align-items: center; justify-content: flex-start; gap: 10px; padding: 11px 13px; text-align: left; }
.report-actions button > span:first-child { display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; border-radius: 9px; color: white; background: var(--blue); font-weight: 900; }
.report-actions button strong, .report-actions button small { display: block; }
.report-actions button small { margin-top: 2px; color: var(--muted); font-size: .7rem; font-weight: 600; line-height: 1.25; }
.report-action-message { min-height: 20px; margin: 7px 0 14px; color: var(--green); font-size: .82rem; font-weight: 700; }
.vehicle-systems-section { margin-top: 18px; padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.vehicle-systems-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
.vehicle-system-card { --system-color: var(--green); display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; min-height: 112px; padding: 15px; border: 1px solid #dfe8ec; border-radius: 15px; background: #f8fbfc; }
.vehicle-system-card.attention { --system-color: #c48b12; background: #fffaf0; }
.vehicle-system-card.unavailable { --system-color: #97a5ad; background: #f6f8f9; }
.system-health-ring { display: grid; width: 76px; height: 76px; padding: 7px; place-items: center; border-radius: 50%; background: conic-gradient(var(--system-color) var(--system-angle), #e2eaee 0); }
.system-health-ring > div { display: grid; width: 100%; height: 100%; place-content: center; border-radius: 50%; text-align: center; background: white; }
.system-health-ring strong { color: var(--system-color); font-size: 1.25rem; line-height: 1; }
.system-health-ring span { margin-top: 3px; color: var(--muted); font-size: .55rem; font-weight: 700; }
.vehicle-system-card h4 { margin: 0 0 5px; color: var(--navy); font-size: 1.02rem; }
.vehicle-system-card > div:last-child > strong { display: block; color: var(--system-color); font-size: .8rem; }
.vehicle-system-card small { display: block; margin-top: 5px; color: var(--muted); line-height: 1.35; }
.driver-next-action { margin-top: 18px; padding: 22px; border: 1px solid #b9dde7; border-radius: 18px; background: linear-gradient(135deg, #e8f7fa, #f7fcfd); }
.driver-next-action h3 { margin: 5px 0 14px; color: var(--navy); }
.driver-next-action ol { display: grid; gap: 9px; margin: 0; padding-left: 22px; color: #35576a; line-height: 1.5; }
.report-explanation .ai-analysis-card { margin: 0; border: 0; border-radius: 0; }
.ai-analysis-card { margin-top: 18px; padding: 22px; border: 1px solid #b9dde7; border-radius: 18px; background: linear-gradient(135deg, #e8f7fa, #f7fcfd); }
.ai-card-title { display: flex; align-items: center; gap: 13px; color: var(--navy); }
.ai-card-title > span { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--blue), #22aebe); font-size: 1.15rem; }
.ai-card-title small, .ai-card-title strong { display: block; }
.ai-card-title small { color: var(--blue); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.ai-card-title strong { margin-top: 3px; }
.ai-source-badge { display: inline-flex; margin-top: 14px; padding: 6px 10px; border-radius: 999px; background: #e5eef2; color: #506a78; font-size: .72rem; font-weight: 800; }
.ai-source-badge.openai { background: #dcf6ed; color: #176b55; }
.ai-source-badge.simulated_ai { background: #fff1c9; color: #795900; }
.ai-analysis-card > p { color: #35576a; line-height: 1.6; }
.ai-analysis-card > small { display: block; padding-top: 12px; border-top: 1px solid #cbe3e9; color: #617985; line-height: 1.45; }
.section-heading h3 { margin: 4px 0 0; color: var(--navy); }
.module-overview, .next-steps-card { padding: 0 20px 20px; background: white; }
.module-overview ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.module-overview li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; border-top: 1px solid #e5ecef; }
.module-overview li span, .module-overview li strong, .module-overview li small { display: block; }
.module-overview li small { margin-top: 4px; color: var(--muted); }
.module-state { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; font-size: .76rem; }
.module-state.positive { color: #17614b; background: #e1f3ec; }
.module-state.attention { color: #805700; background: #fff1ca; }
.module-state.unavailable { color: #6b7378; background: #edf1f3; }
.next-steps-card ol { display: grid; gap: 13px; margin: 0; padding: 0; counter-reset: next-step; list-style: none; }
.next-steps-card li { position: relative; min-height: 34px; padding-left: 46px; color: #425d6b; line-height: 1.55; counter-increment: next-step; }
.next-steps-card li::before { content: counter(next-step); position: absolute; display: grid; width: 31px; height: 31px; left: 0; top: -4px; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-weight: 800; }
.technical-details, .report-limitations { margin-top: 20px; border: 1px solid var(--border); border-radius: 16px; background: #f8fafb; }
.report-disclosure { margin-top: 20px; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: white; }
.report-disclosure > summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 20px; color: var(--navy); cursor: pointer; list-style: none; }
.report-disclosure > summary::-webkit-details-marker { display: none; }
.report-disclosure > summary span, .report-disclosure > summary small, .report-disclosure > summary strong { display: block; }
.report-disclosure > summary small { margin-bottom: 4px; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.report-disclosure > summary b { color: var(--blue); font-size: .82rem; }
.report-disclosure[open] > summary { border-bottom: 1px solid var(--border); }
.report-disclosure[open] > summary b { font-size: 0; }
.report-disclosure[open] > summary b::after { content: "Ocultar"; font-size: .82rem; }
.technical-details > summary, .report-limitations > summary { padding: 19px 20px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.technical-details > summary::-webkit-details-marker, .report-limitations > summary::-webkit-details-marker { display: none; }
.technical-details > summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.technical-details > summary span, .technical-details > summary strong, .technical-details > summary small { display: block; }
.technical-details > summary small { margin-top: 4px; color: var(--muted); font-weight: 500; }
.technical-details > summary b { color: var(--blue); font-size: .82rem; }
.technical-details[open] > summary b { font-size: 0; }
.technical-details[open] > summary b::after { content: "Ocultar"; font-size: .82rem; }
.technical-findings { padding: 0 20px 20px; }
.technical-finding { padding: 20px 0; border-top: 1px solid var(--border); }
.technical-finding h4 { margin: 6px 0 8px; color: var(--navy); font-size: 1.08rem; }
.technical-finding p, .technical-finding ul { color: var(--muted); line-height: 1.55; }
.technical-module { color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.technical-code { display: inline-block; margin-top: 9px; padding: 5px 8px; border-radius: 7px; color: #617583; background: #e8eef1; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.technical-empty { margin: 0; padding: 20px 0 0; border-top: 1px solid var(--border); color: var(--muted); }
.report-limitations[open] > summary { border-bottom: 1px solid var(--border); }
.report-limitations .report-list { margin: 0; padding: 18px 40px 22px; color: var(--muted); }
.obd-note, .status-instruction { border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; background: #edf6fc; padding: 14px 16px; }
.obd-note { margin: 16px 0; }
.obd-note p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }
.status-instruction { margin: 16px 0 0; line-height: 1.5; }
.stage-timing { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 14px 0 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: 11px; background: #f8fbfc; }
.stage-timing > div { display: flex; align-items: baseline; gap: 9px; color: var(--muted); }
.stage-timing strong { color: var(--navy); font-size: 1.08rem; font-variant-numeric: tabular-nums; }
.stage-timing small { max-width: 58%; color: var(--muted); text-align: right; line-height: 1.35; }
.journey-stage-card .stage-timing { width: 100%; margin-top: 0; border-color: #d6e4ea; background: #f4f9fb; }
.stage-delay-warning { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 12px; padding: 14px 16px; border: 1px solid #e5c37a; border-radius: 11px; color: #6b4700; background: #fff7df; }
.stage-delay-warning div { display: grid; gap: 4px; }
.stage-delay-warning span { font-size: .86rem; line-height: 1.4; }
.reading-coverage-card { display: grid; grid-template-columns: 132px 1fr; align-items: center; gap: 24px; margin-top: 18px; padding: 22px; border: 1px solid var(--border); border-radius: 16px; background: #f7fbfc; }
.reading-coverage-ring { --coverage-angle: 0deg; position: relative; display: grid; width: 118px; height: 118px; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 var(--coverage-angle), #e2ebef var(--coverage-angle) 360deg); box-shadow: 0 10px 24px rgba(18,49,75,.08); }
.reading-coverage-ring::before { content: ""; position: absolute; width: 92px; height: 92px; border-radius: 50%; background: #fff; }
.reading-coverage-ring > div { position: relative; z-index: 1; display: grid; place-items: center; }
.reading-coverage-ring strong { color: var(--navy); font-size: 1.55rem; }
.reading-coverage-ring span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.reading-coverage-copy h3 { margin: 5px 0 14px; color: var(--navy); }
.module-coverage-groups { display: grid; gap: 10px; }
.module-coverage-groups > div { display: grid; gap: 6px; }
.module-coverage-groups > div > strong { color: var(--navy); font-size: .82rem; }
.module-coverage-groups > div > div { display: flex; flex-wrap: wrap; gap: 6px; }
.module-coverage-chip, .module-coverage-empty { padding: 5px 8px; border-radius: 999px; color: #66747c; background: #e9eff2; font-size: .76rem; font-weight: 800; }
.module-coverage-chip.reached { color: #17614b; background: #dff5ed; }
.module-coverage-chip.unavailable { color: #6b4700; background: #fff1cc; }
.reading-coverage-copy > small { display: block; margin-top: 12px; color: var(--muted); line-height: 1.4; }
.station-context { margin: 0 0 24px; padding: 0 0 18px; border-bottom: 1px solid var(--border); }
.station-line { margin-top: 0; }
.station-line strong { color: var(--navy); font-size: 1.05rem; }
.station-entry-dialog { width: min(480px, calc(100% - 28px)); padding: 34px; border: 1px solid #285069; border-radius: 26px; color: #f7fbfd; background: #0b2232; box-shadow: 0 34px 100px rgb(2 17 27 / .55); text-align: center; }
.station-entry-dialog::backdrop { background: rgb(4 24 37 / .68); backdrop-filter: blur(7px); }
.station-entry-dialog h2 { margin: 0 0 24px; color: white; font-size: clamp(1.55rem, 6vw, 2rem); }
.station-entry-options { display: grid; gap: 11px; }
.station-entry-option { display: block; width: 100%; padding: 17px 20px; border: 1px solid #315166; border-radius: 14px; color: white; background: #102b3d; text-align: left; cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.station-entry-option:hover { transform: translateY(-1px); border-color: #42bdca; background: #15364a; }
.station-entry-option.primary-option { border-color: #20a7c0; background: linear-gradient(135deg, #167cab, #159cb7); }
.station-entry-option > span { display: grid; gap: 3px; }
.station-entry-option strong { font-size: .98rem; }
#station-entry-visitor strong { font-size: 1.16rem; }
.station-entry-option small { color: #bfd0d8; line-height: 1.35; }
.station-entry-option.primary-option small { color: #e0f5f7; }
.station-entry-note { display: block; margin-top: 20px; color: #8fa8b4; line-height: 1.5; }
.report-vehicle-reference { display: grid; gap: 4px; margin-bottom: 18px; padding: 16px 18px; border: 1px solid #b9dde7; border-radius: 15px; background: #e8f7fa; }
.report-vehicle-reference strong { color: var(--navy); font-size: 1.08rem; }
.report-vehicle-reference small { color: var(--muted); }
.report-traceability { margin-bottom: 18px; padding: 18px; border: 1px solid #b9dde7; border-radius: 15px; background: #f5fafc; }
.report-traceability h3 { margin: 4px 0 12px; color: var(--navy); }
.report-traceability dl { display: grid; gap: 0; margin: 0 0 12px; }
.report-traceability dl div { display: grid; grid-template-columns: minmax(150px, .7fr) 1.3fr; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.report-traceability dt { color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.report-traceability dd { margin: 0; color: var(--navy); font-weight: 750; overflow-wrap: anywhere; }
.report-traceability > small { display: block; color: var(--muted); line-height: 1.45; }
.inline-form { margin-top: 18px; padding-top: 6px; border-top: 1px solid var(--border); }
.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--muted); font-size: .86rem; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--border); }
.checkout-warning { display: grid; gap: 4px; margin: 18px 0; padding: 14px; border-radius: 10px; color: #6b4700; background: #fff3cf; }
.cancel-warning { display: grid; gap: 6px; margin: 24px 0; padding: 16px; border-radius: 10px; color: #7a2929; background: #fceaea; }
.decision-panel > p { color: var(--muted); line-height: 1.6; }
.success-note { border-left-color: var(--green); background: #eaf7f2; }
.station-fault-note { border-left-color: #d78a18; background: #fff6df; }
.button-grid.pilot-actions { grid-template-columns: 2fr 1fr; }
.history-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.history-item:last-child { border-bottom: 0; }
.history-item h3 { margin: 0 0 6px; color: var(--navy); }
.history-item p { margin: 5px 0; color: var(--muted); }
.home-panel h2 { max-width: 650px; margin: 8px 0 12px; font-size: clamp(1.55rem, 4vw, 2.15rem); line-height: 1.2; }
.home-lead { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.home-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 28px 0; }
.home-steps article { padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: #f7fafc; }
.home-steps article > span { display: grid; width: 30px; height: 30px; margin-bottom: 14px; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-weight: 800; }
.home-steps strong { display: block; color: var(--navy); }
.home-steps p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.home-actions { max-width: 360px; }
.home-note { margin-top: 24px; padding: 16px; border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; background: #eaf7f2; }
.home-note p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 620px) {
  .account-save-card { grid-template-columns: 1fr; }
  .shell { width: min(100% - 22px, 800px); padding: 28px 0 48px; }
  .station-line, .panel-title-row { align-items: flex-start; flex-direction: column; }
  .topbar { gap: 10px; }
  .topbar .account-bar { font-size: .8rem; }
  .station-entry-dialog { padding: 28px 20px; border-radius: 22px; }
  .choice-grid, .button-grid, .button-grid.three { grid-template-columns: 1fr; }
  .home-steps { grid-template-columns: 1fr; }
  .locked-report { min-height: 540px; }
  .locked-overlay { padding: 22px; }
  .session-head { display: grid; }
  .obd-help-entry { padding: 12px; }
  .obd-help-entry small { font-size: .74rem; }
  .obd-location-card { grid-template-columns: 1fr; padding: 14px; }
  .obd-location-illustration { min-height: 170px; }
  .obd-help-decision { grid-template-columns: 1fr; }
  .obd-location-copy h3 { font-size: 1.2rem; }
  .vehicle-connection-focus { grid-template-columns: 1fr; justify-items: center; gap: 16px; padding: 18px; text-align: center; }
  .vehicle-connection-ring { width: 116px; height: 116px; }
  .vehicle-connection-steps li small { font-size: .62rem; }
  .obd-help-fields { grid-template-columns: 1fr; gap: 0; }
  .stage-timing, .stage-delay-warning { align-items: flex-start; flex-direction: column; }
  .stage-timing small { max-width: none; text-align: left; }
  .reading-coverage-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .module-coverage-groups > div > div { justify-content: center; }
  .journey-progress { padding: 10px; border-radius: 18px; }
  .journey-layout { max-width: none; }
  .journey-stage-card { gap: 13px; padding: 16px; border-radius: 15px; }
  .journey-current { gap: 12px; }
  .journey-current-copy > strong { font-size: 1.08rem; }
  .journey-current-copy > small { font-size: .76rem; }
  .journey-ring { width: 104px; height: 104px; }
  .journey-ring strong { font-size: .66rem; }
  .journey-ring span { display: none; }
  .journey-substeps { gap: 7px; padding: 11px 0; }
  .journey-substeps li { grid-template-columns: 22px minmax(0, 1fr); gap: 7px; font-size: .72rem; }
  .journey-substeps li > span { width: 21px; height: 21px; font-size: .62rem; }
  .journey-stage-action { padding: 10px 8px; font-size: .72rem; }
  .driver-report { grid-template-columns: 1fr; justify-items: center; padding: 22px 18px; text-align: center; }
  .driver-score { width: 116px; height: 116px; }
  .vehicle-systems-grid { grid-template-columns: 1fr; }
  .ai-analysis-card { padding: 18px; }
  .report-actions { grid-template-columns: 1fr; }
  .technical-details > summary { align-items: flex-start; }
  .report-loading-visual { min-height: 220px; }
  .report-loading-ring { width: 158px; height: 158px; }
  .report-loading-value strong { font-size: 2.15rem; }
  .report-loading-steps { grid-template-columns: 1fr; gap: 8px; }
  .report-loading-steps li { min-height: 0; grid-template-columns: 32px 1fr; justify-items: start; text-align: left; }
  .report-loading-steps li span { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .progress span, .journey-ring { transition: none; }
  .journey-ring.is-pulsing::before, .journey-ring.is-pulsing::after, .journey-stage-card.is-pulsing #journey-current-label, .journey-substeps li.active > span,
  .report-loading-pulse, .report-loading-pulse::after, .report-loading-track span::after { animation: none; }
}

/* Landing page pública */
body.home-page {
  --landing-navy: #0d3550;
  --landing-blue: #147eb3;
  --landing-cyan: #25b8c7;
  --landing-mint: #dff5f1;
  --landing-lime: #8ad6bd;
  background: #f5fafb;
}
body.home-page .shell { width: 100%; max-width: none; padding: 0; }
body.home-page #app-header { display: none; }
body.home-page .overlay-panel { width: min(800px, calc(100% - 32px)); margin: 48px auto 72px; }
.home-panel { min-height: 100vh; overflow: hidden; }
.landing-nav {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; color: var(--landing-navy); line-height: 1; text-decoration: none; }
.platform-logo { display: inline-flex; height: 36px; flex: 0 0 auto; align-items: center; gap: 8px; color: #0b2f68; background: transparent; line-height: 1; }
.platform-logo-symbol { display: block; width: auto; max-width: none; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 4px rgb(8 61 125 / .13)); }
.platform-logo-text { color: inherit; font-size: 1.45rem; font-weight: 400; letter-spacing: -.045em; white-space: nowrap; }
.platform-logo-text strong { font-weight: 850; }
.app-header-logo { height: 38px; }
.footer-logo { height: 32px; }
.dashboard-logo { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a, .nav-links button { padding: 0; border: 0; color: #496475; background: transparent; font-size: .9rem; font-weight: 700; text-decoration: none; cursor: pointer; }
.nav-links a:hover, .nav-links button:hover { color: var(--landing-blue); }
.nav-login { justify-self: end; padding: 10px 17px; border: 1px solid #cfe0e6; border-radius: 11px; color: var(--landing-navy); background: rgb(255 255 255 / .76); font-weight: 800; cursor: pointer; }
.nav-login:hover { border-color: var(--landing-blue); color: var(--landing-blue); }
.landing-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 54px; min-height: 690px; padding: 74px max(24px, calc((100vw - 1180px) / 2)) 104px; overflow: hidden; background: radial-gradient(circle at 84% 28%, rgb(72 197 202 / .2), transparent 28%), linear-gradient(150deg, #f9fcfd 0%, #eef8fa 58%, #e5f5f3 100%); }
.landing-hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgb(20 126 179 / .08) 1px, transparent 1px), linear-gradient(90deg, rgb(20 126 179 / .08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, black 65%, black); }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid #c8e4e6; border-radius: 999px; color: #247084; background: rgb(255 255 255 / .65); font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.hero-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--landing-cyan); box-shadow: 0 0 0 5px rgb(37 184 199 / .12); }
.hero-copy h1 { max-width: 700px; margin: 24px 0 22px; color: var(--landing-navy); font-size: clamp(3.15rem, 6.2vw, 5.75rem); line-height: .94; letter-spacing: -.06em; }
.hero-copy h1 em { color: var(--landing-blue); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0; color: #526b79; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin: 34px 0 28px; }
.landing-primary { width: auto; padding: 16px 21px; border-radius: 14px; background: linear-gradient(135deg, var(--landing-blue), #176b9d); box-shadow: 0 13px 30px rgb(20 126 179 / .24); }
.landing-primary:hover { background: linear-gradient(135deg, #0d70a2, #115f8c); transform: translateY(-1px); }
.landing-primary span { margin-left: 12px; }
.text-action { color: var(--landing-navy); font-size: .94rem; font-weight: 800; text-underline-offset: 5px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; color: #617783; font-size: .82rem; font-weight: 650; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row i { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #176a57; background: var(--landing-mint); font-size: .7rem; font-style: normal; font-weight: 900; }
.diagnostic-visual { position: relative; z-index: 2; min-height: 510px; }
.visual-glow { position: absolute; width: 440px; height: 440px; left: 50%; top: 50%; border-radius: 50%; background: radial-gradient(circle, rgb(54 181 190 / .27), transparent 66%); transform: translate(-50%, -50%); }
.totem-card { position: absolute; width: min(390px, 78%); left: 50%; top: 50%; padding: 18px; border: 1px solid rgb(255 255 255 / .88); border-radius: 30px; background: linear-gradient(160deg, #14445f, #0c2f47); box-shadow: 0 35px 70px rgb(13 53 80 / .24), inset 0 1px 0 rgb(255 255 255 / .12); transform: translate(-50%, -50%) rotate(1.5deg); }
.totem-top { display: flex; align-items: center; justify-content: space-between; padding: 2px 3px 15px; color: #c7e8ed; font-size: .67rem; font-weight: 900; letter-spacing: .13em; }
.totem-top i { width: 8px; height: 8px; border-radius: 50%; background: #69ddbd; box-shadow: 0 0 0 5px rgb(105 221 189 / .12); }
.scan-screen { position: relative; min-height: 370px; overflow: hidden; padding: 20px; border: 1px solid rgb(150 212 220 / .16); border-radius: 20px; background: linear-gradient(180deg, #0a283c, #0c3149); }
.screen-head { display: flex; justify-content: space-between; color: #86b6c4; font-size: .64rem; font-weight: 800; letter-spacing: .1em; }
.screen-head b { color: #71e0c3; }
.car-silhouette { position: relative; width: 238px; height: 105px; margin: 58px auto 38px; }
.car-roof { position: absolute; width: 130px; height: 60px; left: 50px; top: 6px; border: 3px solid #52b9cb; border-bottom: 0; border-radius: 80px 80px 0 0; transform: skewX(-8deg); }
.car-body { position: absolute; width: 220px; height: 58px; left: 8px; top: 45px; border: 3px solid #52b9cb; border-radius: 42px 52px 20px 20px; background: rgb(37 184 199 / .05); box-shadow: inset 0 0 35px rgb(37 184 199 / .08); }
.wheel { position: absolute; width: 33px; height: 33px; top: 84px; border: 6px solid #092235; border-radius: 50%; background: #4db0c1; }
.wheel.one { left: 43px; }.wheel.two { right: 34px; }
.scan-line { position: absolute; width: 86%; height: 2px; left: 7%; top: 160px; background: linear-gradient(90deg, transparent, #63e6d4, transparent); box-shadow: 0 0 18px #63e6d4; animation: scanning 2.6s ease-in-out infinite alternate; }
@keyframes scanning { from { transform: translateY(-50px); } to { transform: translateY(65px); } }
.module-row { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; padding: 12px; border: 1px solid rgb(91 179 196 / .16); border-radius: 11px; color: #d1e9ed; background: rgb(255 255 255 / .035); font-size: .72rem; }
.module-row span { display: flex; align-items: center; gap: 8px; }.module-row span i { width: 7px; height: 7px; border-radius: 50%; background: #68dfc1; }.module-row strong { color: #72ddc2; font-size: .66rem; }.module-row.muted { opacity: .72; }
.totem-base { display: flex; align-items: center; gap: 9px; padding: 13px 3px 0; color: #92bac5; }.totem-base span { width: 18px; height: 6px; border-radius: 6px; background: #4db9c4; }.totem-base small { font-size: .65rem; }
.locator-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; padding: 100px max(24px, calc((100vw - 1120px) / 2)); background: white; }
.locator-intro h2, .section-heading h2, .coverage-copy h2, .partner-section h2 { margin: 11px 0 16px; color: var(--landing-navy); font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -.045em; }.locator-intro p, .section-heading p, .coverage-copy > p, .partner-section p { color: #607682; line-height: 1.7; }
.locator-card { position: relative; padding: 34px; border: 1px solid #d7e7eb; border-radius: 24px; background: linear-gradient(145deg, #f8fcfd, #eef8f7); box-shadow: 0 24px 60px rgb(31 92 111 / .1); }
.locator-icon { display: grid; width: 52px; height: 52px; margin-bottom: 18px; place-items: center; border-radius: 16px; background: var(--landing-navy); box-shadow: 0 10px 24px rgb(13 53 80 / .2); }.locator-icon span { position: relative; width: 18px; height: 23px; border: 3px solid white; border-radius: 12px 12px 14px 14px; clip-path: polygon(0 0, 100% 0, 100% 67%, 50% 100%, 0 67%); }.locator-icon span::after { content: ""; position: absolute; width: 5px; height: 5px; left: 4px; top: 4px; border: 2px solid white; border-radius: 50%; }
.locator-card h3 { margin: 0 0 8px; color: var(--landing-navy); font-size: 1.3rem; }.locator-card p { margin: 0 0 19px; color: #627986; line-height: 1.55; }.location-button { width: auto; min-width: 210px; background: var(--landing-blue); }.manual-toggle { margin-left: 16px; padding: 10px 2px; border: 0; color: var(--landing-blue); background: transparent; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.manual-location { margin-top: 10px; }.manual-location label { display: block; margin-bottom: 9px; color: var(--landing-navy); font-weight: 800; }.search-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }.search-row input { min-width: 0; padding: 14px 15px; border: 1px solid #c8dce2; border-radius: 12px; background: white; outline: none; }.search-row input:focus { border-color: var(--landing-blue); box-shadow: 0 0 0 3px rgb(20 126 179 / .12); }.search-row .primary { width: auto; background: var(--landing-navy); }
.location-status { margin: 18px 0 0 !important; color: #456a79 !important; font-size: .88rem; font-weight: 700; }.station-results { display: grid; gap: 12px; margin-top: 18px; }.station-result { padding: 18px; border: 1px solid #cde0e5; border-radius: 15px; background: white; }.station-result-head, .station-result-actions { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }.station-result h4 { margin: 0; color: var(--landing-navy); font-size: 1.03rem; }.station-result .station-meta { margin: 6px 0 0; color: #687e89; font-size: .84rem; }.station-distance { white-space: nowrap; color: var(--landing-blue); font-size: .78rem; font-weight: 900; }.station-result-actions { align-items: center; margin-top: 15px; }.station-availability { display: inline-flex; align-items: center; gap: 7px; color: #7b5151; font-size: .78rem; font-weight: 800; }.station-availability::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #ba6666; }.station-availability.available { color: #276c59; }.station-availability.available::before { background: #42ad8e; }.open-station { padding: 10px 14px; border: 0; border-radius: 10px; color: white; background: var(--landing-blue); font-weight: 800; cursor: pointer; }.open-station:disabled { cursor: not-allowed; opacity: .5; }
.xcar-map-marker { display: block; width: 24px; height: 24px; border: 4px solid white; border-radius: 50% 50% 50% 0; background: #7d8e96; box-shadow: 0 5px 14px rgb(8 43 61 / .35); cursor: pointer; transform: rotate(-45deg); }.xcar-map-marker::after { content: ""; position: absolute; width: 8px; height: 8px; top: 4px; left: 4px; border-radius: 50%; background: white; }.xcar-map-marker.available { background: #2da27e; }.xcar-map-marker.busy { background: #d59622; }.xcar-map-marker.offline { background: #7d8e96; }.xcar-map-marker.user-location { width: 18px; height: 18px; border: 4px solid white; border-radius: 50%; background: var(--landing-blue); box-shadow: 0 0 0 6px rgb(20 126 179 / .2), 0 4px 12px rgb(8 43 61 / .25); transform: none; }.xcar-map-marker.user-location::after { display: none; }
.xcar-map-popup { min-width: 210px; padding: 4px 2px 2px; font-family: Inter, Arial, sans-serif; }.xcar-map-popup strong { display: block; color: var(--landing-navy); font-size: .95rem; }.xcar-map-popup p { max-width: 280px; margin: 7px 0 10px; color: #607782; line-height: 1.45; }.xcar-map-popup span { display: inline-flex; align-items: center; gap: 6px; color: #687e89; font-size: .75rem; font-weight: 800; }.xcar-map-popup span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7d8e96; }.xcar-map-popup span.available { color: #276c59; }.xcar-map-popup span.available::before { background: #2da27e; }.xcar-map-popup span.busy { color: #8c6418; }.xcar-map-popup span.busy::before { background: #d59622; }
.contact-card { position: relative; width: min(720px, calc(100% - 32px)); min-height: 430px; margin: 70px auto; padding: clamp(32px, 7vw, 64px); border-color: #cfe2e7; border-radius: 28px; background: linear-gradient(145deg, #f9fdfe, #eaf7f7); }
.contact-card h2 { max-width: 560px; margin: 12px 0 16px; color: var(--landing-navy); font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -.045em; }.contact-card > p { max-width: 570px; color: #607782; line-height: 1.7; }
.contact-options { margin-top: 30px; }.contact-options a { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid #cfe2e7; border-radius: 16px; color: var(--landing-navy); background: white; text-decoration: none; box-shadow: 0 14px 35px rgb(17 71 95 / .08); }.contact-options a:hover { border-color: var(--landing-blue); transform: translateY(-1px); }.contact-options small, .contact-options strong { display: block; }.contact-options small { margin-bottom: 3px; color: #708690; font-size: .66rem; font-weight: 900; letter-spacing: .12em; }.contact-icon { display: grid; flex: 0 0 46px; height: 46px; place-items: center; border-radius: 13px; color: white; background: var(--landing-blue); font-size: 1.25rem; font-weight: 900; }.contact-note { margin-top: 22px; font-size: .85rem; }
.locator-section > .form-message { grid-column: 1 / -1; margin: 0; }
.coverage-section { display: grid; grid-template-columns: 1fr .92fr; gap: 75px; align-items: center; padding: 110px max(24px, calc((100vw - 1120px) / 2)); background: linear-gradient(145deg, #eaf7f7, #f7fbfc); }.coverage-copy ul { display: grid; gap: 16px; padding: 0; margin: 27px 0; list-style: none; }.coverage-copy li { display: flex; gap: 11px; color: #60747f; line-height: 1.5; }.coverage-copy li i { flex: 0 0 24px; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 8px; color: #176a57; background: #d7f1e8; font-size: .75rem; font-style: normal; }.coverage-copy li strong { color: var(--landing-navy); }.coverage-note { padding: 14px 16px; border-left: 3px solid var(--landing-cyan); background: rgb(255 255 255 / .6); font-size: .84rem; }
.report-preview { padding: 23px; border: 1px solid rgb(255 255 255 / .9); border-radius: 25px; background: white; box-shadow: 0 30px 70px rgb(30 91 108 / .15); transform: rotate(1deg); }.report-preview-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid #e2ecef; color: #7b9099; font-size: .63rem; font-weight: 900; letter-spacing: .1em; }.report-preview-head b { padding: 7px 9px; border-radius: 999px; color: #27705c; background: #e2f3ed; letter-spacing: 0; }.health-summary { display: flex; align-items: center; gap: 17px; padding: 24px 0; }.health-ring { display: grid; flex: 0 0 68px; height: 68px; place-items: center; border: 7px solid #fae8b6; border-top-color: #d19b26; border-radius: 50%; color: #996b0c; font-size: 1.4rem; font-weight: 900; }.health-summary small, .health-summary strong { display: block; }.health-summary small { color: #8b9ba2; font-size: .6rem; font-weight: 900; letter-spacing: .1em; }.health-summary strong { margin: 3px 0; color: var(--landing-navy); font-size: 1.25rem; }.health-summary p { margin: 0; color: #738791; font-size: .78rem; }.preview-item { display: flex; align-items: center; gap: 12px; margin-top: 10px; padding: 14px; border: 1px solid #e0eaed; border-radius: 13px; }.preview-item i { width: 9px; height: 9px; border: 3px solid #41a7bb; border-radius: 50%; box-shadow: 0 0 0 5px #e9f6f8; }.preview-item div { flex: 1; }.preview-item strong, .preview-item span { display: block; }.preview-item strong { color: var(--landing-navy); font-size: .84rem; }.preview-item span { margin-top: 3px; color: #84949b; font-size: .68rem; }.preview-item b { color: var(--landing-blue); font-size: .74rem; }.preview-lock { display: grid; gap: 7px; margin-top: 17px; padding: 15px; border-radius: 13px; color: white; background: var(--landing-navy); }.preview-lock span { color: #9fc3ce; font-size: .67rem; }.preview-lock strong { font-size: .82rem; }
.partner-section { display: flex; align-items: center; justify-content: space-between; gap: 50px; width: min(1120px, calc(100% - 48px)); margin: 100px auto; padding: 52px; border-radius: 28px; background: radial-gradient(circle at 85% 15%, rgb(48 177 188 / .28), transparent 28%), var(--landing-navy); box-shadow: 0 28px 65px rgb(13 53 80 / .18); }.partner-section h2 { max-width: 680px; margin-bottom: 10px; color: white; }.partner-section p { max-width: 680px; margin-bottom: 0; color: #b8d0d8; }.partner-section .eyebrow { color: #75d6d5; }.partner-action { flex: 0 0 auto; padding: 15px 18px; border-radius: 12px; color: var(--landing-navy); background: white; font-weight: 900; text-decoration: none; }.partner-action span { margin-left: 10px; }
.landing-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 35px 0 45px; border-top: 1px solid #dbe8eb; color: #778b94; font-size: .8rem; }.landing-footer p { margin: 0; }.landing-footer > span a { color: inherit; font-weight: 800; }
.landing-nav a:focus-visible, .landing-nav button:focus-visible, .home-panel button:focus-visible, .home-panel input:focus-visible, .partner-action:focus-visible { outline: 3px solid rgb(20 126 179 / .3); outline-offset: 3px; }

.xcar-map-marker { position: relative; }

@media (max-width: 940px) {
  .landing-nav { grid-template-columns: 1fr auto; }.nav-links { display: none; }
  .landing-hero { grid-template-columns: 1fr; padding-top: 58px; }.hero-copy { text-align: center; }.hero-copy > p { margin-inline: auto; }.hero-actions, .trust-row { justify-content: center; }.diagnostic-visual { min-height: 480px; }
  .locator-section, .coverage-section { grid-template-columns: 1fr; gap: 45px; }.locator-intro { max-width: 720px; }
  .partner-section { align-items: flex-start; flex-direction: column; }.landing-footer { grid-template-columns: 1fr; gap: 13px; }
}

body.admin-page { min-height: 100vh; background: #f2f8fa; }
body.admin-page > .shell { width: 100%; max-width: none; margin: 0; }
body.admin-page #app-header { display: none !important; }
.admin-auth { min-height: 100vh; padding: 70px 20px; background: linear-gradient(145deg, #061b29, #0d3448); }
.admin-login-card { width: min(440px, 100%); margin: 0 auto; padding: 38px; border: 1px solid #31576a; border-radius: 24px; color: white; background: #0c2635; box-shadow: 0 28px 70px rgb(0 10 18 / .35); }
.admin-login-card h1 { margin: 12px 0 28px; font-size: 2.1rem; }.admin-login-card label, .admin-create-form label, .admin-password-card label { display: grid; gap: 7px; margin: 14px 0; font-weight: 800; }
.admin-login-card input, .admin-create-form input, .admin-password-card input { width: 100%; padding: 13px 14px; border: 1px solid #bfd5df; border-radius: 11px; color: #0b3147; background: white; }
.admin-login-card .primary { width: 100%; margin-top: 12px; }
.admin-shell { min-height: 100vh; color: #0d3852; background: #f3f8fa; }
.admin-header { position: sticky; z-index: 30; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 12px clamp(20px,4vw,56px); border-bottom: 1px solid #d5e4ea; background: rgb(255 255 255 / .96); backdrop-filter: blur(12px); }.admin-brand { display: flex; align-items: center; gap: 16px; }.admin-header-logo { height: 30px; }.admin-header-logo .platform-logo-text { font-size: 1.2rem; }.admin-header strong { font-size: 1.05rem; }.admin-header-actions { display: flex; align-items: center; gap: 10px; }.admin-header-actions > span { color: #69818e; font-size: .78rem; }
.admin-login-logo { height: 45px; margin-bottom: 18px; color: #f4faff; }
.admin-login-logo .platform-logo-symbol { filter: drop-shadow(0 0 5px rgb(71 175 242 / .42)); }
.admin-layout { display: grid; grid-template-columns: 248px minmax(0, 1fr); min-height: calc(100vh - 75px); }
.admin-sidebar { position: sticky; top: 75px; align-self: start; height: calc(100vh - 75px); padding: 30px 18px; border-right: 1px solid #d5e4ea; background: linear-gradient(180deg, #fbfdfe 0%, #f6fafc 100%); }
.admin-sidebar-label { display: block; margin: 0 12px 12px; color: #79909b; font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.admin-sidebar-nav { display: grid; align-content: start; gap: 7px; }
.admin-nav { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; min-height: 52px; padding: 8px 10px; overflow: hidden; border: 1px solid transparent; border-radius: 14px; color: #526f7e; font-size: .88rem; font-weight: 750; text-align: left; background: transparent; cursor: pointer; transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.admin-nav::before { position: absolute; top: 50%; left: 0; width: 3px; height: 24px; border-radius: 0 4px 4px 0; background: #1388b7; content: ''; opacity: 0; transform: translateY(-50%) scaleY(.5); transition: opacity .18s ease, transform .18s ease; }
.admin-nav-icon { display: inline-grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border: 1px solid #d9e8ed; border-radius: 11px; color: #167fa9; background: rgb(255 255 255 / .82); transition: color .18s ease, background .18s ease, border-color .18s ease; }
.admin-nav-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.admin-nav-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-nav:hover { color: #123f56; border-color: #dce9ee; background: rgb(255 255 255 / .78); transform: translateX(2px); }
.admin-nav.active { color: #083e5a; border-color: #cfe3eb; background: #fff; box-shadow: 0 8px 22px rgb(17 79 105 / .09); }
.admin-nav.active::before { opacity: 1; transform: translateY(-50%) scaleY(1); }
.admin-nav.active .admin-nav-icon { border-color: #bfe1ec; color: #087aa7; background: #e7f5f9; }
.admin-nav:focus-visible { outline: 3px solid rgb(22 137 186 / .2); outline-offset: 2px; }
.admin-main { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 42px 0 80px; }
.admin-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }.admin-title h1 { margin: 6px 0 0; font-size: clamp(2rem,5vw,3.2rem); }
.admin-create-form, .admin-password-card { margin-bottom: 30px; padding: 26px; border: 1px solid #cee0e7; border-radius: 18px; background: white; box-shadow: 0 15px 35px rgb(18 65 87 / .08); }
.admin-form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 16px; }.admin-form-grid.two { grid-template-columns: repeat(2, 1fr); }.admin-form-grid .wide { grid-column: span 2; }.admin-form-actions { display: flex; gap: 12px; margin-top: 18px; }
.admin-station-list { display: grid; gap: 15px; }.admin-station-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; padding: 22px; border: 1px solid #cfe0e7; border-radius: 17px; background: white; }.admin-station-card h3 { margin: 0 0 6px; }.admin-station-meta { margin: 4px 0; color: #5d7a89; }.admin-status { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 900; }.admin-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #a94c62; }.admin-status.online::before { background: #1ca67a; }.admin-station-tools { display: grid; grid-template-columns: 148px minmax(260px,1fr); align-items: center; gap: 18px; }.admin-station-qr { display: grid; justify-items: center; gap: 7px; }.admin-station-qr-frame { display: grid; width: 140px; height: 140px; padding: 9px; place-items: center; overflow: hidden; border: 1px solid #c8dce4; border-radius: 14px; color: #6b8490; background: #f7fbfc; font-size: .72rem; text-align: center; }.admin-station-qr img { display: block; width: 100%; height: 100%; }.admin-station-qr a { color: #0878aa; font-size: .76rem; font-weight: 850; text-align: center; text-decoration: none; }.admin-station-qr a:hover { text-decoration: underline; text-underline-offset: 3px; }.admin-station-actions { display: flex; max-width: 340px; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 9px; }.admin-station-actions button { flex: 1 1 100%; }.admin-station-actions input { width: 150px; padding: 10px; border: 1px solid #c8dbe3; border-radius: 9px; }.admin-danger { border-color: #e1b8c2 !important; color: #9d334d !important; }
.admin-agent-version-grid { display: grid; max-width: 430px; margin-top: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }.admin-agent-version-grid > div { display: grid; gap: 4px; padding: 11px 13px; border: 1px solid #d7e6ec; border-radius: 11px; background: #f7fbfc; }.admin-agent-version-grid span { color: #68818f; font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }.admin-agent-version-grid strong { overflow: hidden; color: #123f56; font-size: .92rem; text-overflow: ellipsis; white-space: nowrap; }.admin-agent-version-grid > div:last-child strong { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }.admin-agent-sync { display: inline-flex; margin-top: 8px; align-items: center; gap: 6px; color: #12694f; font-size: .72rem; font-weight: 800; }.admin-agent-sync::before { width: 7px; height: 7px; border-radius: 50%; background: #1ca67a; content: ''; }.admin-agent-sync.pending { color: #8c5817; }.admin-agent-sync.pending::before { background: #d89b31; animation: rpm-value-pulse 1.1s ease-in-out infinite; }
.admin-title p { margin: 8px 0 0; color: #68818f; }.admin-range { display: grid; gap: 7px; color: #54717f; font-size: .78rem; font-weight: 800; }.admin-range select, .admin-card-heading select { min-width: 130px; padding: 10px 12px; border: 1px solid #c7dce5; border-radius: 10px; color: #123f56; background: white; }
.admin-kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 22px; }.admin-kpi { min-height: 130px; padding: 20px; border: 1px solid #cee0e7; border-radius: 16px; background: white; box-shadow: 0 12px 28px rgb(18 65 87 / .06); }.admin-kpi strong { display: block; margin: 12px 0 5px; color: #0a496b; font-size: 2rem; }.admin-kpi span { color: #66808e; font-size: .82rem; }.admin-kpi.alert strong { color: #a05a19; }.admin-kpi.good strong { color: #148260; }
.admin-chart-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-bottom: 18px; }.admin-chart-card, .admin-info-card, .admin-table-card { padding: 22px; border: 1px solid #cee0e7; border-radius: 17px; background: white; box-shadow: 0 12px 30px rgb(18 65 87 / .06); }.admin-chart-card h2 { margin: 5px 0 18px; font-size: 1.18rem; }.admin-heartbeat-card { margin-bottom: 18px; }.admin-card-heading { display: flex; align-items: start; justify-content: space-between; gap: 15px; }.admin-chart-svg { display: block; width: 100%; height: 210px; overflow: visible; }.admin-chart-gridline { stroke: #e2edf1; stroke-width: 1; }.admin-chart-line { fill: none; stroke: #1689ba; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }.admin-chart-area { fill: url(#admin-chart-gradient); opacity: .2; }.admin-chart-dot { fill: #fff; stroke: #1689ba; stroke-width: 3; }.admin-chart-label { fill: #718995; font-size: 10px; }.admin-empty-chart { display: grid; place-items: center; min-height: 180px; color: #738c98; border-radius: 12px; background: #f7fafb; }.admin-chart-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }.admin-chart-legend span { display: inline-flex; align-items: center; gap: 7px; color: #607b89; font-size: .78rem; }.admin-chart-legend i { width: 10px; height: 10px; border-radius: 50%; }
.admin-breakdown-list { display: grid; gap: 13px; }.admin-breakdown-row { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 12px; color: #587482; font-size: .82rem; }.admin-breakdown-track { height: 8px; overflow: hidden; border-radius: 8px; background: #e8f0f3; }.admin-breakdown-fill { height: 100%; border-radius: inherit; background: #28a7c8; }
.admin-table-card { overflow-x: auto; }.admin-table-card table { width: 100%; border-collapse: collapse; min-width: 760px; }.admin-table-card th { padding: 11px 12px; color: #66808d; font-size: .72rem; text-align: left; text-transform: uppercase; border-bottom: 1px solid #dbe8ed; }.admin-table-card td { padding: 14px 12px; color: #284f62; font-size: .84rem; border-bottom: 1px solid #e8f0f3; }.admin-table-card tr:last-child td { border-bottom: 0; }.admin-table-card small { display: block; margin-top: 3px; color: #79909b; }.admin-badge { display: inline-flex; padding: 5px 8px; border-radius: 20px; color: #426572; font-size: .72rem; font-weight: 800; background: #e7f1f4; }.admin-badge.good { color: #12694f; background: #e0f4ed; }.admin-badge.warn { color: #8c5817; background: #fff0d7; }.admin-info-card { color: #587482; }.admin-info-card h2 { color: #123f56; }
.admin-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 18px; padding-top: 14px; border-top: 1px solid #e2ecef; }.admin-pagination[hidden] { display: none; }.admin-pagination span { min-width: 82px; color: #67818e; font-size: .76rem; font-weight: 800; text-align: center; }.admin-pagination button { width: auto; min-width: 86px; }.admin-pagination button:disabled { opacity: .45; cursor: not-allowed; }
.admin-request-id { padding: 4px 7px; border-radius: 6px; color: #365d70; background: #edf4f6; font-size: .75rem; }
.admin-header-button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 40px; padding: 8px 12px; font-size: .82rem; }
.admin-action-icon { font-size: 1.2rem; line-height: 1; }
.admin-title > .admin-add-station { display: inline-flex; width: auto; min-width: 0; align-items: center; justify-content: center; gap: 7px; padding: 10px 15px; border-radius: 10px; font-size: .82rem; white-space: nowrap; }
.admin-add-station span { font-size: 1.05rem; line-height: 1; }
.admin-form-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-form-heading h2 { margin: 5px 0 6px; color: #103f59; }
.admin-form-heading p { max-width: 620px; margin: 0; color: #68818f; line-height: 1.5; }
.admin-form-heading > button { width: auto; flex: 0 0 auto; }
.admin-form-grid label { display: grid; align-content: start; gap: 7px; margin: 0 0 17px; color: #173f55; font-size: .82rem; font-weight: 850; }
.admin-field-label { display: grid; gap: 3px; }
.admin-field-label small { color: #6d8591; font-size: .7rem; font-weight: 600; line-height: 1.35; }
.admin-field-label em { display: inline; color: #79909b; font-size: .68rem; font-style: normal; font-weight: 650; }
.admin-form-grid input { min-width: 0; width: 100%; padding: 12px 13px; border: 1px solid #c7dce5; border-radius: 10px; color: #123f56; background: #fbfdfe; outline: none; }
.admin-form-grid input:focus { border-color: #1689ba; box-shadow: 0 0 0 3px rgb(22 137 186 / .13); }
.admin-form-grid input[aria-invalid="true"] { border-color: #b94f67; box-shadow: 0 0 0 3px rgb(185 79 103 / .1); }
.admin-input-action { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 7px; }
.admin-input-action button { width: auto; min-height: 44px; white-space: nowrap; }
.admin-field-error { min-height: 1em; color: #a53751; font-size: .69rem; font-weight: 750; line-height: 1.35; }
.admin-geocode-row { display: flex; align-items: center; gap: 12px; margin: -2px 0 18px; padding: 11px 13px; border-radius: 11px; color: #567583; background: #edf6f8; font-size: .74rem; line-height: 1.4; }
.admin-geocode-row button { width: auto; flex: 0 0 auto; }
.admin-form-actions button { width: auto; min-width: 120px; padding: 11px 16px; }
.admin-form-message { min-height: 1.3em; margin: 12px 0 0; color: #a53751; font-size: .78rem; font-weight: 750; }
.admin-station-actions button { width: auto; min-height: 40px; flex: 0 1 auto; padding: 9px 12px; font-size: .76rem; }
@media (max-width: 1120px) { .admin-station-card { grid-template-columns: 1fr; }.admin-station-tools { grid-template-columns: 148px minmax(220px,340px); justify-content: start; }.admin-station-actions { justify-content: flex-start; } }
@media (max-width: 1000px) { .admin-layout { grid-template-columns: 82px minmax(0,1fr); }.admin-sidebar { padding-inline: 12px; }.admin-sidebar-label, .admin-nav-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }.admin-nav { justify-content: center; padding-inline: 8px; }.admin-nav:hover { transform: none; }.admin-kpi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 760px) { .admin-header { align-items: flex-start; }.admin-header-actions > span { display: none; }.admin-layout { display: block; }.admin-sidebar { position: sticky; z-index: 20; top: 72px; width: 100%; height: auto; overflow-x: auto; padding: 8px 12px; border-right: 0; border-bottom: 1px solid #d5e4ea; background: rgb(255 255 255 / .96); backdrop-filter: blur(12px); }.admin-sidebar-nav { display: flex; width: max-content; gap: 6px; }.admin-nav { width: 52px; min-width: 52px; min-height: 48px; padding: 6px; }.admin-nav::before { top: auto; right: 14px; bottom: 0; left: 14px; width: auto; height: 3px; border-radius: 4px 4px 0 0; transform: scaleX(.5); }.admin-nav.active::before { transform: scaleX(1); }.admin-nav-icon { width: 34px; height: 34px; flex-basis: 34px; }.admin-main { width: min(100% - 24px, 1280px); padding-top: 26px; }.admin-form-grid, .admin-form-grid.two { grid-template-columns: 1fr; }.admin-form-grid .wide { grid-column: auto; }.admin-station-card { grid-template-columns: 1fr; }.admin-station-tools { grid-template-columns: 1fr; justify-items: start; }.admin-station-qr { justify-items: start; }.admin-station-actions { width: 100%; max-width: none; justify-content: flex-start; }.admin-title { align-items: flex-start; flex-direction: column; }.admin-kpi-grid, .admin-chart-grid { grid-template-columns: 1fr; }.admin-card-heading { align-items: flex-start; flex-direction: column; } }
@media (max-width: 760px) { .admin-title { width: 100%; gap: 14px; margin-bottom: 20px; }.admin-title h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }.admin-title > .admin-add-station { align-self: flex-start; }.admin-create-form { padding: 20px 16px; }.admin-form-heading { flex-direction: column; gap: 13px; }.admin-form-heading > button { min-height: 42px; }.admin-geocode-row { align-items: flex-start; flex-direction: column; }.admin-station-actions { display: grid; grid-template-columns: repeat(2, minmax(0, max-content)); }.admin-station-actions button { min-height: 44px; }.admin-station-meta { line-height: 1.5; } }
@media (max-width: 520px) { .admin-header { padding-inline: 14px; }.admin-brand { gap: 8px; }.admin-brand .admin-header-logo { height: 24px; }.admin-brand .admin-header-logo .platform-logo-text { font-size: .95rem; }.admin-brand strong { font-size: .82rem; }.admin-action-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }.admin-header-button { width: 42px; height: 42px; padding: 0; }.admin-header-actions { gap: 7px; }.admin-sidebar { top: 70px; }.admin-input-action { grid-template-columns: 1fr; }.admin-input-action button { width: 100%; }.admin-form-actions { display: grid; grid-template-columns: 1fr 1fr; }.admin-form-actions button { min-width: 0; width: 100%; }.admin-station-actions { grid-template-columns: 1fr 1fr; }.admin-station-actions button { width: 100%; }.admin-station-actions .admin-danger { grid-column: span 2; } }

/* Área autenticada */
.registration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-field select { width: 100%; padding: 14px 15px; border: 1px solid #355160; border-radius: 12px; color: #f4f8fa; background: #0a1a26; outline: none; }
.lgpd-consent { display: flex; gap: 11px; margin: 20px 0 8px; text-align: left; color: #a9bdc7; font-size: .76rem; line-height: 1.5; }
.lgpd-consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: #25a8c4; }
.lgpd-consent a, .auth-terms-consent a, .service-terms-consent a { color: #25a8c4; font-weight: 850; }
.terms-consent { margin-top: 10px; }
.auth-terms-consent { display: flex; gap: 10px; margin: 14px 0 4px; color: #a9bdc7; font-size: .75rem; line-height: 1.45; text-align: left; }
.auth-terms-consent input, .service-terms-consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: #168bb8; }
.service-terms-consent { display: flex; gap: 11px; margin: 18px 0 12px; padding: 14px 15px; border: 1px solid #cfe0e7; border-radius: 12px; color: #526f7f; background: #f7fbfc; font-size: .82rem; line-height: 1.5; }
body.dashboard-active { min-height: 100vh; background: #f5f9fb; }
body.dashboard-active .shell { width: 100%; max-width: none; padding: 0; }
body.dashboard-active #app-header { display: none; }
.dashboard-panel { min-height: 100vh; color: #17394f; background: #f5f9fb; }
.dashboard-header { position: sticky; z-index: 30; top: 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; min-height: 72px; padding: 0 28px; border-bottom: 1px solid #d8e5ea; background: rgb(255 255 255 / .96); backdrop-filter: blur(14px); }
.dashboard-header .brand { justify-self: start; }
.icon-button, .dashboard-avatar-button, .sidebar-head button { display: grid; place-items: center; border: 1px solid #cfdee5; color: #17394f; background: white; cursor: pointer; }
.icon-button { width: 42px; height: 42px; padding: 0; border-radius: 11px; font-size: 1.3rem; }
.dashboard-avatar-button { overflow: hidden; width: 42px; height: 42px; padding: 0; border-radius: 50%; font-weight: 900; }
.dashboard-avatar-button img, .avatar-editor img { width: 100%; height: 100%; object-fit: cover; }
.profile-menu { position: fixed; z-index: 50; top: 62px; right: 24px; width: min(290px, calc(100vw - 32px)); overflow: hidden; border: 1px solid #cbdce4; border-radius: 14px; background: white; box-shadow: 0 20px 60px rgb(17 57 78 / .2); }
.profile-menu-user { display: grid; gap: 3px; padding: 18px; border-bottom: 1px solid #e1eaee; }.profile-menu-user span { overflow: hidden; color: #67808d; font-size: .8rem; text-overflow: ellipsis; }
.profile-menu button { width: 100%; padding: 13px 18px; border: 0; text-align: left; color: #183b51; background: white; cursor: pointer; }.profile-menu button:hover { background: #eef7fa; }
.dashboard-backdrop { position: fixed; z-index: 38; inset: 0; background: rgb(7 28 41 / .36); }
.dashboard-sidebar { position: fixed; z-index: 40; inset: 0 auto 0 0; display: flex; flex-direction: column; width: min(310px, 88vw); padding: 18px 14px; border-right: 1px solid #cbdce4; background: #fff; box-shadow: 20px 0 60px rgb(17 57 78 / .18); transform: translateX(-105%); transition: transform .2s ease; }
.dashboard-sidebar.open { transform: translateX(0); }
.sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 5px 8px 20px; }.sidebar-head button { width: 36px; height: 36px; border-radius: 9px; font-size: 1.35rem; }
.dashboard-sidebar nav { display: grid; gap: 5px; }.dashboard-sidebar nav button { display: grid; grid-template-columns: 28px 1fr; gap: 6px; width: 100%; padding: 12px 13px; border: 0; border-radius: 10px; text-align: left; color: #3f5d6d; background: transparent; font-weight: 750; cursor: pointer; }.dashboard-sidebar nav button:hover, .dashboard-sidebar nav button.active { color: #0c6f9e; background: #eaf5f8; }
.dashboard-version { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding: 16px 12px 5px; border-top: 1px solid #e1eaee; color: #718792; font-size: .72rem; }
.dashboard-version strong { color: #476576; font-size: .72rem; letter-spacing: .04em; }
.dashboard-main { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 62px 0 90px; }
.dashboard-view > h1 { margin: 9px 0 10px; color: #103750; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -.045em; }.dashboard-view > p { max-width: 720px; color: #617a88; line-height: 1.65; }
.dashboard-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 18px; margin-top: 38px; }.dashboard-summary button { display: grid; gap: 8px; min-height: 160px; padding: 25px; border: 1px solid #d4e3e8; border-radius: 18px; text-align: left; color: #153b52; background: white; box-shadow: 0 14px 40px rgb(26 75 98 / .07); cursor: pointer; }.dashboard-summary button:hover { border-color: #5baec9; transform: translateY(-2px); }.dashboard-summary strong { font-size: 2rem; }.dashboard-summary span { color: #617986; font-weight: 750; }
.dashboard-history-list { display: grid; gap: 14px; margin-top: 28px; }.dashboard-history-item { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px; border: 1px solid #d5e3e8; border-radius: 17px; background: white; }.dashboard-history-item.premium { padding-top: 52px; border-color: #9bd8cf; background: linear-gradient(145deg, #fff, #f1fbf8); }.dashboard-history-item h2 { margin: 5px 0; color: #123b54; font-size: 1.18rem; }.dashboard-history-item p { margin: 0; color: #6c818c; }.history-date { color: #718994; font-size: .75rem; font-weight: 700; }.history-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.history-actions button { padding: 9px 11px; border: 1px solid #c7dce4; border-radius: 9px; color: #096f9f; background: #f7fbfc; font-weight: 800; cursor: pointer; }.history-limited { max-width: 180px; color: #718792; font-size: .78rem; text-align: right; }
.history-premium-badge { position: absolute; top: 15px; right: 17px; padding: 6px 9px; border-radius: 999px; color: #176b58; background: #ddf6ed; font-size: .66rem; font-weight: 950; letter-spacing: .06em; }
.history-offer { display: grid; max-width: 250px; gap: 5px; padding: 13px; border: 1px solid #b8dce8; border-radius: 13px; background: #eff8fb; }.history-offer strong { color: #123b54; font-size: .85rem; }.history-offer small { color: #5f7783; line-height: 1.35; }.history-offer .history-buy { margin-top: 4px; color: white; border-color: #1689ba; background: #1689ba; }
.history-content { min-width: 0; }.history-vehicle { display: block; margin-top: 9px; color: #315c70; font-size: .82rem; font-weight: 800; }.history-location { display: flex; flex-wrap: wrap; gap: 7px 13px; margin-top: 8px; color: #718994; font-size: .78rem; }.history-location a { color: #0877a7; font-weight: 850; }.history-actions .history-buy { border-color: #0e7da9; color: white; background: #0e7da9; }
.dashboard-title-actions { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }.dashboard-title-actions h1 { margin: 9px 0 10px; color: #103750; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -.045em; }.dashboard-title-actions p { max-width: 650px; color: #617a88; line-height: 1.65; }
.vehicle-list { display: grid; gap: 14px; margin-top: 24px; }.vehicle-card { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; padding: 68px 22px 22px; border: 1px solid #d5e3e8; border-radius: 17px; background: white; }.vehicle-card-main { display: flex; align-items: center; gap: 18px; min-width: 0; }.vehicle-plate { flex: 0 0 auto; padding: 9px 12px; border: 2px solid #294e60; border-radius: 8px; color: #17394f; background: #f8fbfc; font-size: .86rem; font-weight: 950; letter-spacing: .08em; }.vehicle-card h2 { margin: 0 0 5px; color: #143c53; font-size: 1.08rem; }.vehicle-card p, .vehicle-card small { margin: 0; color: #6b828e; }.vehicle-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }.vehicle-card-actions button { padding: 9px 12px; border: 1px solid #c7dce4; border-radius: 9px; color: #0a749f; background: #f7fbfc; font-weight: 850; cursor: pointer; }.vehicle-card-actions .danger { color: #a24359; }
.vehicle-health-badge { position: absolute; top: 16px; right: 18px; display: flex; align-items: baseline; gap: 7px; padding: 8px 11px; border-radius: 12px; color: #176b58; background: #e2f7ef; }.vehicle-health-badge.attention { color: #8a6000; background: #fff1c7; }.vehicle-health-badge.unavailable { color: #687d87; background: #edf2f4; }.vehicle-health-badge strong { font-size: 1.1rem; }.vehicle-health-badge span { font-size: .68rem; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.report-vehicle-dialog { width: min(560px, calc(100% - 28px)); padding: 25px; border: 1px solid #bfdce5; border-radius: 22px; color: #123b54; background: #fff; box-shadow: 0 30px 90px rgb(13 48 69 / .28); }.report-vehicle-dialog::backdrop { background: rgb(6 31 47 / .62); backdrop-filter: blur(3px); }.report-vehicle-dialog .dialog-head { padding: 0; }.report-vehicle-dialog .dialog-head h2 { margin: 5px 0; }.report-vehicle-dialog > p { color: #647c88; line-height: 1.5; }.report-vehicle-options { display: grid; gap: 9px; margin: 19px 0; }.report-vehicle-options button { display: grid; gap: 3px; width: 100%; padding: 14px; border: 1px solid #c9dfe6; border-radius: 13px; color: #123b54; background: #f7fbfc; text-align: left; cursor: pointer; }.report-vehicle-options button:hover { border-color: #1689ba; background: #edf8fb; }.report-vehicle-options span { color: #6a808b; font-size: .8rem; }.report-vehicle-actions { display: flex; flex-wrap: wrap; gap: 9px; }.report-vehicle-actions button { flex: 1 1 140px; }
.engine-live-metrics { display: grid; gap: 8px; margin: 14px 0 0; padding: 13px 0 0; border-top: 1px solid #d9e7eb; list-style: none; }.engine-live-metrics li { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }.engine-live-metrics li span { min-width: 0; }.engine-live-metrics li strong { color: #21475b; font-size: .76rem; }.engine-live-metrics li b { flex: 0 0 auto; color: #257d68; font-size: .78rem; }.engine-live-metrics li.attention b { color: #a66d00; }.engine-live-metrics li.unavailable b, .engine-live-metrics li.inconclusive b { color: #71838c; }
.start-vehicle-card { display: grid; gap: 15px; margin: 0 0 28px; padding: 20px; border: 1px solid #cce1e8; border-radius: 16px; background: #f3fafb; }.start-vehicle-card h2 { margin: 5px 0; }.start-vehicle-card p { margin: 0; color: #617b88; }.start-vehicle-card .link-button { justify-self: start; padding: 0; }
.vehicle-form-panel { max-width: 780px; }.vehicle-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin: 24px 0; }.vehicle-form-grid .field { margin: 0; }
.dashboard-action { width: auto; margin-top: 22px; padding-inline: 22px; }.dashboard-contact-link { display: inline-block; width: auto; margin-top: 22px; padding: 14px 20px; text-decoration: none; }
.profile-form { margin-top: 32px; padding: 30px; border: 1px solid #d4e3e8; border-radius: 20px; background: white; }.avatar-editor { display: grid; grid-template-columns: 86px auto; align-items: center; justify-content: start; gap: 5px 20px; margin-bottom: 28px; }.avatar-editor > img, .avatar-editor > span { grid-row: 1 / span 2; display: grid; width: 86px; height: 86px; place-items: center; border-radius: 50%; color: white; background: linear-gradient(145deg, #147eb3, #25b8c7); font-size: 1.4rem; font-weight: 900; }.avatar-editor label { padding: 10px 13px; border: 1px solid #c9dce4; border-radius: 9px; color: #126f9c; font-weight: 800; cursor: pointer; }.avatar-editor label input { position: absolute; width: 1px; height: 1px; opacity: 0; }.avatar-editor small { color: #738993; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.profile-grid label { display: grid; gap: 8px; color: #183d54; font-size: .82rem; font-weight: 800; }.profile-grid input, .profile-grid select { padding: 13px 14px; border: 1px solid #c9dce4; border-radius: 10px; color: #17394f; background: white; }.profile-grid input:disabled, .profile-grid select:disabled { color: #6a7f89; background: #eef3f5; }.profile-fixed-note { color: #738893; font-size: .8rem; }.profile-consent { display: flex; gap: 10px; margin-top: 22px; color: #506d7b; font-size: .82rem; line-height: 1.5; }.profile-consent input { flex: 0 0 18px; width: 18px; height: 18px; accent-color: #1683af; }.help-cards { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 18px; margin-top: 30px; }.help-cards article { padding: 25px; border: 1px solid #d5e3e8; border-radius: 17px; background: white; }.help-cards h2 { margin-top: 0; color: #153b52; }.help-cards p { color: #647d89; line-height: 1.6; }

.dashboard-back-button { margin-bottom: 24px; padding: 8px 0; border: 0; color: #0876a7; background: transparent; font-weight: 850; cursor: pointer; }
.ai-development-card { margin-top: 24px; padding: 20px 22px; border: 1px solid #eccd82; border-radius: 15px; color: #624a16; background: #fff8e7; }.ai-development-card strong { display: block; margin-bottom: 6px; }.ai-development-card p { margin: 0; line-height: 1.55; }
.dashboard-locator { margin-top: 26px; }.dashboard-locator > p { color: #607b88; }.dashboard-locator .station-results { max-width: 820px; }
.help-cards details { overflow: hidden; border: 1px solid #d5e3e8; border-radius: 17px; background: white; }.help-cards details[open] { border-color: #65aec7; box-shadow: 0 12px 35px rgb(27 78 99 / .08); }.help-cards summary { padding: 23px 25px; color: #153b52; font-size: 1.05rem; font-weight: 850; cursor: pointer; }.help-cards details > p, .help-cards details > ul, .help-cards details > ol { margin: 0; padding: 0 25px 22px 45px; color: #647d89; line-height: 1.65; }.help-cards details > p { padding-left: 25px; }.help-cards .terms-card { grid-column: 1 / -1; border-color: #e4c77c; background: #fffaf0; }
.all-stations-button { width: 100%; margin-top: 16px; padding: 11px; border: 1px solid #9bc9d9; border-radius: 10px; color: #0b709e; background: white; font-weight: 850; cursor: pointer; }
.all-stations-dialog { width: min(760px, calc(100% - 28px)); max-height: 85vh; padding: 28px; border: 1px solid #cbdfe7; border-radius: 22px; color: #153b52; background: #f8fcfd; box-shadow: 0 30px 90px rgb(10 45 64 / .3); }.all-stations-dialog::backdrop { background: rgb(5 27 40 / .55); backdrop-filter: blur(3px); }.dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }.dialog-head h2 { margin: 7px 0; }.dialog-head button { width: 38px; height: 38px; border: 1px solid #c9dce4; border-radius: 10px; color: #153b52; background: white; font-size: 1.35rem; cursor: pointer; }
.brazil-presence-panel { grid-column: 1 / -1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 45px; align-items: center; padding: 38px; border: 1px solid #d7e7eb; border-radius: 24px; background: linear-gradient(145deg, #f8fcfd, #ebf7f7); }.brazil-presence-copy h3 { margin: 8px 0; color: #123b54; font-size: 1.7rem; }.brazil-presence-copy p { color: #617a87; line-height: 1.6; }.brazil-state-detail { display: grid; gap: 4px; margin-top: 22px; padding: 15px; border-left: 3px solid #23a7c0; color: #58717e; background: white; }.brazil-state-detail strong { color: #123b54; }.brazil-station-statuses { display: grid; gap: 10px; max-height: 210px; overflow: auto; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid #e0ebef; list-style: none; }.brazil-station-statuses li { display: grid; gap: 5px; }.brazil-station-info { display: grid; gap: 2px; min-width: 0; }.brazil-station-info > span { overflow: hidden; color: #244b61; font-size: .76rem; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }.brazil-station-info > small { color: #6d828c; font-size: .68rem; line-height: 1.35; }.brazil-station-statuses b { display: flex; align-items: center; gap: 6px; color: #617985; font-size: .7rem; }.brazil-station-statuses b i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }.brazil-station-statuses b.available { color: #198366; }.brazil-station-statuses b.busy { color: #b67812; }.brazil-station-statuses b.offline { color: #9b5969; }
.brazil-map { display: grid; place-items: center; min-height: 424px; padding: 10px 18px; }.brazil-svg-map { width: 100%; max-width: 540px; max-height: 500px; overflow: visible; }.brazil-state-shape { fill: #e4eef2; stroke: #8eacb8; stroke-width: 1.25; vector-effect: non-scaling-stroke; cursor: default; transition: fill .16s ease, stroke .16s ease, filter .16s ease; }.brazil-state-shape:hover, .brazil-state-shape:focus, .brazil-state-shape.selected { fill: #0a78aa; stroke: #075d85; outline: none; filter: drop-shadow(0 3px 5px rgb(7 93 133 / .28)); }.brazil-state-shape.present { fill: #78cfb5; stroke: #27866d; }.brazil-state-shape.present:hover, .brazil-state-shape.present:focus, .brazil-state-shape.present.selected { fill: #0a78aa; stroke: #075d85; }.brazil-map-credit { color: #78909b; font-size: .66rem; text-align: center; }

@media (max-width: 720px) {
  .registration-grid, .dashboard-summary, .profile-grid, .help-cards { grid-template-columns: 1fr; }
  .dashboard-header { padding: 0 14px; }.dashboard-header .dashboard-logo { height: 28px; }.dashboard-header .dashboard-logo .platform-logo-text { font-size: 1.1rem; }.dashboard-main { width: calc(100% - 28px); padding-top: 38px; }.dashboard-history-item, .vehicle-card, .dashboard-title-actions { align-items: stretch; flex-direction: column; }.vehicle-card-main { align-items: flex-start; flex-direction: column; }.vehicle-card-actions, .history-actions { justify-content: flex-start; }.history-limited { max-width: none; text-align: left; }.profile-form { padding: 21px; }.vehicle-form-grid { grid-template-columns: 1fr; }
}

.session-cancel-action {
  width: 100%;
  margin-top: 12px;
  padding: 12px 18px;
  border-color: #e9a9ad;
  background: #fff8f8;
  text-align: center;
}

#journey-ring.is-pulsing {
  background: linear-gradient(145deg, #36d691, #8be9bd);
  box-shadow: 0 0 0 10px rgb(54 214 145 / .16), 0 0 34px rgb(32 190 124 / .35);
  filter: saturate(1.15);
  animation: journey-ring-breathe 1.7s ease-in-out infinite;
}

@keyframes journey-ring-breathe {
  0%, 100% {
    box-shadow: 0 0 0 8px rgb(54 214 145 / .13), 0 0 22px rgb(32 190 124 / .24);
    transform: scale(.98);
  }
  50% {
    box-shadow: 0 0 0 15px rgb(54 214 145 / .2), 0 0 42px rgb(32 190 124 / .42);
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  #journey-ring.is-pulsing { animation: none; }
}

@media (max-width: 940px) and (min-width: 721px) { .dashboard-summary { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .brazil-presence-panel { grid-template-columns: 1fr; padding: 25px 18px; }.brazil-map { min-height: 360px; padding: 0; }.brazil-svg-map { max-height: 420px; }.help-cards .terms-card { grid-column: auto; } }

@media (max-width: 680px) {
  .landing-nav { width: min(100% - 28px, 1180px); min-height: 70px; }.landing-nav .platform-logo { height: 29px; }.landing-nav .platform-logo-text { font-size: 1.15rem; }.nav-login { padding: 8px 12px; }
  .landing-hero { min-height: 0; gap: 28px; padding: 48px 18px 72px; }.hero-copy h1 { margin-top: 20px; font-size: clamp(3rem, 15vw, 4.4rem); }.hero-copy > p { font-size: .98rem; }.hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }.landing-primary { width: 100%; }.text-action { padding: 7px; }.trust-row { align-items: flex-start; flex-direction: column; width: max-content; margin: 0 auto; }
  .diagnostic-visual { min-height: 405px; }.totem-card { width: 84%; padding: 13px; border-radius: 23px; }.scan-screen { min-height: 300px; padding: 15px; }.car-silhouette { transform: scale(.78); margin: 35px auto 5px; }.scan-line { top: 130px; }
  .locator-section, .coverage-section { padding: 78px 18px; }.locator-card { padding: 24px 20px; }.location-button, .manual-toggle { width: 100%; margin: 0; }.manual-toggle { margin-top: 8px; }.search-row { grid-template-columns: 1fr; }.search-row .primary { width: 100%; }.station-result-head, .station-result-actions { align-items: stretch; flex-direction: column; }.open-station { width: 100%; }
  .report-preview { transform: none; }.partner-section { width: calc(100% - 36px); margin: 76px auto; padding: 34px 25px; }.partner-action { width: 100%; text-align: center; }.landing-footer { width: calc(100% - 36px); }
}

@media (prefers-reduced-motion: reduce) {
  .scan-line { animation: none; }
  .landing-primary:hover { transform: none; }
}

/* Experiência de autenticação */
body.auth-active { min-height: 100vh; background: radial-gradient(circle at 50% 10%, #15364a 0, #091b29 42%, #06131f 100%); }
body.auth-active .shell { width: 100%; max-width: none; padding: 54px 16px 80px; }
body.auth-active #app-header { display: none; }
.auth-card {
  position: relative;
  width: min(520px, 100%);
  min-height: 0;
  margin: 28px auto;
  padding: 46px 48px 42px;
  text-align: center;
  border-color: #294354;
  border-radius: 28px;
  background: linear-gradient(155deg, #132533, #0d1d2a);
  box-shadow: 0 32px 85px rgb(0 7 13 / .45);
}
body.home-page .auth-card, body.auth-active .auth-card { width: min(500px, calc(100% - 28px)); margin: 28px auto 72px; }
.auth-card h2 { margin: 17px 0 24px; color: #f4f9fc; font-size: clamp(1.75rem, 5vw, 2.2rem); letter-spacing: -.035em; }
.auth-subtitle { max-width: 380px; margin: 0 auto 30px; color: #9fb3bf; line-height: 1.55; }
.auth-close { position: absolute; right: 18px; top: 16px; display: grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 1px solid transparent; border-radius: 10px; color: #91a9b7; background: transparent; font-size: 1.5rem; cursor: pointer; }
.auth-close:hover { border-color: #365365; color: white; background: #193042; }
.auth-logo { height: 44px; margin: 0 auto; color: #f4faff; }
.auth-logo .platform-logo-symbol { filter: drop-shadow(0 0 5px rgb(71 175 242 / .42)); }
.auth-logo.small { height: 38px; }
.auth-options { display: grid; gap: 12px; }
.social-button { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 54px; padding: 13px 18px; border: 1px solid #304958; border-radius: 14px; color: #f5f9fb; background: #142633; font-weight: 850; cursor: pointer; }
.social-button:hover { border-color: #4d7a91; background: #1a3141; transform: translateY(-1px); }
.social-button > span { position: absolute; left: 19px; }
.social-button small { position: absolute; right: 17px; padding: 4px 7px; border-radius: 999px; color: #9fb4c0; background: rgba(255,255,255,.07); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.social-button-pending:disabled { cursor: not-allowed; opacity: .62; transform: none; }
.social-button-pending:disabled:hover { border-color: #304958; background: #142633; transform: none; }
.social-auth-note { margin: 10px 0 0; color: #8ea5b2; font-size: .78rem; text-align: center; }
.google-symbol { font-size: 1.25rem; font-weight: 950; background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 67%, #ea4335 0 82%, #4285f4 0); background-clip: text; -webkit-background-clip: text; color: transparent; }
.apple-button { border-color: #d7e2e8; color: #0b1822; background: #f5f8fa; }
.apple-button:hover { border-color: white; color: #07131c; background: white; }
.apple-symbol { width: 18px; height: 18px; }
.apple-symbol::before { content: ""; position: absolute; width: 15px; height: 15px; left: 1px; top: 3px; border-radius: 48% 48% 52% 52%; background: white; }
.apple-symbol::after { content: ""; position: absolute; width: 7px; height: 4px; left: 10px; top: -1px; border-radius: 8px 2px 8px 2px; background: white; transform: rotate(-28deg); }
.apple-button .apple-symbol::before, .apple-button .apple-symbol::after { background: #0b1822; }
.microsoft-symbol { position: absolute; display: grid; grid-template-columns: repeat(2, 8px); grid-template-rows: repeat(2, 8px); gap: 2px; width: 18px; height: 18px; }
.microsoft-symbol::before, .microsoft-symbol::after, .microsoft-symbol i::before, .microsoft-symbol i::after { content: ""; display: block; width: 8px; height: 8px; }
.microsoft-symbol::before { background: #f35325; }.microsoft-symbol::after { background: #81bc06; }
.microsoft-symbol i { display: contents; }.microsoft-symbol i::before { background: #05a6f0; }.microsoft-symbol i::after { background: #ffba08; }
.auth-divider { display: flex; align-items: center; gap: 15px; margin: 27px 0; color: #78909d; font-size: .66rem; font-weight: 900; letter-spacing: .13em; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: #2b4352; }
.email-entry-button { position: relative; min-height: 54px; border-radius: 14px; background: linear-gradient(135deg, #147eb3, #176b9d); box-shadow: 0 12px 27px rgb(20 126 179 / .2); }
.email-entry-button:hover { background: linear-gradient(135deg, #0e72a5, #115f8b); }
.mail-symbol { position: absolute; width: 17px; height: 13px; left: 20px; border: 2px solid white; border-radius: 3px; }
.mail-symbol::after { content: ""; position: absolute; width: 8px; height: 8px; left: 2px; top: -4px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); }
.auth-switch { margin: 28px 0 0; color: #91a6b2; font-size: .9rem; }.auth-switch button { padding: 3px; border: 0; color: #42b8dd; background: transparent; font-weight: 900; cursor: pointer; }.auth-switch button:hover { text-decoration: underline; text-underline-offset: 4px; }
.auth-back { display: block; margin: -12px 0 24px -8px; padding: 8px; border: 0; color: #93a9b5; background: transparent; font-size: .82rem; font-weight: 800; cursor: pointer; }.auth-back:hover { color: #5bc9e8; }
.auth-form-panel .auth-subtitle { margin-bottom: 26px; }
.auth-field { display: grid; gap: 8px; margin: 15px 0; text-align: left; color: #dce8ed; font-size: .85rem; font-weight: 800; }
.auth-field input { width: 100%; padding: 14px 15px; border: 1px solid #355160; border-radius: 12px; color: #f4f8fa; background: #0a1a26; outline: none; }
.auth-field input::placeholder { color: #718995; }
.auth-field input:focus { border-color: #31a8ce; box-shadow: 0 0 0 3px rgb(49 168 206 / .16); }
.password-input-shell { position: relative; display: block; width: 100%; }
.password-input-shell input { padding-right: 52px; }
.password-visibility-toggle { position: absolute; right: 6px; top: 50%; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 9px; color: #768b95; background: transparent; cursor: pointer; transform: translateY(-50%); }
.password-visibility-toggle:hover { color: #1683af; background: rgb(22 131 175 / .08); }
.password-visibility-toggle:focus-visible { outline: 3px solid rgb(22 131 175 / .22); outline-offset: 1px; }
.password-visibility-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.password-visibility-toggle .password-visibility-slash { opacity: 0; }
.password-visibility-toggle[aria-pressed="true"] .password-visibility-slash { opacity: 1; }
.admin-login-card .password-visibility-toggle { color: #6f8792; }
.forgot-password-link { display: block; margin: -3px 0 12px auto; padding: 4px 0; border: 0; color: #42b8dd; background: transparent; font-size: .82rem; font-weight: 800; cursor: pointer; }
.forgot-password-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.auth-submit { min-height: 52px; margin-top: 9px; border-radius: 13px; background: linear-gradient(135deg, #147eb3, #176b9d); }
.auth-message { margin: 18px 0 0; text-align: left; font-size: .82rem; }
.recovery-message:not(.error) { padding: 12px 14px; border-radius: 10px; color: #185d4c; background: #e8f6f1; }
.auth-secondary-action { display: block; width: 100%; margin-top: 13px; padding: 10px; border: 0; color: #42b8dd; background: transparent; font-weight: 800; cursor: pointer; }
.auth-secondary-action:hover { text-decoration: underline; text-underline-offset: 4px; }
.auth-field input.verification-code { text-align: center; font-size: 1.55rem; font-weight: 900; letter-spacing: .5em; }
.auth-card button:focus-visible, .auth-card input:focus-visible, .auth-card a:focus-visible { outline: 3px solid rgb(20 126 179 / .25); outline-offset: 3px; }

@media (max-width: 620px) {
  .verification-shell { padding-top: 24px; }
  .verification-details div { grid-template-columns: 1fr; gap: 4px; }
  .verification-home { width: 100%; }
  .auth-card, body.home-page .auth-card { width: min(100% - 20px, 520px); margin: 18px auto 42px; padding: 39px 22px 32px; border-radius: 23px; }
  .auth-logo { height: 40px; }
  .auth-logo.small { height: 35px; }
  .auth-subtitle { margin-bottom: 25px; }
  .social-button, .email-entry-button { min-height: 52px; }
}
.admin-station-editor-dialog { width: min(760px, calc(100% - 28px)); max-height: min(860px, calc(100vh - 28px)); padding: 0; overflow: hidden; border: 0; border-radius: 22px; color: #12364e; background: #f7fbfc; box-shadow: 0 28px 80px #0b2f4670; }
.admin-station-editor-dialog::backdrop { background: #09283bb8; backdrop-filter: blur(5px); }
.admin-station-editor-card { max-height: min(860px, calc(100vh - 28px)); padding: 26px; overflow-y: auto; background: #f7fbfc; }
.admin-station-editor-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #d4e5eb; }
.admin-station-editor-heading h2 { margin: 5px 0; font-size: 1.65rem; }
.admin-station-editor-heading p { margin: 0; color: #68808d; font-size: .78rem; font-weight: 750; }
.admin-station-editor-close { width: 42px; min-height: 42px; padding: 0; font-size: 1.5rem; }
.admin-station-editor-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin-top: 12px; }
.admin-station-editor-grid label { display: grid; gap: 7px; margin: 12px 0; color: #183d54; font-size: .8rem; font-weight: 850; }
.admin-station-editor-grid label.wide, .admin-station-editor-grid .wide { grid-column: 1 / -1; }
.admin-station-editor-grid input { width: 100%; padding: 12px 13px; border: 1px solid #bfd5df; border-radius: 10px; color: #0b3147; background: white; }
.admin-station-editor-grid em { color: #718894; font-size: .7rem; font-style: normal; font-weight: 650; }
.admin-station-editor-card .admin-form-actions { margin-top: 18px; }
@media (max-width: 680px) { .admin-station-editor-grid { grid-template-columns: 1fr; } .admin-station-editor-grid label.wide, .admin-station-editor-grid .wide { grid-column: auto; } }

.admin-health-dialog { width: min(760px, calc(100% - 28px)); max-height: min(780px, calc(100vh - 28px)); padding: 0; overflow: auto; border: 0; border-radius: 22px; color: #12364e; background: #f7fbfc; box-shadow: 0 28px 80px #0b2f4670; }
.admin-health-dialog::backdrop { background: #09283bb8; backdrop-filter: blur(5px); }
.admin-health-heading { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 26px 18px; border-bottom: 1px solid #d4e5eb; background: #f7fbfcf2; backdrop-filter: blur(12px); }
.admin-health-heading h2 { margin: 4px 0 0; font-size: 1.65rem; }
.admin-health-close { width: 42px; min-height: 42px; padding: 0; font-size: 1.5rem; }
.admin-health-controls { display: flex; align-items: end; gap: 12px; padding: 20px 26px 0; }
.admin-health-controls label { display: grid; gap: 6px; color: #557486; font-size: .78rem; font-weight: 850; }
.admin-health-controls select { min-width: 140px; padding: 10px 12px; border: 1px solid #c8dbe3; border-radius: 10px; color: #12364e; background: white; }
#admin-health-content { padding: 20px 26px 28px; }
.admin-health-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.admin-health-kpis article { padding: 15px; border: 1px solid #cfe2e9; border-radius: 14px; background: white; }
.admin-health-kpis span { display: block; min-height: 32px; color: #64808f; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.admin-health-kpis strong { display: block; margin-top: 8px; color: #0a789f; font-size: 1.18rem; }
.admin-health-timeline { display: grid; gap: 0; margin: 24px 0 0; padding: 0; list-style: none; }
.admin-health-event { position: relative; display: grid; grid-template-columns: minmax(130px, .8fr) 80px 1fr; gap: 10px 16px; padding: 15px 15px 15px 34px; border-left: 2px solid #20a77a; background: white; }
.admin-health-event + .admin-health-event { border-top: 1px solid #e0ebef; }
.admin-health-event::before { content: ''; position: absolute; top: 20px; left: -7px; width: 12px; height: 12px; border: 2px solid white; border-radius: 50%; background: #20a77a; box-shadow: 0 0 0 1px #20a77a; }
.admin-health-event.offline, .admin-health-event.usb_disconnected, .admin-health-event.adapter_error { border-left-color: #b84c62; }
.admin-health-event.offline::before, .admin-health-event.usb_disconnected::before, .admin-health-event.adapter_error::before { background: #b84c62; box-shadow: 0 0 0 1px #b84c62; }
.admin-health-event.checking, .admin-health-event.busy { border-left-color: #dc9b31; }
.admin-health-event.checking::before, .admin-health-event.busy::before { background: #dc9b31; box-shadow: 0 0 0 1px #dc9b31; }
.admin-health-state { font-weight: 900; }
.admin-health-event time { color: #557486; font-size: .82rem; }
.admin-health-event small { grid-column: 1 / -1; color: #78909d; }
.admin-health-empty { padding: 28px; border: 1px dashed #c7dce4; border-radius: 14px; color: #64808f; text-align: center; }
@media (max-width: 680px) { .admin-health-kpis { grid-template-columns: 1fr 1fr; }.admin-health-event { grid-template-columns: 1fr auto; }.admin-health-event time { grid-column: 1 / -1; }.admin-health-heading, .admin-health-controls, #admin-health-content { padding-inline: 17px; } }
