:root {
  color-scheme: dark;
  --bg: #070708;
  --surface: #111113;
  --surface-2: #171719;
  --ink: #f5f3f1;
  --muted: #aaa7a4;
  --line: #2b2b2e;
  --red: #f2392f;
  --red-dark: #ba211b;
  --paper: #e9e5e0;
  --black: #080809;
  --max: 1180px;
  --topbar: 72px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--topbar);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease;
}

.topbar.is-scrolled {
  background: rgba(7, 7, 8, .96);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.topbar__nav a {
  color: #d6d2cf;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.topbar__nav a:hover {
  color: #fff;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-call {
  min-height: 46px;
  display: grid;
  align-content: center;
  padding: 5px 12px;
  border: 1px solid #5b5b5e;
  border-radius: 4px;
  background: rgba(7, 7, 8, .72);
  color: #fff;
  line-height: 1.08;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.topbar-call:hover {
  border-color: var(--red);
  background: #141416;
}

.topbar-call span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.topbar-call strong {
  margin-top: 3px;
  font-size: 14px;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: var(--topbar) 0 auto 0;
  display: grid;
  padding: 20px;
  background: #0b0b0c;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu a:last-child {
  color: var(--red);
  border: 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.button--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 34px rgba(242, 57, 47, .22);
}

.button--red:hover {
  background: #ff473e;
}

.button--line {
  border-color: #6b6967;
  background: rgba(8, 8, 9, .38);
  color: #fff;
}

.button--line:hover {
  border-color: #fff;
  background: rgba(8, 8, 9, .72);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(840px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: #0a0a0b url("../media/start-hero.webp") center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero__shade {
  background: rgba(5, 5, 6, .52);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--topbar) + 44px) 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 72px;
  align-items: center;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow,
.kicker {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(242, 57, 47, .55);
  background: rgba(8, 8, 9, .68);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 strong {
  display: block;
  color: var(--red);
  font-weight: 900;
}

.hero__lead {
  max-width: 710px;
  margin: 0;
  color: #dedad6;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
}

.hero__gift {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0 0 20px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 216, 67, .62);
  border-radius: 5px;
  background: rgba(8, 8, 9, .82);
  box-shadow: 0 15px 38px rgba(0, 0, 0, .3);
}

.hero__gift img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero__gift div {
  display: grid;
  min-width: 0;
}

.hero__gift span {
  color: #ffda45;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__gift strong {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.25;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 710px;
  margin: 28px 0;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
}

.hero__facts div {
  min-width: 0;
  padding: 15px;
  background: rgba(8, 8, 9, .76);
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  font-size: 19px;
}

.hero__facts span {
  margin-top: 3px;
  color: #aaa7a4;
  font-size: 12px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__price-note {
  margin: 18px 0 0;
  color: #bdb9b6;
  font-size: 14px;
}

.hero__price-note strong {
  color: #fff;
}

.hero__price-note span {
  padding: 0 5px;
  color: var(--red);
}

.hero__demo {
  justify-self: end;
  position: relative;
  width: min(100%, 292px);
}

.phone {
  position: relative;
  aspect-ratio: 576 / 1280;
  overflow: hidden;
  padding: 9px;
  border: 1px solid #646466;
  border-radius: 36px;
  background: #050505;
  box-shadow: 0 28px 75px rgba(0, 0, 0, .55), 0 0 38px rgba(242, 57, 47, .13);
  transform: rotate(2deg);
}

.phone video {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.phone__speaker {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 42%;
  height: 20px;
  border-radius: 12px;
  background: #020202;
  transform: translateX(-50%);
}

.demo-label {
  position: absolute;
  right: -18px;
  bottom: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #0b0b0c;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .35);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  width: 32px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.section-heading--compact {
  margin-bottom: 34px;
}

.section-heading h2,
.proof-band__head h2,
.support__details h2,
.lead__copy h2,
.projects__head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:last-child,
.projects__head > div > p:last-child,
.support__details > p,
.lead__copy > p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.reasons {
  position: relative;
  background: var(--paper);
  color: var(--black);
}

.reasons .kicker {
  color: var(--red-dark);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aaa5a0;
  border-bottom: 1px solid #aaa5a0;
}

.reason {
  padding: 30px 28px;
  border-right: 1px solid #aaa5a0;
}

.reason:last-child {
  border-right: 0;
}

.reason__number {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
}

.reason h3 {
  margin: 24px 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.reason p {
  margin: 0;
  color: #514e4b;
}

.price-explained {
  background: #0b0b0c;
}

.price-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #111113;
}

.price-point {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.price-point:last-child {
  border-right: 0;
}

.price-point > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.price-point strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.15;
}

.price-point p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.price-answer {
  display: grid;
  grid-template-columns: minmax(160px, .8fr) minmax(240px, 1.4fr) minmax(160px, .8fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-top: 0;
}

.price-answer > div {
  display: grid;
  align-content: center;
  padding: 22px 26px;
}

.price-answer small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-answer > div > strong {
  margin-top: 5px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.price-answer p {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.price-answer p strong {
  color: #fff;
}

.price-answer__active {
  background: var(--red);
  color: #fff;
}

.price-answer__active small {
  color: rgba(255, 255, 255, .78);
}

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.compare__side {
  padding: clamp(28px, 4vw, 54px);
  background: #111113;
}

.compare__side + .compare__side {
  border-left: 1px solid var(--line);
}

.compare__side--active {
  position: relative;
  background: var(--red);
  color: #fff;
}

.compare__side--active::before {
  content: "ФИКСИРОВАННЫЙ ПАКЕТ";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 8px;
  background: #fff;
  color: #121212;
  font-size: 10px;
  font-weight: 900;
}

.compare__caption {
  margin: 0;
  color: #aaa7a4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.compare__side--active .compare__caption {
  color: rgba(255, 255, 255, .78);
}

.compare__price {
  display: block;
  margin: 16px 0 30px;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
}

.check-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.mini-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.check-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 10px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.check-list--muted {
  color: #c0bcba;
}

.price-truth {
  margin: 0;
  padding: 26px clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.price-truth strong {
  color: #fff;
}

.projects {
  overflow: hidden;
  background: #151517;
}

.projects__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.projects__head > div {
  max-width: 850px;
}

.portfolio-link {
  display: grid;
  grid-template-columns: 52px auto 20px;
  gap: 14px;
  align-items: center;
  min-width: 245px;
  padding: 16px 18px;
  border: 1px solid #4a4a4d;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.portfolio-link:hover,
.portfolio-link:focus-visible {
  border-color: #fff;
  background: #202023;
  transform: translateY(-2px);
}

.portfolio-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.portfolio-link span {
  display: grid;
  gap: 3px;
}

.portfolio-link small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-link strong {
  font-size: 16px;
}

.portfolio-link b {
  font-size: 20px;
  font-weight: 500;
}

.project-reel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.project-card__video {
  position: relative;
  overflow: hidden;
  border: 1px solid #4b4b4e;
  border-radius: 6px;
  aspect-ratio: 9 / 16;
  background: #050505;
  transition: border-color .2s ease, transform .25s ease;
}

.project-card:hover .project-card__video,
.project-card:focus-visible .project-card__video {
  border-color: var(--red);
  transform: translateY(-4px);
}

.project-card__video video {
  display: block;
  width: 100%;
  height: 100%;
  background: #050505;
  object-fit: cover;
  object-position: top;
}

.project-card__video > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(5, 5, 5, .88);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.project-card__caption {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding: 15px 2px 0;
}

.project-card__caption strong {
  font-size: 20px;
}

.project-card__caption small {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.included {
  background: var(--paper);
  color: var(--black);
}

.included .kicker {
  color: var(--red-dark);
}

.included .section-heading p:last-child {
  color: #57524f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #aaa5a0;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid #aaa5a0;
}

.feature:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid #aaa5a0;
}

.feature:nth-child(even) {
  padding-left: 36px;
}

.feature > span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.15;
}

.feature p {
  margin: 0;
  color: #57524f;
}

.direct-bonus {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  margin-top: 48px;
  padding: clamp(28px, 4vw, 48px);
  border-top: 5px solid var(--red);
  background: #111113;
  color: #fff;
}

.direct-bonus__icon {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.direct-bonus .kicker {
  margin-bottom: 12px;
  color: #ffe500;
}

.direct-bonus h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.direct-bonus__copy > p:not(.kicker) {
  max-width: 820px;
  margin: 18px 0 0;
  color: #c5c2c0;
  font-size: 17px;
}

.direct-bonus__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  margin-top: 24px;
}

.direct-bonus__facts strong {
  color: #ffe500;
  font-size: 22px;
}

.direct-bonus__facts span {
  padding-left: 26px;
  border-left: 1px solid #555458;
  color: #fff;
  font-weight: 700;
}

.direct-bonus__copy > small {
  display: block;
  max-width: 820px;
  margin-top: 15px;
  color: #8f8c89;
  font-size: 12px;
}

.proof-band {
  background: var(--red);
  color: #fff;
}

.proof-band .kicker {
  color: #230504;
}

.proof-band__head {
  max-width: 820px;
  margin-bottom: 44px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .42);
  border-bottom: 1px solid rgba(255, 255, 255, .42);
}

.proof-item {
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, .42);
}

.proof-item:last-child {
  border: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 28px;
  line-height: 1.1;
}

.proof-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.process {
  background: #0b0b0c;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.process-list strong {
  font-size: 22px;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.support {
  background: #151517;
}

.support__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  border: 1px solid var(--line);
}

.support__price,
.support__details {
  padding: clamp(30px, 5vw, 62px);
}

.support__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--red);
}

.support__price .kicker {
  color: #250504;
}

.support__price > strong {
  font-size: clamp(52px, 6vw, 82px);
  line-height: .92;
}

.support__price small {
  display: block;
  margin-top: 12px;
  font-size: 20px;
}

.support__price > span {
  margin-top: 20px;
  color: rgba(255, 255, 255, .8);
}

.support__details {
  border-left: 1px solid var(--line);
}

.support__details h2 {
  font-size: clamp(32px, 3.5vw, 50px);
}

.support__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.support__details > p {
  font-size: 14px;
}

.faq {
  background: var(--paper);
  color: var(--black);
}

.faq .kicker {
  color: var(--red-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid #aaa5a0;
}

.faq-item {
  border-bottom: 1px solid #aaa5a0;
}

.faq-item summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 3px;
  color: var(--red-dark);
  font-size: 28px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 42px 24px 0;
  color: #57524f;
}

.lead {
  background: #0a0a0b;
}

.lead__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 72px;
  align-items: start;
}

.lead__phone {
  display: grid;
  margin-top: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.lead__phone span {
  color: var(--muted);
  font-size: 13px;
}

.lead__phone strong {
  margin-top: 6px;
  color: var(--red);
  font-size: clamp(26px, 4vw, 42px);
}

.lead-form {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.lead-form__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.lead-form__price span {
  color: var(--muted);
  font-size: 13px;
}

.lead-form__price strong {
  color: var(--red);
  font-size: 28px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field > span {
  font-size: 13px;
  font-weight: 800;
}

.field small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #3d3d40;
  border-radius: 4px;
  background: #09090a;
  color: #fff;
}

.field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 112px;
  padding: 15px 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #706d6b;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 2px 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.consent a {
  color: #fff;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button--submit {
  width: 100%;
}

.button:disabled {
  opacity: .58;
  cursor: wait;
  transform: none;
}

.form-result {
  min-height: 22px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
}

.form-result.is-error {
  color: #ff716a;
}

.thanks {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px;
  border-left: 3px solid var(--red);
  background: #0b0b0c;
}

.thanks strong {
  font-size: 19px;
}

.thanks span {
  color: var(--muted);
}

.footer {
  padding: 34px 0;
  background: #050506;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer__brand div {
  display: grid;
}

.footer__brand span {
  color: var(--muted);
  font-size: 12px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 12px;
}

.footer__legal a:hover {
  color: #fff;
}

.cookie-choice {
  position: fixed;
  z-index: 110;
  right: 18px;
  bottom: 18px;
  width: min(560px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid #464649;
  border-radius: 6px;
  background: #111113;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .48);
}

.cookie-choice p {
  margin: 0 0 14px;
  color: #cbc7c4;
  font-size: 13px;
}

.cookie-choice p strong {
  color: #fff;
}

.cookie-choice > div {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.sticky-lead {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: calc(100% - 28px);
  min-height: 56px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 5px;
  background: #0b0b0c;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .44);
}

.sticky-lead b {
  padding: 9px 12px;
  border-radius: 3px;
  background: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.045); }
}

@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 17px); opacity: 0; }
}

@media (max-width: 1020px) {
  .topbar__nav {
    display: none;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar__actions {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-top: calc(var(--topbar) + 76px);
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 34px;
  }

  .hero__demo {
    width: 220px;
  }

  .projects__head,
  .lead__grid {
    gap: 42px;
  }

  .proof-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item:nth-child(2),
  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n+2),
  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .42);
  }

  .process-list li:nth-child(-n+2) {
    border-bottom-color: var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --topbar: 66px;
  }

  body {
    padding-bottom: 72px;
  }

  .shell,
  .hero__inner {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand {
    gap: 8px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    margin-top: 3px;
    font-size: 9px;
  }

  .topbar__actions .button {
    display: none;
  }

  .topbar-call {
    min-height: 48px;
    padding: 5px 8px;
  }

  .topbar-call strong {
    font-size: clamp(11px, 3.4vw, 13px);
  }

  .hero__image {
    background-position: 63% center;
  }

  .hero__shade {
    background: rgba(5, 5, 6, .72);
  }

  .hero__inner {
    min-height: calc(100svh - 20px);
    padding-top: calc(var(--topbar) + 30px);
    padding-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero h1 {
    margin-top: 15px;
    margin-bottom: 16px;
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero__gift {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 10px 8px 8px;
  }

  .hero__gift img {
    width: 36px;
    height: 36px;
  }

  .hero__gift strong {
    font-size: 13px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 21px 0;
  }

  .hero__facts div {
    display: block;
    padding: 12px 8px;
  }

  .hero__facts strong {
    font-size: 15px;
  }

  .hero__facts span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.25;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button--call {
    display: none;
  }

  .hero__price-note {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero__price-note span {
    display: none;
  }

  .hero__price-note strong:nth-of-type(2) {
    display: block;
  }

  .hero__demo {
    display: block;
    justify-self: center;
    width: 164px;
    margin-top: 12px;
    padding-bottom: 8px;
  }

  .hero__demo .phone {
    border-radius: 25px;
    transform: rotate(1deg);
  }

  .hero__demo .phone video {
    border-radius: 19px;
  }

  .hero__demo .phone__speaker {
    top: 13px;
    height: 14px;
  }

  .demo-label {
    right: 50%;
    bottom: 22px;
    padding: 9px 10px;
    font-size: 11px;
    white-space: nowrap;
    transform: translateX(50%);
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .proof-band__head h2,
  .support__details h2,
  .lead__copy h2,
  .projects__head h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .section-heading p:last-child,
  .projects__head > div > p:last-child,
  .support__details > p,
  .lead__copy > p {
    font-size: 16px;
  }

  .reason-grid,
  .compare,
  .price-points,
  .projects__head,
  .feature-grid,
  .support__grid,
  .faq-grid,
  .lead__grid {
    grid-template-columns: 1fr;
  }

  .reason {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid #aaa5a0;
  }

  .reason:last-child {
    border-bottom: 0;
  }

  .compare__side {
    padding: 28px 22px;
  }

  .compare__side + .compare__side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .compare__side--active::before {
    top: 12px;
    right: 12px;
  }

  .price-truth {
    padding: 22px;
    font-size: 16px;
  }

  .projects__head,
  .lead__grid {
    gap: 38px;
  }

  .price-point {
    padding: 23px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-point:last-child {
    border-bottom: 0;
  }

  .price-point strong {
    margin-top: 9px;
    font-size: 21px;
  }

  .price-answer {
    grid-template-columns: 1fr 1fr;
  }

  .price-answer > div {
    min-width: 0;
    padding: 18px;
  }

  .price-answer > div > strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .price-answer p {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 18px;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .projects__head {
    align-items: start;
    margin-bottom: 30px;
  }

  .portfolio-link {
    width: 100%;
    min-width: 0;
  }

  .project-reel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(225px, 76vw);
    gap: 14px;
    overflow-x: auto;
    padding: 0 0 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .project-card {
    scroll-snap-align: start;
  }

  .direct-bonus {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
    padding: 26px 22px;
  }

  .direct-bonus__icon {
    width: 76px;
    height: 76px;
  }

  .direct-bonus__facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .direct-bonus__facts span {
    padding: 10px 0 0;
    border-top: 1px solid #555458;
    border-left: 0;
  }

  .feature,
  .feature:nth-child(odd),
  .feature:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }

  .proof-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2),
  .process-list li,
  .process-list li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .42);
  }

  .proof-item:last-child,
  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li {
    min-height: 190px;
  }

  .support__price,
  .support__details {
    padding: 30px 22px;
  }

  .support__details {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .support__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-grid {
    gap: 0;
  }

  .lead-form {
    padding: 25px 18px;
  }

  .lead-form__price {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__legal {
    justify-content: flex-start;
  }

  .cookie-choice {
    right: 12px;
    bottom: 76px;
    width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .cookie-choice p {
    margin-bottom: 8px;
    font-size: 11px;
    line-height: 1.35;
  }

  .cookie-choice > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cookie-choice .button {
    min-height: 42px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .sticky-lead {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
