:root {
  color-scheme: dark;
  --bg: #070d12;
  --bg-2: #0b141c;
  --surface: #0f1a24;
  --surface-2: #142230;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --ink: #f6f9fc;
  --ink-soft: #d8e2eb;
  --muted: #94a5b5;
  --line: rgba(202, 222, 238, 0.15);
  --line-strong: rgba(202, 222, 238, 0.28);
  --brand: #1497e6;
  --brand-2: #31b7f7;
  --brand-dark: #075f9d;
  --gold: #caa35a;
  --green: #35c887;
  --radius: 8px;
  --max: 1168px;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-feature-settings: "tnum";
}

* {
  box-sizing: border-box;
}

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

body.landing {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #0c1720 0, var(--bg) 680px, #081018 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body.landing::before {
  position: fixed;
  top: 92px;
  right: max(-84px, calc((100vw - var(--max)) / 2 - 120px));
  z-index: 0;
  width: min(54vw, 640px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(49, 183, 247, 0.22), transparent 58%),
    url("./assets/mioil-logo.png") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 28px 80px rgba(20, 151, 230, 0.2));
  opacity: 0.12;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: logo-drift 14s var(--ease-out) infinite;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

@keyframes logo-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10px, 12px, 0) scale(1.03);
  }
}

@keyframes marker-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  }

  50% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.42),
      0 0 0 10px rgba(202, 163, 90, 0.16);
  }
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 580ms var(--ease-out),
    transform 580ms var(--ease-out);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

p,
h1,
h2,
h3,
strong,
small {
  overflow-wrap: break-word;
}

.proof-strip,
.section,
.contact,
.model-card,
.economics-grid article,
.timeline li,
.digital-panel,
.app-device,
.contact-card,
.device-order,
.digital-copy {
  min-width: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--brand);
  color: white;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 13, 18, 0.92);
  content: "";
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  min-height: 46px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.site-nav a,
.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  transition:
    transform 150ms var(--ease-out),
    background-color 150ms var(--ease-out),
    border-color 150ms var(--ease-out);
}

.site-nav a {
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.header-cta,
.button-primary {
  border: 1px solid rgba(49, 183, 247, 0.42);
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  color: white;
  box-shadow: 0 16px 34px rgba(20, 151, 230, 0.24);
}

.header-cta {
  padding: 0 16px;
  font-size: 14px;
}

.button {
  min-height: 50px;
  padding: 0 18px;
  cursor: pointer;
}

.button-secondary,
.button-secondary.dark {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
  color: var(--ink);
  box-shadow: none;
}

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

.button:active,
.header-cta:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  min-height: min(650px, calc(100dvh - 20px));
  overflow: hidden;
  color: white;
}

.hero::before {
  position: absolute;
  inset: 78px max(16px, calc((100vw - var(--max)) / 2)) 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 151, 230, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 164px 0 104px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(42px, 8.2vw, 96px);
  font-weight: 920;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.proof-strip,
.section,
.contact,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip article {
  padding: 22px;
  background: #0d1822;
}

.proof-strip span,
.proof-strip strong,
.proof-strip small {
  display: block;
}

.proof-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.proof-strip small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding: 88px 0 0;
}

.section-lead {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: 34px;
}

.section h2,
.contact h2 {
  max-width: 860px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
}

.section p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.model-card,
.economics-grid article,
.timeline li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  transition:
    transform 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    background-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.model-card {
  min-height: 284px;
  padding: 26px;
}

.model-card.is-dark {
  background:
    linear-gradient(135deg, rgba(20, 151, 230, 0.15), transparent 58%),
    var(--surface);
}

.model-card span,
.timeline span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #9bd9ff;
  font-weight: 950;
  transition:
    transform 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    background-color 240ms var(--ease-out);
}

