:root {
  --bg: #0E0F11;
  --bg-2: #15171b;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.13);
  --text: #F6F0E5;
  --muted: #B9B0A3;
  --accent: #D99A3D;
  --accent-2: #F2E5C6;
  --danger: #C65C4A;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 154, 61, 0.20), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(217, 154, 61, 0.08), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(217, 154, 61, 0.10), transparent 42%),
    var(--bg);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 840px;
}

.section {
  padding: 96px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(32px, 5vw);
  background: rgba(14, 15, 17, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-width: 0;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(217,154,61,.32));
  flex: 0 0 auto;
}

.logo-text {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.logo-name {
  font-size: 42px;
  color: var(--accent-2);
}

.logo-subtitle {
  max-width: 360px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

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

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

.nav a:hover, .footer a:hover {
  color: var(--accent-2);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-2);
  text-decoration: none;
  transition: all .2s ease;
}

.header-cta:hover {
  border-color: rgba(217,154,61,.7);
  background: rgba(217,154,61,.12);
}

.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 56px;
  align-items: center;
}

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

h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 920px;
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

h3 {
  font-size: 22px;
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--accent-2);
  max-width: 700px;
}

.section-lead {
  color: var(--muted);
  font-size: 19px;
  margin: 20px 0 0;
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(217,154,61,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.hero-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(217,154,61,.28));
}

.brand-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.brand-full {
  margin: 3px 0 0;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 15px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, #F2B55D, var(--accent));
  color: #16110a;
  box-shadow: 0 16px 42px rgba(217,154,61,.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  color: var(--accent-2);
}

.button-large {
  min-height: 58px;
  padding: 17px 26px;
  font-size: 17px;
}

.hero-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 25% 20%, rgba(217,154,61,.24), transparent 38%),
    radial-gradient(circle at 85% 90%, rgba(255,255,255,.055), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(217,154,61,.22);
  border-radius: 50%;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(242,229,198,.08);
  border-radius: 50%;
  inset: 48px;
}

.orbit::after {
  inset: 96px;
}

.hero-card-logo-img {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 76%);
  height: auto;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(217,154,61,.24));
  opacity: .96;
}

.hero-card-logo .product-window {
  inset: auto 28px 28px;
}


.product-window {
  position: absolute;
  inset: auto 28px 28px;
  border: 1px solid var(--line);
  background: rgba(14,15,17,.76);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 20px;
}

.window-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(242,229,198,.26);
}

.chat-line {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  color: var(--accent-2);
}

.chat-line.muted {
  color: var(--muted);
}

.chat-line.accent {
  border-color: rgba(217,154,61,.45);
  background: rgba(217,154,61,.10);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.result-grid div {
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.06);
  color: var(--accent-2);
  font-weight: 700;
}

.pain {
  background: linear-gradient(180deg, rgba(217,154,61,.045), transparent);
}

.checks {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.checks div {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--line);
}

.checks div::before {
  content: "→";
  color: var(--accent);
  font-weight: 800;
  margin-right: 10px;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.text-block {
  color: var(--accent-2);
  font-size: 18px;
}

.text-block p:first-child {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.card, .panel, .price-card, .success-card, .legal {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
}

.card {
  padding: 24px;
}

.card p, .panel li, .legal p, .legal li {
  color: var(--muted);
}

.card h3 {
  color: var(--accent-2);
}

.dark-panel {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
}

.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(217,154,61,.16);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 14px;
}

.step p {
  margin: 0;
  color: var(--accent-2);
  font-weight: 600;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: 30px;
}

.panel ul {
  padding-left: 20px;
}

.panel li + li {
  margin-top: 10px;
}

.panel-warn {
  background: rgba(198,92,74,.06);
}

.price-card {
  text-align: center;
  max-width: 880px;
  padding: 48px;
  margin: 0 auto;
  background:
    linear-gradient(145deg, rgba(217,154,61,.14), rgba(255,255,255,.045)),
    var(--panel);
}

.price-card h2 {
  color: var(--accent-2);
}

.price-list {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 32px;
  text-align: left;
}

.price-list div {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.18);
  border: 1px solid var(--line);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: var(--panel);
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--accent-2);
}

