:root {
  color-scheme: dark;
  --bg: #090012;
  --text: #fff8ff;
  --muted: #d7bdf5;
  --pink: #ff4dff;
  --violet: #8a2cff;
  --purple: #4a00b8;
  --cyan: #40e8ff;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(31, 4, 59, 0.62);
  --shadow: 0 24px 80px rgba(138, 44, 255, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 77, 255, 0.28), transparent 20rem),
    radial-gradient(circle at 92% 12%, rgba(64, 232, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #120021 0%, #220044 42%, #06000e 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient span {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.34;
  animation: float 9s ease-in-out infinite;
}

.ambient span:nth-child(1) {
  left: 7%;
  top: 18%;
  background: var(--pink);
}

.ambient span:nth-child(2) {
  right: 10%;
  top: 28%;
  background: var(--violet);
  animation-delay: -3s;
}

.ambient span:nth-child(3) {
  left: 42%;
  bottom: 8%;
  background: var(--cyan);
  animation-delay: -6s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 0, 18, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.85rem;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(255, 77, 255, 0.5);
}

.nav {
  display: flex;
  gap: clamp(0.7rem, 3vw, 1.8rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.mini-cta,
.button,
.telegram-box a {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav a:hover {
  color: white;
}

.mini-cta {
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(255, 77, 255, 0.16);
  font-weight: 800;
}

.mini-cta:hover,
.button:hover,
.telegram-box a:hover {
  transform: translateY(-3px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem) 2.5rem;
}

.hero-copy {
  animation: rise 700ms ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd6ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.urgent {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 77, 255, 0.34), rgba(64, 232, 255, 0.16));
  box-shadow: 0 0 30px rgba(255, 77, 255, 0.24);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1,
h2 {
  text-shadow: 0 0 34px rgba(255, 77, 255, 0.24);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.lead {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  padding: 0.92rem 1.28rem;
  border: 1px solid transparent;
  font-weight: 950;
  text-align: center;
}

.button.hot {
  position: relative;
  background: linear-gradient(135deg, #ff4dff, #8a2cff 55%, #40e8ff);
  box-shadow: var(--shadow), 0 0 34px rgba(255, 77, 255, 0.34);
}

.button.hot::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, #ff4dff, #8a2cff, #40e8ff);
  filter: blur(16px);
  opacity: 0.45;
  animation: glow 2s ease-in-out infinite;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button.wide {
  width: 100%;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  color: #f2ddff;
  font-weight: 750;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  padding: clamp(0.8rem, 2vw, 1.1rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  animation: cardIn 850ms 120ms ease both, bob 5s 1s ease-in-out infinite;
}

.status-chip {
  position: absolute;
  z-index: 3;
  left: 1rem;
  top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 0.78rem;
  background: rgba(8, 0, 18, 0.7);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.status-chip::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #49ffb6;
  box-shadow: 0 0 16px #49ffb6;
}

.hero-card::before {
  content: "99 ₽";
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #ffffff;
  color: #35005f;
  font-weight: 1000;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transform: rotate(4deg);
}

.logo-frame {
  overflow: hidden;
  border-radius: 1rem;
  background: #120021;
}

.logo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pulse-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.pulse-row span {
  border-radius: 0.9rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e9d4ff;
  font-weight: 900;
  text-align: center;
}

.pulse-row span:first-child::before {
  content: "";
  display: inline-block;
  width: 0.56rem;
  height: 0.56rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #49ffb6;
  box-shadow: 0 0 16px #49ffb6;
}

.speed-line {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.75rem;
  border-radius: 1rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.speed-line i {
  position: relative;
  display: block;
  height: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.speed-line i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 18px rgba(64, 232, 255, 0.55);
  animation: speed 1.8s ease-in-out infinite;
}

.speed-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.9rem 1rem;
  animation: marquee 18s linear infinite;
}

.ticker span {
  color: #ffffff;
  font-weight: 1000;
  text-transform: uppercase;
}

.ticker span::after {
  content: " ✦";
  color: var(--pink);
}

.section,
.split,
.services,
.why-cheap,
.daily-price,
.included,
.reviews,
.final-cta {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.compact {
  padding-bottom: 2rem;
}

.section-title {
  max-width: 860px;
}

.section-note {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 255, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.035);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.service-grid article {
  position: relative;
  min-height: 8.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 100% 0%, rgba(64, 232, 255, 0.2), transparent 7rem);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 80px rgba(138, 44, 255, 0.28);
}

.service-grid span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #ffffff;
  font-weight: 1000;
  box-shadow: 0 0 30px rgba(255, 77, 255, 0.34);
}

.service-grid b {
  display: block;
  margin-top: 1.35rem;
  font-size: 1.1rem;
}

.price-card,
.cards article,
.telegram-box a,
.faq details {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.price-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr) minmax(220px, 0.65fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.4rem;
  border-radius: 1.1rem;
  padding: 1rem;
}

.price-card strong {
  display: block;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}

.price-card span,
.muted,
.cards p,
.split p,
.faq p {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.daily-price {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(64, 232, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 77, 255, 0.12), rgba(138, 44, 255, 0.12));
}

.daily-number {
  display: grid;
  place-items: center;
  min-height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle, rgba(255, 77, 255, 0.26), transparent 62%);
  box-shadow: var(--shadow);
  text-align: center;
}

.daily-number strong {
  display: block;
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 0.86;
}

.daily-number span {
  color: var(--muted);
  font-weight: 1000;
  text-transform: uppercase;
}

.daily-price p:not(.badge),
.final-cta p:not(.badge) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.included {
  background: rgba(255, 255, 255, 0.025);
}

.included-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.included-grid article,
.review-grid article {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.1rem;
  background: var(--glass);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.included-grid span {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--cyan);
  font-weight: 1000;
}

.included-grid p,
.review-grid p {
  color: var(--muted);
}

.why-cheap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 1.2rem;
  align-items: center;
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(138, 44, 255, 0.18), rgba(255, 77, 255, 0.08));
}

.why-cheap p:not(.badge) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
}

.reviews {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 77, 255, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.025);
}

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

.review-grid article {
  min-height: 13rem;
}

.review-grid p {
  margin-top: 0;
  font-size: 1.08rem;
  font-weight: 750;
}

.review-grid span {
  color: #ffffff;
  font-weight: 950;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.cards article {
  min-height: 15rem;
  border-radius: 1.1rem;
  padding: 1.2rem;
}

.cards b {
  display: inline-flex;
  margin-bottom: 2.5rem;
  color: var(--cyan);
  font-size: 0.95rem;
}

.steps {
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 16% 40%, rgba(64, 232, 255, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.035);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.step-grid.visual-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article {
  position: relative;
  min-height: 9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.15rem;
  background: linear-gradient(145deg, rgba(255, 77, 255, 0.13), rgba(64, 232, 255, 0.07));
}

.step-grid article::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(255, 77, 255, 0.18);
  filter: blur(10px);
}

.step-grid span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: #ffffff;
  color: #3b006b;
  font-weight: 1000;
  font-size: 0.86rem;
}

.step-grid p {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  margin: 1.7rem 0 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 77, 255, 0.12), rgba(64, 232, 255, 0.07));
}

