@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --red: #e2263a;
  --red-dark: #9e0f20;
  --red-bright: #ff4655;
  --blue: #155eef;
  --blue-dark: #0a3fc7;
  --blue-bright: #4f8dff;
  --teal: #0f9e8f;
  --ink: #0a0e18;
  --muted: #5c6577;
  --soft: #f4f6fb;
  --line: #e2e7f0;
  --white: #ffffff;
  --paper: #fafafc;
  --font-display: 'Unbounded', 'Inter', sans-serif;
  --font-body: 'Inter', "Segoe UI", Arial, sans-serif;
  --route-gradient: linear-gradient(115deg, var(--blue) 0%, var(--blue-bright) 38%, var(--red-bright) 72%, var(--red) 100%);
  --shadow: 0 24px 70px rgba(10, 14, 24, .1);
  --shadow-strong: 0 40px 120px rgba(10, 14, 24, .22);
  --shadow-soft: 0 10px 30px rgba(10, 14, 24, .06);
  --ease: cubic-bezier(.22, .9, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

::selection {
  background: rgba(21, 94, 239, .18);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  left: 18px;
  right: 18px;
  top: 14px;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(10, 14, 24, .05);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 18px 44px rgba(10, 14, 24, .16), 0 4px 14px rgba(10, 14, 24, .08);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  min-width: 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .95) inset, 0 22px 54px rgba(10, 14, 24, .14);
  border-color: rgba(10, 14, 24, .07);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.brand img {
  filter: drop-shadow(0 6px 14px rgba(21, 94, 239, .3));
}

.brand b {
  background: var(--route-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.nav a,
.header-action {
  padding: 11px 14px;
  border-radius: 999px;
  color: #333d4e;
  font-size: 14px;
  font-weight: 600;
  transition: background .22s var(--ease), color .22s var(--ease);
}

.nav a:hover {
  background: rgba(21, 94, 239, .08);
  color: var(--blue);
}

.header-action {
  border: 1px solid rgba(10, 14, 24, .1);
  background: rgba(255, 255, 255, .7);
  font-weight: 700;
}

.header-action:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 36px;
  overflow: hidden;
  padding: 118px min(6vw, 92px) 74px;
  isolation: isolate;
  color: #fff;
  background: #05070d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 14% -8%, rgba(21, 94, 239, .32), transparent 62%),
    radial-gradient(900px 640px at 108% 18%, rgba(226, 38, 58, .22), transparent 58%),
    radial-gradient(1000px 700px at 84% 108%, rgba(21, 94, 239, .16), transparent 60%),
    linear-gradient(180deg, #060911 0%, #0a1120 48%, #060911 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-bg::before {
  inset: 0;
  opacity: .5;
  background-image:
    radial-gradient(rgba(255, 255, 255, .09) .9px, transparent .9px);
  background-size: 26px 26px;
  mask-image: radial-gradient(720px 520px at 30% 38%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(720px 520px at 30% 38%, #000 0%, transparent 72%);
}

.hero-bg::after {
  width: 1px;
  height: 1px;
  box-shadow: none;
}

.hero-route {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: visible;
}

.hero-route path {
  fill: none;
  stroke: url(#routeStroke);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 14;
  opacity: .55;
  animation: routeDash 26s linear infinite;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -600;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .4;
  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' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-copy {
  min-width: 0;
  max-width: 700px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(226, 38, 58, .18);
  border-radius: 999px;
  background: rgba(226, 38, 58, .08);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--route-gradient);
  box-shadow: 0 0 0 3px rgba(226, 38, 58, .14);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: .98;
  letter-spacing: -.015em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -.01em;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.hero-copy p {
  max-width: 620px;
  font-size: 20px;
  color: rgba(226, 232, 240, .82);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red) 60%, var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 40px rgba(226, 38, 58, .32), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, .3) 50%, transparent 60%);
  background-size: 220% 100%;
  background-position: 140% 0;
  transition: background-position .7s var(--ease);
}

.button.primary:hover::after {
  background-position: -80% 0;
}

.button.primary:hover {
  box-shadow: 0 22px 50px rgba(226, 38, 58, .42), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  backdrop-filter: blur(18px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .34);
}

.button.ghost {
  border: 1px solid rgba(10, 14, 24, .14);
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
}

.button.ghost:hover {
  background: #fff;
  border-color: rgba(10, 14, 24, .2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .78);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
}

.hero-device {
  position: relative;
  min-width: 0;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, .22), transparent 68%);
  filter: blur(10px);
  z-index: -1;
  animation: haloBreathe 6s ease-in-out infinite;
}

@keyframes haloBreathe {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.06); opacity: 1; }
}

