:root {
  --bg: #070712;
  --surface: #ffffff;
  --surface-soft: #f5eef8;
  --ink: #171417;
  --muted: #685f68;
  --line: rgba(23, 20, 23, 0.1);
  --accent-a: #ff3fc8;
  --accent-b: #7b35ff;
  --accent-c: #b686ff;
  --dark: #05050d;
  --dark-2: #0b0820;
  --dark-ink: #f8f1ff;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(38, 20, 55, 0.12);
  --container: min(1120px, calc(100vw - 40px));
  font-family: "Geist", "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 90% 6%, rgba(255, 63, 200, 0.12), transparent 28rem),
    linear-gradient(180deg, #080713 0%, #05050d 28%, #fbf7f2 44%, #fffaf5 68%, #f8f2ec 100%);
  color: var(--ink);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(144, 59, 227, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100vw - 24px));
  min-height: 64px;
  margin: 12px auto 0;
  padding: 10px 26px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 6, 16, 0.58);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.topbar-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 211, 128, 0.28),
    0 10px 26px rgba(255, 176, 59, 0.22),
    0 0 28px rgba(253, 75, 171, 0.16);
}

.nav-links {
  gap: clamp(16px, 2.1vw, 26px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #100c18;
  font-size: 13px;
  font-weight: 800;
  padding: 0 18px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255, 63, 200, 0.16);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 84px);
  margin-top: -76px;
  padding: 132px 0 74px;
  overflow: hidden;
  background: #05050d;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 13, 0.96) 0%, rgba(5, 5, 13, 0.84) 30%, rgba(5, 5, 13, 0.22) 62%, rgba(5, 5, 13, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 5, 13, 0.06) 0%, rgba(5, 5, 13, 0.2) 66%, rgba(5, 5, 13, 0.98) 100%),
    url("./assets/hero-desktop.jpg");
  background-position: center;
  background-size: cover;
  mask-image: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 13, 0.42) 62%, #05050d 100%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 44px;
}

.hero-premium-grid {
  grid-template-columns: minmax(0, 720px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-b);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: clamp(18px, 3vh, 34px);
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 34px rgba(255, 63, 200, 0.12);
  padding: 0 14px;
  backdrop-filter: blur(14px);
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 0 40px rgba(123, 53, 255, 0.28);
}

.hero-title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  max-width: 860px;
  margin-bottom: 18px;
}

.hero-number {
  display: block;
  color: transparent;
  background: linear-gradient(150deg, #ffffff 0%, #ff3fc8 44%, #7b35ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(128px, 15vw, 218px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.78;
  text-shadow: none;
  filter: drop-shadow(0 0 34px rgba(255, 63, 200, 0.34));
}

.hero-title-text {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 920;
  line-height: 0.92;
}

.hero-title-text span {
  display: block;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
}

.line-title span {
  display: block;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
}

.accent-line {
  display: block;
  max-width: 700px;
  color: transparent;
  background: linear-gradient(100deg, var(--accent-a), var(--accent-b));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 880;
  line-height: 1.05;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #373038;
  font-size: clamp(18px, 2vw, 23px);
}

.hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 20px;
}

.event-meta span,
.route-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #332d35;
  font-size: 14px;
  font-weight: 760;
  padding: 0 16px;
}

.hero .event-meta span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.price {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .price {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 63, 200, 0.24);
}

.hero .button {
  min-height: 64px;
  padding: 0 38px;
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 880;
  line-height: 1.1;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button [data-config="price"] {
  white-space: nowrap;
}

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

.button-primary {
  background: linear-gradient(100deg, var(--accent-a), var(--accent-b));
  color: #fff;
  box-shadow: 0 18px 40px rgba(123, 53, 255, 0.34), 0 0 46px rgba(255, 63, 200, 0.2);
}

.button-secondary {
  border: 1px solid rgba(144, 59, 227, 0.24);
  background: #fff;
  color: var(--accent-b);
  box-shadow: 0 16px 36px rgba(38, 20, 55, 0.08);
}

.microcopy,
small {
  color: var(--muted);
  font-size: 14px;
}

.microcopy {
  margin: 14px 0 0;
}

.hero .microcopy {
  color: rgba(255, 255, 255, 0.62);
}

.hero-marquee {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 63, 200, 0.1), rgba(123, 53, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 42px rgba(123, 53, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-marquee::before,
.hero-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 76px;
  pointer-events: none;
  content: "";
}

.hero-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 7, 19, 0.94), transparent);
}