.faq p {
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding-bottom: 120px;
}

.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
  background: rgba(0,0,0,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.mobile-sticky {
  display: none;
}

.simple-page .section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.success-card, .legal {
  padding: 42px;
}

.instruction {
  margin: 30px 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.instruction li + li {
  margin-top: 16px;
}

.legal {
  max-width: 900px;
}

.legal h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.legal h2 {
  margin-top: 32px;
  font-size: 28px;
}

.notice {
  padding: 18px;
  border: 1px solid rgba(217,154,61,.38);
  background: rgba(217,154,61,.10);
  color: var(--accent-2);
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

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

  .hero-grid, .split, .two-cols, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 460px;
  }

  .hero-card-logo-img {
    width: min(290px, 82%);
    top: 28px;
  }

  .hero-brand {
    align-items: center;
    border-radius: 24px;
    padding: 12px;
  }

  .hero-logo {
    width: 58px;
    height: 58px;
  }

  .brand-full {
    font-size: 13px;
  }

  .cards, .steps {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .header {
    padding: 18px 14px;
    justify-content: center;
  }

  .logo {
    width: 100%;
    justify-content: center;
    gap: 16px;
    text-align: left;
  }

  .logo-img {
    width: 82px;
    height: 82px;
  }

  .logo-name {
    font-size: 30px !important;
  }

  .logo-subtitle {
    max-width: 260px;
    font-size: 18px;
    line-height: 1.12;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cards, .steps {
    grid-template-columns: 1fr;
  }

  .price-card, .success-card, .legal {
    padding: 26px;
  }

  .mobile-sticky {
    display: block;
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .mobile-sticky .button {
    width: 100%;
    box-shadow: 0 12px 44px rgba(0,0,0,.55);
  }

  .final-cta {
    padding-bottom: 150px;
  }
}

/* v1.2 conversion blocks */
.window-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.before-after {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(217,154,61,.035));
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.compare-card h3 {
  color: var(--accent-2);
  margin-bottom: 18px;
}

.compare-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.compare-card li + li {
  margin-top: 10px;
}

.accent-card {
  border-color: rgba(217,154,61,.34);
  background: linear-gradient(145deg, rgba(217,154,61,.13), rgba(255,255,255,.045));
}

.muted-card {
  background: rgba(255,255,255,.038);
}

.route-line {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.route-line div {
  position: relative;
  min-height: 120px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.route-line div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
  z-index: 2;
}

.route-line span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(217,154,61,.16);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 14px;
}

.route-line p {
  margin: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.demo-output {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(217,154,61,.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 15%, rgba(217,154,61,.12), transparent 34%),
    var(--panel);
}

.demo-copy p:not(.eyebrow) {
  color: var(--muted);
}

.demo-card {
  display: grid;
  gap: 12px;
}

.demo-row {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.18);
}

.demo-row strong {
  color: var(--accent);
}

.demo-row span {
  color: var(--accent-2);
}

.comparison-table {
  display: grid;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table > div > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.comparison-table > div > div + div {
  border-left: 1px solid var(--line);
  color: var(--accent-2);
  background: rgba(217,154,61,.045);
}

.comparison-table > div:last-child > div {
  border-bottom: 0;
}

.comparison-head > div {
  color: var(--accent-2) !important;
  font-weight: 900;
  background: rgba(217,154,61,.10) !important;
}

.author-block {
  background: linear-gradient(180deg, transparent, rgba(217,154,61,.035));
}

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

.seller p {
  margin: 0 0 8px;
}

.seller a {
  color: var(--accent-2);
}

@media (max-width: 920px) {
  .compare-cards,
  .demo-output {
    grid-template-columns: 1fr;
  }

  .route-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-line div:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 620px) {
  .compare-card,
  .demo-output {
    padding: 22px;
  }

  .route-line,
  .compact-steps {
    grid-template-columns: 1fr;
  }

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

  .comparison-table > div {
    grid-template-columns: 1fr;
  }

  .comparison-table > div > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* v1.4 short checkout landing */
.compact-hero {
  padding-top: 74px;
  padding-bottom: 82px;
}

.compact-hero .lead {
  max-width: 760px;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--accent-2);
  font-size: 17px;
}

.hero-bullets li {
  position: relative;
  padding-left: 26px;
}

.hero-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(217,154,61,.34);
  background: rgba(217,154,61,.105);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}

.inline-availability {
  margin-top: 18px;
}

.checkout-card {
  min-height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  gap: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)),
    radial-gradient(circle at 50% 0%, rgba(217,154,61,.22), transparent 38%);
}

.checkout-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.checkout-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 20px rgba(217,154,61,.30));
}

