:root {
  --bg: #090715;
  --bg-2: #12051f;
  --surface: rgba(19, 14, 34, 0.82);
  --surface-strong: rgba(25, 16, 45, 0.94);
  --line: rgba(188, 139, 255, 0.28);
  --text: #f8f4ff;
  --muted: #bdb4d0;
  --violet: #9f44ff;
  --violet-2: #d36cff;
  --cyan: #59e7ff;
  --pink: #ff5fe1;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(84, 231, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(159, 68, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, var(--bg), #06040d 62%, #0d0718);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 5, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 72px;
  height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.header-action {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--text);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(211, 108, 255, 0.5);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  background: rgba(159, 68, 255, 0.14);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 110px clamp(20px, 6vw, 86px) 86px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 4, 13, 0.95) 0%, rgba(8, 5, 17, 0.84) 34%, rgba(8, 5, 17, 0.36) 64%, rgba(8, 5, 17, 0.84) 100%),
    linear-gradient(0deg, rgba(9, 7, 21, 1), transparent 24%, transparent 62%, rgba(9, 7, 21, 0.52));
}

.hero-media {
  z-index: -2;
}

.hero-content {
  width: 100%;
  max-width: 690px;
  min-width: 0;
}

.hero-logo {
  width: clamp(150px, 16vw, 230px);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 24px rgba(159, 68, 255, 0.42));
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(50px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(159, 68, 255, 0.34);
}

h1 span {
  display: block;
}

.hero-content p {
  max-width: 590px;
  margin-bottom: 30px;
  color: #dfd6ee;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 18px 38px rgba(159, 68, 255, 0.34);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.map-tile:hover,
.price-card:hover {
  transform: translateY(-2px);
}

.hero-status {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.hero-status span {
  min-width: 76px;
  padding: 12px 14px;
  border: 1px solid rgba(89, 231, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(7, 5, 16, 0.72);
  color: #e6fbff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 0 28px rgba(89, 231, 255, 0.08);
}

.section {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 110px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.legal h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading p,
.legal p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.feature-line article {
  min-height: 166px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.feature-line strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  text-transform: uppercase;
}

.feature-line span,
.card-note {
  color: var(--muted);
  line-height: 1.55;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
}

.price-card.featured {
  border-color: rgba(211, 108, 255, 0.72);
  box-shadow: 0 30px 90px rgba(159, 68, 255, 0.22);
}

.price-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.zone-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 231, 255, 0.34), rgba(159, 68, 255, 0.12));
}

.zone-vip {
  background: radial-gradient(circle, rgba(255, 95, 225, 0.45), rgba(159, 68, 255, 0.14));
}

.zone-ps {
  background: radial-gradient(circle, rgba(89, 231, 255, 0.48), rgba(255, 255, 255, 0.08));
}

.tariffs {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tariffs li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tariffs li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tariffs span {
  color: #eee8fb;
  line-height: 1.35;
}

.tariffs em {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.tariffs strong {
  color: #fff;
  font-size: 20px;
  white-space: nowrap;
}

.card-note {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.map-section {
  padding-top: 24px;
}

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

.map-tile {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(89, 231, 255, 0.1), rgba(159, 68, 255, 0.14));
  transition: transform 180ms ease, border-color 180ms ease;
}

.map-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #41d982;
  color: #06120b;
  font-weight: 950;
}

.map-icon.ya {
  background: #fc3f1d;
  color: #fff;
}

.map-tile strong,
.map-tile small {
  display: block;
}

.map-tile strong {
  font-size: 24px;
}

.map-tile small {
  margin-top: 8px;
  color: var(--muted);
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 7vw, 90px);
  align-items: start;
}

.legal-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 19px 20px;
  background: var(--surface);
}

.legal-list dt {
  color: var(--muted);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 86px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #06040d;
}

.site-footer p {
  margin: 6px 0 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #f3eaff;
  background: rgba(255, 255, 255, 0.05);
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 83px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9, 7, 21, 0.96);
  }

  .site-header.menu-open .nav-links a {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 88svh;
    padding: 82px 20px 92px;
    align-items: end;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 4, 13, 0.96), rgba(6, 4, 13, 0.66)),
      linear-gradient(0deg, rgba(9, 7, 21, 1), transparent 34%, rgba(9, 7, 21, 0.3));
  }

  .hero-logo {
    width: 118px;
  }

  .hero-content {
    max-width: 350px;
  }

  .hero-status {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 350px;
    margin-top: 26px;
    gap: 8px;
  }

  .hero-status span {
    min-width: 0;
    padding: 11px 4px;
    font-size: 12px;
  }

  .section-heading,
  .legal,
  .price-grid,
  .feature-line,
  .map-actions {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 32px);
    max-width: 680px;
  }
}

@media (max-width: 540px) {
  .brand img {
    width: 58px;
    height: 44px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .hero-content p {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .price-card,
  .feature-line article,
  .map-tile {
    padding: 22px;
  }

  .tariffs li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tariffs strong {
    font-size: 22px;
  }

  .section-heading h2,
  .legal h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }
}
