/* =============================================================================
   RESOLABS.IO — TELEPORT LANDING (static mirror)
   =============================================================================
   Plain-CSS conversion of reso-teleport-ui/src/pages/Landing (React + SCSS).
   Root scope renamed .landing_view → .teleportLanding and every landing_*
   class/keyframe prefix-renamed to tp_* to avoid collisions with the Prompto
   landing converted in parallel.

   Design tokens (reso-ui palette backbone + landing-only electric accent):
     Deepest bg     #100f1e
     Dark bg        #1a1830
     Mid navy       #2d2b50
     Muted text     #9395c4
     Coral accent   #f07050 → #cc3535
     Electric cyan  #4ec9ce — the "network live" accent
   ========================================================================== */

.teleportLanding {
  /* landing-only custom properties */
  --landing-bg-deepest: #100f1e;
  --landing-bg-dark: #1a1830;
  --landing-navy: #2d2b50;
  --landing-ink: #ffffff;
  --landing-muted: #9395c4;
  --landing-coral: #f07050;
  --landing-coral-dark: #cc3535;
  --landing-cyan: #4ec9ce;
  /* standard spacing below every section eyebrow (single source of truth) */
  --landing-eyebrow-gap: clamp(16px, 2.2vw, 24px);
  --landing-line: rgba(147, 149, 196, 0.16);
  --landing-glass: rgba(45, 43, 80, 0.35);
  --landing-glass-border: rgba(147, 149, 196, 0.22);

  width: 100%;
  min-height: 100%;
  background-color: var(--landing-bg-deepest);
  color: var(--landing-ink);
}

/* ── Shared section frame ───────────────────────────────────── */
.teleportLanding .tp_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.teleportLanding .tp_section_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 24px;
}

/* ── Shared typography ──────────────────────────────────────── */
.teleportLanding .tp_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--landing-eyebrow-gap);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--landing-coral);
}

.teleportLanding .tp_eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--landing-coral));
}

.teleportLanding .tp_heading {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--landing-ink);
}

.teleportLanding .tp_body {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--landing-muted);
}

/* ── CTAs (shared pill buttons) ─────────────────────────────── */
.teleportLanding .tp_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.teleportLanding .tp_cta--primary {
  color: #ffffff;
  background-image: linear-gradient(
    120deg,
    var(--landing-coral) 0%,
    var(--landing-coral-dark) 100%
  );
  box-shadow:
    0 12px 32px -12px rgba(240, 112, 80, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.teleportLanding .tp_cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px -12px rgba(240, 112, 80, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.teleportLanding .tp_cta--ghost {
  color: var(--landing-ink);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(147, 149, 196, 0.35);
  backdrop-filter: blur(6px);
}

.teleportLanding .tp_cta--ghost:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(147, 149, 196, 0.6);
}

/* ── Live pulsing dot (momentum microcopy, founding era) ───── */
.teleportLanding .tp_live_dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--landing-cyan);
  flex-shrink: 0;
}

.teleportLanding .tp_live_dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--landing-cyan);
  animation: tp_pulse_ring 2.2s ease-out infinite;
}

/* ── Scroll-reveal utilities ───────────────────────────────── */
.teleportLanding .tp_reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.teleportLanding .tp_reveal_stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 90ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 270ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 360ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 450ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 540ms;
}
.teleportLanding .tp_reveal_stagger.is-visible > *:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 630ms;
}

/* ── Dot-grid "network map" texture (shared by hero + founding) */
.teleportLanding .tp_dot_grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(147, 149, 196, 0.22) 1px,
    transparent 1.4px
  );
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 62% at 50% 42%,
    black 30%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 70% 62% at 50% 42%,
    black 30%,
    transparent 78%
  );
  pointer-events: none;
}