.checkout-kicker {
  margin: 0 0 6px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .16em;
}

.checkout-top h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.checkout-text {
  color: var(--accent-2);
  font-size: 18px;
  margin: 0;
}

.price-badge {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(217,154,61,.36);
  border-radius: var(--radius);
  background: rgba(0,0,0,.24);
}

.price-badge span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.price-badge strong {
  color: var(--accent-2);
  font-size: 42px;
  line-height: 1;
}

.price-badge em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.mini-route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-route span {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.compact-cards .card p {
  margin-bottom: 0;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.access-note {
  padding: 18px;
  border: 1px solid rgba(217,154,61,.30);
  border-radius: var(--radius-sm);
  background: rgba(217,154,61,.08);
}

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

.fomo-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(217,154,61,.36);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(217,154,61,.13), rgba(255,255,255,.035));
}

.fomo-card strong {
  color: var(--accent-2);
  font-size: 20px;
}

.fomo-card span {
  color: var(--muted);
}

.short-price-card {
  max-width: 940px;
}

.price-availability {
  margin: 22px auto 0;
}

.included-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

.included-grid div::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}

@media (max-width: 920px) {
  .access-steps,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .compact-hero {
    padding-top: 48px;
  }

  .checkout-top {
    align-items: center;
  }

  .checkout-logo {
    width: 78px;
    height: 78px;
  }

  .mini-route {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-badge strong {
    font-size: 34px;
  }

  .center-cta .button,
  .short-price-card .button {
    width: 100%;
  }
}

/* v1.5: removed duplicated hero purchase card, make hero single-column */
.compact-hero .hero-grid {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
}

.compact-hero .hero-copy {
  max-width: 940px;
}

@media (min-width: 921px) {
  .compact-hero .hero-copy {
    text-align: left;
  }
}

/* v1.6 scroll animations: soft, fast, no circus */
.js .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1),
    filter .72s cubic-bezier(.22, 1, .36, 1);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.js .reveal-left {
  transform: translate3d(-32px, 0, 0);
}

.js .reveal-right {
  transform: translate3d(32px, 0, 0);
}

.js .reveal-scale {
  transform: translate3d(0, 24px, 0) scale(.965);
}

.js .reveal-left.is-visible,
.js .reveal-right.is-visible,
.js .reveal-scale.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.js .stagger-group .reveal-on-scroll:nth-child(1) { transition-delay: .04s; }
.js .stagger-group .reveal-on-scroll:nth-child(2) { transition-delay: .10s; }
.js .stagger-group .reveal-on-scroll:nth-child(3) { transition-delay: .16s; }
.js .stagger-group .reveal-on-scroll:nth-child(4) { transition-delay: .22s; }
.js .stagger-group .reveal-on-scroll:nth-child(5) { transition-delay: .28s; }
.js .stagger-group .reveal-on-scroll:nth-child(6) { transition-delay: .34s; }
.js .stagger-group .reveal-on-scroll:nth-child(7) { transition-delay: .40s; }
.js .stagger-group .reveal-on-scroll:nth-child(8) { transition-delay: .46s; }

.js .hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: heroFadeUp .82s cubic-bezier(.22, 1, .36, 1) forwards;
}

