:root {
  color-scheme: dark;
  --bg: #020616;
  --bg-deep: #02040d;
  --surface: rgba(12, 18, 30, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(210, 230, 255, 0.13);
  --text: #f8fbff;
  --muted: #b7c3d4;
  --soft: #8291a8;
  --cyan: #12dff0;
  --green: #7ee04f;
  --orange: #ff981f;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), transparent 34rem),
    linear-gradient(315deg, rgba(56, 189, 248, 0.1), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 12%, transparent 90%);
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(18, 223, 240, 0.78);
  outline-offset: 4px;
}

.landing-root {
  min-height: 100dvh;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span:first-child {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(18, 223, 240, 0.42);
}

.brand .dot {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(255, 152, 31, 0.45);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.top-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.top-link:hover,
.top-link.active {
  color: var(--cyan);
  background: rgba(18, 223, 240, 0.08);
}

.icon-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.landing-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: inline-block;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100dvh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
  padding: 38px 0 78px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.kicker {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(18, 223, 240, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(18, 223, 240, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 13px currentColor;
}

.orange-badge {
  border-color: rgba(255, 152, 31, 0.3);
  color: var(--orange);
  background: rgba(255, 152, 31, 0.08);
}

.hero h1 {
  max-width: 11ch;
  font-size: 4.5rem;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.dynamic-caption {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 800;
}

.dynamic-caption .word {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(18, 223, 240, 0.35);
  opacity: 1;
  transition: opacity 180ms ease;
}

.dynamic-caption .word.is-changing {
  opacity: 0;
}

.hero-copy > p:not(.kicker) {
  max-width: 57ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: #041016;
  background: var(--cyan);
  box-shadow: 0 18px 42px rgba(18, 223, 240, 0.22);
  font-size: 0.95rem;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  color: var(--cyan);
  background: rgba(18, 223, 240, 0.08);
}

.cta.secondary {
  color: var(--orange);
  background: rgba(255, 152, 31, 0.08);
  border-color: rgba(255, 152, 31, 0.75);
  box-shadow: none;
}

.cta.secondary:hover {
  color: #120801;
  background: var(--orange);
}

.micro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--soft);
  font-size: 0.88rem;
}

.micro-links a {
  color: var(--muted);
  border-bottom: 1px solid rgba(18, 223, 240, 0.34);
  transition: color 160ms ease, border-color 160ms ease;
}

.micro-links a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.hero-display {
  display: grid;
  place-items: center;
  position: relative;
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 18;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(18, 223, 240, 0.08), rgba(255, 152, 31, 0.03));
  box-shadow:
    0 0 25px rgba(18, 223, 240, 0.35),
    inset 0 2px 10px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.app-screen-sim {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  background: #090b11;
  overflow: hidden;
  position: relative;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--soft);
  font-size: 0.75rem;
}

.sim-header > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sim-header .landing-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.sim-map {
  flex-grow: 1;
  margin: 15px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at center, #161b26 20%, #0d111a 80%);
  position: relative;
  overflow: hidden;
}

.sim-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2.5s infinite ease-out;
}

.sim-icon-moto {
  position: absolute;
  top: 45%;
  left: 48%;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(18, 223, 240, 0.58));
}

.sim-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}

.sim-card-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
  font-weight: 700;
}

.sim-card-state {
  color: var(--cyan);
}

.sim-card p {
  color: var(--soft);
  font-size: 0.7rem;
}

.content-band {
  padding: 84px 0;
}

.section-head {
  max-width: 730px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.section-head.centered {
  align-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-title {
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head > p:not(.kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.about-split,
.mobility-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.engine-section,
.mobility-highlight {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 223, 240, 0.09), rgba(126, 224, 79, 0.06)),
    var(--surface);
  box-shadow: var(--shadow);
}

.engine-status,
.mobility-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.engine-status span,
.mobility-status span {
  display: block;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engine-status strong,
.mobility-status strong {
  display: block;
  margin: 8px 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.engine-status p,
.mobility-status p {
  color: var(--muted);
  line-height: 1.65;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  background: #00ff88;
  box-shadow: 0 0 16px #00ff88;
}

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

.tech-box,
.mobility-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.tech-box,
.mobility-card {
  padding: 22px;
}

.tech-box i,
.mobility-card-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 2rem;
}

.mobility-card.orange-theme .mobility-card-icon {
  color: var(--orange);
}

.tech-box h3,
.mobility-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.tech-box p,
.mobility-card p {
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.trip-steps {
  margin-top: 74px;
  scroll-margin-top: 90px;
}

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

.trip-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.trip-step-number {
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}

.trip-step-icon {
  position: relative;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 223, 240, 0.25);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(18, 223, 240, 0.08);
  padding: 12px;
}

.trip-step:nth-child(even) .trip-step-icon {
  border-color: rgba(255, 152, 31, 0.28);
  color: var(--orange);
  background: rgba(255, 152, 31, 0.08);
}

.trip-step h3 {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.trip-step p {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 223, 240, 0.38);
  background: rgba(18, 223, 240, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(18, 223, 240, 0.25);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(18, 223, 240, 0.08);
  font-size: 2rem;
}

.service-card.orange-theme .icon-wrapper {
  border-color: rgba(255, 152, 31, 0.28);
  color: var(--orange);
  background: rgba(255, 152, 31, 0.08);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.download-panel {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(255, 152, 31, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 152, 31, 0.1), rgba(18, 223, 240, 0.05)),
    var(--surface);
}

.download-copy {
  max-width: 620px;
}

.download-copy h2 {
  margin-top: 14px;
  font-size: 1.45rem;
}

.download-copy p:not(.kicker) {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

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

.site-footer {
  margin-top: 70px;
  padding: 58px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(4, 7, 13, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}

.footer-desc p {
  max-width: 34ch;
  margin-top: 14px;
  color: var(--soft);
  line-height: 1.65;
}

.footer-col h2 {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-size: 0.85rem;
}

.noscript-shell {
  min-height: 100dvh;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.noscript-shell a {
  color: var(--cyan);
}

@keyframes pulse {
  0% {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  100% {
    width: 180px;
    height: 180px;
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero,
  .about-split,
  .mobility-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    text-align: center;
    justify-items: center;
  }

  .hero-copy,
  .section-head.centered {
    align-items: center;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 3.45rem;
  }

  .btn-group,
  .micro-links {
    justify-content: center;
  }

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

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

  .service-card {
    min-height: auto;
  }

  .download-panel {
    flex-direction: column;
    text-align: center;
  }

  .download-copy {
    display: grid;
    justify-items: center;
  }

  .download-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, 680px);
  }

  .topbar {
    min-height: 76px;
  }

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

  .top-actions {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 8px;
    background: rgba(9, 16, 29, 0.96);
  }

  .top-actions.is-open {
    display: flex;
  }

  .top-link {
    width: 100%;
    min-height: 46px;
  }

  .hero {
    padding-bottom: 52px;
  }

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

  .dynamic-caption {
    flex-direction: column;
    gap: 2px;
    font-size: 1.28rem;
  }

  .mockup-container {
    max-width: 300px;
    border-radius: 34px;
  }

  .content-band {
    padding: 58px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .tech-badges,
  .mobility-grid,
  .trip-steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .engine-section,
  .mobility-highlight,
  .tech-box,
  .mobility-card,
  .trip-step,
  .service-card,
  .download-panel {
    padding: 22px;
  }

  .cta {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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