:root {
  --bg: #fbf9ff;
  --text: #0f172a;
  --muted: #64748b;
  --violet: #6d28d9;
  --purple: #7c3aed;
  --pink: #d946ef;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(139, 92, 246, 0.18);
  --shadow: 0 24px 80px rgba(109, 40, 217, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.34), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf9ff 0%, #ffffff 100%);
}

.soft-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.aurora-one {
  left: -80px;
  top: 96px;
  width: 288px;
  height: 288px;
  background: rgba(196, 181, 253, 0.35);
  animation: auroraShift 9s ease-in-out infinite;
}

.aurora-two {
  right: -90px;
  top: 112px;
  width: 320px;
  height: 320px;
  background: rgba(240, 171, 252, 0.25);
  animation: auroraShift 12s ease-in-out infinite reverse;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  padding-top: 12px;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 55px rgba(109, 40, 217, 0.11);
  backdrop-filter: blur(24px);
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 28%;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(109, 40, 217, 0.22);
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1.1;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #475569;
  font-size: 14px;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--violet);
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #fff;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.store-caption,
.store-name {
  display: block;
  line-height: 1.05;
}

.store-caption {
  font-size: 10px;
  color: var(--muted);
}

.store-name {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.mobile-download {
  display: none;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: 0 14px 32px rgba(109, 40, 217, 0.26);
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 32px;
  padding: 56px 0 96px;
}

.hero-copy {
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5b21b6;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.08);
  backdrop-filter: blur(18px);
}

.pulse-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--violet);
  opacity: 0.4;
  animation: dotPing 1.7s ease-out infinite;
}

.pulse-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: var(--violet);
}

.hero-copy h1 {
  margin: 28px 0 0;
  font-size: clamp(52px, 7.4vw, 96px);
  line-height: 0.95;
  font-weight: 760;
  letter-spacing: -0.065em;
}

.hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  color: #556171;
  font-size: 20px;
  line-height: 1.72;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.chips span {
  padding: 10px 16px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #475569;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.08);
  backdrop-filter: blur(18px);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 780px;
  margin: 0 auto;
  overflow: visible;
}

.phone-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.45), rgba(244, 114, 182, 0.35), rgba(199, 210, 254, 0.45));
  filter: blur(64px);
}

.phone-slider {
  position: relative;
  width: 330px;
  margin: 0 auto;
}

.phone-shadow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 224px;
  height: 40px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(46, 16, 101, 0.2);
  filter: blur(26px);
}

.phone-device {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 52px;
  background: #020617;
  box-shadow: 0 42px 110px rgba(109, 40, 217, 0.34);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 8;
  width: 80px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #020617;
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 7;
  width: 112px;
  height: 20px;
  border-radius: 0 0 24px 24px;
  transform: translateX(-50%);
  background: #020617;
}

.phone-screen {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 42px;
  background: #fff;
}

.phone-screen-track {
  display: flex;
  width: 500%;
  height: 100%;
  animation: phoneScreenSlide 18s cubic-bezier(0.78, 0, 0.22, 1) infinite;
  will-change: transform;
}

.app-screen {
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
  overflow: hidden;
}

.screen-login {
  background: linear-gradient(180deg, #f8f4ff 0%, #fff 100%);
}

.screen-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 28px 20px 20px;
}

.screen-logo-wrap {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 12px auto 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
  animation: auroraShift 8s ease-in-out infinite;
}

.screen-logo {
  width: 96px;
  height: 96px;
  border-radius: 28%;
  object-fit: cover;
}

.screen-center-text {
  margin-top: 32px;
  text-align: center;
}