.phone-frame {
  width: min(360px, 72vw);
  aspect-ratio: 9 / 19.8;
  overflow: hidden;
  border: 10px solid #0c1220;
  border-radius: 46px;
  background: #05070d;
  box-shadow: var(--shadow-strong);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-phone {
  position: relative;
  border-color: #05070d;
  box-shadow:
    0 50px 130px rgba(0, 0, 0, .55),
    0 18px 46px rgba(21, 94, 239, .16),
    0 0 0 1px rgba(255, 255, 255, .07),
    inset 0 0 0 1.5px rgba(255, 255, 255, .1);
  animation: phoneFloat 7s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(.3deg); }
}

.premium-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 4;
  width: 84px;
  height: 24px;
  border-radius: 999px;
  background: #05070d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
  transform: translateX(-50%);
}

.premium-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .16) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, .05) 100%);
}

.phone-ui {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(140% 60% at 18% 0%, rgba(21, 94, 239, .22), transparent 60%),
    linear-gradient(180deg, rgba(6, 9, 17, .1), rgba(6, 9, 17, .86)),
    linear-gradient(150deg, #131f30, #0a1120 58%, #0d1522);
}

.phone-ui::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    repeating-linear-gradient(25deg, transparent 0 46px, rgba(255, 255, 255, .05) 46px 49px, transparent 49px 96px),
    repeating-linear-gradient(-38deg, transparent 0 70px, rgba(21, 94, 239, .07) 70px 73px, transparent 73px 130px);
}

.phone-status {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 20px;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 900;
}

.phone-map {
  position: absolute;
  inset: 0;
}

.map-road {
  position: absolute;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06);
}

.road-a {
  width: 128%;
  left: -24%;
  top: 24%;
  transform: rotate(18deg);
}

.road-b {
  width: 114%;
  left: -8%;
  top: 44%;
  transform: rotate(-32deg);
}

.road-c {
  width: 96%;
  left: 14%;
  top: 61%;
  transform: rotate(12deg);
}

.road-d {
  width: 82%;
  left: -18%;
  top: 76%;
  transform: rotate(-17deg);
}

.map-water {
  position: absolute;
  right: -36px;
  top: 120px;
  width: 148px;
  height: 210px;
  border-radius: 54% 46% 56% 44%;
  background: rgba(22, 119, 255, .22);
  filter: blur(.2px);
}