.hero-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 7, 19, 0.94), transparent);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: hero-marquee 24s linear infinite;
}

.hero-marquee span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.14em;
  padding: 0 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee span::after {
  position: absolute;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 0 14px rgba(255, 63, 200, 0.7);
  content: "";
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  max-width: 630px;
  gap: 8px;
  margin-top: 24px;
}

.audience-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 880;
  padding: 0 18px;
  backdrop-filter: blur(12px);
}

.hero-system {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 75, 171, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.system-card {
  display: grid;
  gap: 6px;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.system-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.system-card strong {
  font-size: 22px;
  line-height: 1.05;
}

.system-arrow {
  width: 2px;
  height: 20px;
  margin-left: 28px;
  border-radius: 999px;
  background: linear-gradient(var(--accent-a), var(--accent-b));
}

.two-col,
.unlocked-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: start;
}

.section-copy p,
.section-heading p,
.expert-card p,
.no-product-card p,
.after-card p,
.faq-list p {
  color: var(--muted);
  font-size: 18px;
}

.section-copy strong,
.no-product-card strong,
.statement {
  color: var(--ink);
}

.statement {
  border-left: 4px solid var(--accent-a);
  margin: 28px 0 0;
  padding: 16px 0 16px 20px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 850;
  line-height: 1.18;
}

.misconception {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #05050d 0%, #090817 52%, #111022 100%);
  color: #fff;
}

.misconception::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.16), transparent 34%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.18), transparent 42%);
  content: "";
}

.misconception-inner {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.misconception-heading {
  max-width: 1030px;
}

.misconception-kicker,
.misconception-accent {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 54%, #ffffff 118%);
  background-clip: text;
  -webkit-background-clip: text;
}

.misconception h2 {
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 46px rgba(123, 53, 255, 0.18);
}

.misconception h2 span {
  display: block;
}

.path-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.path-card,
.result-card,
.model-card,
.outcome-card,
.after-card,
.ticket-card,
.expert-card,
.no-product-card,
.faq-list details {
  border: 1px solid rgba(23, 20, 23, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(38, 20, 55, 0.08);
}

.path-card {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 280px;
  border-color: rgba(255, 255, 255, 0.13);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.path-card-fail {
  opacity: 0.82;
}

.path-card-right {
  border-color: rgba(255, 63, 200, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 63, 200, 0.17), rgba(123, 53, 255, 0.13)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 26px 70px rgba(123, 53, 255, 0.24);
}

.path-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.path-card-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.path-card-right .path-card-title span {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 63, 200, 0.28);
}

.path-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
}

.path-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-steps li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.15;
  padding: 14px 18px;
}

.path-steps li:not(:last-child) {
  margin-right: 28px;
}

.path-steps li:not(:last-child)::after {
  position: absolute;
  right: -33px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  content: "";
}

.path-steps li:not(:last-child)::before {
  position: absolute;
  right: -34px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  transform: rotate(45deg);
  content: "";
}

.path-card-right .path-steps li {
  border-color: rgba(255, 63, 200, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.12), rgba(123, 53, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
}

.path-card-right .path-steps li:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(255, 63, 200, 0.8), rgba(123, 53, 255, 0.2));
}

.path-card-right .path-steps li:not(:last-child)::before {
  border-color: rgba(255, 63, 200, 0.86);
}

.misconception-note {
  max-width: 820px;
  margin: 0;
  border-left: 4px solid var(--accent-a);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 850;
  line-height: 1.18;
  padding: 14px 0 14px 20px;
}

.diagnosis {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7efff 0%, #fffaf5 58%, #fbf7f2 100%);
}

.diagnosis::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 63, 200, 0.1), transparent 34%),
    linear-gradient(310deg, rgba(123, 53, 255, 0.11), transparent 42%);
  content: "";
}

.diagnosis-inner {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.diagnosis-heading {
  max-width: 980px;
}

.diagnosis-heading h2 {
  max-width: 980px;
}

.diagnosis-lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.35vw, 28px);
  line-height: 1.22;
}

.diagnosis-lead strong {
  color: var(--ink);
  font-weight: 900;
}