.telegram-box {
  display: grid;
  gap: 0.75rem;
}

.telegram-box a {
  display: grid;
  gap: 0.25rem;
  border-radius: 1rem;
  padding: 1rem;
}

.telegram-box span {
  color: var(--muted);
}

.telegram-box b {
  font-size: 1.25rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
  max-width: 980px;
}

.faq details {
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(64, 232, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 77, 255, 0.12), rgba(9, 0, 18, 0.2));
}

.final-cta img {
  width: clamp(5rem, 14vw, 8rem);
  height: clamp(5rem, 14vw, 8rem);
  margin-bottom: 1.2rem;
  border-radius: 1.6rem;
  object-fit: cover;
  box-shadow: 0 0 52px rgba(255, 77, 255, 0.45);
}

.final-cta h2 {
  max-width: 920px;
}

.sticky-buy {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 1rem;
  display: none;
  width: calc(100% - 2rem);
  max-width: 420px;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4dff, #8a2cff 55%, #40e8ff);
  box-shadow: 0 18px 55px rgba(138, 44, 255, 0.5);
  color: #ffffff;
  font-weight: 1000;
  transform: translateX(-50%);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2rem, -1.2rem, 0) scale(1.08);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes glow {
  0%,
  100% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.72;
  }
}

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

@keyframes speed {
  0%,
  100% {
    transform: translateX(-12%);
  }
  50% {
    transform: translateX(45%);
  }
}

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

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .price-card,
  .cards,
  .service-grid,
  .daily-price,
  .included-grid,
  .review-grid,
  .step-grid,
  .step-grid.visual-steps,
  .why-cheap,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 640px;
  }
}

@media (max-width: 540px) {
  .brand span {
    display: none;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof span {
    width: 100%;
    text-align: center;
  }

  .pulse-row {
    grid-template-columns: 1fr;
  }

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

  .sticky-buy {
    display: flex;
  }

  .footer {
    padding-bottom: 5rem;
  }
}
