/* Rover page — light “into the light” theme (extends academy-page) */

.rover-page {
  --rover-night: #0f1f3d;
  --rover-day: #6fa8d6;
  --rover-cloud: #f4f6fa;
  --rover-paper: #faf7f0;
  --rover-ink: #1a1a1a;
  --rover-line: rgba(111, 168, 214, 0.28);
  --rover-glow: rgba(111, 168, 214, 0.22);
  overflow-x: hidden;
  max-width: 100%;
}

html:has(.rover-page),
body.rover-page {
  overflow-x: hidden;
  max-width: 100%;
}

.rover-page #main,
.rover-page .academy-atmosphere,
.rover-page .academy-section,
.rover-page .container {
  max-width: 100%;
}

.rover-page .eyebrow {
  color: var(--rover-day);
}

.rover-page .h2 {
  color: var(--rover-night);
}

.rover-page .lead {
  color: rgba(26, 26, 26, 0.72);
}

.rover-page .section-head--full .lead {
  max-width: none;
  width: 100%;
}

/* Hero */
.rover-hero {
  min-height: auto;
  display: grid;
  align-items: start;
  padding-top: clamp(64px, 7vh, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.rover-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.rover-hero__title {
  margin: 0 0 16px;
  font-family: "League Spartan", Inter, system-ui, sans-serif;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--rover-night);
  text-transform: uppercase;
}

.rover-hero__subtitle {
  margin: 0;
  max-width: 42ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.74);
}

.rover-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

/* Cosmic compass HUD */
.rover-compass {
  position: relative;
  aspect-ratio: 1;
  max-width: min(520px, 100%);
  width: 100%;
  margin-inline: auto;
  border-radius: 50%;
  isolation: isolate;
}

.rover-compass__glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 168, 214, 0.28), transparent 68%);
  opacity: 0.85;
  pointer-events: none;
}

.rover-compass__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.rover-compass__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(111, 168, 214, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  will-change: transform;
}

.rover-compass__ring--outer {
  width: 100%;
  height: 100%;
  animation: rover-orbit 48s linear infinite;
}

.rover-compass__ring--mid {
  width: 72%;
  height: 72%;
  border-style: dashed;
  border-color: rgba(15, 31, 61, 0.22);
  animation: rover-orbit 32s linear infinite reverse;
}

.rover-compass__ring--inner {
  width: 44%;
  height: 44%;
  background: radial-gradient(circle, rgba(244, 246, 250, 0.92), rgba(255, 255, 255, 0.55));
  border-color: rgba(111, 168, 214, 0.45);
  animation: rover-orbit 22s linear infinite;
}

.rover-compass__core {
  position: relative;
  z-index: 2;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rover-day), #a8d4f0);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.65),
    0 0 40px rgba(111, 168, 214, 0.45);
}

.rover-compass__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rover-day);
  box-shadow: 0 0 18px rgba(111, 168, 214, 0.65);
  will-change: transform;
}

.rover-compass__node::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(111, 168, 214, 0.35);
  animation: rover-pulse 3s ease-in-out infinite;
}

.rover-compass__node--a {
  top: 8%;
  left: 50%;
  margin-left: -5px;
}

.rover-compass__node--b {
  bottom: 18%;
  left: 12%;
}

.rover-compass__node--c {
  bottom: 22%;
  right: 10%;
}

.rover-compass__node--b::after {
  animation-delay: -1s;
}

.rover-compass__node--c::after {
  animation-delay: -2s;
}

.rover-compass__card {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(15, 31, 61, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 31, 61, 0.82);
  will-change: transform;
}

.rover-compass__card--reflection {
  top: 14%;
  right: -4%;
}

.rover-compass__card--guidance {
  bottom: 28%;
  left: -8%;
}

.rover-compass__card--artifacts {
  bottom: 6%;
  right: 8%;
}

@keyframes rover-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rover-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.45;
  }
}

/* IDE comparison — dual sharp terminal windows */
.rover-compare {
  margin-top: 32px;
}

.rover-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.rover-terminal {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(15, 31, 61, 0.1);
}

/* Left — generic chatbot: muted frame, crisp readable content */
.rover-terminal--generic {
  border: 1px solid rgba(15, 31, 61, 0.14);
  background: #eceef2;
}

.rover-terminal--generic .rover-terminal__chrome {
  background: #dfe3ea;
  border-bottom: 1px solid rgba(15, 31, 61, 0.1);
  color: rgba(15, 31, 61, 0.62);
}

.rover-terminal--generic .rover-terminal__dots span {
  background: rgba(15, 31, 61, 0.22);
}

.rover-terminal--generic .rover-terminal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f6f7f9;
  color: rgba(15, 31, 61, 0.88);
}