.diagnostic-bricks {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.diagnostic-brick {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border: 1px solid rgba(123, 53, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(38, 20, 55, 0.08);
  color: #171417;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
  padding: clamp(22px, 2.7vw, 32px);
  text-align: center;
}

.brick-a,
.brick-b,
.brick-c,
.brick-f,
.brick-i,
.brick-l,
.brick-m,
.brick-n {
  grid-column: span 4;
}

.brick-d,
.brick-e,
.brick-j,
.brick-k {
  grid-column: span 3;
}

.brick-g,
.brick-h {
  grid-column: span 2;
}

.brick-a,
.brick-c,
.brick-f,
.brick-i,
.brick-l,
.brick-n {
  border-color: rgba(255, 63, 200, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.13), rgba(123, 53, 255, 0.12)),
    rgba(255, 255, 255, 0.78);
}

.diagnostic-route {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.route-step {
  cursor: pointer;
}

.route-step.is-active {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 18px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  content: "";
}

.result-card {
  display: grid;
  align-content: center;
  padding: 30px;
  background: linear-gradient(140deg, #fff, rgba(253, 75, 171, 0.08));
}

.result-card span {
  color: var(--accent-b);
  font-weight: 860;
}

.result-card p {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 820;
  line-height: 1.2;
}

.models {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #111022 0%, #070712 58%, #05050d 100%);
  color: #fff;
}

.models::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.13), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.16), transparent 46%);
  content: "";
}

.models-inner {
  position: relative;
  display: grid;
  gap: 32px;
}

.models-heading {
  max-width: 960px;
}

.models .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.models h2 {
  color: #fff;
  text-shadow: 0 0 44px rgba(123, 53, 255, 0.2);
}

.models-heading p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.model-card {
  min-height: 230px;
  padding: 28px;
}

.models .model-card {
  position: relative;
  display: grid;
  grid-column: span 4;
  align-content: start;
  gap: 18px;
  min-height: 244px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.models .model-card:nth-child(4),
.models .model-card:nth-child(5) {
  grid-column: span 6;
}

.models .model-card:nth-child(6) {
  grid-column: span 5;
}

.models .model-card-wide {
  grid-column: span 7;
  border-color: rgba(255, 63, 200, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 63, 200, 0.17), rgba(123, 53, 255, 0.14)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 28px 74px rgba(123, 53, 255, 0.24);
}

.model-card span,
.outcome-card span,
.after-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(144, 59, 227, 0.1);
  color: var(--accent-b);
  font-weight: 900;
}

.models .model-card span {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.2), rgba(123, 53, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 63, 200, 0.14);
}

.models .model-card-wide span {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 0 34px rgba(255, 63, 200, 0.32);
}

.models .model-card h3 {
  max-width: 420px;
  margin: 4px 0 0;
  color: #fff;
  font-size: clamp(22px, 2.25vw, 30px);
}

.model-card p,
.outcome-card h3,
.after-card p {
  color: var(--muted);
}

.models .model-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(248, 241, 255, 0.68);
  font-size: 17px;
}

.model-card-wide {
  grid-column: span 2;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 28px;
}

.models .cta-strip {
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(110deg, rgba(255, 63, 200, 0.12), rgba(123, 53, 255, 0.1)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.cta-strip p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.no-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(28px, 5vw, 56px);
}

.short-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.short-lines span {
  border-radius: 999px;
  background: linear-gradient(100deg, rgba(253, 75, 171, 0.1), rgba(144, 59, 227, 0.1));
  color: #332d35;
  font-weight: 820;
  padding: 12px 16px;
}

.no-product {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #05050d 0%, #0b0820 48%, #111022 100%);
  color: #fff;
}

.no-product::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 63, 200, 0.13), transparent 36%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.17), transparent 42%);
  content: "";
}

.no-product-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.82fr);
  gap: 40px;
  align-items: center;
}

.no-product-copy h2 {
  max-width: 820px;
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.no-product .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.no-product-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.no-product-panel {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(0, 0, 0, 0.24);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(18px);
}

.no-product .short-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.no-product .short-lines span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.14), rgba(123, 53, 255, 0.13)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 12px;
}

.no-product-statement {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.04;
}

.no-product-panel p:not(.no-product-statement) {
  margin: 0;
  color: rgba(248, 241, 255, 0.7);
  font-size: 18px;
}

.unlocked {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.13), transparent 40%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.18), transparent 46%),
    linear-gradient(135deg, #05050d, #0b0820 58%, #111022);
  color: var(--dark-ink);
}

.unlocked .eyebrow,
.unlocked h2,
.unlocked strong {
  color: #fff;
}

.unlocked .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.unlocked-copy p,
.dark-list li {
  color: rgba(248, 241, 255, 0.72);
}

.unlocked-lead {
  font-size: 22px;
}

.dark-list li::before {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}

.dark-statement {
  border-color: #fd4bab;
  color: #fff;
}