.screen-center-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.screen-center-text .screen-app-name {
  color: var(--text);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.login-form {
  margin-top: auto;
}

.fake-input,
.fake-button {
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px;
}

.fake-input {
  background: #f1f5f9;
  color: #94a3b8;
}

.fake-button {
  margin-top: 12px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  background: linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: 0 14px 32px rgba(109, 40, 217, 0.18);
  animation: softButtonPulse 4s ease-in-out infinite;
}

.login-form p {
  margin: 12px 0 0;
  color: #94a3b8;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.screen-route {
  background: #f7f3ff;
}

.map-area {
  position: relative;
  height: 224px;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd6fe, #fae8ff, #fff);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  animation: pinPulse 2.6s ease-in-out infinite;
}

.pin-a {
  left: 34px;
  top: 72px;
  background: #6d28d9;
  box-shadow: 0 0 0 9px rgba(109, 40, 217, 0.15);
}

.pin-b {
  right: 40px;
  bottom: 48px;
  background: #c026d3;
  box-shadow: 0 0 0 9px rgba(192, 38, 211, 0.15);
  animation-delay: 0.65s;
}

.route-line {
  position: absolute;
  left: 42px;
  top: 82px;
  width: 190px;
  height: 112px;
}

.route-line path {
  fill: none;
  stroke: #7c3aed;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  animation: dashMove 3.8s linear infinite;
}

.route-card {
  position: relative;
  margin: -40px 20px 0;
  padding: 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(109, 40, 217, 0.18);
}

.screen-kicker {
  margin: 0;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-fields {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field-card {
  border-radius: 18px;
  padding: 12px 14px;
}

.violet-field {
  background: #f3e8ff;
}

.pink-field {
  background: #fae8ff;
}

.small-field {
  background: #f8fafc;
}

.field-card p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 11px;
}

.field-card strong {
  display: block;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.screen-search {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: linear-gradient(180deg, #f8f4ff, #fff);
}

.screen-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.screen-top p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.screen-top strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.screen-top span {
  padding: 5px 12px;
  border-radius: 999px;
  background: #ede9fe;
  color: #6d28d9;
  font-size: 12px;
  font-weight: 700;
}

.search-radar {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 52px auto 0;
  border-radius: 999px;
  background: #ede9fe;
}

.radar-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.26);
  animation: radarPulse 2.8s ease-in-out infinite;
}

.ring-1 {
  inset: 0;
}

.ring-2 {
  inset: -32px;
  animation-delay: 0.35s;
}

.ring-3 {
  inset: -64px;
  animation-delay: 0.7s;
}

.radar-core {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  color: #fff;
  font-size: 32px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 24px 56px rgba(109, 40, 217, 0.3);
}

.search-text {
  margin-top: 52px;
  text-align: center;
}

.search-text h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.search-text p {
  margin: 8px auto 0;
  max-width: 230px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.match-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.match-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.06);
}

.match-card strong {
  font-size: 13px;
}

.match-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.match-card span {
  flex: 0 0 auto;
  color: #6d28d9;
  font-size: 12px;
  font-weight: 700;
}

.screen-trips {
  padding: 24px 20px;
  background: #f8f4ff;
}

.trips-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.trips-head p,
.trips-head h3 {
  margin: 0;
}

.trips-head p {
  color: var(--muted);
  font-size: 12px;
}

.trips-head h3 {
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.trips-head img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.active-trip {
  margin-top: 24px;
  padding: 20px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 24px 56px rgba(109, 40, 217, 0.2);
  animation: softButtonPulse 5s ease-in-out infinite;
}

.active-trip p,
.active-trip h3 {
  margin: 0;
}

.active-trip p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.active-trip h3 {
  margin-top: 12px;
  font-size: 20px;
}

.active-trip div {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.trip-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.trip-item {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.06);
}

.trip-item strong {
  display: block;
  padding-right: 72px;
  font-size: 14px;
}

.trip-item span {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 11px;
}

.trip-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.mini-tag {
  position: absolute;
  right: -12px;
  top: 96px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #6d28d9;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.18);
  backdrop-filter: blur(18px);
}

.flash-sticker {
  --base-rotate: 0deg;
  --drift-x: 12px;
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 58px rgba(109, 40, 217, 0.18);
  backdrop-filter: blur(24px);
  animation: flashPulse 4.2s ease-in-out infinite;
}

.flash-sticker span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.18);
}