.phone-route {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.phone-route-halo {
  fill: none;
  stroke: url(#phoneRouteGrad);
  stroke-width: 15;
  stroke-linecap: round;
  opacity: .4;
  filter: blur(7px);
}

.phone-route-line {
  fill: none;
  stroke: url(#phoneRouteGrad);
  stroke-width: 6.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 12px rgba(226, 38, 58, .3));
  animation: routePulse 3.2s ease-in-out infinite;
}

.phone-route-shine {
  fill: none;
  stroke: rgba(255, 255, 255, .55);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 1.5 8;
}

.maneuver-card {
  position: absolute;
  left: 16px;
  top: 58px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 178px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #111827;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.maneuver-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #101827;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.maneuver-card strong,
.maneuver-card em {
  display: block;
}

.maneuver-card strong {
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
}

.maneuver-card em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.speed-stack {
  position: absolute;
  left: 18px;
  top: 132px;
  z-index: 6;
  display: grid;
  gap: 7px;
  justify-items: start;
}

.limit-sign {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 7px solid var(--red);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #111827;
  font-size: 24px;
  font-weight: 950;
}

.speed-pill {
  min-width: 78px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(17, 24, 39, .86);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.speed-pill strong {
  font-size: 24px;
  line-height: 1;
}

.speed-pill span {
  font-size: 10px;
  font-weight: 900;
  opacity: .76;
}

.map-controls {
  position: absolute;
  right: 16px;
  top: 90px;
  z-index: 7;
  display: grid;
  gap: 8px;
}

.map-controls span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  color: #101827;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  font-size: 20px;
  font-weight: 950;
}

.participant {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #111827;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  animation: markerFloat 4.2s ease-in-out infinite;
}

.participant em {
  font-style: normal;
  font-size: 11px;
  font-weight: 950;
}

.marker-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .84);
}

.marker-arrow::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 12px;
  height: 18px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
}

.leader {
  left: 49%;
  top: 43%;
}

.leader .marker-arrow {
  background: var(--red);
}

.pasha {
  right: 28px;
  top: 58%;
  animation-delay: -.9s;
}

.pasha .marker-arrow {
  transform: rotate(24deg);
  background: var(--teal);
}

.marina {
  left: 42px;
  top: 66%;
  animation-delay: -1.7s;
}

.marina .marker-arrow {
  transform: rotate(-32deg);
  background: #f59e0b;
}

.event-toast {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 154px;
  z-index: 7;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #111827;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
  animation: toastFloat 3.6s ease-in-out infinite;
}

.event-toast b {
  font-size: 12px;
  font-weight: 950;
}

.event-toast span {
  font-size: 16px;
  font-weight: 950;
}

.progress-card {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 70px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(17, 24, 39, .9);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .32);
}

.progress-card div {
  min-width: 0;
}

.progress-card strong,
.progress-card span {
  display: block;
  text-align: center;
}

.progress-card strong {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 950;
}

.progress-card span {
  margin-top: 3px;
  color: rgba(226, 232, 240, .72);
  font-size: 9px;
  font-weight: 900;
}

.quick-actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.quick-actions span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #101827;
  font-size: 10px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.quick-actions span:last-child {
  border: 2px solid var(--red);
  color: var(--red);
}

@keyframes toastFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes routePulse {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.22) brightness(1.08);
  }
}

@keyframes routeGlow {
  0%,
  100% {
    opacity: .68;
  }

  50% {
    opacity: 1;
  }
}

@keyframes markerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 216px;
  padding: 14px 20px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(13, 19, 32, .74);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .09);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  z-index: 9;
  color: #fff;
}

.floating-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--route-gradient);
  box-shadow: 0 10px 20px rgba(21, 94, 239, .35);
}

.floating-icon svg {
  width: 19px;
  height: 19px;
}

.card-voice .floating-icon {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 10px 20px rgba(226, 38, 58, .35);
}

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
}