/* ── Subtle film grain over hero / banner surfaces ─────────── */
.teleportLanding .tp_grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Keyframes (declared at root — used across sections) ─────── */
@keyframes tp_pulse_ring {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes tp_aurora_drift_a {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1);
  }
  50% {
    transform: translate3d(8%, 6%, 0) scale(1.15);
  }
  100% {
    transform: translate3d(-6%, -4%, 0) scale(1);
  }
}

@keyframes tp_aurora_drift_b {
  0% {
    transform: translate3d(6%, 8%, 0) scale(1.1);
  }
  50% {
    transform: translate3d(-8%, -6%, 0) scale(0.95);
  }
  100% {
    transform: translate3d(6%, 8%, 0) scale(1.1);
  }
}

@keyframes tp_route_dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes tp_route_travel {
  0% {
    stroke-dashoffset: 1200;
  }
  100% {
    stroke-dashoffset: -1200;
  }
}

@keyframes tp_float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes tp_marquee_scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =============================================================================
   HERO
   ========================================================================== */

.tp_hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  background-color: #100f1e;
}

/* ── Background layers ──────────────────────────────────────── */
.tp_hero_bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 110%,
      rgba(45, 43, 80, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, #100f1e 0%, #1a1830 55%, #100f1e 100%);
}

.tp_hero_aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: blur(70px);
  pointer-events: none;
}

.tp_hero_aurora_blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform;
}

.tp_hero_aurora_blob--coral {
  width: 44vw;
  height: 44vw;
  min-width: 380px;
  min-height: 380px;
  left: -10%;
  top: 8%;
  background: radial-gradient(
    circle,
    rgba(240, 112, 80, 0.5) 0%,
    transparent 65%
  );
  animation: tp_aurora_drift_a 16s ease-in-out infinite;
}

.tp_hero_aurora_blob--cyan {
  width: 38vw;
  height: 38vw;
  min-width: 320px;
  min-height: 320px;
  right: -8%;
  top: 30%;
  background: radial-gradient(
    circle,
    rgba(78, 201, 206, 0.35) 0%,
    transparent 65%
  );
  animation: tp_aurora_drift_b 20s ease-in-out infinite;
}

.tp_hero_aurora_blob--navy {
  width: 50vw;
  height: 50vw;
  min-width: 420px;
  min-height: 420px;
  left: 25%;
  bottom: -30%;
  background: radial-gradient(
    circle,
    rgba(74, 72, 112, 0.6) 0%,
    transparent 65%
  );
  animation: tp_aurora_drift_a 24s ease-in-out infinite reverse;
}