.funnel-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.funnel-visual::before {
  position: absolute;
  inset: 11% 4% 16% 12%;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.2), rgba(123, 53, 255, 0.13)),
    rgba(255, 255, 255, 0.04);
  filter: blur(18px);
  opacity: 0.82;
  content: "";
}

.floating-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34), 0 0 54px rgba(123, 53, 255, 0.2);
  transform-style: preserve-3d;
  animation: floating-shot 6.8s ease-in-out infinite;
}

.floating-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.floating-shot-profile {
  top: 10px;
  right: 0;
  z-index: 2;
  width: min(440px, 88%);
  transform: rotate(2deg);
}

.floating-shot-stats {
  left: 0;
  bottom: 142px;
  z-index: 3;
  width: min(330px, 64%);
  border-radius: 22px;
  transform: rotate(-4deg);
  animation-delay: -2.3s;
}

@keyframes floating-shot {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

.funnel-map {
  display: grid;
  gap: 12px;
}

.funnel-map div {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  font-weight: 820;
  padding: 18px 20px;
}

.funnel-map div:not(:last-child)::after {
  position: absolute;
  left: 28px;
  bottom: -12px;
  width: 2px;
  height: 12px;
  background: linear-gradient(#fd4bab, #903be3);
  content: "";
}

.screenshot-slots {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.asset-slot,
.portrait-slot {
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px dashed rgba(144, 59, 227, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(253, 75, 171, 0.09), rgba(144, 59, 227, 0.09)),
    rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 860;
  text-align: center;
  padding: 24px;
}

.unlocked .asset-slot {
  min-height: 260px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(253, 75, 171, 0.16), rgba(144, 59, 227, 0.12)),
    rgba(255, 255, 255, 0.04);
  color: rgba(248, 241, 255, 0.72);
}

.product-model {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.11), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.15), transparent 45%),
    linear-gradient(180deg, #111022 0%, #070712 58%, #05050d 100%);
  color: #fff;
}

.antonina-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.antonina-visual {
  position: relative;
  min-height: 600px;
}

.antonina-visual::before {
  position: absolute;
  inset: 12% 0 8% 14%;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.24), rgba(123, 53, 255, 0.16)),
    rgba(255, 255, 255, 0.05);
  filter: blur(20px);
  content: "";
}

.antonina-photo-card {
  position: relative;
  width: min(430px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 58px rgba(123, 53, 255, 0.2);
  transform: rotate(-2deg);
}

.antonina-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center top;
}

.antonina-floating-note {
  position: absolute;
  right: 0;
  bottom: 54px;
  display: grid;
  gap: 4px;
  min-width: 178px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 241, 255, 0.9)),
    #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28), 0 0 44px rgba(255, 63, 200, 0.16);
  padding: 18px 20px;
  backdrop-filter: blur(18px);
  animation: floating-shot 6.4s ease-in-out infinite;
}

.antonina-floating-note span {
  color: #171417;
  font-size: 13px;
  font-weight: 850;
}

.antonina-floating-note strong {
  color: #171417;
  font-size: 34px;
  line-height: 1;
}

.antonina-copy .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.antonina-copy h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.antonina-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
}

.antonina-copy .expert-fact {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-size: 15px;
  padding: 0 16px;
}

.antonina-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: clamp(19px, 2vw, 25px);
}

.antonina-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.antonina-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.12), rgba(123, 53, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 880;
  padding: 0 16px;
}

.expert-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: clamp(26px, 4.8vw, 52px);
}

.expert-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.expert-fact,
.flow-text {
  color: var(--ink) !important;
  font-weight: 850;
}

.flow-text {
  border-radius: 16px;
  background: var(--surface-soft);
  padding: 16px;
}

.portrait-slot {
  min-height: 420px;
}

blockquote {
  margin: 26px 0 0;
  border-left: 4px solid var(--accent-a);
  padding: 8px 0 8px 18px;
  font-size: 24px;
  font-weight: 820;
  line-height: 1.22;
}

.vadim {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.1), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.15), transparent 45%),
    linear-gradient(180deg, #05050d 0%, #0b0820 58%, #111022 100%);
  color: #fff;
}

.vadim-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.vadim-copy .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.vadim-copy h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.vadim-copy .expert-fact {
  max-width: 660px;
  color: rgba(248, 241, 255, 0.78) !important;
  font-size: clamp(20px, 2vw, 26px);
}

.vadim-skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.vadim-skill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.12), rgba(123, 53, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 880;
  padding: 0 16px;
}