.floating-card span {
  display: block;
  margin-top: 2px;
  color: rgba(226, 232, 240, .64);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.card-route {
  left: -10%;
  top: 27%;
}

.card-voice {
  right: -10%;
  bottom: 19%;
}

.section {
  padding: 92px min(6vw, 92px);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.showcase {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.showcase-copy {
  display: grid;
  gap: 14px;
}

.feature-line {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.feature-line:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 94, 239, .22);
  box-shadow: var(--shadow);
}

.feature-line h3 {
  font-family: var(--font-body);
  font-weight: 800;
}

.feature-line p {
  margin: 0;
  font-size: 15px;
}

.feature-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--route-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(21, 94, 239, .28);
}

.route-preview {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.route-preview img {
  width: 100%;
  height: min(760px, 72vh);
  object-fit: cover;
  object-position: center top;
}

.premium-route {
  min-height: min(760px, 72vh);
  background: #0e1827;
}

.route-map {
  position: relative;
  min-height: min(760px, 72vh);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 24, 39, .05), rgba(14, 24, 39, .78)),
    repeating-linear-gradient(20deg, transparent 0 64px, rgba(255, 255, 255, .08) 64px 68px, transparent 68px 126px),
    repeating-linear-gradient(-34deg, transparent 0 88px, rgba(22, 119, 255, .08) 88px 92px, transparent 92px 162px),
    linear-gradient(135deg, #1c2b3e 0%, #0e1827 52%, #152338 100%);
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.route-city {
  position: absolute;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: #101827;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  font-size: 13px;
  font-weight: 950;
}

.city-start {
  left: 58px;
  bottom: 172px;
}

.city-finish {
  right: 68px;
  top: 92px;
}

.route-map-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.map-road-1 {
  width: 112%;
  left: -18%;
  top: 24%;
  transform: rotate(-14deg);
}

.map-road-2 {
  width: 96%;
  left: 4%;
  top: 47%;
  transform: rotate(18deg);
}

.map-road-3 {
  width: 88%;
  left: 12%;
  bottom: 22%;
  transform: rotate(-24deg);
}

.map-route {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.map-route-halo {
  fill: none;
  stroke: url(#mapRouteGrad);
  stroke-width: 26;
  stroke-linecap: round;
  opacity: .32;
  filter: blur(14px);
}

.map-route-line {
  fill: none;
  stroke: url(#mapRouteGrad);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 22px rgba(21, 94, 239, .28));
  animation: routePulse 3.2s ease-in-out infinite;
}

.map-route-shine {
  fill: none;
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2 13;
}

.route-alt {
  position: absolute;
  border-radius: 999px;
  transform-origin: center;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, .34);
  border-left: 0;
  border-bottom: 0;
  background: transparent;
}

.alt-a {
  left: 28%;
  top: 18%;
  width: 252px;
  height: 404px;
  transform: rotate(11deg);
}

.alt-b {
  right: 20%;
  top: 24%;
  width: 218px;
  height: 352px;
  transform: rotate(-9deg);
}

.point {
  position: absolute;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28), inset 0 0 0 4px rgba(255, 255, 255, .9);
}

.start-point {
  left: 112px;
  bottom: 202px;
  background: var(--blue);
}

.finish-point {
  right: 138px;
  top: 136px;
  background: var(--red);
}

.route-badge {
  position: absolute;
  z-index: 6;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #101827;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.route-badge b {
  font-size: 15px;
}

.route-badge.best {
  right: 174px;
  top: 242px;
  border-left: 4px solid var(--red);
}

.route-badge.alt {
  left: 78px;
  top: 214px;
  color: #344054;
}

.map-participant {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: 34px auto;
  gap: 0 8px;
  align-items: center;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #101827;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.map-participant span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
}

.map-participant span::before {
  content: "";
  position: absolute;
  inset: 8px 11px 7px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
}

.map-participant b,
.map-participant em {
  display: block;
}

.map-participant b {
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.map-participant em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.leader-preview {
  left: 46%;
  top: 43%;
}

.second-preview {
  right: 74px;
  bottom: 198px;
}

.second-preview span {
  background: var(--teal);
  transform: rotate(23deg);
}

.route-bottom-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  color: #101827;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
}

.route-bottom-panel b,
.route-bottom-panel span {
  display: block;
  text-align: center;
}

.route-bottom-panel b {
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.route-bottom-panel span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.dark-band {
  position: relative;
  color: #fff;
  background:
    radial-gradient(700px 420px at 84% 8%, rgba(21, 94, 239, .26), transparent 60%),
    radial-gradient(600px 380px at 8% 92%, rgba(226, 38, 58, .16), transparent 58%),
    linear-gradient(160deg, #060911 0%, #0d1626 55%, #0a121f 100%);
  overflow: hidden;
}

.section-head.light p,
.dark-band p {
  color: rgba(226, 232, 240, .74);
}

.feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.feature-grid article,
.tariff-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.feature-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}

.feature-grid p,
.tariff-grid p {
  margin: 0;
  font-size: 15px;
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.timeline {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 43px;
  height: 0;
  z-index: 0;
  border-top: 2.5px dashed rgba(21, 94, 239, .28);
}

.timeline div {
  position: relative;
  z-index: 1;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.timeline div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.timeline b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--route-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(21, 94, 239, .28);
}

.timeline p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .timeline::before {
    display: none;
  }
}

.safety {
  padding-top: 40px;
}

.safety-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 28px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #f0f5ff);
  box-shadow: var(--shadow);
}

.signal-panel {
  display: grid;
  gap: 10px;
}

.signal-panel div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 8px 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(203, 213, 225, .7);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.signal-panel div:hover {
  border-color: rgba(21, 94, 239, .3);
  box-shadow: var(--shadow-soft);
}

.signal-panel span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 143, 130, .12);
}

.signal-panel div:nth-child(2) span {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(22, 119, 255, .12);
}

.signal-panel div:nth-child(3) span {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(227, 6, 17, .12);
}

.signal-panel b {
  font-weight: 950;
}

.signal-panel em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.tariff-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tariff-grid article {
  position: relative;
  background: rgba(255, 255, 255, .9);
  border-color: var(--line);
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.tariff-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 94, 239, .28);
  box-shadow: var(--shadow);
}