.model-card h3,
.economics-grid h3,
.timeline h3,
.digital-copy h3 {
  margin: 26px 0 12px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.model-card p {
  color: var(--muted);
}

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

.economics-grid article {
  min-height: 236px;
  padding: 26px;
}

.economics-grid h3 {
  max-width: 520px;
  margin-top: 0;
}

.process {
  display: grid;
  gap: 34px;
}

.process .section-lead {
  max-width: 900px;
  margin-bottom: 0;
}

.process .section-lead h2 {
  max-width: 900px;
  font-size: clamp(32px, 4.2vw, 56px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.digital-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.app-device {
  width: min(100%, 390px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #091017;
  transition: transform 260ms var(--ease-out);
}

.device-top,
.device-order {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-radius: var(--radius);
  padding: 14px;
  background: #101c27;
}

.device-top span,
.device-order small {
  color: var(--muted);
}

.device-top strong {
  color: #74d9aa;
}

.device-map {
  position: relative;
  height: 230px;
  margin: 12px 0;
  overflow: hidden;
  border: 1px solid rgba(142, 187, 218, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(28deg, transparent 0 46%, rgba(70, 102, 126, 0.68) 46% 49%, transparent 49%),
    linear-gradient(156deg, transparent 0 48%, rgba(70, 102, 126, 0.54) 48% 51%, transparent 51%),
    linear-gradient(104deg, transparent 0 54%, rgba(31, 96, 139, 0.7) 54% 57%, transparent 57%),
    radial-gradient(circle at 22% 22%, rgba(65, 132, 107, 0.72), transparent 18%),
    radial-gradient(circle at 74% 24%, rgba(42, 103, 80, 0.62), transparent 22%),
    radial-gradient(circle at 70% 82%, rgba(33, 78, 119, 0.72), transparent 24%),
    #172a36;
}

.device-map::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 18, 0.08), rgba(7, 13, 18, 0.38));
  content: "";
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(225, 231, 235, 0.36);
  transform-origin: left center;
}

.map-road-a {
  top: 54%;
  left: -4%;
  width: 114%;
  transform: rotate(-12deg);
}

.map-road-b {
  top: 36%;
  left: 16%;
  width: 86%;
  transform: rotate(32deg);
}

.map-road-c {
  top: 72%;
  left: 8%;
  width: 72%;
  transform: rotate(-2deg);
}

.map-callout-mini {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 58px;
  z-index: 3;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(49, 183, 247, 0.34);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(9, 16, 23, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.map-callout-mini span {
  color: #9bd9ff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.map-callout-mini strong {
  font-size: 16px;
  line-height: 1.1;
}

.map-callout-mini small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.device-pin {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid #d9efff;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(180deg, #38b8fa, #1184d0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transform: rotate(-45deg);
}

.device-pin::before {
  color: white;
  font-size: 14px;
  font-weight: 950;
  content: "M";
  transform: rotate(45deg);
}

.device-pin.is-selected {
  background: linear-gradient(180deg, #d6bb72, var(--gold));
}

.device-pin:nth-of-type(1) {
  left: 18%;
  top: 58%;
}

.device-pin:nth-of-type(2) {
  left: 48%;
  top: 50%;
}

.device-pin:nth-of-type(3) {
  left: 68%;
  top: 62%;
}

.device-pin:nth-of-type(4) {
  left: 28%;
  top: 68%;
}

.device-map.landing-map {
  isolation: isolate;
  background: #101c27;
}

.device-map.landing-map::after {
  display: none;
}

.landing-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #9bd9ff;
  font-weight: 900;
  background:
    linear-gradient(28deg, transparent 0 46%, rgba(70, 102, 126, 0.68) 46% 49%, transparent 49%),
    linear-gradient(156deg, transparent 0 48%, rgba(70, 102, 126, 0.54) 48% 51%, transparent 51%),
    #172a36;
}

.landing-map .leaflet-pane,
.landing-map .leaflet-map-pane,
.landing-map .leaflet-tile-pane {
  z-index: 1;
}

.landing-map .leaflet-tile {
  filter: invert(1) hue-rotate(180deg) saturate(0.72) brightness(0.72) contrast(1.08);
}

.landing-map .leaflet-control-container {
  display: none;
}

.landing-map-marker {
  display: grid !important;
  place-items: center;
  border: 0 !important;
  background: transparent !important;
}

.landing-map-marker span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid #d9efff;
  border-radius: 50% 50% 50% 8px;
  background: linear-gradient(180deg, #38b8fa, #1184d0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
  transform: rotate(-45deg);
}

.landing-map-marker b {
  color: white;
  font-size: 14px;
  line-height: 1;
  transform: rotate(45deg);
}

.landing-map-marker.is-selected span {
  background: linear-gradient(180deg, #d6bb72, var(--gold));
  animation: marker-pulse 2.8s ease-in-out infinite;
}

.landing-map-callout {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 72px;
  z-index: 500;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(49, 183, 247, 0.34);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(9, 16, 23, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.landing-map-callout span {
  color: #9bd9ff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.landing-map-callout strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.08;
}

.landing-map-callout small,
.landing-map-callout b {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.landing-map-callout b {
  color: #9bd9ff;
  font-weight: 900;
}

.device-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.device-order small {
  grid-column: 1;
}

.device-order b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #9bd9ff;
  font-size: 22px;
  white-space: nowrap;
}

.digital-copy {
  max-width: 590px;
}

.digital-copy h3 {
  margin-top: 0;
  font-size: clamp(30px, 5vw, 54px);
}

.digital-copy p {
  margin-bottom: 26px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.618fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: end;
  margin-top: 90px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 760px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #091017;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.contact-card span,
.contact-card strong,
.contact-card p {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.contact-card strong {
  margin-top: 12px;
  font-size: 32px;
  line-height: 1;
}

.contact-card p {
  margin: 10px 0 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .model-card:hover,
  .economics-grid article:hover,
  .timeline li:hover,
  .contact-card:hover {
    border-color: rgba(155, 217, 255, 0.34);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    transform: translate3d(0, -4px, 0);
  }

  .timeline li:hover span,
  .model-card:hover span {
    border-color: rgba(155, 217, 255, 0.48);
    background: rgba(49, 183, 247, 0.1);
    transform: translate3d(0, -1px, 0);
  }

  .digital-panel:hover {
    border-color: rgba(155, 217, 255, 0.3);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    transform: translate3d(0, -3px, 0);
  }

  .digital-panel:hover .app-device {
    transform: translate3d(0, -2px, 0);
  }
}

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

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

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    padding-top: 148px;
  }

  .proof-strip,
  .model-grid,
  .economics-grid,
  .process,
  .digital-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .process .section-lead {
    position: static;
  }

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

  .model-card,
  .economics-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .proof-strip,
  .section,
  .contact,
  .site-footer,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .site-header::before {
    height: 76px;
  }

  body.landing::before {
    top: 112px;
    right: -128px;
    width: 520px;
    opacity: 0.08;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 76px 11px 16px;
  }

  .hero-inner {
    padding: 132px 0 92px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(35px, 10vw, 40px);
    line-height: 1;
    text-wrap: auto;
  }

  .hero-copy {
    max-width: 335px;
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .proof-strip article {
    padding: 18px;
  }

  .section {
    padding-top: 68px;
  }

  .section h2,
  .contact h2 {
    max-width: 350px;
    font-size: clamp(30px, 8.5vw, 36px);
    overflow-wrap: anywhere;
  }

  .section-lead,
  .model-card h3,
  .economics-grid h3,
  .timeline h3,
  .digital-copy h3,
  .model-card p,
  .economics-grid p,
  .timeline p,
  .digital-copy p,
  .contact p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .model-card,
  .economics-grid article,
  .timeline li,
  .digital-panel,
  .contact {
    width: 100%;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }

  .model-grid,
  .economics-grid,
  .timeline {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .model-card,
  .economics-grid article,
  .timeline li,
  .digital-panel,
  .contact,
  .contact-card {
    padding: 20px;
  }

  .timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .digital-panel {
    gap: 24px;
  }

  .app-device {
    padding: 10px;
  }

  .device-map {
    height: 216px;
  }

  .map-callout-mini {
    left: 12px;
  }

  .device-order {
    grid-template-columns: 1fr;
  }

  .device-order b {
    grid-row: auto;
    grid-column: 1;
    margin-top: 4px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