/* Right — Rover: dark navy, active glow */
.rover-terminal--rover {
  border: 1px solid rgba(111, 168, 214, 0.55);
  background: linear-gradient(180deg, #0f1f3d 0%, #132a4a 100%);
  box-shadow:
    0 0 0 1px rgba(111, 168, 214, 0.18) inset,
    0 0 32px rgba(111, 168, 214, 0.22),
    0 24px 64px rgba(15, 31, 61, 0.2);
}

.rover-terminal--rover .rover-terminal__chrome {
  background: rgba(8, 18, 36, 0.72);
  border-bottom: 1px solid rgba(111, 168, 214, 0.28);
  color: rgba(168, 212, 240, 0.92);
}

.rover-terminal--rover .rover-terminal__dots span {
  background: rgba(111, 168, 214, 0.45);
}

.rover-terminal--rover .rover-terminal__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f1f3d 0%, #162a4a 100%);
  color: rgba(232, 248, 255, 0.94);
}

.rover-terminal__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rover-terminal__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.rover-terminal__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.rover-terminal__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rover-terminal__body {
  padding: 18px 16px 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12.5px;
  line-height: 1.62;
}

.rover-terminal__verdict {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 10px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.rover-terminal__verdict--not {
  border: 1px solid rgba(15, 31, 61, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(15, 31, 61, 0.78);
}

.rover-terminal__verdict--yes {
  border: 1px solid rgba(111, 168, 214, 0.35);
  background: rgba(111, 168, 214, 0.12);
  color: rgba(200, 232, 255, 0.96);
}

.rover-terminal__chat {
  flex: 1;
  display: grid;
  gap: 12px;
  align-content: start;
}

.rover-terminal__msg {
  margin: 0;
}

.rover-terminal__speaker {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rover-terminal--generic .rover-terminal__msg--learner .rover-terminal__speaker {
  color: rgba(15, 31, 61, 0.72);
}

.rover-terminal--generic .rover-terminal__msg--bot .rover-terminal__speaker {
  color: rgba(90, 108, 132, 0.95);
}

.rover-terminal--rover .rover-terminal__msg--learner .rover-terminal__speaker {
  color: rgba(168, 212, 240, 0.95);
}

.rover-terminal--rover .rover-terminal__msg--rover .rover-terminal__speaker {
  color: rgba(175, 245, 214, 0.92);
}

.rover-terminal__footnote {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 31, 61, 0.1);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(15, 31, 61, 0.68);
}

.rover-terminal--rover .rover-terminal__footnote {
  border-top-color: rgba(111, 168, 214, 0.22);
  color: rgba(200, 224, 244, 0.78);
}

.rover-chat__line {
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

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

/* Institutional gaps */
.rover-gaps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.rover-gap-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--rover-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    rgba(250, 247, 240, 0.7);
  backdrop-filter: blur(16px);
  padding: 24px 22px;
  min-height: 200px;
  overflow: hidden;
  cursor: default;
  transition:
    transform 320ms cubic-bezier(0.18, 0.85, 0.22, 1),
    box-shadow 320ms ease,
    border-color 320ms ease,
    background 320ms ease;
  will-change: transform;
}

.rover-gap-card:hover,
.rover-gap-card:focus-within {
  transform: scale(1.04);
  border-color: rgba(111, 168, 214, 0.55);
  box-shadow: 0 28px 70px rgba(111, 168, 214, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 250, 0.78)),
    rgba(255, 255, 255, 0.85);
}

.rover-gap-card__index {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rover-day);
}

.rover-gap-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--rover-night);
}

.rover-gap-card__summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
  transition: opacity 280ms ease, transform 280ms ease;
}

.rover-gap-card__detail {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.68);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 320ms ease,
    max-height 400ms ease,
    transform 320ms ease;
}

.rover-gap-card:hover .rover-gap-card__detail,
.rover-gap-card:focus-within .rover-gap-card__detail {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

/* Capability tabs */
.rover-tabs {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

.rover-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rover-tabs__btn {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.45);
  text-align: left;
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.rover-tabs__btn:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--rover-line);
}

.rover-tabs__btn.is-active {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(111, 168, 214, 0.52);
  box-shadow: 0 16px 40px rgba(111, 168, 214, 0.14);
  transform: translateX(4px);
}

.rover-tabs__num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rover-day);
}

.rover-tabs__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--rover-night);
  line-height: 1.35;
}

.rover-tabs__viewer {
  height: auto;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--rover-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(250, 247, 240, 0.75);
  box-shadow: 0 24px 70px rgba(15, 31, 61, 0.08);
}

.rover-tabs__panel {
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.rover-tabs__panel[hidden] {
  display: none;
}

.rover-tabs__panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.rover-tabs__panel h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--rover-night);
}

.rover-tabs__panel p {
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.74);
}

/* Use cases + tracker */
.rover-usecases {
  margin-top: 36px;
}

.rover-usecases__list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 56px);
}

.rover-usecases__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rover-usecases__node {
  position: relative;
  flex: 0 0 48px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rover-usecases__node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(111, 168, 214, 0.22);
  z-index: 0;
}

.rover-usecases__row:not(:first-child) .rover-usecases__node::before {
  top: calc(-0.5 * clamp(32px, 6vw, 56px));
}

.rover-usecases__row:not(:last-child) .rover-usecases__node::before {
  bottom: calc(-0.5 * clamp(32px, 6vw, 56px));
}

.rover-usecases__row:first-child .rover-usecases__node::before {
  top: 50%;
}