.flash-sticker strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.flash-sticker p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.sticker-one {
  left: 0;
  top: 80px;
  --base-rotate: -6deg;
  --drift-x: -14px;
}

.sticker-two {
  right: 0;
  top: 132px;
  --base-rotate: 6deg;
  --drift-x: 14px;
  animation-delay: 0.55s;
}

.sticker-two span {
  background: linear-gradient(135deg, #d946ef, #7c3aed);
}

.sticker-three {
  left: 8px;
  bottom: 112px;
  --base-rotate: 3deg;
  --drift-x: -10px;
  animation-delay: 1.1s;
}

.sticker-three span {
  background: linear-gradient(135deg, #10b981, #7c3aed);
}

.sticker-four {
  right: 8px;
  bottom: 144px;
  --base-rotate: -3deg;
  --drift-x: 10px;
  animation-delay: 1.65s;
}

.section {
  position: relative;
  padding: 96px 0;
}

.white-section {
  background: #fff;
}

.section-head h2,
.routes-copy h2,
.trust-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 740;
  letter-spacing: -0.045em;
}

.eyebrow,
.card-eyebrow {
  margin: 0;
  color: var(--violet);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 32px;
}

.split-head > p,
.routes-copy > p {
  max-width: 680px;
  margin: 0 0 4px auto;
  color: #556171;
  font-size: 18px;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.value-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #fbf9ff;
  box-shadow: 0 14px 36px rgba(109, 40, 217, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(109, 40, 217, 0.13);
}

.card-glow,
.tile-glow {
  position: absolute;
  right: -64px;
  top: -64px;
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.55);
  filter: blur(38px);
}

.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  font-size: 18px;
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.08);
}

.value-card .card-eyebrow {
  position: relative;
  margin-top: 28px;
}

.value-card h3 {
  position: relative;
  margin: 12px 0 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.value-card > p:last-child {
  position: relative;
  margin: 16px 0 0;
  color: #556171;
  font-size: 16px;
  line-height: 1.7;
}

.flow-section {
  overflow: hidden;
}

.flow-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff 0%, rgba(245, 243, 255, 0.65) 52%, #fff 100%);
}

.flow-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(196, 181, 253, 0.3);
  filter: blur(64px);
}

.center-head {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.steps-shell {
  position: relative;
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 80px rgba(109, 40, 217, 0.12);
  backdrop-filter: blur(22px);
}

.steps-line {
  position: absolute;
  left: 48px;
  right: 48px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.42), transparent);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.step-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(109, 40, 217, 0.06);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.2);
}

.step-card h3 {
  margin: 20px 0 0;
  font-size: 18px;
}

.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.routes-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.routes-copy > p {
  margin: 22px 0 0;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.route-tile {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #fbf9ff;
  color: var(--text);
  box-shadow: 0 18px 45px rgba(109, 40, 217, 0.09);
}

.route-featured {
  grid-row: span 2;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.route-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.route-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.route-featured .route-row p {
  color: rgba(255, 255, 255, 0.7);
}

.route-row h3 {
  margin: 8px 0 4px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.address-lines {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.route-featured .address-lines {
  color: rgba(255, 255, 255, 0.72);
}

.route-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: var(--violet);
  background: #fff;
}

.route-featured .route-arrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.route-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.route-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 14px;
}

.route-featured .route-meta span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.route-tile {
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.route-tile:hover,
.route-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.34);
  outline: none;
}

.route-tile.is-active {
  background: linear-gradient(135deg, #f4edff 0%, #fae8ff 56%, #ffffff 100%);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: 0 24px 62px rgba(109, 40, 217, 0.16);
}

.route-tile.is-active .tile-glow {
  background: rgba(217, 70, 239, 0.42);
}

.route-tile.is-active .route-arrow {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.2);
}

.route-tile.is-active .route-meta span {
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.82);
}

