:root {
  --bg: #0b0b0d;
  --panel: #121217;
  --panel-2: #191822;
  --text: #f2f0ea;
  --muted: #a8a5ad;
  --line: rgba(255, 255, 255, 0.12);
  --acid: #b9ff17;
  --lilac: #c9b7ff;
  --white: #fff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.nav a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  color: var(--acid);
  font-size: 14px;
  font-weight: 700;
}

main > section,
.contacts {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 52px);
}

.group-strip,
.problem,
.stats,
.mechanic,
.formats,
.proof,
.next-step,
.contacts {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: clip;
  max-width: none;
  min-height: min(820px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  margin: 0;
  padding: 52px clamp(18px, 4vw, 52px) clamp(64px, 9vw, 120px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18% -6% -12% 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 34rem 30rem at 92% 26%, rgba(223, 82, 103, 0.3), transparent 68%),
    radial-gradient(ellipse 46rem 38rem at 88% 30%, rgba(201, 183, 255, 0.24), transparent 72%),
    radial-gradient(ellipse 22rem 18rem at 79% 66%, rgba(118, 107, 214, 0.2), transparent 74%);
  filter: blur(22px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-copy {
  width: min(100%, calc(var(--max) - clamp(36px, 8vw, 104px)));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 8.2vw, 108px);
  line-height: 0.95;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 5.6vw, 76px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text {
  max-width: 900px;
  color: #d9d6de;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 183, 255, 0.34);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.82;
  animation: scroll-cue-bounce 2.8s ease-in-out infinite;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--lilac);
  border-bottom: 2px solid var(--lilac);
  transform: translate(-50%, -50%) rotate(45deg);
}

.scroll-cue:hover {
  border-color: rgba(201, 183, 255, 0.72);
  opacity: 1;
  animation-play-state: paused;
  transform: translateX(-50%) translateY(3px);
}

@keyframes scroll-cue-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .scroll-cue {
    animation: none;
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #0b0b0d;
}

.button.ghost {
  color: var(--lilac);
}

.wide-media,
.proof-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.wide-media img,
.proof-media img {
  width: 100%;
}

.group-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.group-strip h2,
.problem h2,
.stats h2,
.mechanic h2,
.formats h2,
.proof h2,
.next-step h2 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(44px, 5.7vw, 76px);
}

.group-strip img {
  width: 100%;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 12px;
}

.problem {
  border-top: 1px solid var(--line);
}

.problem-grid,
.steps,
.offer-grid,
.stats-grid {
  display: grid;
  overflow: hidden;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.steps article,
.offer-grid article,
.stats-grid div {
  background: var(--panel);
  padding: 24px;
}

.problem-grid article {
  min-height: 210px;
  padding: 28px 32px 28px 0;
  border-right: 1px solid var(--line);
  background: transparent;
}

.problem-grid article + article {
  padding-left: 32px;
}

.problem-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.problem-note {
  max-width: 100%;
  margin: 38px 0 0;
  border-left: 0;
  background: transparent;
  color: var(--lilac);
  padding: 0;
  border-top: 0;
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

article span,
.price-row span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-weight: 800;
}

article p,
.contacts p {
  color: #d6d2da;
  line-height: 1.45;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 0;
}

.stats .section-head {
  display: block;
  margin-bottom: 28px;
}

.mechanic .section-head,
.formats .section-head,
.proof .section-head {
  display: block;
  margin-bottom: 42px;
}

.next-step {
  align-items: start;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.stats-grid strong {
  display: block;
  color: var(--acid);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
  font-weight: 700;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.stats-intro {
  max-width: 100%;
  margin: 0 0 34px;
  color: #d6d2da;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.stats .wide-media {
  background: #112b62;
}

.stats .wide-media img {
  width: 100%;
}

.problem {
  padding-bottom: clamp(32px, 4.5vw, 60px);
}

.stats {
  padding-top: clamp(32px, 4.5vw, 60px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.mechanic,
.formats,
.proof,
.next-step {
  padding-top: clamp(32px, 4.5vw, 60px);
  padding-bottom: clamp(32px, 4.5vw, 60px);
}

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

.steps article span {
  color: var(--acid);
  font-size: 26px;
}

.note {
  max-width: 100%;
  margin: 38px 0 0;
  border-left: 0;
  background: transparent;
  color: var(--lilac);
  padding: 0;
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.phone-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(180px, 0.55fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201, 183, 255, 0.1), rgba(185, 255, 23, 0.04));
  padding: 28px;
}

.phone-proof h3 {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.phone-proof p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  line-height: 1.5;
}

.phone-proof p.case-copy {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 22px;
}

.case-stats div {
  min-height: 104px;
  border-top: 1px solid rgba(201, 183, 255, 0.45);
  padding-top: 15px;
}

.case-stats strong {
  display: block;
  color: var(--lilac);
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.case-stats span {
  display: block;
  max-width: 170px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.phone-proof p.case-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
}

.phone-proof img {
  justify-self: center;
  max-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42));
}

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

.offer-grid article {
  display: flex;
  flex-direction: column;
}

.offer-grid article p {
  margin-bottom: 22px;
}

.offer-grid small {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid rgba(201, 183, 255, 0.35);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--lilac);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  display: block;
  color: var(--acid);
  font-size: clamp(34px, 4.1vw, 52px);
  line-height: 0.98;
  font-weight: 700;
  white-space: nowrap;
}

.price-row strong span {
  display: inline;
  margin: 0 8px 0 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.34em;
  font-weight: 800;
  vertical-align: 0.38em;
}

.price-row strong em {
  display: inline-block;
  color: var(--acid);
  font-size: 0.42em;
  font-style: normal;
  font-weight: 800;
  vertical-align: 0.2em;
}

.price-row p {
  margin: 12px 0 0;
  color: var(--muted);
}

.price-row .price-note {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-top: 0;
  font-size: 15px;
  font-style: italic;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.channel-row img {
  width: clamp(64px, 9vw, 92px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 183, 255, 0.26);
  border-radius: 50%;
  background: #111015;
  object-fit: contain;
  padding: 0;
  box-sizing: border-box;
}

.proof-copy {
  max-width: 100%;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.proof-copy span {
  display: block;
  max-width: 100%;
  color: var(--lilac);
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.next-step {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.next-step .section-head {
  display: block;
  max-width: 100%;
  margin-bottom: 42px;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.next-grid article {
  min-height: 160px;
  padding: 26px 32px 0 0;
  border-right: 1px solid var(--line);
}

.next-grid article + article {
  padding-left: 32px;
}

.next-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.next-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-weight: 800;
}

.next-grid p {
  max-width: 300px;
  margin: 0;
  font-size: clamp(22px, 2.15vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.contacts {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
}

.contacts img {
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 183, 255, 0.26);
  border-radius: 50%;
  object-fit: cover;
}

.contacts h2 {
  margin-bottom: 16px;
}

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

  .hero,
  .group-strip,
  .problem,
  .next-step,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats-grid,
  .problem-grid,
  .steps,
  .offer-grid,
  .price-row {
    grid-template-columns: 1fr 1fr;
  }

  .phone-proof {
    grid-template-columns: 1fr;
  }

  .price-row .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .header-cta {
    font-size: 13px;
  }

  main > section,
  .contacts {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  .group-strip h2,
  .problem h2,
  .stats h2,
  .mechanic h2,
  .formats h2,
  .proof h2,
  .next-step h2 {
    font-size: 34px;
    line-height: 1;
  }

  .stats-grid,
  .problem-grid,
  .steps,
  .offer-grid,
  .price-row,
  .proof-copy {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-grid article:last-child {
    border-bottom: 0;
  }

  .group-strip img {
    padding: 8px;
  }

  .phone-proof {
    display: grid;
    padding: 22px;
  }

  .phone-proof > div {
    display: contents;
  }

  .phone-proof img {
    order: 5;
    width: auto;
    max-height: 430px;
    margin: 0 auto 10px;
  }

  .phone-proof .eyebrow {
    order: 1;
  }

  .phone-proof h3 {
    order: 2;
    font-size: 30px;
  }

  .phone-proof p.case-copy {
    order: 3;
  }

  .case-stats {
    order: 6;
    text-align: center;
  }

  .case-stats span {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .case-stats div {
    min-height: auto;
  }

  .phone-proof p.case-note {
    order: 7;
    font-size: 13px;
    line-height: 1.32;
  }

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

  .price-row strong {
    font-size: 25px;
  }

  .price-row strong span {
    margin-right: 4px;
    font-size: 0.36em;
  }

  .price-row p {
    font-size: 12px;
    line-height: 1.25;
  }

  .price-row .price-note {
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .channel-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .channel-row img {
    width: 100%;
  }

  .section-head {
    display: block;
  }

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

  .next-grid article,
  .next-grid article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .next-grid article:last-child {
    border-bottom: 0;
  }

  .contacts img {
    width: 176px;
    justify-self: center;
  }

  .button {
    width: 100%;
  }
}