.js .hero-copy > *:nth-child(1) { animation-delay: .06s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .14s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .22s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .30s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .38s; }
.js .hero-copy > *:nth-child(6) { animation-delay: .46s; }
.js .hero-copy > *:nth-child(7) { animation-delay: .54s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg);
  transition: left .65s ease;
}

.button-primary:hover::after {
  left: 125%;
}

.card,
.step,
.fomo-card,
.price-list div,
.faq details,
.price-card {
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.card:hover,
.step:hover,
.faq details:hover,
.price-list div:hover {
  transform: translateY(-3px);
  border-color: rgba(217,154,61,.32);
  background: rgba(255,255,255,.075);
}

.price-card:hover,
.fomo-card:hover {
  border-color: rgba(217,154,61,.46);
  box-shadow: 0 24px 86px rgba(0,0,0,.28);
}

@media (max-width: 620px) {
  .js .reveal-on-scroll,
  .js .reveal-left,
  .js .reveal-right,
  .js .reveal-scale {
    transform: translate3d(0, 24px, 0);
  }

  .js .reveal-on-scroll.is-visible,
  .js .reveal-left.is-visible,
  .js .reveal-right.is-visible,
  .js .reveal-scale.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal-on-scroll,
  .js .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* === WHATISLOVYCH / LAPA UNIFIED LIGHT VISUAL V1 ===
   Visual-only override. Structure and copy are preserved.
   Palette: cream #F7F1E9, chocolate #3E1E16, magenta #B23D6B.
*/
:root {
  --bg: #F7F1E9;
  --bg-2: #F7F1E9;
  --panel: rgba(255, 255, 255, 0.38);
  --panel-strong: rgba(255, 255, 255, 0.58);
  --line: rgba(62, 30, 22, 0.14);
  --text: #3E1E16;
  --muted: rgba(62, 30, 22, 0.62);
  --accent: #B23D6B;
  --accent-2: #3E1E16;
  --danger: #B23D6B;
  --shadow: 0 24px 80px rgba(62, 30, 22, 0.10);
}

html,
body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  background: #F7F1E9 !important;
  color: #3E1E16 !important;
}

.site-bg {
  background:
    radial-gradient(circle at 86% 10%, rgba(178, 61, 107, 0.10), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(62, 30, 22, 0.045), transparent 36%),
    #F7F1E9 !important;
}

.header {
  background: rgba(247, 241, 233, 0.88) !important;
  border-bottom: 1px solid rgba(62, 30, 22, 0.14) !important;
  box-shadow: 0 10px 34px rgba(62, 30, 22, 0.045);
}

.logo {
  color: #3E1E16 !important;
  letter-spacing: -0.04em !important;
}

.logo-img,
.hero-logo,
.checkout-logo,
.hero-card-logo-img {
  background: #F7F1E9 !important;
  border: 1px solid rgba(62, 30, 22, 0.10);
  box-shadow: 0 18px 46px rgba(62, 30, 22, 0.10) !important;
  filter: none !important;
}

.logo-name,
.checkout-top h2,
.card h3,
.compare-card h3,
.faq summary,
.price-card h2,
.price-badge strong,
.route-line p,
.demo-row span,
.step p,
.chat-line,
.result-grid div,
.brand-full,
.checkout-text,
.hero-bullets,
.text-block,
.notice,
.access-note,
.fomo-card strong {
  color: #3E1E16 !important;
}

.logo-subtitle,
.nav,
.microcopy,
.section-lead,
.card p,
.panel li,
.legal p,
.legal li,
.faq p,
.final-cta p,
.footer,
.fomo-card span,
.checkout-text + p,
.demo-copy p:not(.eyebrow),
.compare-card ul,
.window-caption,
.seller p {
  color: rgba(62, 30, 22, 0.62) !important;
}

.nav a:hover,
.footer a:hover,
.seller a {
  color: #B23D6B !important;
}

.eyebrow,
.brand-kicker,
.checkout-kicker,
.hero-bullets li::before,
.checks div::before,
.demo-row strong,
.included-grid div::before,
.route-line div:not(:last-child)::after {
  color: #B23D6B !important;
}

h1, h2, h3 {
  color: #3E1E16 !important;
  letter-spacing: -0.055em;
}

.lead {
  color: rgba(62, 30, 22, 0.72) !important;
}

.button-primary,
.header-cta {
  background: #B23D6B !important;
  color: #fff !important;
  border-color: #B23D6B !important;
  box-shadow: 0 18px 42px rgba(178, 61, 107, 0.22) !important;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.34) !important;
  color: #3E1E16 !important;
  border-color: rgba(62, 30, 22, 0.16) !important;
}