.trust-section {
  background: #fbf9ff;
}

.trust-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border-radius: 42px;
  background: #020617;
  color: #fff;
  box-shadow: 0 28px 90px rgba(109, 40, 217, 0.18);
}

.trust-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.trust-glow-one {
  right: -80px;
  top: -96px;
  width: 320px;
  height: 320px;
  background: rgba(124, 58, 237, 0.35);
}

.trust-glow-two {
  left: 25%;
  bottom: -96px;
  width: 288px;
  height: 288px;
  background: rgba(217, 70, 239, 0.2);
}

.trust-copy,
.trust-grid {
  position: relative;
}

.trust-copy .eyebrow {
  color: #ddd6fe;
}

.trust-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.trust-item span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  color: #ddd6fe;
  background: rgba(255, 255, 255, 0.12);
}

.trust-item p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.45;
}

.site-footer {
  padding: 40px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 28%;
  object-fit: cover;
}

.footer-brand p {
  margin: 0 0 3px;
  color: var(--text);
  font-weight: 760;
}

.footer-brand span {
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

@keyframes auroraShift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.06);
  }
}

@keyframes dotPing {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

@keyframes phoneScreenSlide {
  0%, 16% {
    transform: translateX(0);
  }
  22%, 38% {
    transform: translateX(-20%);
  }
  44%, 60% {
    transform: translateX(-40%);
  }
  66%, 82% {
    transform: translateX(-60%);
  }
  88%, 96% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(-80%);
  }
}

@keyframes flashPulse {
  0%, 100% {
    transform: translateX(0) translateY(0) rotate(var(--base-rotate, 0deg));
    filter: brightness(1);
  }
  45%, 55% {
    transform: translateX(var(--drift-x, 12px)) translateY(-7px) rotate(var(--base-rotate, 0deg));
    filter: brightness(1.06);
  }
}

@keyframes softButtonPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 14px 32px rgba(109, 40, 217, 0.18);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(109, 40, 217, 0.25);
  }
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes pinPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.16);
    opacity: 0.78;
  }
}

@keyframes radarPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.38;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    height: 760px;
  }
}