.rover-usecases__row:last-child .rover-usecases__node::before {
  bottom: 50%;
}

.rover-usecases__row.is-past .rover-usecases__node::before,
.rover-usecases__row.is-active .rover-usecases__node::before {
  background: linear-gradient(180deg, var(--rover-day), rgba(111, 168, 214, 0.45));
}

.rover-usecases__dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(111, 168, 214, 0.35);
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.rover-usecases__row.is-active .rover-usecases__dot {
  transform: scale(1.35);
  border-color: var(--rover-day);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(111, 168, 214, 0.2);
}

.rover-usecase {
  flex: 1;
  min-width: 0;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 22px;
  border: 1px solid var(--rover-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
    rgba(250, 247, 240, 0.65);
  backdrop-filter: blur(14px);
  opacity: 0.62;
  transform: scale(0.98);
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.rover-usecase.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(111, 168, 214, 0.48);
  box-shadow: 0 22px 60px rgba(111, 168, 214, 0.14);
}

.rover-usecase__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rover-day);
}

.rover-usecase h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--rover-night);
}

.rover-usecase p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.74);
}

/* Deployment pipeline */
.rover-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rover-line);
}

.rover-pipeline__step {
  position: relative;
  padding: 20px 18px;
  border-radius: 18px;
  border: 1px solid var(--rover-line);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.rover-pipeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 14px;
  height: 2px;
  background: rgba(111, 168, 214, 0.45);
  transform: translateY(-50%);
}

.rover-pipeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(111, 168, 214, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rover-night);
}

.rover-pipeline__step h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--rover-night);
}

.rover-pipeline__step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.68);
}

/* CTA */
.rover-cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  border: 1px solid rgba(111, 168, 214, 0.28);
  background: linear-gradient(145deg, var(--rover-night) 0%, #1a3358 55%, #234a72 100%);
  box-shadow: 0 32px 90px rgba(15, 31, 61, 0.22);
}

.rover-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(111, 168, 214, 0.35), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(244, 246, 250, 0.12), transparent 50%);
  pointer-events: none;
}

.rover-cta-card .eyebrow {
  color: rgba(168, 212, 240, 0.95);
}

.rover-cta-card .h2 {
  max-width: 16ch;
  margin: 10px auto 0;
  color: var(--rover-cloud);
  font-size: clamp(28px, 4.5vw, 44px);
}

.rover-cta-card .lead {
  max-width: 56ch;
  margin: 16px auto 0;
  color: rgba(244, 246, 250, 0.78);
}

.rover-cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.rover-cta-card__actions .btn--ghost {
  color: var(--rover-cloud);
  border-color: rgba(244, 246, 250, 0.28);
  background: rgba(244, 246, 250, 0.08);
}

.rover-cta-card__actions .btn--ghost:hover {
  border-color: rgba(111, 168, 214, 0.52);
  background: rgba(244, 246, 250, 0.14);
}

/* Responsive */
@media (min-width: 900px) {
  .rover-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .rover-compass {
    margin-inline: 0 0;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .rover-hero {
    overflow-x: hidden;
  }

  .rover-hero__grid {
    max-width: 100%;
    overflow-x: hidden;
  }

  .rover-compass {
    max-width: 90vw;
    margin: 0 auto;
    overflow: hidden;
  }

  .rover-compass__glow {
    inset: -4%;
  }

  .rover-compass__stage {
    transform: scale(0.85);
    transform-origin: center center;
  }

  .rover-compass__card {
    font-size: 10px;
    padding: 8px 10px;
  }

  .rover-compass__card--reflection {
    top: 16%;
    right: 4%;
  }

  .rover-compass__card--guidance {
    bottom: 30%;
    left: 4%;
  }

  .rover-compass__card--artifacts {
    bottom: 8%;
    right: 10%;
  }

  .rover-compare,
  .rover-compare__grid,
  .rover-terminal,
  .rover-tabs,
  .rover-tabs__viewer,
  .rover-usecases,
  .rover-pipeline {
    max-width: 100%;
  }

  .rover-terminal__chrome {
    overflow: hidden;
  }
}

@media (max-width: 899px) {
  .rover-compare__grid {
    grid-template-columns: 1fr;
  }

  .rover-terminal {
    min-height: 0;
  }

  .rover-gaps {
    grid-template-columns: 1fr;
  }

  .rover-tabs {
    grid-template-columns: 1fr;
  }

  .rover-tabs__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .rover-tabs__btn {
    flex: 1 1 calc(50% - 4px);
  }

  .rover-tabs__btn.is-active {
    transform: translateY(-2px);
  }

  .rover-usecases__node {
    display: none;
  }

  .rover-usecases__row {
    gap: 0;
  }

  .rover-pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .rover-pipeline__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .rover-tabs__btn {
    flex: 1 1 100%;
  }

  .rover-pipeline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rover-compass__ring,
  .rover-compass__node::after {
    animation: none;
  }

  .rover-gap-card,
  .rover-tabs__panel,
  .rover-usecase,
  .rover-usecases__dot {
    transition: none;
  }

  .rover-chat__line {
    opacity: 1;
    transform: none;
  }
}