.header-cta:hover,
.button-primary:hover {
  background: #A63360 !important;
  border-color: #A63360 !important;
}

.card,
.panel,
.price-card,
.success-card,
.legal,
.compare-card,
.route-line div,
.demo-output,
.comparison-table,
.faq details,
.step,
.checks div,
.instruction,
.product-window,
.price-list div,
.price-badge,
.mini-route span,
.checkout-card,
.fomo-card,
.availability,
.notice,
.access-note {
  background: rgba(255, 255, 255, 0.34) !important;
  border-color: rgba(62, 30, 22, 0.14) !important;
  box-shadow: 0 18px 54px rgba(62, 30, 22, 0.06) !important;
}

.card:hover,
.step:hover,
.faq details:hover,
.price-list div:hover,
.compare-card:hover {
  background: rgba(255, 255, 255, 0.54) !important;
  border-color: rgba(178, 61, 107, 0.28) !important;
}

.dark-panel,
.before-after,
.author-block,
.footer {
  background: rgba(62, 30, 22, 0.035) !important;
  border-color: rgba(62, 30, 22, 0.12) !important;
}

.price-card,
.final-cta .container.narrow,
.fomo-card,
.accent-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(178, 61, 107, 0.10), transparent 36%),
    rgba(255, 255, 255, 0.42) !important;
}

.availability,
.access-note,
.notice {
  color: #3E1E16 !important;
  border-color: rgba(178, 61, 107, 0.30) !important;
  background: rgba(178, 61, 107, 0.075) !important;
}

.step span,
.route-line span {
  background: rgba(178, 61, 107, 0.12) !important;
  color: #B23D6B !important;
}

.price-list div,
.demo-row,
.comparison-table > div > div + div,
.comparison-head > div {
  background: rgba(255, 255, 255, 0.34) !important;
}

.footer {
  border-top: 1px solid rgba(62, 30, 22, 0.14) !important;
}

.mobile-sticky .button {
  box-shadow: 0 14px 44px rgba(178, 61, 107, 0.24) !important;
}

.button-primary::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent) !important;
}

@media (max-width: 620px) {
  .header {
    justify-content: center;
  }

  .logo-img {
    width: 72px !important;
    height: 72px !important;
  }

  .logo-name {
    font-size: 28px !important;
  }

  .logo-subtitle {
    font-size: 16px !important;
  }
}
/* === END WHATISLOVYCH / LAPA UNIFIED LIGHT VISUAL V1 === */


/* === LAPA FIX V6: images, uniform background, spacing, mobile menu, animation === */

/* One background. No decorative stains, no layered patches pretending to be design. */
:root {
  --bg: #F7F1E9 !important;
  --bg-2: #F7F1E9 !important;
  --panel: rgba(255, 255, 255, 0.34) !important;
  --panel-strong: rgba(255, 255, 255, 0.52) !important;
  --line: rgba(62, 30, 22, 0.14) !important;
  --text: #3E1E16 !important;
  --muted: rgba(62, 30, 22, 0.64) !important;
  --accent: #B23D6B !important;
  --accent-2: #3E1E16 !important;
}

html,
body,
main,
.site-bg,
.section,
.hero,
.dark-panel,
.before-after,
.author-block,
.footer,
.price,
.price-reason,
.final-cta {
  background: #F7F1E9 !important;
  background-color: #F7F1E9 !important;
  background-image: none !important;
}

.site-bg {
  display: none !important;
}