/* ── Animated route line ────────────────────────────────────── */
.tp_hero_route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tp_hero_route_path {
  stroke: rgba(147, 149, 196, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
}

.tp_hero_route_glow {
  stroke: #4ec9ce;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 90 1110;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 6px rgba(78, 201, 206, 0.9));
  animation: tp_route_travel 9s linear infinite;
}

.tp_hero_route_node {
  fill: #f07050;
  filter: drop-shadow(0 0 5px rgba(240, 112, 80, 0.9));
}

/* ── Content ────────────────────────────────────────────────── */
.tp_hero_inner {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.tp_hero_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.tp_hero_title {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.tp_hero_title_accent {
  background-image: linear-gradient(100deg, #f07050 20%, #f8a090 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tp_hero_sub {
  max-width: 620px;
}

.tp_hero_ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.tp_hero_momentum {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #9395c4;
}

/* ── Tilted glass driver card ───────────────────────────────── */
.tp_hero_card_stage {
  margin-top: clamp(24px, 4vw, 48px);
  perspective: 1200px;
}

.tp_hero_card {
  width: min(360px, 86vw);
  padding: 20px;
  border-radius: 18px;
  text-align: left;
  background: linear-gradient(
    160deg,
    rgba(45, 43, 80, 0.55) 0%,
    rgba(26, 24, 48, 0.65) 100%
  );
  border: 1px solid rgba(147, 149, 196, 0.28);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: rotateX(14deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  animation: tp_float 7s ease-in-out infinite;
  transition: transform 400ms ease;
}

.tp_hero_card:hover {
  transform: rotateX(6deg) rotateZ(-1deg) scale(1.02);
}

.tp_hero_card_top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(147, 149, 196, 0.18);
}

.tp_hero_card_avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background-image: linear-gradient(135deg, #f07050, #cc3535);
  flex-shrink: 0;
}

.tp_hero_card_who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.tp_hero_card_name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.tp_hero_card_vehicle {
  font-size: 12px;
  color: #9395c4;
}

.tp_hero_card_rating {
  font-size: 14px;
  font-weight: 700;
  color: #ffd699;
  white-space: nowrap;
}

.tp_hero_card_rating_count {
  margin-left: 4px;
  font-size: 11px;
  font-weight: 400;
  color: #9395c4;
}

.tp_hero_card_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.tp_hero_card_label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9395c4;
}

.tp_hero_card_fare {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.tp_hero_card_keeps {
  font-size: 13px;
  font-weight: 600;
  color: #4ec9ce;
}

.tp_hero_card_cta {
  margin-top: 14px;
  padding: 10px 0;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(240, 112, 80, 0.16);
  border: 1px solid rgba(240, 112, 80, 0.45);
}

/* ── Hero mobile ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .tp_hero {
    min-height: unset;
  }

  .tp_hero_title_break {
    display: block;
  }

  .tp_hero_ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }

  .tp_hero_card {
    transform: none;
    animation: none;
  }
}

/* =============================================================================
   PROBLEM — "A RM20 ride shouldn't cost the driver RM4."
   ========================================================================== */

.tp_problem {
  background:
    radial-gradient(
      ellipse 70% 60% at 85% 0%,
      rgba(240, 112, 80, 0.07),
      transparent 60%
    ),
    #1a1830;
  border-top: 1px solid rgba(147, 149, 196, 0.1);
}

.tp_problem_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.tp_problem_heading {
  max-width: 18ch;
}

/* ── Fare split comparison ──────────────────────────────────── */
.tp_problem_compare {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: rgba(16, 15, 30, 0.6);
  border: 1px solid rgba(147, 149, 196, 0.16);
  backdrop-filter: blur(10px);
}

.tp_problem_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp_problem_row_head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tp_problem_row_title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9395c4;
}

.tp_problem_row_title--teleport {
  color: #4ec9ce;
}

.tp_problem_row_amount {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: #c7c8e6;
}

.tp_problem_row_amount--teleport {
  color: #ffffff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Bars — the same RM20 fare */
.tp_problem_bar {
  display: flex;
  width: 100%;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(45, 43, 80, 0.5);
}

.tp_problem_bar_keep {
  height: 100%;
  border-radius: 10px 0 0 10px;
}

.tp_problem_bar_keep--cut {
  width: 75%;
  background: linear-gradient(
    to right,
    rgba(147, 149, 196, 0.45),
    rgba(147, 149, 196, 0.3)
  );
}

/* The chunk the commission platform takes */
.tp_problem_bar_cut {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(204, 53, 53, 0.55) 0 6px,
    rgba(204, 53, 53, 0.25) 6px 12px
  );
  border-left: 1px dashed rgba(240, 112, 80, 0.8);
}

.tp_problem_bar_cut_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f8a090;
  white-space: nowrap;
}

.tp_problem_bar_keep--full {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, #f07050, #cc3535);
  box-shadow: 0 6px 24px -8px rgba(240, 112, 80, 0.8);
}

/* ── Monthly-scale comparison (same visual language) ───────── */
.tp_problem_compare--monthly {
  margin-top: 6px;
}

.tp_problem_monthly_lead {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* Teleport's monthly keep — near-full bar, with a small labeled RM99 notch */
.tp_problem_bar_keep--month {
  flex: 1 1 auto; /* fills whatever the RM99 notch doesn't take */
  border-radius: 10px 0 0 10px;
  background: linear-gradient(to right, #f07050, #cc3535);
  box-shadow: 0 6px 24px -8px rgba(240, 112, 80, 0.8);
}

.tp_problem_bar_notch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 5%; /* RM99 of RM2,000 ≈ 5% */
  height: 100%;
  min-width: 44px;
  background-color: rgba(78, 201, 206, 0.14);
  border-left: 1px dashed rgba(78, 201, 206, 0.8);
}

.tp_problem_bar_notch_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8edee1;
  white-space: nowrap;
}

.tp_problem_notch_caption {
  margin: 0;
  font-size: 13px;
  color: #8edee1;
}

.tp_problem_delta {
  margin: 4px 0 0;
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: -0.01em;
  color: #ffffff;
}

.tp_problem_delta strong {
  font-weight: 800;
  background-image: linear-gradient(100deg, #f07050 0%, #f8a090 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tp_problem_footnote {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #9395c4;
}

.tp_problem_support {
  max-width: 640px;
}

@media (max-width: 640px) {
  .tp_problem_bar_cut_label {
    display: none;
  }
}

/* =============================================================================
   MOVEMENT — "Take Back the Wheel"
   ========================================================================== */

.tp_movement {
  background:
    radial-gradient(
      ellipse 80% 55% at 50% 108%,
      rgba(240, 112, 80, 0.1),
      transparent 62%
    ),
    #0a0913;
  border-top: 1px solid rgba(147, 149, 196, 0.08);
  border-bottom: 1px solid rgba(147, 149, 196, 0.08);
}

/* Extra breathing room — this section is meant to feel cinematic. */
.tp_movement_inner {
  padding-top: clamp(96px, 13vw, 190px);
  padding-bottom: clamp(96px, 13vw, 190px);
}

/* ── Steering-wheel motif (SVG outline, barely-there slow rotation) ── */
.tp_movement_wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(420px, 62vw, 880px);
  height: auto;
  transform: translate(-50%, -50%);
  stroke: rgba(240, 112, 80, 0.09);
  stroke-linecap: round;
  pointer-events: none;
}

.tp_movement_wheel circle,
.tp_movement_wheel line {
  transform-origin: 200px 200px;
  animation: tp_wheel_turn 90s linear infinite;
}

.tp_movement_glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(45, 43, 80, 0.5) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

/* ── Stage ──────────────────────────────────────────────────── */
.tp_movement_stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* mirror the base ::before rule on the right for a centered lockup */
.tp_movement_eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--landing-coral));
}