.vadim-founder {
  margin: 26px 0 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: 18px;
  font-weight: 820;
}

.vadim blockquote {
  max-width: 780px;
  border-color: var(--accent-a);
  color: #fff;
}

.vadim-visual {
  position: relative;
  min-height: 620px;
}

.vadim-visual::before {
  position: absolute;
  inset: 8% 8% 6% 0;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.23), rgba(123, 53, 255, 0.15)),
    rgba(255, 255, 255, 0.05);
  filter: blur(20px);
  content: "";
}

.vadim-photo-card {
  position: relative;
  width: min(430px, 100%);
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 58px rgba(123, 53, 255, 0.2);
  transform: rotate(2deg);
}

.vadim-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: center;
}

.compact li {
  font-size: 17px;
}

.outcomes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.11), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.16), transparent 45%),
    linear-gradient(180deg, #111022 0%, #070712 58%, #05050d 100%);
  color: #fff;
}

.outcomes-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 32px;
}

.outcomes-heading {
  width: 100%;
  max-width: 960px;
  justify-self: start;
}

.outcomes .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.outcomes h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.outcomes-heading p {
  max-width: 820px;
  margin: 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.outcome-grid,
.after-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.outcome-card {
  min-height: 260px;
  padding: 24px;
}

.outcomes .outcome-grid {
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.outcomes .outcome-card {
  display: grid;
  grid-column: span 4;
  align-content: start;
  gap: 22px;
  min-height: 244px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(0, 0, 0, 0.24);
  padding: 28px;
  backdrop-filter: blur(18px);
}

.outcomes .outcome-card:nth-child(4),
.outcomes .outcome-card:nth-child(5) {
  grid-column: span 6;
  min-height: 220px;
}

.outcome-card h3 {
  font-size: 21px;
  line-height: 1.18;
}

.outcomes .outcome-card span {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.2), rgba(123, 53, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 63, 200, 0.14);
}

.outcomes .outcome-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.15vw, 30px);
}

.center-statement {
  max-width: 760px;
  margin: 32px auto 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.outcomes .center-statement {
  width: min(calc(100vw - 80px), 1360px);
  max-width: none;
  margin: 0;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(255, 63, 200, 0.12), rgba(123, 53, 255, 0.1)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 60px rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 28px clamp(34px, 4vw, 56px);
  font-size: clamp(28px, 2.35vw, 36px);
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(18px);
}

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

.after {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.1), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.15), transparent 45%),
    linear-gradient(180deg, #05050d 0%, #0b0820 58%, #111022 100%);
  color: #fff;
}

.after-inner {
  position: relative;
  display: grid;
  gap: 32px;
}

.after-heading {
  max-width: 980px;
}

.after .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.after h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.after-title span {
  display: block;
}

.after-heading p {
  max-width: 820px;
  margin: 0;
  color: rgba(248, 241, 255, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

.after .after-grid {
  gap: 16px;
  margin-top: 0;
}

.after-card {
  min-height: 280px;
  padding: 28px;
}

.after .after-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.after .after-card:nth-child(3) {
  border-color: rgba(255, 63, 200, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 63, 200, 0.17), rgba(123, 53, 255, 0.14)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 28px 74px rgba(123, 53, 255, 0.22);
}

.after-card strong {
  color: var(--accent-b);
}

.after .after-card span {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.2), rgba(123, 53, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 63, 200, 0.14);
}

.after .after-card:nth-child(3) span {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 0 34px rgba(255, 63, 200, 0.32);
}

.after .after-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.15vw, 30px);
}

.after .after-card p {
  margin: 0;
  color: rgba(248, 241, 255, 0.68);
  font-size: 17px;
}

.after .after-card strong {
  color: #fff;
}

.ticket-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 32px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(253, 75, 171, 0.08)),
    #fff;
}

.ticket {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.11), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.16), transparent 45%),
    linear-gradient(180deg, #111022 0%, #070712 58%, #05050d 100%);
  color: #fff;
}

.ticket-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.ticket .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.ticket h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.ticket .ticket-meta {
  margin: 30px 0 0;
}

.ticket .ticket-meta div,
.ticket-buy,
.ticket-price {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.ticket .ticket-meta div {
  border-radius: 16px;
}

.ticket dt {
  color: rgba(248, 241, 255, 0.62);
}

.ticket dd {
  color: #fff;
}

.ticket-buy {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
}

.ticket-buy > p {
  margin: 0;
  color: rgba(248, 241, 255, 0.68);
  font-size: 16px;
  font-weight: 850;
}

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

.countdown-grid div {
  display: grid;
  gap: 6px;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 63, 200, 0.13), rgba(123, 53, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
  padding: 14px 10px;
  text-align: center;
}

.countdown-grid strong {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.98;
}

.countdown-grid span {
  color: rgba(248, 241, 255, 0.66);
  font-size: 12px;
  font-weight: 850;
}

.ticket-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  padding: 18px;
}