/* Kill accidental full-screen sections. This was creating the giant dead air gap. */
.section {
  min-height: 0 !important;
  display: block !important;
  align-items: initial !important;
  padding: clamp(64px, 8vw, 96px) 0 !important;
}

.compact-hero {
  padding-top: clamp(44px, 6vw, 72px) !important;
  padding-bottom: clamp(34px, 5vw, 54px) !important;
}

#output.section {
  padding-top: clamp(34px, 5vw, 52px) !important;
}

.hero-grid {
  align-items: center !important;
  gap: clamp(28px, 5vw, 48px) !important;
}

.hero-card,
.card,
.panel,
.price-card,
.success-card,
.legal,
.compare-card,
.route-line div,
.demo-output,
.comparison-table,
.faq details,
.step,
.checks div,
.instruction,
.product-window,
.price-list div,
.price-badge,
.mini-route span,
.checkout-card,
.fomo-card,
.availability,
.notice,
.access-note {
  background: rgba(255, 255, 255, 0.34) !important;
  border-color: rgba(62, 30, 22, 0.14) !important;
  box-shadow: 0 18px 54px rgba(62, 30, 22, 0.06) !important;
}

/* Header closer to the main page behavior. */
.header {
  background: rgba(247, 241, 233, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(62, 30, 22, 0.14) !important;
  box-shadow: 0 10px 34px rgba(62, 30, 22, 0.045) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
}

.logo-img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.nav {
  align-items: center !important;
}

.nav-buy {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Animation: forced back on. */
.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    filter 0.7s ease;
  will-change: opacity, transform;
}

.js .reveal-on-scroll.reveal-left {
  transform: translateX(-22px);
}

.js .reveal-on-scroll.reveal-right {
  transform: translateX(22px);
}

.js .reveal-on-scroll.reveal-scale {
  transform: scale(0.97);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile menu: same logic as the main page. */
@media (max-width: 920px) {
  .header {
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 14px 16px !important;
  }

  .logo {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .logo-img {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
  }

  .logo-name {
    font-size: 22px !important;
  }

  .logo-subtitle {
    max-width: 230px !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  .menu-toggle {
    display: inline-grid !important;
    gap: 5px !important;
    width: 42px !important;
    height: 42px !important;
    place-content: center !important;
    border: 1px solid rgba(62, 30, 22, 0.14) !important;
    border-radius: 50% !important;
    background: transparent !important;
    padding: 0 !important;
    flex: 0 0 42px !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #B23D6B !important;
    border-radius: 999px !important;
  }

  .nav {
    position: fixed !important;
    inset: 76px 16px auto !important;
    display: none !important;
    padding: 22px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    border-radius: 24px !important;
    background: #F7F1E9 !important;
    border: 1px solid rgba(62, 30, 22, 0.14) !important;
    box-shadow: 0 24px 80px rgba(62, 30, 22, 0.12) !important;
    color: #3E1E16 !important;
  }

  .nav.is-open {
    display: flex !important;
  }

  .nav a {
    color: #3E1E16 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .nav-buy {
    display: flex !important;
    justify-content: center !important;
    margin-top: 4px !important;
    padding: 13px 16px !important;
    border-radius: 999px !important;
    background: #B23D6B !important;
    color: #fff !important;
  }

  .header-cta {
    display: none !important;
  }

  .compact-hero {
    padding-top: 36px !important;
    padding-bottom: 28px !important;
  }

  #output.section {
    padding-top: 30px !important;
  }

  .section {
    padding: 58px 0 !important;
  }
}

@media (max-width: 620px) {
  .header {
    justify-content: space-between !important;
  }

  .logo-img {
    width: 90px !important;
    height: 90px !important;
    flex-basis: 44px !important;
  }

  .logo-name {
    font-size: 40px !important;
  }

  .logo-subtitle {
    font-size: 15px !important;
  }

  .hero-grid {
    gap: 24px !important;
  }
}
/* === END LAPA FIX V6 === */

/* === FINAL CTA CLEAN CARD FIX V8 ===
   Fixes the last "Финальный шаг" block:
   - removes strange pink/white background patch
   - makes it a real card like other blocks
   - adds border, radius, consistent cream page background
   - keeps CTA centered and clean
*/
.final-cta {
  background: #F7F1E9 !important;
  background-color: #F7F1E9 !important;
  background-image: none !important;
  padding-top: clamp(56px, 7vw, 86px) !important;
  padding-bottom: clamp(78px, 9vw, 120px) !important;
  text-align: center !important;
}

.final-cta .container,
.final-cta .container.narrow {
  width: min(980px, calc(100% - 40px)) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: clamp(34px, 5vw, 58px) clamp(24px, 5vw, 58px) !important;
  border-radius: 32px !important;
  border: 1px solid rgba(62, 30, 22, 0.14) !important;
  background: rgba(255, 255, 255, 0.34) !important;
  background-image: none !important;
  box-shadow: 0 18px 54px rgba(62, 30, 22, 0.06) !important;
  overflow: hidden !important;
}

.final-cta .eyebrow {
  color: #8F766C !important;
  margin-bottom: 22px !important;
}

.final-cta h2 {
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #3E1E16 !important;
  font-size: clamp(40px, 5vw, 68px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
}

.final-cta p {
  max-width: 760px !important;
  margin: 24px auto 0 !important;
  color: rgba(62, 30, 22, 0.62) !important;
  font-size: 18px !important;
}

.final-cta .button,
.final-cta .button-primary {
  margin-top: 26px !important;
  background: #B23D6B !important;
  color: #fff !important;
  border-color: #B23D6B !important;
  box-shadow: 0 18px 42px rgba(178, 61, 107, 0.22) !important;
}

.final-cta .microcopy {
  margin-top: 22px !important;
  color: rgba(62, 30, 22, 0.54) !important;
  font-size: 16px !important;
}

/* Keep "1 490 ₽" from splitting in the price block on mobile. */
.price-card h2,
.short-price-card h2 {
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

@media (max-width: 620px) {
  .final-cta {
    padding-top: 48px !important;
    padding-bottom: 128px !important;
  }

  .final-cta .container,
  .final-cta .container.narrow {
    width: min(100% - 28px, 980px) !important;
    padding: 30px 20px !important;
    border-radius: 26px !important;
  }

  .final-cta h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.07em !important;
  }

  .final-cta p {
    font-size: 16px !important;
  }

  .final-cta .button,
  .final-cta .button-primary {
    width: 100% !important;
  }

  .price-card h2,
  .short-price-card h2 {
    font-size: clamp(27px, 7.6vw, 34px) !important;
    line-height: 1 !important;
    letter-spacing: -0.065em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .price-card h2,
  .short-price-card h2 {
    font-size: clamp(24px, 7.2vw, 29px) !important;
    letter-spacing: -0.075em !important;
  }
}
/* === END FINAL CTA CLEAN CARD FIX V8 === */



/* Инструкция прохождения ЛАПЫ */
.instruction-section {
  background: linear-gradient(180deg, rgba(217,154,61,.06), rgba(255,255,255,.015));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.instruction-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.instruction-intro {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.instruction-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.instruction-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2B55D, var(--accent));
  color: #16110a;
  font-weight: 900;
}

.instruction-card h3 {
  margin-bottom: 14px;
  color: var(--accent-2);
}

.instruction-card p {
  margin: 0;
  color: var(--muted);
}

.instruction-card strong {
  color: var(--accent-2);
}

.instruction-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.instruction-note > div {
  padding: 24px 26px;
  border: 1px solid rgba(217,154,61,.28);
  border-radius: 20px;
  background: rgba(217,154,61,.08);
}

.instruction-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 18px;
}

.instruction-note p {
  margin: 0;
  color: var(--muted);
}

.instruction-note a {
  color: var(--accent-2);
}

.instruction-cta {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .instruction-head,
  .instruction-grid,
  .instruction-note {
    grid-template-columns: 1fr;
  }

  .instruction-head {
    gap: 20px;
  }

  .instruction-card {
    min-height: auto;
  }
}
