:root {
  --bg: #12071c;
  --surface: #1d0e2c;
  --surface-2: #28143c;
  --line: #3a2352;
  --text: #f7eef8;
  --muted: #b7a3c8;
  --pink: #e0288f;
  --cyan: #37d8ff;
  --lime: #b9ff4f;
  --paper: #fff7ed;
  --ink: #170b1f;
  --shadow: 0 28px 80px rgba(0, 0, 0, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  background: rgba(18, 7, 28, .74);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.brand img { width: 120px; height: auto; }
.brand span { color: var(--cyan); }
.nav-links { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 850;
}
.nav-cta, .button.primary { background: var(--pink); color: white; box-shadow: 0 14px 35px rgba(224, 40, 143, .28); }
.button.ghost { border-color: rgba(255,255,255,.18); color: var(--text); background: rgba(255,255,255,.05); }
.button.large { min-height: 58px; padding: 0 26px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 110px 0 70px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08) contrast(1.04); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,7,28,.98) 0%, rgba(18,7,28,.88) 40%, rgba(18,7,28,.34) 100%),
    linear-gradient(0deg, var(--bg), rgba(18,7,28,0) 38%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 380px;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .9;
  font-weight: 950;
}
h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .96;
  font-weight: 950;
}
h3 { margin-bottom: 12px; font-size: 28px; line-height: 1.05; }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.proof { display: flex; flex-wrap: wrap; gap: 9px; }
.proof span, .commerce span, .t-chip {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.phone {
  justify-self: end;
  width: min(100%, 378px);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247,238,248,.16), rgba(247,238,248,.07));
  box-shadow: var(--shadow);
}
.phone-top { display: flex; align-items: center; justify-content: space-between; padding: 8px 8px 14px; }
.phone-top span { width: 54px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.22); }
.phone-top button { width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 24px; }
.map {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.08) 50%, transparent 51%) 0 0 / 66px 66px,
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,.08) 50%, transparent 51%) 0 0 / 66px 66px,
    radial-gradient(circle at 74% 20%, rgba(55,216,255,.45), transparent 24%),
    radial-gradient(circle at 20% 75%, rgba(224,40,143,.5), transparent 28%),
    #150a22;
}
.pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0,0,0,.32);
}
.pin::first-letter { transform: rotate(45deg); }
.pin.p1 { left: 58%; top: 28%; }
.pin.p2 { left: 24%; top: 58%; background: var(--cyan); color: var(--ink); }
.pin.p3 { left: 68%; top: 68%; background: var(--lime); color: var(--ink); }
.map-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(18,7,28,.82);
  backdrop-filter: blur(14px);
}
.map-card small, .phone-list small { display: block; color: var(--muted); }
.phone-list { display: grid; gap: 10px; margin-top: 12px; }
.phone-list article {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--surface-2); color: var(--cyan); font-weight: 950; }
.phone-list em { color: var(--lime); font-style: normal; font-weight: 950; }

.strip { border-block: 1px solid var(--line); background: #09030e; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 18px 0; color: var(--muted); font-weight: 800; }
.section { padding: 92px 0; background: var(--bg); }
.section.dark { background: #09030e; border-block: 1px solid var(--line); }
.section-head { margin-bottom: 36px; }
.section-head.compact { margin-bottom: 22px; }
.cards.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.route-card, .plan, .dashboard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.route-card { padding: 34px; min-height: 430px; }
.route-card.accent { background: linear-gradient(140deg, #271137, #391247 55%, #190a26); border-color: rgba(224,40,143,.45); }
.num { display: block; margin-bottom: 36px; color: var(--cyan); font: 900 14px ui-monospace, SFMono-Regular, Menlo, monospace; }
ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
li + li { margin-top: 10px; }

.app-grid, .catalog, .close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 46px;
  align-items: center;
}
.feature-list { display: grid; gap: 12px; margin-top: 28px; }
.feature-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.feature-list b { color: var(--text); }
.feature-list span { color: var(--muted); }
.dashboard { padding: 20px; }
.dash-bar { display: flex; align-items: center; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.dash-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }
.dash-bar span:nth-child(2) { background: var(--cyan); }
.dash-bar span:nth-child(3) { background: var(--lime); }
.dash-bar b { margin-left: auto; }
.dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 18px 0; }
.dash-grid div { padding: 18px; border-radius: 4px; background: rgba(255,255,255,.06); }
.dash-grid strong { display: block; color: var(--cyan); font-size: 34px; line-height: 1; }
.dash-grid small, .task-list p { color: var(--muted); }
.task-list { display: grid; gap: 10px; }
.task-list p { display: flex; align-items: center; gap: 10px; margin: 0; padding: 13px; border-radius: 4px; background: rgba(0,0,0,.18); }
.task-list span { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }

.commerce { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.product-stack { position: relative; min-height: 470px; }
.product-stack img {
  position: absolute;
  width: 58%;
  max-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.product-stack img:nth-child(1) { right: 4%; top: 0; }
.product-stack img:nth-child(2) { left: 0; top: 120px; width: 42%; }
.product-stack img:nth-child(3) { right: 0; bottom: 0; width: 50%; }

.plans { background: var(--paper); color: var(--ink); }
.plans .eyebrow { color: #b31870; }
.plans .lead { color: rgba(23,11,31,.72); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan {
  padding: 28px;
  background: white;
  border-color: #ead6e4;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(23,11,31,.12);
}
.plan.featured { background: var(--ink); color: var(--text); transform: translateY(-10px); border-color: var(--pink); }
.plan .price { color: #b31870; font-weight: 950; text-transform: uppercase; }
.plan.featured .price { color: var(--lime); }
.plan li { color: inherit; }
.close { background: #09030e; }
.close-grid { grid-template-columns: 1fr auto; }
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}
.footer img { width: 116px; }
.footer a { color: var(--cyan); font-weight: 850; }
.install {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .nav { padding-inline: 16px; }
  .nav-links { display: none; }
  .brand img { width: 98px; }
  .hero { padding-top: 92px; }
  .hero-grid, .app-grid, .catalog, .close-grid { grid-template-columns: 1fr; }
  .phone { justify-self: stretch; }
  .strip-grid, .cards.two, .plan-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; padding: 26px; }
  .feature-list div { grid-template-columns: 1fr; gap: 4px; }
  .product-stack { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-stack img { position: static; width: 100% !important; height: 220px; }
  .product-stack img:first-child { grid-column: 1 / -1; height: 280px; }
  .plan.featured { transform: none; }
}

@media (max-width: 540px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .nav-cta { min-height: 38px; padding-inline: 12px; font-size: 13px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .lead { font-size: 16px; }
  .hero-shade { background: linear-gradient(0deg, var(--bg), rgba(18,7,28,.8) 52%, rgba(18,7,28,.38)); }
  .button { width: 100%; }
  .map { min-height: 300px; }
  .section { padding: 64px 0; }
}