.ticket-price span {
  color: rgba(248, 241, 255, 0.68);
  font-weight: 850;
}

.ticket-price-values {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
  min-width: max-content;
}

.ticket-price del {
  color: rgba(248, 241, 255, 0.44);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1;
  text-decoration-color: rgba(255, 63, 200, 0.78);
  text-decoration-thickness: 2px;
}

.ticket-price strong {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 0.96;
  white-space: nowrap;
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.ticket-meta div {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 16px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 860;
}

.ticket-buy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.ticket-buy p {
  margin: 0;
  color: var(--muted);
}

.ticket-buy strong {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
}

.ticket .ticket-buy {
  gap: 18px;
}

.ticket .ticket-buy > p {
  color: rgba(248, 241, 255, 0.68);
}

.ticket .countdown-grid strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.98;
}

.ticket .ticket-price strong {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
}

.faq-grid {
  grid-template-columns: 0.72fr 1fr;
}

.faq {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 63, 200, 0.1), transparent 38%),
    linear-gradient(300deg, rgba(123, 53, 255, 0.14), transparent 45%),
    linear-gradient(180deg, #05050d 0%, #0b0820 58%, #111022 100%);
  color: #fff;
}

.faq-grid {
  position: relative;
}

.faq .eyebrow {
  color: transparent;
  background: linear-gradient(100deg, #ff3fc8 0%, #b686ff 58%, #ffffff 120%);
  background-clip: text;
  -webkit-background-clip: text;
}

.faq h2 {
  color: #fff;
  text-shadow: 0 0 42px rgba(123, 53, 255, 0.2);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq .faq-list details {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  list-style: none;
}

.faq .faq-list summary {
  color: #fff;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--accent-b);
  content: "+";
}

.faq .faq-list summary::after {
  color: var(--accent-a);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.faq .faq-list p {
  color: rgba(248, 241, 255, 0.7);
}

.footer {
  padding: 42px 0 92px;
  color: var(--muted);
}

.footer {
  background: #05050d;
  color: rgba(248, 241, 255, 0.62);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-inner {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  color: #fff;
  font-weight: 900;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 6, 16, 0.76);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: translateY(120%);
  transition: transform 220ms ease;
}

.mobile-sticky.is-visible {
  transform: translateY(0);
}

.mobile-sticky .button {
  width: 100%;
}

.reveal {
  transform: translateY(12px);
  opacity: 1;
  transition: transform 560ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }

  .hero-marquee-track {
    animation: none;
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .two-col,
  .path-comparison,
  .no-product-layout,
  .unlocked-grid,
  .antonina-layout,
  .vadim-layout,
  .expert-card,
  .expert-card-reverse,
  .ticket-card,
  .faq-grid,
  .diagnostic-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .model-grid,
  .outcome-grid,
  .after-grid,
  .screenshot-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-card-wide {
    grid-column: auto;
  }

  .models .model-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .models .model-card,
  .models .model-card:nth-child(4),
  .models .model-card:nth-child(5),
  .models .model-card:nth-child(6) {
    grid-column: span 3;
  }

  .models .model-card-wide {
    grid-column: 1 / -1;
  }

  .outcomes .outcome-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .outcomes .outcome-card,
  .outcomes .outcome-card:nth-child(4) {
    grid-column: span 3;
  }

  .outcomes .outcome-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-system {
    max-width: 620px;
  }

  .diagnostic-bricks {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .brick-a,
  .brick-c,
  .brick-f,
  .brick-i,
  .brick-l,
  .brick-n {
    grid-column: span 3;
  }

  .brick-b,
  .brick-d,
  .brick-e,
  .brick-g,
  .brick-h,
  .brick-j,
  .brick-k,
  .brick-m {
    grid-column: span 3;
  }

  .portrait-slot {
    min-height: 360px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 560px);
    --radius: 20px;
  }

  .topbar {
    min-height: 58px;
    margin-top: 8px;
    padding: 8px 14px 8px 12px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
  }

  .topbar-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: calc(100svh - 66px);
    margin-top: -66px;
    padding: 98px 0 36px;
  }

  .hero-bg {
    background:
      radial-gradient(circle at 24% 18%, rgba(255, 63, 200, 0.24), transparent 34%),
      radial-gradient(circle at 88% 16%, rgba(123, 53, 255, 0.2), transparent 38%),
      linear-gradient(180deg, rgba(5, 5, 13, 0.98) 0%, rgba(10, 7, 28, 0.96) 46%, #05050d 100%);
    background-position: center;
    background-size: auto;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.35vw, 39px);
    line-height: 0.98;
  }

  .hero-title {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-number {
    font-size: clamp(118px, 31vw, 138px);
    line-height: 0.76;
  }

  .hero-title-text {
    gap: 5px;
    font-size: clamp(26px, 7.05vw, 31px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.02;
  }

  .accent-line {
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .lead {
    max-width: 94%;
    font-size: 16px;
  }

  .event-meta span {
    min-height: 38px;
    font-size: 13px;
    padding: 0 13px;
  }

  .hero-action {
    align-items: stretch;
    flex-direction: column;
  }

  .price {
    font-size: 30px;
  }

  .hero .price {
    font-size: 36px;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
  }

  .audience-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .audience-pills span {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 880;
    padding: 0 14px;
    backdrop-filter: blur(12px);
  }

  .hero-system {
    display: none;
  }

  .system-card {
    min-height: 74px;
    padding: 16px;
  }

  .system-card strong {
    font-size: 19px;
  }

  .section {
    padding: 62px 0;
  }

  .misconception-inner {
    gap: 28px;
  }

  .misconception h2 {
    font-size: clamp(30px, 8.15vw, 42px);
  }

  .path-card {
    min-height: auto;
    gap: 20px;
    padding: 22px;
  }

  .path-card-title {
    align-items: flex-start;
  }

  .path-card h3 {
    font-size: 22px;
  }

  .path-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .path-steps li {
    width: 100%;
    min-height: 54px;
    font-size: 16px;
  }

  .path-steps li:not(:last-child) {
    margin-right: 0;
  }

  .path-steps li:not(:last-child)::after {
    left: 25px;
    right: auto;
    bottom: -30px;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  }

  .path-steps li:not(:last-child)::before {
    left: 22px;
    right: auto;
    bottom: -31px;
    transform: rotate(135deg);
  }

  .path-card-right .path-steps li:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(255, 63, 200, 0.8), rgba(123, 53, 255, 0.2));
  }

  .misconception-note {
    font-size: 20px;
  }

  .diagnosis-inner {
    gap: 30px;
  }

  .diagnosis-lead {
    font-size: 18px;
  }

  .diagnostic-bricks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .diagnostic-brick {
    min-height: 68px;
    border-radius: 16px;
    font-size: 17px;
    padding: 12px 14px;
  }

  .brick-c,
  .brick-f,
  .brick-i,
  .brick-l {
    grid-column: 1 / -1;
  }

  .brick-a,
  .brick-b,
  .brick-d,
  .brick-e,
  .brick-g,
  .brick-h,
  .brick-j,
  .brick-k,
  .brick-m,
  .brick-n {
    grid-column: span 1;
  }

  .section-copy p,
  .section-heading p,
  .expert-card p,
  .no-product-card p,
  .after-card p,
  .faq-list p,
  .check-list li {
    font-size: 16px;
  }

  .statement {
    font-size: 20px;
  }

  .diagnostic-route {
    flex-wrap: nowrap;
    margin-right: -14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .diagnostic-route::-webkit-scrollbar {
    display: none;
  }

  .route-step {
    flex: 0 0 auto;
  }

  .model-grid,
  .outcome-grid,
  .after-grid,
  .screenshot-slots,
  .ticket-meta {
    grid-template-columns: 1fr;
  }

  .model-card,
  .outcome-card,
  .after-card {
    min-height: auto;
  }

  .models-inner {
    gap: 26px;
  }

  .models-heading p {
    font-size: 17px;
  }

  .models .model-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .models .model-card,
  .models .model-card:nth-child(4),
  .models .model-card:nth-child(5),
  .models .model-card:nth-child(6),
  .models .model-card-wide {
    grid-column: auto;
    min-height: 210px;
    gap: 20px;
    padding: 22px;
  }

  .models .model-card h3 {
    font-size: 22px;
  }

  .models .model-card p {
    font-size: 16px;
  }

  .outcomes-inner {
    gap: 26px;
  }

  .outcomes-heading p {
    font-size: 17px;
  }

  .outcomes .outcome-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcomes .outcome-card,
  .outcomes .outcome-card:nth-child(4),
  .outcomes .outcome-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    gap: 18px;
    padding: 22px;
  }

  .outcomes .outcome-card h3 {
    font-size: 22px;
  }

  .outcomes .center-statement {
    width: 100%;
    padding: 24px;
    font-size: 24px;
    white-space: normal;
  }

  .after-inner {
    gap: 26px;
  }

  .after-heading p {
    font-size: 17px;
  }

  .after .after-grid {
    gap: 12px;
  }

  .after .after-card {
    min-height: auto;
    gap: 16px;
    padding: 22px;
  }

  .after .after-card h3 {
    font-size: 22px;
  }

  .after .after-card p {
    font-size: 16px;
  }

  .ticket-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ticket .ticket-meta {
    grid-template-columns: 1fr;
  }

  .ticket-buy {
    padding: 22px;
  }

  .ticket-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .ticket-price-values {
    justify-items: start;
    text-align: left;
  }

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

  .countdown-grid div {
    min-height: 86px;
  }

  .ticket-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .no-product-layout {
    gap: 28px;
  }

  .no-product-lead,
  .no-product-panel p:not(.no-product-statement) {
    font-size: 16px;
  }

  .no-product .short-lines {
    grid-template-columns: 1fr;
  }

  .no-product .short-lines span {
    min-height: 54px;
  }

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .unlocked-grid {
    gap: 32px;
  }

  .funnel-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .antonina-visual {
    min-height: auto;
  }

  .antonina-photo-card {
    width: min(430px, 82vw);
  }

  .antonina-floating-note {
    right: max(0px, calc(50% - 300px));
    bottom: 24px;
  }

  .vadim-visual {
    min-height: auto;
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .vadim-photo-card {
    width: min(430px, 82vw);
    margin: 0 auto;
  }

  .unlocked .asset-slot {
    min-height: 210px;
  }

  .portrait-slot {
    min-height: 300px;
  }

  .funnel-visual {
    display: block;
    min-height: 650px;
  }

  .funnel-visual::before {
    inset: 8% 4%;
    border-radius: 28px;
  }

  .floating-shot,
  .floating-shot-profile,
  .floating-shot-stats {
    width: 100%;
    transform: none;
  }

  .floating-shot-profile {
    position: relative;
    inset: auto;
    z-index: 2;
  }

  .floating-shot {
    border-radius: 20px;
  }

  .floating-shot-stats {
    position: absolute;
    top: 300px;
    right: -2px;
    z-index: 3;
    width: 86%;
  }

  .antonina-layout {
    gap: 28px;
  }

  .antonina-photo-card {
    width: 100%;
    max-width: 390px;
    transform: none;
  }

  .antonina-photo-card img {
    aspect-ratio: 0.78;
  }

  .antonina-floating-note {
    right: 0;
    bottom: 18px;
    min-width: 152px;
    border-radius: 18px;
    padding: 14px 16px;
  }

  .antonina-floating-note strong {
    font-size: 28px;
  }

  .antonina-lead {
    font-size: 17px;
  }

  .antonina-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .antonina-flow span {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 12px;
    text-align: center;
  }

  .antonina-ai-label {
    grid-column: 1 / -1;
    font-size: 0;
  }

  .antonina-ai-label::before {
    content: "Искуственный интеллект";
    font-size: 16px;
  }

  .vadim-layout {
    gap: 28px;
  }

  .vadim-visual {
    order: -1;
  }

  .vadim-photo-card {
    width: 100%;
    max-width: 390px;
    transform: none;
  }

  .vadim-photo-card img {
    aspect-ratio: 0.8;
  }

  .vadim-copy .expert-fact,
  .vadim-founder {
    font-size: 17px;
  }

  .vadim-skill-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .vadim-skill-grid span {
    min-height: 46px;
    border-radius: 14px;
    text-align: center;
    padding: 0 12px;
  }

  blockquote {
    font-size: 20px;
  }

  .ticket-buy strong {
    font-size: 56px;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 17px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }

  .footer {
    padding-bottom: 104px;
  }

  .mobile-sticky {
    display: block;
  }
}

@media (max-width: 370px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 32px;
  }

  .hero-title {
    gap: 10px;
  }

  .hero-number {
    font-size: 108px;
  }

  .hero-title-text {
    font-size: 24px;
  }

  h2 {
    font-size: 29px;
  }

  .accent-line {
    font-size: 23px;
  }

  .button {
    font-size: 13px;
  }
}