/* ── The anger — quiet, spaced, ghostly ─────────────────────── */
.tp_movement_anger {
  margin: 0 0 clamp(40px, 6vw, 72px);
  max-width: 34ch;
  font-size: clamp(20px, 2.9vw, 30px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #c7c8e6;
}

.tp_movement_anger em {
  font-style: italic;
  color: var(--landing-muted);
}

/* ── The lead-in — flows straight into the rallying cry ─────── */
.tp_movement_turn {
  margin: 0 0 clamp(10px, 1.4vw, 16px);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--landing-muted);
}

/* ── The rallying cry — hero-scale ──────────────────────────── */
.tp_movement_headline {
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(44px, 8.4vw, 104px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--landing-ink);
  text-wrap: balance;
}

.tp_movement_headline_accent {
  background-image: linear-gradient(
    100deg,
    var(--landing-coral) 0%,
    var(--landing-coral-dark) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* scoped to out-rank .teleportLanding .tp_body's margin: 0 */
.tp_movement .tp_movement_empower {
  max-width: 620px;
  margin-bottom: clamp(48px, 6vw, 72px);
  color: #c7c8e6;
}

/* ── Mechanics strip ────────────────────────────────────────── */
.tp_movement_mechanics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 920px;
  margin-bottom: clamp(44px, 6vw, 64px);
}

.tp_movement_mechanic {
  padding: 22px 24px;
  border-radius: 16px;
  text-align: left;
  background: rgba(26, 24, 48, 0.55);
  border: 1px solid rgba(147, 149, 196, 0.16);
  backdrop-filter: blur(8px);
}

.tp_movement_mechanic_title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--landing-ink);
}