.tariff-grid h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--muted);
}

.tariff-grid strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
  font-weight: 700;
}

.tariff-grid .featured {
  background: linear-gradient(160deg, #0a0e18, #131f34 70%, #0a0e18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 80px rgba(21, 94, 239, .22), var(--shadow-strong);
  transform: translateY(-10px);
}

.tariff-grid .featured:hover {
  transform: translateY(-14px);
}

.tariff-grid .featured::before {
  content: "Популярный выбор";
  position: absolute;
  top: -13px;
  left: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--route-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(21, 94, 239, .35);
}

.tariff-grid .featured h3 {
  color: rgba(226, 232, 240, .68);
}

.tariff-grid .featured strong {
  color: #fff;
}

.tariff-grid .featured p {
  color: rgba(226, 232, 240, .78);
}

.download {
  padding-top: 30px;
}

.download-panel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background:
    radial-gradient(500px 260px at 8% 20%, rgba(21, 94, 239, .12), transparent 60%),
    radial-gradient(420px 240px at 96% 92%, rgba(226, 38, 58, .1), transparent 60%),
    linear-gradient(135deg, #ffffff, #f2f6fc);
  border: 1px solid rgba(203, 213, 225, .8);
  box-shadow: var(--shadow);
}

.download-panel img {
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(21, 94, 239, .18);
}

.download-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.download-panel p {
  margin: 0;
  font-size: 16px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px min(6vw, 92px) 44px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}

.footer a {
  color: var(--blue);
  font-weight: 700;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 108px;
  }

  .hero-device {
    min-height: 580px;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    left: 10px;
    right: 10px;
    top: 10px;
    min-height: 58px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero {
    width: 100vw;
    max-width: 100vw;
    padding: 92px 18px 58px;
  }

  .hero-copy,
  .hero-actions,
  .trust-row {
    width: 100%;
    max-width: 342px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: .98;
    overflow-wrap: normal;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions .button,
  .download-actions .button {
    width: 100%;
  }

  .hero-device {
    min-height: 510px;
    width: 100%;
    overflow: visible;
  }

  .phone-frame {
    width: min(282px, 82vw);
    border-width: 10px;
  }

  .floating-card {
    display: none;
  }

  .section {
    width: 100vw;
    max-width: 100vw;
    padding: 64px 18px;
  }

  .feature-grid,
  .tariff-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .feature-line {
    grid-template-columns: 1fr;
  }

  .route-preview img {
    height: 520px;
  }

  .safety-card,
  .download-panel {
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .tariff-grid .featured {
    transform: none;
  }
}

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

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 999px;
}
