:root {
  color-scheme: dark;
  --bg: #080a09;
  --bg-2: #0d1110;
  --panel: #111614;
  --panel-2: #151b18;
  --line: rgba(244, 245, 239, 0.12);
  --line-strong: rgba(244, 245, 239, 0.22);
  --text: #f4f5ef;
  --text-soft: #c5cbc2;
  --text-muted: #8e968b;
  --teal: #2dd4bf;
  --teal-dark: #0f766e;
  --coral: #ff6b4a;
  --gold: #ffd166;
  --violet: #7c5ef0;
  --green: #51cf66;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --topbar-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
}

.bg-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(45, 212, 191, 0.18), transparent 34%),
    linear-gradient(310deg, rgba(255, 107, 74, 0.13), transparent 30%),
    linear-gradient(180deg, #080a09 0%, #0b0f0d 46%, #080a09 100%);
}

.orb {
  display: none;
}

.grid-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 245, 239, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 245, 239, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black 0%, black 56%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 56%, transparent 100%);
  opacity: 0.44;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.scan-line {
  position: absolute;
  top: 0;
  left: -20%;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.16), transparent);
  transform: skewX(-18deg);
  animation: scan-sweep 12s ease-in-out infinite;
}

@keyframes scan-sweep {
  0%,
  18% {
    transform: translateX(-120%) skewX(-18deg);
  }
  58%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

.page-grid {
  position: relative;
  z-index: 1;
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-h);
  padding: 0.55rem 0.65rem 0.55rem 0.8rem;
  background: rgba(8, 10, 9, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  min-height: 3.6rem;
  background: rgba(8, 10, 9, 0.9);
  border-color: var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-wordmark {
  width: 5.9rem;
  height: auto;
  flex: 0 0 auto;
}

.footer .brand-wordmark {
  width: 5.4rem;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.topnav a {
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  transition: color 160ms ease, background-color 160ms ease;
}

.topnav a:hover {
  color: var(--text);
  background: rgba(244, 245, 239, 0.08);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.68rem 0.9rem;
  border-radius: var(--radius);
  background: var(--text);
  color: #08100d;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(244, 245, 239, 0.14);
  transition: transform 160ms ease, background-color 160ms ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.topbar-cta svg,
.button-primary > svg,
.button .button-arrow {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(30rem, 1.08fr);
  gap: 3rem;
  align-items: center;
  min-height: 46rem;
  padding: 3.2rem 0 1.25rem;
}

.hero-copy {
  max-width: 38rem;
}

.hero-logo {
  width: 12rem;
  height: auto;
  margin: 0 0 1.8rem;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 35rem;
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  font-size: 1.18rem;
  line-height: 1.6;
}

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

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 0.85rem 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(244, 245, 239, 0.055);
  color: var(--text);
  transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.16), transparent 78%);
  transform: translateX(-70%);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(244, 245, 239, 0.085);
}

.button.is-redirecting,
.route-card.is-redirecting,
.topbar-cta.is-redirecting {
  transform: translateY(-1px) scale(0.99);
}

.button:hover::after {
  animation: sheen 700ms ease;
}

@keyframes sheen {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

.button-primary {
  border-color: rgba(45, 212, 191, 0.5);
  background: linear-gradient(135deg, #18b7a5, #2dd4bf 48%, #ffd166);
  color: #06100e;
  box-shadow: 0 22px 58px rgba(45, 212, 191, 0.23);
}

.button-primary:hover {
  background: linear-gradient(135deg, #24cbbb, #57e6d6 48%, #ffda7d);
}

.button-store svg:not(.store-glyph) {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-store .store-glyph {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}

.button-store {
  justify-content: flex-start;
}

/* ──────────────────────────────────────────────────────────
 * Store glyphs (official-color Google Play & App Store marks)
 * ────────────────────────────────────────────────────────── */
.store-glyph {
  display: block;
}
.store-glyph-appstore {
  border-radius: 22%;
}

.button-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  gap: 0.1rem;
}

.button-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.button-copy small {
  color: rgba(244, 245, 239, 0.72);
  font-size: 0.77rem;
  font-weight: 600;
}

.button-primary .button-copy small {
  color: rgba(6, 16, 14, 0.72);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-row span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(81, 207, 102, 0.11);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  transform-style: preserve-3d;
  perspective: 1100px;
}

.signal-ring {
  position: absolute;
  inset: 4rem 1.5rem 2rem;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.signal-ring::before,
.signal-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 50%;
}

.signal-ring::after {
  inset: 29%;
  border-color: rgba(255, 107, 74, 0.16);
}

.screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 245, 239, 0.16);
  border-radius: var(--radius);
  background: #0b0f0d;
  box-shadow: var(--shadow);
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b0f0d;
}

.screen-tv {
  top: 4.4rem;
  right: 0;
  width: 86%;
  aspect-ratio: 16 / 9;
  transform: rotateY(-9deg) rotateX(3deg);
  animation: float-main 8s ease-in-out infinite;
}

.screen-phone {
  width: 27%;
  aspect-ratio: 9 / 16;
}

.screen-phone-a {
  left: 1rem;
  bottom: 0.5rem;
  transform: rotate(-5deg);
  animation: float-side 7s ease-in-out infinite;
}

.screen-phone-b {
  right: 5.5rem;
  bottom: -1rem;
  transform: rotate(4deg);
  animation: float-side 7.8s ease-in-out infinite 800ms;
}

@keyframes float-main {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes float-side {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

.section {
  padding: 5.5rem 0 0;
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
  margin: 0 0 2rem;
}

.section-label,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta h2,
.policy-hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 37rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.03rem;
}

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

.route-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  min-height: 18rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(244, 245, 239, 0.06), rgba(244, 245, 239, 0.03));
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.route-card-live {
  border-color: rgba(45, 212, 191, 0.44);
  background:
    linear-gradient(150deg, rgba(45, 212, 191, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(244, 245, 239, 0.08), rgba(244, 245, 239, 0.03));
}

.route-index {
  color: var(--text-muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.route-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--text);
  color: #08100d;
}

.route-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.route-card-live .route-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-icon-android {
  background: #ffffff;
}

.route-icon-ios {
  background: transparent;
  padding: 0;
}

.route-icon-android svg:not(.store-glyph),
.route-icon-ios svg:not(.store-glyph) {
  fill: currentColor;
}

.route-icon .store-glyph-play {
  width: 70%;
  height: 70%;
}

.route-icon .store-glyph-appstore {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.route-card strong {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.route-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.route-target {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  color: var(--teal);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-wide {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.showcase-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-list {
  display: grid;
  gap: 1rem;
}

.proof-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.proof-item:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-item span {
  color: var(--coral);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-item strong {
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.2rem;
}

.proof-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.proof-item code {
  border-radius: 4px;
  padding: 0.1rem 0.32rem;
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9em;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 5.5rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 44rem;
  margin-top: 0.35rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.text-link {
  color: var(--text-soft);
  font-weight: 800;
  transition: color 160ms ease;
}

.text-link:hover {
  color: var(--text);
}

.beta-section {
  padding-top: 5.5rem;
}

.beta-card {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.6rem clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(124, 94, 240, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(124, 94, 240, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(244, 245, 239, 0.06), rgba(244, 245, 239, 0.02));
  text-align: left;
}

.beta-card .eyebrow {
  margin-bottom: 0.8rem;
}

.beta-card h2 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.04;
}

.beta-lede {
  max-width: 38rem;
  margin: 0 0 1.6rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.beta-steps {
  display: grid;
  gap: 0.55rem;
  max-width: 38rem;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.beta-steps li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.98rem;
}

.beta-step-n {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.beta-cta {
  min-height: 3.4rem;
  padding: 0.8rem 1.4rem;
  justify-content: center;
}

.beta-fineprint {
  margin: 1.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  transition: color 160ms ease;
}

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

.policy-hero {
  max-width: 48rem;
  padding: 4.5rem 0 1.6rem;
}

.policy-hero h1 {
  margin-top: 0.65rem;
}

.hero-body {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.policy-article {
  max-width: 58rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 22, 20, 0.76);
}

.policy-article section + section {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.policy-article h2 {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.policy-article p,
.policy-article li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.policy-article p {
  margin: 0.75rem 0 0;
}

.policy-article ul {
  margin: 0.85rem 0 0.85rem 1.1rem;
  padding: 0;
}

.policy-article li + li {
  margin-top: 0.35rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-1,
.reveal-2,
.reveal-3 {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.65s ease forwards;
}

.reveal-2 {
  animation-delay: 100ms;
}

.reveal-3 {
  animation-delay: 200ms;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .action-grid {
    max-width: 46rem;
  }

  .route-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .page-grid {
    width: min(100% - 2rem, 74rem);
    padding-top: 0.65rem;
  }

  .topbar {
    top: 0.65rem;
    flex-wrap: wrap;
    row-gap: 0.25rem;
    min-height: 0;
    padding: 0.5rem 0.65rem;
  }

  .topbar.is-scrolled {
    min-height: 0;
  }

  .topnav {
    order: 2;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.15rem;
    padding-top: 0.4rem;
    border-top: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .topnav a {
    padding: 0.45rem 0.6rem;
  }

  .hero h1 {
    font-size: 4.3rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

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

  .hero-visual {
    position: relative;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 1.75rem;
  }

  .signal-ring {
    display: none;
  }

  .screen-tv {
    position: relative;
    width: 100%;
    right: auto;
    top: 0;
    transform: none;
    animation: none;
  }

  .screen-phone {
    display: none;
  }

  .section {
    padding-top: 4.4rem;
  }

  .section-heading h2,
  .final-cta h2,
  .policy-hero h1 {
    font-size: 2.35rem;
  }

  .beta-card {
    padding: 2rem 1.4rem;
  }

  .beta-card h2 {
    font-size: 1.85rem;
  }

  .final-cta,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar-cta {
    padding: 0.62rem 0.75rem;
  }

  .topbar-cta span {
    max-width: 5.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-logo {
    width: 10rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .button {
    min-height: 4.1rem;
  }

  .route-card {
    min-height: 15rem;
  }

  .policy-article {
    padding: 1.25rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