.tp_movement_mechanic_body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-muted);
}

.tp_movement_badge {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #f8a090;
  background-color: rgba(240, 112, 80, 0.12);
  border: 1px solid rgba(240, 112, 80, 0.35);
}

/* ── CTA row ────────────────────────────────────────────────── */
.tp_movement_ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.tp_movement_hashtag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--landing-cyan);
}

.tp_movement_micro {
  margin: 0;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--landing-muted);
}

/* ── Cinematic long-stagger ─────────────────────────────────────
   Overrides the page-level 90ms stagger with slow, deliberate beats:
   the anger line lands alone, a pause, the turn, then the rallying
   cry — and only then the proof + CTA. */
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(1) {
  transition-delay: 0ms;
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(2) {
  transition-delay: 300ms; /* the anger line — lands alone */
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(3) {
  transition-delay: 1100ms; /* the lead-in — after a held beat */
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(4) {
  transition-delay: 1500ms; /* the rallying cry */
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(5) {
  transition-delay: 1950ms;
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(6) {
  transition-delay: 2250ms;
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(7) {
  transition-delay: 2450ms;
}
.teleportLanding .tp_movement .tp_reveal_stagger.is-visible.tp_movement_stage > *:nth-child(8) {
  transition-delay: 2600ms;
}

@keyframes tp_wheel_turn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .tp_movement_mechanics {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   PILLARS — Transparency · Ownership · Freedom
   ========================================================================== */

.tp_pillars {
  background-color: #100f1e;
  padding-top: clamp(48px, 6vw, 80px);
}

/* ── Oversized marquee ──────────────────────────────────────── */
.tp_pillars_marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}

.tp_pillars_marquee_track {
  display: flex;
  width: max-content;
  animation: tp_marquee_scroll 40s linear infinite;
}

.tp_pillars_marquee_half {
  display: flex;
  flex-shrink: 0;
}

.tp_pillars_marquee_word {
  display: inline-flex;
  align-items: center;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(147, 149, 196, 0.28);
}

.tp_pillars_marquee_sep {
  margin: 0 clamp(20px, 3vw, 44px);
  color: rgba(240, 112, 80, 0.5);
  -webkit-text-stroke: 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.tp_pillars_inner {
  padding-top: clamp(40px, 5vw, 72px);
}

.tp_pillars_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tp_pillars_card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 20px;
  background: linear-gradient(
    170deg,
    rgba(45, 43, 80, 0.4) 0%,
    rgba(26, 24, 48, 0.6) 100%
  );
  border: 1px solid rgba(147, 149, 196, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.tp_pillars_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}

.tp_pillars_card_glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  pointer-events: none;
}

.tp_pillars_card--coral:hover {
  border-color: rgba(240, 112, 80, 0.5);
}
.tp_pillars_card--coral .tp_pillars_card_glow {
  background: rgba(240, 112, 80, 0.4);
}
.tp_pillars_card--coral .tp_pillars_card_title {
  color: #f8a090;
}

.tp_pillars_card--cyan:hover {
  border-color: rgba(78, 201, 206, 0.5);
}
.tp_pillars_card--cyan .tp_pillars_card_glow {
  background: rgba(78, 201, 206, 0.32);
}
.tp_pillars_card--cyan .tp_pillars_card_title {
  color: #8edee1;
}

.tp_pillars_card--violet:hover {
  border-color: rgba(147, 149, 196, 0.6);
}
.tp_pillars_card--violet .tp_pillars_card_glow {
  background: rgba(147, 149, 196, 0.35);
}
.tp_pillars_card--violet .tp_pillars_card_title {
  color: #c7c8e6;
}

.tp_pillars_card_title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tp_pillars_card_tagline {
  margin: 0 0 20px;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.tp_pillars_card_bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp_pillars_card_bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #9395c4;
}

.tp_pillars_card_bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .tp_pillars_grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   HOW IT WORKS — Two sides. One honest network.
   ========================================================================== */

.tp_how {
  background:
    radial-gradient(
      ellipse 60% 50% at 10% 100%,
      rgba(78, 201, 206, 0.06),
      transparent 60%
    ),
    #1a1830;
  border-top: 1px solid rgba(147, 149, 196, 0.1);
}

.tp_how_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.tp_how_rails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.tp_how_rail {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 20px;
  background: rgba(16, 15, 30, 0.55);
  border: 1px solid rgba(147, 149, 196, 0.16);
}

.tp_how_rail_label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp_how_rail--cyan .tp_how_rail_label {
  color: #8edee1;
  background-color: rgba(78, 201, 206, 0.12);
  border: 1px solid rgba(78, 201, 206, 0.35);
}

.tp_how_rail--coral .tp_how_rail_label {
  color: #f8a090;
  background-color: rgba(240, 112, 80, 0.12);
  border: 1px solid rgba(240, 112, 80, 0.35);
}

/* Steps threaded by a dashed route line */
.tp_how_steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp_how_step {
  position: relative;
  display: flex;
  gap: 18px;
}

/* the route segment connecting to the next stop */
.tp_how_step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -24px;
  width: 0;
  border-left: 2px dashed rgba(147, 149, 196, 0.3);
}

.tp_how_step_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  z-index: 1;
}

.tp_how_rail--cyan .tp_how_step_num {
  background: linear-gradient(135deg, #4ec9ce, #2b9da2);
  box-shadow: 0 6px 18px -6px rgba(78, 201, 206, 0.7);
}

.tp_how_rail--coral .tp_how_step_num {
  background: linear-gradient(135deg, #f07050, #cc3535);
  box-shadow: 0 6px 18px -6px rgba(240, 112, 80, 0.7);
}

.tp_how_step_copy {
  padding-top: 4px;
}

.tp_how_step_title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.tp_how_step_body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #9395c4;
}

@media (max-width: 820px) {
  .tp_how_rails {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   SAFETY — Engineered for trust.
   ========================================================================== */

.tp_safety {
  background-color: #100f1e;
  border-top: 1px solid rgba(147, 149, 196, 0.1);
}

.tp_safety_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.tp_safety_copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.tp_safety_features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.tp_safety_feature {
  display: flex;
  gap: 12px;
}

.tp_safety_feature_tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #8edee1;
  background-color: rgba(78, 201, 206, 0.12);
  border: 1px solid rgba(78, 201, 206, 0.4);
  flex-shrink: 0;
}

.tp_safety_feature_title {
  margin: 2px 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
}

.tp_safety_feature_body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #9395c4;
}

/* ── Live trip-share mock card ──────────────────────────────── */
.tp_safety_share_stage {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}

.tp_safety_share {
  width: min(380px, 100%);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(45, 43, 80, 0.5) 0%,
    rgba(26, 24, 48, 0.7) 100%
  );
  border: 1px solid rgba(147, 149, 196, 0.24);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 400ms ease;
}

.tp_safety_share:hover {
  transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
}

.tp_safety_share_head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(147, 149, 196, 0.16);
}

.tp_safety_share_head_label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c7c8e6;
}

.tp_safety_share_map {
  position: relative;
  height: 200px;
  background:
    radial-gradient(
      ellipse 80% 80% at 70% 20%,
      rgba(45, 43, 80, 0.5),
      transparent 70%
    ),
    #14122a;
}

.tp_safety_share_map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tp_safety_share_gridlines path {
  stroke: rgba(147, 149, 196, 0.12);
  stroke-width: 1;
}

.tp_safety_share_route {
  stroke: rgba(147, 149, 196, 0.35);
  stroke-width: 2;
  stroke-dasharray: 4 6;
}

.tp_safety_share_route_progress {
  stroke: #4ec9ce;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 60 340;
  stroke-dashoffset: 400;
  filter: drop-shadow(0 0 5px rgba(78, 201, 206, 0.9));
  animation: tp_safety_route_run 5s linear infinite;
}

@keyframes tp_safety_route_run {
  to {
    stroke-dashoffset: -400;
  }
}

.tp_safety_share_origin {
  fill: #f07050;
  filter: drop-shadow(0 0 4px rgba(240, 112, 80, 0.9));
}

.tp_safety_share_dest {
  fill: #4ec9ce;
  filter: drop-shadow(0 0 4px rgba(78, 201, 206, 0.9));
}

.tp_safety_share_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.tp_safety_share_driver {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.tp_safety_share_eta {
  font-size: 13px;
  font-weight: 700;
  color: #8edee1;
}

@media (max-width: 900px) {
  .tp_safety_grid {
    grid-template-columns: 1fr;
  }

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

  .tp_safety_share {
    transform: none;
  }
}

/* =============================================================================
   FOUNDING ERA — Rides open city by city.
   ========================================================================== */

.tp_founding {
  background-color: #100f1e;
}

.tp_founding_banner {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
  border-radius: 28px;
  background: linear-gradient(160deg, #1a1830 0%, #14122a 60%, #100f1e 100%);
  border: 1px solid rgba(147, 149, 196, 0.2);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}

.tp_founding_glow {
  position: absolute;
  left: 50%;
  top: -40%;
  width: 70%;
  height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(240, 112, 80, 0.18) 0%,
    transparent 65%
  );
  filter: blur(30px);
  pointer-events: none;
}

/* Cities switching on */
.tp_founding_cities {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tp_founding_city {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4ec9ce;
  box-shadow: 0 0 8px rgba(78, 201, 206, 0.9);
}

.tp_founding_city::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(78, 201, 206, 0.8);
  animation: tp_pulse_ring 3s ease-out infinite;
  animation-delay: inherit;
}

.tp_founding_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.tp_founding_eyebrow::before {
  display: none;
}

.tp_founding_heading {
  max-width: 20ch;
}

.tp_founding_body {
  max-width: 560px;
}

.tp_founding_ctas {
  margin-top: 8px;
}

.tp_founding_micro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: #9395c4;
}

/* =============================================================================
   FOOTER
   ========================================================================== */

.tp_footer {
  background-color: #0b0a16;
  border-top: 1px solid rgba(147, 149, 196, 0.12);
}

.tp_footer_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 24px;
}

.tp_footer_brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp_footer_wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tp_footer_wordmark_dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #f07050, #cc3535);
  transform: translateY(-1px);
}

.tp_footer_pillars {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c7c8e6;
}

.tp_footer_promise {
  margin: 0;
  font-size: 13.5px;
  color: #9395c4;
}

.tp_footer_links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tp_footer_link {
  font-size: 14px;
  font-weight: 500;
  color: #9395c4;
  text-decoration: none;
  transition: color 150ms ease;
}

.tp_footer_link:hover {
  color: #ffffff;
}

.tp_footer_base {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(147, 149, 196, 0.08);
  font-size: 12.5px;
  color: rgba(147, 149, 196, 0.7);
}

/* ── Accessibility: kill all landing motion when requested ───── */
@media (prefers-reduced-motion: reduce) {
  .teleportLanding .tp_reveal,
  .teleportLanding .tp_reveal_stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .teleportLanding .tp_live_dot::after {
    animation: none !important;
  }

  .teleportLanding *,
  .teleportLanding *::before,
  .teleportLanding *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