@media (max-width: 1024px) {
  .store-actions {
    display: none;
  }

  .mobile-download {
    display: inline-flex;
  }

  .split-head,
  .routes-layout,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .split-head > p {
    margin-left: 0;
  }

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

  .steps-line {
    display: none;
  }

  .routes-copy > p {
    max-width: 720px;
  }

  .sticker-one {
    display: none;
  }

  .hero-visual {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    top: 8px;
  }

  .header-shell {
    min-height: 66px;
    padding: 10px;
    border-radius: 24px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .hero-layout {
    gap: 20px;
    padding: 42px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-visual {
    height: 665px;
    max-width: 420px;
  }

  .phone-slider {
    width: 270px;
  }

  .phone-screen {
    height: 590px;
  }

  .phone-glow {
    width: 390px;
    height: 390px;
  }

  .mini-tag {
    display: none;
  }

  .flash-sticker {
    min-width: 132px;
    max-width: 150px;
    padding: 9px 10px;
    gap: 7px;
    border-radius: 20px;
  }

  .flash-sticker span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    font-size: 12px;
  }

  .flash-sticker div {
    display: block;
    min-width: 0;
  }

  .flash-sticker strong {
    font-size: 11px;
    white-space: nowrap;
  }

  .flash-sticker p {
    font-size: 10px;
    white-space: nowrap;
  }

  .sticker-two {
    right: -8px;
    top: 96px;
  }

  .sticker-three {
    left: -8px;
    bottom: 122px;
  }

  .sticker-four {
    right: -8px;
    bottom: 192px;
  }

  .section {
    padding: 76px 0;
  }

  .section-head h2,
  .routes-copy h2,
  .trust-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .value-grid,
  .routes-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .route-featured {
    grid-row: auto;
  }

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

  .step-card {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .step-card h3 {
    margin-top: 0;
  }

  .steps-shell {
    padding: 20px;
    border-radius: 30px;
  }

  .trust-card {
    padding: 28px;
    border-radius: 34px;
  }

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1240px);
  }

  .mobile-download {
    height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .chips span {
    font-size: 13px;
  }

  .hero-visual {
    height: 610px;
    max-width: 360px;
    margin-left: -2px;
  }

  .phone-slider {
    width: 228px;
  }

  .phone-device {
    border-radius: 48px;
  }

  .phone-screen {
    height: 500px;
    border-radius: 38px;
  }

  .screen-inner {
    padding: 24px 17px 18px;
  }

  .screen-logo-wrap {
    width: 84px;
    height: 84px;
    border-radius: 28px;
  }

  .screen-logo {
    width: 56px;
    height: 56px;
  }

  .map-area {
    height: 198px;
  }

  .route-card {
    margin-left: 16px;
    margin-right: 16px;
    padding: 16px;
  }

  .screen-search,
  .screen-trips {
    padding: 22px 16px;
  }

  .field-card strong {
    font-size: 12px;
  }

  .route-fields {
    gap: 9px;
    margin-top: 14px;
  }

  .search-radar {
    width: 130px;
    height: 130px;
    margin-top: 42px;
  }

  .radar-core {
    width: 68px;
    height: 68px;
  }

  .search-text {
    margin-top: 44px;
  }

  .screen-top strong {
    font-size: 16px;
  }

  .flash-sticker {
    min-width: 112px;
    max-width: 122px;
    padding: 7px 8px;
    gap: 6px;
  }

  .flash-sticker span {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    font-size: 11px;
  }

  .flash-sticker strong {
    font-size: 10px;
    line-height: 1.1;
  }

  .flash-sticker p {
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.1;
  }

  .sticker-two {
    right: -4px;
    top: 78px;
  }

  .sticker-three {
    left: -4px;
    bottom: 118px;
  }

  .sticker-four {
    right: -4px;
    bottom: 176px;
  }

  .value-card,
  .route-tile,
  .trust-card {
    border-radius: 28px;
  }
}

/* v3 fixes: remove mini Joldas sticker and improve mobile trip stickers */
.mini-tag {
  display: none !important;
}

@media (max-width: 768px) {
  .flash-sticker {
    width: max-content;
    min-width: 150px;
    max-width: 178px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 20px;
    overflow: visible;
  }

  .flash-sticker span {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    font-size: 12px;
  }

  .flash-sticker div {
    display: block !important;
    min-width: 0;
  }

  .flash-sticker strong,
  .flash-sticker p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .flash-sticker strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .flash-sticker p {
    margin-top: 2px;
    font-size: 9.5px;
    line-height: 1.15;
  }

  .sticker-two {
    right: -10px;
    top: 82px;
  }

  .sticker-three {
    left: -10px;
    bottom: 104px;
  }

  .sticker-four {
    right: -10px;
    bottom: 172px;
    display: flex;
  }
}

@media (max-width: 420px) {
  .flash-sticker {
    min-width: 136px;
    max-width: 158px;
    padding: 7px 8px;
    gap: 6px;
  }

  .flash-sticker span {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    font-size: 11px;
  }

  .flash-sticker strong {
    font-size: 9.6px;
    line-height: 1.12;
  }

  .flash-sticker p {
    font-size: 8.8px;
    line-height: 1.12;
  }

  .sticker-two {
    right: -4px;
    top: 74px;
  }

  .sticker-three {
    left: -4px;
    bottom: 102px;
  }

  .sticker-four {
    right: -4px;
    bottom: 164px;
  }
}
