:root {
  --night: #0b0d21;
  --night-soft: #12132d;
  --plum: #21163d;
  --plum-up: #2d1d50;
  --violet: #7957e8;
  --violet-soft: #ad95ff;
  --orchid: #c48cff;
  --gold: #e8bd63;
  --gold-light: #f9df9e;
  --gold-deep: #b67b28;
  --gold-on-light: #8a5514;
  --ivory: #fbf6ec;
  --paper: #fffdf8;
  --ink: #1c1728;
  --ink-soft: #5f5869;
  --muted-dark: #b9b2c9;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(28, 23, 40, 0.12);
  --terracotta: #d66f72;
  --terracotta-soft: #f5d9d6;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --container: 1160px;
  --shadow-dark: 0 30px 80px rgba(4, 4, 17, 0.35);
  --shadow-light: 0 24px 60px rgba(42, 26, 76, 0.12);
  --font-accent: "Cinzel", Georgia, serif;
  --type-hero: clamp(34px, calc(29px + 1.45vw), 50px);
  --type-section: clamp(30px, calc(26px + 1.2vw), 44px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.toast-open {
  padding-right: 0;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orchid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-dark {
  color: var(--ivory);
  background: var(--night);
}

.serif-accent {
  font-family: var(--font-accent);
  font-weight: 600;
  font-style: normal;
  color: var(--gold-on-light);
  letter-spacing: -0.025em;
}

.section-dark .serif-accent,
.section-pricing .serif-accent {
  color: var(--gold);
}

.hero-emphasis {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.hero__copy > .brand {
  width: max-content;
  display: flex;
  margin-bottom: 34px;
}

.hero__copy > .eyebrow {
  width: max-content;
  display: flex;
}

.section-heading {
  max-width: 720px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.mechanism-copy h2,
.fit-copy h2,
.faq-intro h2,
.final-offer-copy h2,
.pain-intro h2 {
  margin: 0;
  font-size: var(--type-section);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.fit-copy > p,
.faq-intro > p,
.final-offer-copy > p,
.pain-intro > p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.section-dark .section-heading > p:last-child,
.section-dark .final-offer-copy > p {
  color: var(--muted-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* attention bar */
.attention-bar {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, #dba548, var(--gold-light) 48%, #dba548);
  color: #231706;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.attention-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: center;
}

.attention-bar__inner strong {
  font-weight: 800;
  text-transform: uppercase;
}

.attention-bar__inner a {
  margin-left: auto;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.attention-bar__inner a:hover {
  text-decoration: underline;
}

.attention-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #5e3108;
  box-shadow: 0 0 0 5px rgba(94, 49, 8, 0.12);
}

/* hero */
.hero {
  position: relative;
  min-height: 850px;
  padding: 62px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(121, 87, 232, 0.26), transparent 31%),
    radial-gradient(circle at 22% -5%, rgba(196, 140, 255, 0.13), transparent 28%),
    linear-gradient(145deg, #0a0c1d 0%, #111029 48%, #181132 100%);
}

.hero::before {
  content: "14";
  position: absolute;
  right: -0.02em;
  top: 0.05em;
  color: rgba(255, 255, 255, 0.022);
  font-size: min(44vw, 650px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(234, 193, 109, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  width: 680px;
  height: 680px;
  right: -260px;
  top: -210px;
}

.hero-orbit--two {
  width: 360px;
  height: 360px;
  left: -240px;
  bottom: 90px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  min-height: 686px;
}

.hero__copy {
  grid-column: 1 / 7;
  padding: 20px 0 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 54px;
  color: var(--ivory);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand em {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 600;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 189, 99, 0.38);
  border-radius: 13px;
  color: var(--gold);
  background: rgba(232, 189, 99, 0.08);
  box-shadow: 0 10px 30px rgba(232, 189, 99, 0.1);
}

.brand__mark svg {
  width: 28px;
  height: 28px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: var(--type-hero);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #cbc5d7;
  font-size: 18px;
  line-height: 1.72;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 30px;
}

.hero__signals span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: #dcd6e6;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 700;
}

.hero__signals svg,
.verified-pill svg,
.secure-line svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__signals svg {
  color: var(--gold);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--large {
  min-height: 62px;
  padding: 0 29px;
  font-size: 14px;
}

.button--gold {
  color: #251706;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 34px rgba(232, 189, 99, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.button--gold:hover {
  background: linear-gradient(135deg, #ffe7a8, #edc66f);
  box-shadow: 0 18px 42px rgba(232, 189, 99, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button--outline {
  border-color: rgba(28, 23, 40, 0.2);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: rgba(121, 87, 232, 0.05);
}

.button--soft {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

.button--soft:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button--full {
  width: 100%;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 0;
  color: #938da4;
  font-size: 11px;
  font-weight: 600;
}

.microcopy span {
  color: var(--gold);
}

.hero__visual {
  grid-column: 7 / 13;
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numerology-ring {
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(232, 189, 99, 0.14);
  border-radius: 50%;
  animation: rotate-ring 36s linear infinite;
}

.numerology-ring::before,
.numerology-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(173, 149, 255, 0.12);
  border-radius: 50%;
}

.numerology-ring::before {
  inset: 70px;
}

.numerology-ring::after {
  inset: 135px;
}

.ring-number,
.ring-star {
  position: absolute;
  color: rgba(249, 223, 158, 0.62);
  font-family: var(--font-accent);
  font-size: 18px;
  transform: rotate(var(--counter-rotate));
}

.ring-number--1 { left: 72px; top: 62px; --counter-rotate: -20deg; }
.ring-number--2 { right: 42px; top: 240px; --counter-rotate: 90deg; }
.ring-number--3 { left: 175px; bottom: 12px; --counter-rotate: -160deg; }
.ring-star--1 { left: 14px; top: 280px; }
.ring-star--2 { right: 112px; top: 70px; }

.phone-scene {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-scene::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 87, 232, 0.45), rgba(121, 87, 232, 0.08) 50%, transparent 72%);
  filter: blur(6px);
}

.phone {
  position: relative;
  z-index: 3;
  width: 294px;
  transform: rotate(2.2deg);
  filter: drop-shadow(0 45px 55px rgba(0, 0, 0, 0.48));
}

.phone__frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 46px;
  background: linear-gradient(150deg, #6b6678 0%, #181721 16%, #07070c 82%, #7a7384 100%);
  box-shadow: inset 0 0 0 2px #0b0a10, inset 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.phone__speaker {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 76px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: #08080c;
}

.phone__speaker::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #171c32;
  box-shadow: inset 0 0 0 2px #050508;
}

.phone__screen {
  position: relative;
  min-height: 580px;
  padding: 48px 17px 22px;
  overflow: hidden;
  border-radius: 38px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 22%, rgba(126, 85, 238, 0.38), transparent 29%),
    linear-gradient(180deg, #17112c 0%, #0d0e20 58%, #0b0d1c 100%);
}

.phone__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #fff 0.6px, transparent 0.7px);
  background-size: 9px 9px;
  pointer-events: none;
}

.app-top,
.app-date,
.app-number,
.window-card,
.app-action-title,
.app-actions {
  position: relative;
  z-index: 1;
}

.app-top {
  display: flex;
  align-items: center;
  color: #c9c1d8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.app-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-right: 8px;
  border-radius: 9px;
  color: var(--gold);
  background: rgba(232, 189, 99, 0.1);
  font-size: 18px;
}

.app-avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #e5dff0;
  background: rgba(255, 255, 255, 0.07);
  font-size: 8px;
}

.app-date {
  margin-top: 20px;
  color: #8f889c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-number {
  position: relative;
  height: 177px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.app-number__orbit {
  position: absolute;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(232, 189, 99, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(121, 87, 232, 0.22), inset 0 0 34px rgba(121, 87, 232, 0.1);
}

.app-number__orbit::before,
.app-number__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.app-number__orbit::before {
  inset: 13px;
  border: 1px dashed rgba(173, 149, 255, 0.2);
  animation: rotate-ring 22s linear infinite reverse;
}

.app-number__orbit::after {
  width: 7px;
  height: 7px;
  top: 17px;
  right: 22px;
  background: var(--gold);
  box-shadow: 0 0 13px var(--gold);
}

.app-number small {
  position: relative;
  z-index: 1;
  margin-bottom: -4px;
  color: #9c94aa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-number strong {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 72px;
  font-weight: 600;
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(232, 189, 99, 0.22);
}

.app-number em {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: var(--gold);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.window-card {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.window-card__title,
.window-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.window-card__title > span:first-child {
  color: #aca5ba;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  background: rgba(232, 189, 99, 0.1);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-pill i,
.tuner-live i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 7px currentColor;
}

.window-card__time {
  margin: 7px 0 8px;
  color: #fff9ed;
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
}

.window-card__time span {
  margin: 0 3px;
  color: #80798f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.window-progress {
  height: 4px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.09);
}

.window-progress i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--gold));
  box-shadow: 0 0 10px rgba(232, 189, 99, 0.4);
}

.window-card__footer {
  margin-top: 8px;
  color: #817b8c;
  font-size: 7px;
}

.window-card__footer strong {
  color: #c8c0d5;
  font-variant-numeric: tabular-nums;
}

.app-action-title {
  margin: 17px 0 8px;
  color: #817b8d;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-actions span {
  padding: 5px 9px;
  border: 1px solid rgba(173, 149, 255, 0.14);
  border-radius: var(--radius-pill);
  color: #aea6bb;
  background: rgba(121, 87, 232, 0.08);
  font-size: 7px;
  font-weight: 700;
}

.pix-toast {
  position: absolute;
  z-index: 8;
  top: 125px;
  right: -8px;
  width: 236px;
  min-height: 69px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(34, 28, 54, 0.84);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  animation: float-toast 5.4s ease-in-out infinite;
}

.pix-toast__icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #2c1d06;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 11px;
  font-weight: 800;
}

.pix-toast > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pix-toast small {
  color: #9f98ac;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pix-toast strong {
  color: #fff8e9;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.pix-toast__time {
  align-self: flex-start;
  margin-left: auto;
  color: #7e768b;
  font-size: 7px;
}

.floating-code {
  position: absolute;
  z-index: 6;
  min-width: 98px;
  padding: 12px 14px;
  border: 1px solid rgba(232, 189, 99, 0.15);
  border-radius: 16px;
  color: var(--gold-light);
  background: rgba(15, 14, 34, 0.8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.floating-code small,
.floating-code strong {
  display: block;
}

.floating-code small {
  margin-bottom: 4px;
  color: #8f879d;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-code strong {
  font-family: var(--font-accent);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.floating-code--top {
  top: 248px;
  left: 18px;
}

.floating-code--bottom {
  right: 8px;
  bottom: 88px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #898296;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.trust-strip__items {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.trust-strip__items strong {
  margin-right: 4px;
  color: var(--gold);
  font-size: 14px;
}

.trust-strip__items i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

/* proof */
.section-proof {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 100%, rgba(121, 87, 232, 0.08), transparent 35%),
    var(--ivory);
}

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

.testimonial-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(28, 23, 40, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow-light);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 25px;
  top: 56px;
  color: rgba(121, 87, 232, 0.08);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 125px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 253, 248, 0.92);
  border-radius: 50%;
  background: #ead9b8;
  box-shadow: 0 9px 22px rgba(42, 26, 76, 0.18), 0 0 0 1px rgba(182, 123, 40, 0.2);
}

.testimonial-avatar--violet {
  background: #d8cef8;
  box-shadow: 0 9px 22px rgba(42, 26, 76, 0.2), 0 0 0 1px rgba(121, 87, 232, 0.24);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-card__top > div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card__top strong {
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card__top span {
  color: #817987;
  font-size: 11px;
}

.testimonial-illustrative {
  margin-top: 2px;
  color: #a69daa;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.verified-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 0 9px;
  border-radius: var(--radius-pill);
  color: var(--violet);
  background: rgba(121, 87, 232, 0.08);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.message-preview {
  position: relative;
  z-index: 1;
  margin: 24px 0 20px;
  padding: 16px 17px;
  border: 1px solid rgba(121, 87, 232, 0.11);
  border-radius: 17px;
  background: linear-gradient(135deg, #f5efff, #fbf8ff);
}

.message-preview__header {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #81748e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message-preview__header time {
  margin-left: auto;
  color: #aaa2b1;
  font-variant-numeric: tabular-nums;
}

.wa-dot,
.contract-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 189, 99, 0.13);
}

.contract-dot {
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(121, 87, 232, 0.11);
}

.message-preview p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #514a5c;
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(28, 23, 40, 0.08);
}

.testimonial-result > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #6e4a0c;
  background: rgba(232, 189, 99, 0.17);
}

.testimonial-result > div {
  display: flex;
  flex-direction: column;
}

.testimonial-result small {
  color: #9a929e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.testimonial-result strong {
  font-size: 12px;
}

.results-note {
  margin: 20px 0 0;
  color: #8c8492;
  font-size: 11px;
  text-align: center;
}

/* pain */
.section-pain {
  background: var(--paper);
  border-top: 1px solid rgba(28, 23, 40, 0.06);
}

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

.pain-intro {
  grid-column: 1 / 6;
  position: sticky;
  top: 42px;
  align-self: start;
}

.pain-intro > p {
  max-width: 500px;
}

.pain-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  margin-top: 45px;
  border: 1px solid rgba(121, 87, 232, 0.13);
  border-radius: 50%;
}

.pain-orbit::before,
.pain-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(232, 189, 99, 0.18);
}

.pain-orbit::before { inset: 25px; }
.pain-orbit::after { inset: 50px; }

.pain-orbit span {
  color: rgba(121, 87, 232, 0.32);
  font-family: var(--font-accent);
  font-size: 47px;
}

.pain-orbit i {
  position: absolute;
  top: 16px;
  right: 35px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 13px rgba(232, 189, 99, 0.45);
}

.pain-list {
  grid-column: 7 / 13;
  border-top: 1px solid var(--line-light);
}

.pain-item {
  min-height: 150px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 18px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line-light);
}

.pain-item__index {
  color: #a49ca9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pain-item h3 {
  margin: -4px 0 7px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.pain-item p {
  margin: 0;
  color: #6c6471;
  font-size: 14px;
  line-height: 1.7;
}

.pain-item__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  color: #ac4f56;
  background: var(--terracotta-soft);
  font-size: 22px;
  font-weight: 400;
}

/* mechanism */
.section-mechanism {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 48%, rgba(121, 87, 232, 0.25), transparent 31%),
    linear-gradient(135deg, #0b0d20, #17102f 58%, #100e25);
}

.section-mechanism::after {
  content: "101.3";
  position: absolute;
  left: -0.04em;
  bottom: -0.12em;
  color: rgba(255, 255, 255, 0.018);
  font-size: min(21vw, 330px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.mechanism-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.tuner-wrap {
  grid-column: 1 / 7;
  position: relative;
  min-height: 614px;
  display: grid;
  place-items: center stretch;
}

.signal-waves {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 590px;
  height: 590px;
  display: grid;
  place-items: center;
}

.signal-waves i {
  position: absolute;
  border: 1px solid rgba(173, 149, 255, 0.14);
  border-radius: 50%;
}

.signal-waves i:nth-child(1) { inset: 0; }
.signal-waves i:nth-child(2) { inset: 58px; border-color: rgba(232, 189, 99, 0.12); }
.signal-waves i:nth-child(3) { inset: 116px; }

.tuner-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(232, 189, 99, 0.28);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), transparent 38%),
    linear-gradient(155deg, #372650, #1b1530 62%, #121124);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(0, 0, 0, 0.45);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.tuner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 189, 99, 0.42);
  box-shadow: 0 46px 90px rgba(0, 0, 0, 0.42), 0 0 42px rgba(121, 87, 232, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tuner-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 25px;
  pointer-events: none;
}

.tuner-card__top {
  display: flex;
  justify-content: space-between;
  color: #a59bae;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.tuner-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
}

.tuner-live i {
  animation: live-pulse 1.8s ease-in-out infinite;
}

.tuner-display {
  position: relative;
  margin-top: 20px;
  padding: 20px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 19px;
  background: #0b0e1f;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.65);
}

.tuner-display::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(173, 149, 255, 0.08), rgba(249, 223, 158, 0.08), transparent);
  transform: translateX(-130%);
  animation: tuner-scan 5.5s ease-in-out infinite;
  pointer-events: none;
}

.tuner-display::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.018) 4px);
  pointer-events: none;
}

.tuner-label {
  display: block;
  margin-bottom: 3px;
  color: #6f6a7d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.tuner-display strong {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 63px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 25px rgba(232, 189, 99, 0.24);
}

.tuner-display em {
  margin-left: 7px;
  color: #7a7488;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.signal-bars {
  position: absolute;
  right: 20px;
  bottom: 25px;
  height: 34px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.signal-bars i {
  width: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(to top, var(--violet), var(--gold));
  animation: signal 1.4s ease-in-out infinite alternate;
}

.signal-bars i:nth-child(1) { height: 8px; animation-delay: 0ms; }
.signal-bars i:nth-child(2) { height: 17px; animation-delay: 160ms; }
.signal-bars i:nth-child(3) { height: 25px; animation-delay: 320ms; }
.signal-bars i:nth-child(4) { height: 34px; animation-delay: 480ms; }
.signal-bars i:nth-child(5) { height: 22px; animation-delay: 640ms; }
.signal-bars i:nth-child(6) { height: 29px; animation-delay: 800ms; }
.signal-bars i:nth-child(7) { height: 13px; animation-delay: 960ms; }

.tuner-scale {
  margin-top: 22px;
}

.scale-track {
  position: relative;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(214, 111, 114, 0.45), rgba(121, 87, 232, 0.45) 48%, rgba(232, 189, 99, 0.72));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scale-track::after {
  content: "";
  position: absolute;
  inset: -6px 0;
  opacity: 0.22;
  background: repeating-linear-gradient(90deg, transparent 0 16px, #fff 17px 18px);
}

.scale-needle {
  position: absolute;
  z-index: 2;
  left: 73%;
  bottom: -5px;
  width: 3px;
  height: 27px;
  border-radius: var(--radius-pill);
  background: var(--gold-light);
  box-shadow: 0 0 13px var(--gold);
  animation: needle-glow 2.6s ease-in-out infinite;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #7c7487;
  font-size: 7px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.scale-labels span {
  display: flex;
  flex-direction: column;
}

.scale-labels small {
  margin-top: 2px;
  color: #9f7d3e;
  font-size: 5px;
  letter-spacing: 0.08em;
}

.tuner-dashboard {
  display: grid;
  grid-template-columns: 0.75fr 1.35fr 64px;
  gap: 10px;
  align-items: stretch;
  margin-top: 25px;
}

.tuner-stat {
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(7, 8, 22, 0.27);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.tuner-stat > small,
.tuner-guidance small {
  color: #736c80;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tuner-stat > div {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: 5px;
}

.tuner-stat > div strong {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 34px;
  font-weight: 600;
  line-height: 0.9;
}

.tuner-stat > div span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.tuner-stat--window > strong {
  margin-top: 8px;
  color: #f5efe2;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tuner-stat--window > strong i {
  margin: 0 2px;
  color: #777080;
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
}

.tuner-window-status {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
  color: #8b8296;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.tuner-window-status b {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.tuner-knob {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(7, 8, 22, 0.2);
}

.tuner-knob span {
  position: relative;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #8a7b98, #322c3c 46%, #17151e 65%);
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.35);
}

.tuner-knob span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 13px;
  left: 50%;
  top: 6px;
  transform: translateX(-50%) rotate(34deg);
  transform-origin: center 17px;
  background: var(--gold-light);
}

.tuner-knob i {
  color: #777080;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
}

.tuner-guidance {
  min-height: 72px;
  display: grid;
  grid-template-columns: 39px 1fr 26px;
  gap: 11px;
  align-items: center;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid rgba(232, 189, 99, 0.17);
  border-radius: 16px;
  background: linear-gradient(105deg, rgba(232, 189, 99, 0.075), rgba(121, 87, 232, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.tuner-guidance__icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #382307;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(232, 189, 99, 0.13);
}

.tuner-guidance > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tuner-guidance strong {
  margin-top: 3px;
  color: #eee8f2;
  font-size: 9px;
  line-height: 1.35;
}

.tuner-guidance__arrow {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(232, 189, 99, 0.07);
  font-size: 12px;
}

.mechanism-copy {
  grid-column: 8 / 13;
}

.mechanism-copy > p:not(.eyebrow) {
  margin: 21px 0 0;
  color: #c0b9ca;
  font-size: 16px;
  line-height: 1.78;
}

.mechanism-copy > p strong {
  color: var(--gold-light);
}

.mechanism-quote {
  position: relative;
  margin: 26px 0;
  padding: 22px 22px 22px 28px;
  border: 1px solid rgba(232, 189, 99, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 17px 17px 0;
  background: rgba(232, 189, 99, 0.055);
}

.mechanism-quote .quote-mark {
  position: absolute;
  left: 13px;
  top: -4px;
  color: rgba(232, 189, 99, 0.22);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 45px;
}

.mechanism-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #e0d9e7;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}

/* benefits */
.section-benefits {
  background:
    linear-gradient(rgba(121, 87, 232, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 87, 232, 0.03) 1px, transparent 1px),
    var(--ivory);
  background-size: 46px 46px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.benefit-card {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 26px 25px 24px;
  overflow: hidden;
  border: 1px solid rgba(28, 23, 40, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.9);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(121, 87, 232, 0.24);
  box-shadow: var(--shadow-light);
}

.benefit-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -75px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 87, 232, 0.13), transparent 70%);
  transition: opacity 220ms ease, transform 320ms ease;
}

.benefit-card:hover::after {
  transform: scale(1.15);
}

.benefit-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 87, 232, 0.13);
  border-radius: 15px;
  color: var(--violet);
  background: rgba(121, 87, 232, 0.07);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.benefit-card:hover .benefit-icon {
  border-color: rgba(121, 87, 232, 0.3);
  background: rgba(121, 87, 232, 0.12);
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__number {
  position: relative;
  font-family: var(--font-accent);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(182, 123, 40, 0.17);
  transition: color 220ms ease;
}

.benefit-card:hover .benefit-card__number {
  color: rgba(182, 123, 40, 0.34);
}

.benefit-card h3 {
  margin: 0 0 10px;
  min-height: 52px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.benefit-card__bar {
  align-self: end;
  width: 32px;
  height: 2px;
  margin-top: 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), rgba(232, 189, 99, 0));
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover .benefit-card__bar {
  width: 78px;
}

/* product */
.section-product {
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid rgba(28, 23, 40, 0.06);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.product-visual {
  grid-column: 1 / 7;
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-glow {
  position: absolute;
  z-index: 0;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 87, 232, 0.18), rgba(232, 189, 99, 0.06) 45%, transparent 70%);
}

.map-book {
  position: relative;
  z-index: 2;
  width: 285px;
  height: 405px;
  transform: translate(-45px, -5px) rotate(-4deg);
  filter: drop-shadow(0 32px 30px rgba(42, 26, 76, 0.22));
}

.map-book__spine {
  position: absolute;
  inset: 8px auto 8px -18px;
  width: 29px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(90deg, #5c3e90, #1a132d);
  transform: skewY(7deg);
}

.map-book__cover {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(232, 189, 99, 0.42);
  border-radius: 10px 24px 24px 10px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 23%, rgba(173, 149, 255, 0.3), transparent 23%),
    linear-gradient(155deg, #2c1c51, #17112f 55%, #0e1025);
}

.map-book__cover::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(232, 189, 99, 0.17);
  border-radius: 6px 17px 17px 6px;
}

.map-book__kicker,
.map-book__footer,
.map-book__cover h3,
.map-book__cover p,
.map-book__symbol {
  position: relative;
  z-index: 1;
}

.map-book__kicker {
  color: var(--gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.map-book__symbol {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-self: center;
  margin: 26px 0 19px;
  border: 1px solid rgba(232, 189, 99, 0.27);
  border-radius: 50%;
}

.map-book__symbol::before,
.map-book__symbol::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(173, 149, 255, 0.25);
  border-radius: 50%;
}

.map-book__symbol::after {
  inset: 47px;
  border-style: solid;
  border-color: rgba(232, 189, 99, 0.16);
}

.map-book__symbol span {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 46px;
  font-weight: 600;
}

.map-book__symbol i,
.map-book__symbol em {
  position: absolute;
  color: var(--violet-soft);
  font-family: var(--font-accent);
  font-size: 16px;
  font-style: normal;
}

.map-book__symbol i { right: 18px; top: 25px; }
.map-book__symbol em { left: 21px; bottom: 24px; }

.map-book__cover h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 0.95;
}

.map-book__cover p {
  margin: 13px 0 0;
  color: #bdb4c9;
  font-size: 9px;
  line-height: 1.6;
}

.map-book__footer {
  margin-top: auto;
  color: #7e738b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mini-phone {
  position: absolute;
  z-index: 3;
  right: 54px;
  bottom: 66px;
  width: 185px;
  height: 373px;
  padding: 7px;
  transform: rotate(7deg);
  border-radius: 31px;
  background: linear-gradient(145deg, #777180, #111017 16%, #07070b 82%, #5c5664);
  box-shadow: 0 28px 50px rgba(25, 16, 43, 0.3);
}

.mini-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  width: 58px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: #08070b;
}

.mini-phone__screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 39px 13px 14px;
  overflow: hidden;
  border-radius: 25px;
  color: var(--ivory);
  background: radial-gradient(circle at 50% 37%, rgba(121, 87, 232, 0.38), transparent 31%), linear-gradient(180deg, #19112f, #0b0d1f);
}

.mini-phone__logo {
  align-self: flex-start;
  color: var(--gold);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-phone__screen > small {
  margin-top: 39px;
  color: #8d8498;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mini-phone__screen > strong {
  margin-top: 5px;
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.mini-phone__screen > i {
  color: #887f93;
  font-size: 7px;
  font-style: normal;
}

.mini-phone__ring {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-top: 21px;
  border: 1px solid rgba(232, 189, 99, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 23px rgba(121, 87, 232, 0.2);
}

.mini-phone__ring span {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 600;
}

.mini-phone__button {
  width: 100%;
  min-height: 31px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: var(--radius-pill);
  color: #291b08;
  background: var(--gold);
  font-size: 6px;
  font-weight: 800;
}

.audio-card {
  position: absolute;
  z-index: 5;
  left: 9px;
  bottom: 88px;
  width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  color: var(--ivory);
  background: rgba(24, 17, 45, 0.88);
  box-shadow: 0 19px 40px rgba(27, 17, 47, 0.32);
  backdrop-filter: blur(13px);
}

.audio-card__play {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #3a2607;
  background: var(--gold);
}

.audio-card__play svg {
  width: 17px;
  fill: currentColor;
}

.audio-card > div {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.audio-card small {
  color: #887f96;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audio-card strong {
  margin-top: 2px;
  font-size: 9px;
}

.audio-card i {
  height: 3px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.09);
}

.audio-card i b {
  display: block;
  width: 43%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--gold));
}

.product-copy {
  grid-column: 8 / 13;
}

.deliverables-list {
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
}

.deliverable {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line-light);
}

.deliverable__index {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.deliverable h3 {
  margin: -3px 0 7px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.deliverable p {
  margin: 0;
  color: #6d6573;
  font-size: 13px;
  line-height: 1.7;
}

/* bonuses */
.section-bonuses {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(121, 87, 232, 0.2), transparent 30%),
    linear-gradient(145deg, #0b0d20, #17102e);
}

.bonus-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  margin-top: 58px;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(249, 223, 158, 0.68), rgba(121, 87, 232, 0.26) 44%, rgba(196, 140, 255, 0.4));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.bonus-shell::before {
  content: "";
  position: absolute;
  inset: -70px 18% auto;
  height: 150px;
  border-radius: 50%;
  background: rgba(121, 87, 232, 0.18);
  filter: blur(60px);
  pointer-events: none;
}

.bonus-shell__aside,
.bonus-list {
  position: relative;
  z-index: 1;
  background: #131329;
}

.bonus-shell__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 38px;
  overflow: hidden;
  border-radius: 31px 0 0 31px;
  background:
    radial-gradient(circle at 30% 33%, rgba(121, 87, 232, 0.22), transparent 44%),
    #111126;
}

.bonus-shell__badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(232, 189, 99, 0.2);
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: rgba(232, 189, 99, 0.06);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bonus-orbit {
  position: relative;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  margin: 34px 0 auto;
  border: 1px solid rgba(232, 189, 99, 0.22);
  border-radius: 50%;
}

.bonus-orbit::before {
  content: "";
  position: absolute;
  inset: 21px;
  border: 1px dashed rgba(173, 149, 255, 0.25);
  border-radius: 50%;
  animation: rotate-ring 22s linear infinite;
}

.bonus-orbit span {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 56px;
  font-weight: 600;
}

.bonus-orbit i,
.bonus-orbit b {
  position: absolute;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 15px var(--violet);
}

.bonus-orbit i { width: 8px; height: 8px; top: 13px; right: 37px; }
.bonus-orbit b { width: 5px; height: 5px; left: 20px; bottom: 30px; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.bonus-shell__aside h3 {
  align-self: stretch;
  margin: 32px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(232, 189, 99, 0.18);
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.bonus-shell__aside h3 em {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 600;
}

.bonus-shell__aside p {
  align-self: stretch;
  max-width: 34ch;
  margin: 14px 0 0;
  color: #9891a6;
  font-size: 13px;
  line-height: 1.65;
}

.bonus-list {
  padding: 15px 34px;
  border-radius: 0 31px 31px 0;
}

.bonus-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonus-item:last-child {
  border-bottom: 0;
}

.bonus-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 189, 99, 0.16);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(232, 189, 99, 0.055);
}

.bonus-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bonus-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--violet-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.bonus-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.bonus-item p {
  margin: 6px 0 0;
  color: #9992a7;
  font-size: 11px;
  line-height: 1.6;
}

.bonus-value {
  min-width: 65px;
  padding: 6px 9px;
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: rgba(232, 189, 99, 0.07);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

/* fit */
.section-fit {
  background: var(--ivory);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.fit-copy {
  grid-column: 1 / 6;
}

.fit-copy > p {
  max-width: 470px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 180ms ease;
}

.fit-list {
  grid-column: 7 / 13;
  display: grid;
  gap: 12px;
}

.fit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: center;
  min-height: 94px;
  padding: 16px 21px;
  border: 1px solid rgba(28, 23, 40, 0.1);
  border-radius: 19px;
  background: var(--paper);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.fit-item:hover {
  transform: translateX(5px);
  border-color: rgba(121, 87, 232, 0.25);
  box-shadow: 0 14px 35px rgba(42, 26, 76, 0.08);
}

.key-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #5d3d07;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-12deg);
}

.fit-item p {
  margin: 0;
  color: #6d6573;
  font-size: 14px;
  line-height: 1.6;
}

.fit-item strong {
  color: var(--ink);
}

/* pricing */
.section-pricing {
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 0%, rgba(121, 87, 232, 0.26), transparent 30%),
    linear-gradient(155deg, #0a0c1e, #17102f 68%, #0f1028);
}

.pricing-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 87, 232, 0.13), transparent 66%);
  pointer-events: none;
}

.section-pricing .container {
  position: relative;
  z-index: 2;
}

.section-pricing .section-heading > p:last-child {
  color: var(--muted-dark);
}

.pricing-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin: 64px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 28px;
}

.price-card--essential {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.price-card--complete {
  border: 1px solid rgba(249, 223, 158, 0.46);
  background:
    radial-gradient(circle at 85% 2%, rgba(232, 189, 99, 0.15), transparent 24%),
    linear-gradient(145deg, #30204f, #1a1533 58%, #111126);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34), 0 0 55px rgba(121, 87, 232, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.recommended-ribbon {
  position: absolute;
  left: 50%;
  top: -17px;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  padding: 0 17px;
  border-radius: var(--radius-pill);
  color: #311f05;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 25px rgba(232, 189, 99, 0.2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.plan-label {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.price-card--complete .plan-label {
  color: var(--gold);
}

.price-card__head h3 {
  margin: 10px 0 8px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.price-card__head p {
  margin: 0;
  color: #786f7e;
  font-size: 13px;
  line-height: 1.65;
}

.price-card--complete .price-card__head p {
  color: #aaa2b7;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(28, 23, 40, 0.1);
  border-bottom: 1px solid rgba(28, 23, 40, 0.1);
  list-style: none;
}

.price-card--complete .feature-list {
  border-color: rgba(255, 255, 255, 0.09);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #625a68;
  font-size: 12px;
  line-height: 1.45;
}

.price-card--complete .feature-list li {
  color: #c6bfd0;
}

.feature-list li > span {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  margin-top: -1px;
  border-radius: 50%;
  color: var(--violet);
  background: rgba(121, 87, 232, 0.09);
  font-size: 10px;
  font-weight: 900;
}

.price-card--complete .feature-list li > span {
  color: var(--gold);
  background: rgba(232, 189, 99, 0.09);
}

.feature-list strong {
  color: inherit;
}

.price-block {
  margin-top: auto;
}

.price-block > small {
  display: block;
  color: #8c8492;
  font-size: 11px;
}

.price-card--complete .price-block > small {
  color: #918999;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 6px 0 2px;
  color: var(--ink);
  line-height: 1;
}

.price-card--complete .price {
  color: var(--gold-light);
}

.price > span {
  margin: 10px 6px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.price strong {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.075em;
  font-variant-numeric: tabular-nums;
}

.price sup {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 800;
}

.payment-line {
  display: block;
  margin-bottom: 22px;
  color: #88808f;
  font-size: 10px;
}

.price-card--complete .payment-line {
  color: #928b9c;
}

.price-card .button {
  min-height: 58px;
  padding-inline: 18px;
  font-size: 11px;
}

.button--pulse {
  animation: cta-glow 2.8s ease-in-out infinite;
}

.secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  color: #918994;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
}

.secure-line svg {
  flex: 0 0 14px;
}

.pricing-guarantee {
  max-width: 960px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 17px;
  align-items: center;
  margin: 24px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.pricing-guarantee__seal {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--gold);
  background: rgba(232, 189, 99, 0.09);
}

.pricing-guarantee__seal svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-guarantee > div {
  display: flex;
  flex-direction: column;
}

.pricing-guarantee strong {
  font-size: 13px;
}

.pricing-guarantee div span {
  margin-top: 3px;
  color: #9e97a9;
  font-size: 11px;
}

.pricing-guarantee__tag {
  padding: 7px 10px;
  border: 1px solid rgba(232, 189, 99, 0.18);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* choice */
.section-choice {
  background: var(--paper);
}

.choice-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 56px auto 0;
}

.choice-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border-radius: 27px;
}

.choice-card--stay {
  border: 1px solid rgba(172, 79, 86, 0.15);
  background: linear-gradient(145deg, #fff9f7, #f7e8e5);
}

.choice-card--turn {
  border: 1px solid rgba(232, 189, 99, 0.32);
  color: var(--ivory);
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 189, 99, 0.13), transparent 27%),
    linear-gradient(145deg, #30204f, #17122f);
  box-shadow: 0 25px 55px rgba(42, 26, 76, 0.2);
}

.choice-card::after {
  position: absolute;
  right: -12px;
  bottom: -0.34em;
  font-family: var(--font-accent);
  font-size: 150px;
  line-height: 1;
  opacity: 0.06;
}

.choice-card--stay::after { content: "×"; color: var(--terracotta); }
.choice-card--turn::after { content: "14"; color: var(--gold); }

.choice-card__tag {
  color: #a55b5f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.choice-card--turn .choice-card__tag {
  color: var(--gold);
}

.choice-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 25px 0 30px;
  border-radius: 16px;
  color: #a95359;
  background: rgba(214, 111, 114, 0.13);
  font-size: 27px;
}

.choice-card--turn .choice-card__icon {
  color: #3c2706;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.choice-card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.choice-card p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: #72666d;
  font-size: 14px;
  line-height: 1.7;
}

.choice-card--turn p {
  color: #b9b2c4;
}

.choice-card__footer,
.choice-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  color: #a55b5f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.choice-card a {
  color: var(--gold);
  text-decoration: none;
}

.choice-card a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.choice-card a:hover span {
  transform: translateX(5px);
}

/* final offer */
.section-final-offer {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 100%, rgba(121, 87, 232, 0.22), transparent 34%),
    linear-gradient(145deg, #0a0c1d, #191132);
}

.section-final-offer::after {
  content: "⌁";
  position: absolute;
  right: 2%;
  top: -0.45em;
  color: rgba(232, 189, 99, 0.035);
  font-size: 420px;
  font-weight: 800;
  line-height: 1;
}

.final-offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.final-offer-copy {
  grid-column: 1 / 6;
}

.compact-offers {
  grid-column: 7 / 13;
  display: grid;
  gap: 12px;
}

.compact-offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.compact-offer--featured {
  border-color: rgba(232, 189, 99, 0.3);
  background: linear-gradient(135deg, rgba(232, 189, 99, 0.08), rgba(121, 87, 232, 0.1));
}

.compact-offer > div {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 16px;
  align-items: end;
}

.compact-offer div > span {
  color: #9f98aa;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.compact-offer div > strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--gold-light);
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.compact-offer div > small {
  color: #777183;
  font-size: 8px;
}

.compact-offer .button {
  min-width: 177px;
  min-height: 48px;
  padding-inline: 18px;
  font-size: 9px;
}

.compact-badge {
  position: absolute;
  top: -9px;
  left: 23px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: #342005;
  background: var(--gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* faq */
.section-faq {
  background: var(--ivory);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.faq-intro {
  grid-column: 1 / 5;
  position: sticky;
  top: 42px;
}

.faq-intro > p {
  max-width: 390px;
}

.guarantee-mini {
  max-width: 300px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(121, 87, 232, 0.12);
  border-radius: 17px;
  background: rgba(121, 87, 232, 0.05);
}

.guarantee-mini svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-mini > span {
  display: flex;
  flex-direction: column;
}

.guarantee-mini strong {
  font-size: 12px;
}

.guarantee-mini small {
  color: #847b8a;
  font-size: 10px;
}

.faq-list {
  grid-column: 6 / 13;
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

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

.faq-item summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(28, 23, 40, 0.12);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: currentColor;
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary i {
  border-color: var(--violet);
  color: var(--paper);
  background: var(--violet);
  transform: rotate(180deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > div {
  max-width: 660px;
  padding: 0 60px 28px 0;
}

.faq-item p {
  margin: 0;
  color: #69616e;
  font-size: 14px;
  line-height: 1.75;
}

/* footer */
.footer {
  padding: 65px 0 34px;
  color: var(--ivory);
  background: #090b1b;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 35px;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer {
  margin: 0;
}

.footer__top > p {
  margin: 0;
  color: #8e879b;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.support-link {
  justify-self: end;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 27px;
  color: #6f697a;
  font-size: 9px;
}

.footer__bottom div {
  display: flex;
  gap: 20px;
}

.footer__bottom a {
  text-decoration: none;
}

.footer__bottom a:hover {
  color: var(--gold);
}

.legal-note {
  margin-top: 24px;
  color: #5f5969;
  font-size: 8px;
  line-height: 1.7;
  text-align: center;
}

/* sticky CTA + toast */
.mobile-cta {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  min-height: 68px;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: var(--ivory);
  background: rgba(16, 14, 35, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: translateY(130%);
  opacity: 0;
  transition: opacity 250ms ease, transform 250ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-cta > div {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.mobile-cta small {
  color: #9891a4;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-cta strong {
  color: var(--gold-light);
  font-size: 19px;
  line-height: 1.1;
}

.mobile-cta .button {
  min-height: 50px;
  padding: 0 18px;
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  width: min(calc(100% - 44px), 390px);
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 11px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(232, 189, 99, 0.25);
  border-radius: 20px;
  color: var(--ivory);
  background: rgba(20, 17, 41, 0.96);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(25px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #402a08;
  background: var(--gold);
  font-size: 23px;
}

.toast p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.toast strong {
  font-size: 11px;
}

.toast small {
  margin-top: 3px;
  color: #9992a6;
  font-size: 8px;
  line-height: 1.4;
}

.toast button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: #a9a2b2;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.toast button:hover {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

/* animations */
@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

@keyframes float-toast {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes signal {
  from { transform: scaleY(0.45); opacity: 0.55; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 14px 34px rgba(232, 189, 99, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
  50% { box-shadow: 0 17px 42px rgba(232, 189, 99, 0.34), 0 0 0 5px rgba(232, 189, 99, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7); }
}

/* responsive */
@media (max-width: 1050px) {
  .hero__copy { grid-column: 1 / 7; }
  .hero__visual { grid-column: 7 / 13; scale: 0.9; }
  .floating-code--top { left: -14px; }
  .pix-toast { right: -20px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-card { min-height: 265px; }
  .product-visual { grid-column: 1 / 7; transform: scale(0.92); }
  .product-copy { grid-column: 7 / 13; }
  .bonus-shell { grid-template-columns: 0.65fr 1.5fr; }
  .bonus-shell__aside { padding: 34px 28px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .hero { padding-top: 45px; }
  .hero__grid { display: flex; flex-direction: column; }
  .hero__copy { width: 100%; max-width: 730px; padding-bottom: 0; text-align: center; }
  .hero h1 { margin-inline: auto; }
  .brand { margin-bottom: 42px; }
  .hero__copy .brand { justify-content: center; }
  .hero__copy .brand,
  .hero__copy .eyebrow { margin-left: auto; margin-right: auto; }
  .hero__lead { margin-inline: auto; }
  .hero__signals { justify-content: center; }
  .microcopy { justify-content: center; }
  .hero__visual { width: 100%; min-height: 660px; scale: 1; }
  .trust-strip { flex-direction: column; justify-content: center; padding: 25px 0; text-align: center; }
  .pain-intro, .faq-intro { position: static; }
  .pain-intro { grid-column: 1 / 7; }
  .pain-list { grid-column: 7 / 13; }
  .pain-orbit { display: none; }
  .tuner-wrap { grid-column: 1 / 7; }
  .mechanism-copy { grid-column: 7 / 13; }
  .tuner-card { min-height: 540px; padding: 24px; }
  .signal-waves { transform: scale(0.85); }
  .product-visual { grid-column: 1 / 7; transform: scale(0.86); transform-origin: center; }
  .product-copy { grid-column: 7 / 13; }
  .bonus-shell { grid-template-columns: 1fr; }
  .bonus-shell__aside { display: grid; grid-template-columns: 1fr 180px; align-items: center; gap: 20px; border-radius: 31px 31px 0 0; }
  .bonus-shell__aside .bonus-shell__badge { position: absolute; top: 30px; left: 30px; }
  .bonus-orbit { grid-column: 2; grid-row: 1 / 4; margin: 0; }
  .bonus-shell__aside h3 { grid-column: 1; align-self: auto; margin-top: 50px; padding-top: 0; border-top: 0; }
  .bonus-shell__aside p { grid-column: 1; align-self: auto; }
  .bonus-list { border-radius: 0 0 31px 31px; }
  .fit-copy { grid-column: 1 / 6; }
  .fit-list { grid-column: 6 / 13; }
  .final-offer-copy { grid-column: 1 / 6; }
  .compact-offers { grid-column: 6 / 13; }
  .faq-intro { grid-column: 1 / 5; }
  .faq-list { grid-column: 5 / 13; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 74px 0; }
  .attention-bar__inner { min-height: 51px; font-size: 10px; line-height: 1.35; }
  .attention-bar__inner a { display: none; }
  .attention-dot { align-self: flex-start; margin-top: 17px; }
  .hero { min-height: auto; padding-top: 30px; }
  .brand { margin-bottom: 35px; font-size: 17px; }
  .brand__mark { width: 39px; height: 39px; }
  .hero h1 { max-width: 540px; }
  .hero__lead { font-size: 16px; }
  .hero__signals { gap: 6px; margin: 23px 0 26px; }
  .hero__signals span { font-size: 9px; }
  .hero__copy .button {
    width: 100%;
    gap: 8px;
    padding-inline: 18px;
    font-size: 11px;
  }
  .hero__copy .button span { white-space: nowrap; }
  .hero__copy .button svg { width: 18px; height: 18px; flex: 0 0 18px; }
  .microcopy { font-size: 9px; line-height: 1.4; text-align: left; }
  .hero__visual { min-height: 590px; scale: 0.92; margin: -12px 0 -20px; }
  .phone { width: 272px; }
  .phone__screen { min-height: 538px; }
  .numerology-ring { width: 470px; height: 470px; }
  .pix-toast { top: 109px; right: -3px; width: 216px; }
  .floating-code--top { left: 4px; top: 235px; }
  .floating-code--bottom { right: 3px; bottom: 70px; }
  .trust-strip { min-height: 125px; }
  .trust-strip__items { gap: 10px; font-size: 9px; }
  .trust-strip__items strong { display: block; margin: 0; }

  .section-heading > p:last-child,
  .fit-copy > p,
  .faq-intro > p,
  .final-offer-copy > p,
  .pain-intro > p { font-size: 16px; }
  .testimonials-grid,
  .pricing-grid,
  .choice-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card__top { align-items: flex-start; }
  .verified-pill { margin-left: 0; }
  .message-preview { margin-top: 21px; }

  .pain-grid,
  .mechanism-grid,
  .product-grid,
  .fit-grid,
  .final-offer-grid,
  .faq-grid { display: block; }
  .pain-list { margin-top: 43px; }
  .pain-item { grid-template-columns: 32px 1fr 34px; gap: 10px; }
  .pain-item__icon { width: 32px; height: 32px; }
  .pain-item h3 { font-size: 18px; }

  .tuner-wrap { min-height: 500px; margin-bottom: 28px; }
  .tuner-card { max-width: 500px; min-height: 590px; margin-inline: auto; padding: 22px; transform: none; }
  .signal-waves { width: 430px; height: 430px; transform: none; }
  .tuner-display strong { font-size: 54px; }
  .mechanism-copy > p:not(.eyebrow) { font-size: 15px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card { min-height: 0; padding: 22px 21px 20px; }
  .benefit-card__head { margin-bottom: 18px; }
  .benefit-card__number { font-size: 36px; }
  .benefit-card h3 { min-height: 0; }
  .benefit-card__bar { margin-top: 18px; }
  .product-visual { min-height: 620px; margin: -40px 0 0; transform: scale(0.89); }
  .product-copy { margin-top: -25px; }
  .deliverables-list { margin-top: 34px; }

  .bonus-shell { margin-top: 42px; }
  .bonus-shell__aside { display: block; padding: 30px 25px; }
  .bonus-shell__aside .bonus-shell__badge { position: static; }
  .bonus-orbit { width: 150px; height: 150px; margin: 34px auto; }
  .bonus-shell__aside h3 { margin-top: 0; font-size: 27px; text-align: center; }
  .bonus-shell__aside p { margin-inline: auto; text-align: center; }
  .bonus-list { padding: 8px 20px; }
  .bonus-item { grid-template-columns: 42px 1fr; gap: 13px; padding: 20px 0; }
  .bonus-icon { width: 42px; height: 42px; }
  .bonus-value { grid-column: 2; justify-self: start; }

  .fit-list { margin-top: 40px; }
  .fit-item { grid-template-columns: 42px 1fr; gap: 13px; padding: 15px; }
  .key-icon { width: 40px; height: 40px; }
  .price-card { padding: 30px 22px; }
  .price-card--complete { margin-top: 13px; }
  .pricing-guarantee { grid-template-columns: 48px 1fr; }
  .pricing-guarantee__seal { width: 48px; height: 48px; }
  .pricing-guarantee__tag { display: none; }
  .choice-card { min-height: 360px; padding: 28px 24px; }
  .choice-card h3 { font-size: 25px; }

  .compact-offers { margin-top: 42px; }
  .compact-offer { grid-template-columns: 1fr; }
  .compact-offer > div { grid-template-columns: 1fr auto; }
  .compact-offer .button { width: 100%; }
  .faq-list { margin-top: 42px; }
  .faq-item summary { min-height: 82px; font-size: 15px; }
  .faq-item > div { padding-right: 15px; }

  .footer { padding-bottom: 115px; }
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .brand--footer { justify-content: center; }
  .support-link { justify-self: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: flex; }
  .toast { right: 12px; bottom: calc(92px + env(safe-area-inset-bottom)); width: calc(100% - 24px); }
}

@media (max-width: 430px) {
  .hero__visual { scale: 0.84; margin: -35px -18px -55px; width: calc(100% + 36px); }
  .phone-scene { min-height: 620px; }
  .numerology-ring { width: 455px; height: 455px; }
  .pix-toast { right: -12px; }
  .floating-code--top { left: -6px; }
  .floating-code--bottom { right: -7px; }
  .trust-strip__items { width: 100%; justify-content: space-between; }
  .trust-strip__items i { display: none; }
  .pain-item { grid-template-columns: 28px 1fr; }
  .pain-item__icon { display: none; }
  .tuner-wrap { min-height: 440px; margin: -30px -10px 20px; transform: scale(0.92); }
  .signal-waves { width: 390px; height: 390px; }
  .tuner-card { padding: 20px; }
  .tuner-display strong { font-size: 47px; }
  .signal-bars { display: none; }
  .product-visual { margin: -80px -30px -45px; transform: scale(0.79); translate: 20px 0; min-height: 650px; }
  .testimonial-card__top { flex-wrap: wrap; }
  .verified-pill { width: max-content; }
  .price { align-items: flex-start; }
  .price strong { font-size: 65px; }
  .pricing-guarantee { padding: 17px; }
  .pricing-guarantee div span { line-height: 1.5; }
  .mobile-cta { left: 8px; right: 8px; bottom: calc(8px + env(safe-area-inset-bottom)); }
}

@media (max-width: 350px) {
  .hero__copy .button { padding-inline: 14px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
