:root {
  color-scheme: dark;
  --bg: #0c012c;
  --bg-deep: #050011;
  --ink: #ffffff;
  --ink-dark: #1a1235;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-dark: #5f4d70;
  --pink: #d946d7;
  --pink-soft: #e8a0f0;
  --purple: #7c20df;
  --purple-2: #a020c8;
  --cyan: #69e1e5;
  --paper: #f7f0fb;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(124, 32, 223, 0.22);
  --max: 1180px;
  --radius: 12px;
  --shadow: 0 28px 80px rgba(26, 0, 44, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  color: #fff;
  background: var(--purple);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

h1 {
  max-width: 960px;
  margin: 0 auto 24px;
  font-size: clamp(40px, 2.9vw, 58px);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 900;
  text-wrap: balance;
}

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

.section-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 910px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 88px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: linear-gradient(180deg, rgba(12, 1, 44, 0.92), rgba(12, 1, 44, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-grid;
  width: fit-content;
  gap: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.header-cta {
  justify-self: end;
  min-width: 214px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e651d7, #8720ef);
  box-shadow: 0 16px 55px rgba(150, 38, 230, 0.36);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: max(1200px, 120svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: url("./Brenda Oliveri_files/brenda-oliveri.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12, 1, 44, 0.04) 0%, rgba(12, 1, 44, 0.07) 45%, rgba(12, 1, 44, 0.82) 70%, #0c012c 100%),
    linear-gradient(90deg, rgba(12, 1, 44, 0.42), rgba(12, 1, 44, 0.04) 45%, rgba(12, 1, 44, 0.4));
}

.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(100% - 44px, 1040px);
  min-height: max(1200px, 120svh);
  margin: 0 auto;
  padding: 180px 0 78px;
}

.hero-copy {
  width: 100%;
  text-align: center;
}

.hero-copy p {
  max-width: 790px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

.hero-copy p + p {
  max-width: 730px;
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  min-height: 58px;
  min-width: 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #df4bd7, #7d20ea);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.25), 0 18px 55px rgba(160, 32, 200, 0.34);
}

.btn-primary:hover {
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.32), 0 22px 70px rgba(160, 32, 200, 0.5);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-wide {
  width: 100%;
}

.tiktok-section {
  position: relative;
  overflow: hidden;
  padding: clamp(124px, 10vw, 168px) 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, #0c012c 0%, rgba(12, 1, 44, 0.72) 46%, #0c012c 100%),
    url("./Brenda Oliveri_files/Frame-2147225549.png");
  background-position: top center, center bottom;
  background-repeat: no-repeat;
  background-size: cover, 100% auto;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
  max-width: 980px;
}

.tiktok-title-block {
  position: relative;
  max-width: 980px;
}

.tiktok-title-block > span,
.checkout-head span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tiktok-section h2 {
  margin-bottom: 0;
  background: linear-gradient(90deg, #e8a0f0, #c13de0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.08;
}

.tiktok-section h2 .title-line {
  display: block;
  white-space: nowrap;
}

.tiktok-copy-panel {
  max-width: 920px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.section-lead {
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

.tiktok-section p:not(.section-lead) {
  color: #ccbbdd;
  font-size: 17px;
  line-height: 1.65;
}

.offer-intro,
.dark-process,
.method-section,
.bio-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(82px, 9vw, 138px) 0;
}

.offer-intro {
  background:
    radial-gradient(circle at 85% 25%, rgba(217, 70, 215, 0.22), transparent 34rem),
    #0c012c;
}

.offer-intro .section-title {
  max-width: 920px;
  margin-bottom: 38px;
}

.offer-intro .section-title span {
  color: var(--pink-soft);
}

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

.function-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.function-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.function-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 850;
  line-height: 1.24;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 98px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr);
}

.offer-copy p,
.process-copy p,
.bio-copy p,
.final-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 0 6px rgba(217, 70, 215, 0.12);
}

.stock-visual {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 70, 215, 0.14), rgba(105, 225, 229, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.stock-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12, 1, 44, 0.74) 100%);
  pointer-events: none;
}

.stock-visual::before {
  content: "01";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: -0.3em;
  color: rgba(217, 70, 215, 0.62);
  font-size: clamp(140px, 17vw, 250px);
  font-weight: 900;
  line-height: 1;
}

.stock-visual img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.stock-visual-card {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 24px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(12, 1, 44, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.stock-visual-card span,
.section-title span,
.cards-heading span,
.process-copy > span,
.final-copy > span,
.proof-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stock-visual-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.proof-section,
.cards-block,
.final-offer {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 9vw, 140px) 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(217, 70, 215, 0.15), transparent 30rem),
    var(--paper);
  color: var(--ink-dark);
}

.section-title,
.cards-heading {
  max-width: 860px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title span,
.cards-heading span,
.final-copy > span {
  color: var(--purple);
}

.section-title p,
.cards-heading p {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted-dark);
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.proof-stats div {
  padding: 22px;
  border: 1px solid rgba(124, 32, 223, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(26, 0, 44, 0.08);
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  color: var(--purple);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.proof-stats span {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 248px;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    #fff;
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 90px rgba(26, 0, 44, 0.22);
}

.proof-card img {
  width: 100%;
  height: clamp(360px, 30vw, 520px);
  border-radius: 10px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  padding: clamp(10px, 1vw, 16px);
  box-shadow: inset 0 0 0 1px rgba(124, 32, 223, 0.08);
}

.proof-card h3 {
  color: var(--ink-dark);
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.08;
}

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

.proof-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.proof-large img {
  height: clamp(430px, 34vw, 620px);
  padding: clamp(14px, 1.4vw, 24px);
}

.proof-large div {
  padding-right: clamp(0px, 2vw, 18px);
}

.dark-process {
  background:
    radial-gradient(circle at 22% 28%, rgba(105, 225, 229, 0.12), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(217, 70, 215, 0.16), transparent 34rem),
    #0c012c;
}

.image-stack {
  position: relative;
  min-height: 610px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 12% 7% 4% 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(217, 70, 215, 0.16), rgba(105, 225, 229, 0.08));
}

.image-main,
.image-float {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.image-main {
  top: 0;
  left: 0;
  width: 76%;
  height: 520px;
  object-position: center;
}

.image-float {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 310px;
  border: 8px solid #0c012c;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.steps b,
.module-card b {
  color: var(--cyan);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 4px;
}

.steps p,
.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.cards-block {
  padding-bottom: 0;
}

.cards-heading h2 {
  font-size: clamp(42px, 5vw, 74px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 82px;
}

.fit-card {
  position: relative;
  min-height: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 22px 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.fit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(160, 32, 200, 0.22);
}

.card-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.card-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #c13de0 0%, #8a2be2 100%);
  box-shadow: 0 0 0 6px rgba(193, 61, 224, 0.18), 0 0 0 12px rgba(193, 61, 224, 0.08);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-card p {
  margin: 0;
  color: #1a1235;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
}

.purple-strip {
  width: 100vw;
  padding: 30px 22px;
  background: #7b1fa2;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  text-align: center;
}

.method-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 70, 215, 0.18), transparent 32rem),
    #0c012c;
}

.method-section .section-title span,
.process-copy > span {
  color: var(--pink-soft);
}

.method-section .section-title p {
  color: var(--muted);
}

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

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

.module-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 160, 240, 0.44);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.05));
}

.module-card h3 {
  margin-top: 28px;
}

.bio-section {
  background: #0c012c;
}

.bio-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -60%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 4, 106, 0.45) 0%, rgba(116, 4, 106, 0.18) 35%, rgba(116, 4, 106, 0.05) 60%, transparent 75%);
  pointer-events: none;
}

.bio-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.bio-section .section-inner {
  position: relative;
  z-index: 1;
}

.bio-copy {
  max-width: 560px;
  padding: 32px;
  border-radius: var(--radius);
  background: #f4f4f6;
  color: var(--ink-dark);
}

.bio-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 78px);
}

.bio-copy p {
  color: #31223d;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stats-row div {
  padding: 18px;
  border: 1px solid rgba(124, 32, 223, 0.18);
  border-radius: var(--radius);
  background: #fff;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--purple);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.12;
}

.stats-row span {
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bio-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.bio-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.gallery-section {
  overflow: hidden;
  background: #0c012c;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-track img {
  width: 100%;
  height: clamp(300px, 32vw, 520px);
  object-fit: cover;
}

.final-offer {
  padding: clamp(70px, 6vw, 104px) 0 clamp(104px, 8vw, 142px);
  background:
    radial-gradient(circle at 80% 8%, rgba(217, 70, 215, 0.22), transparent 30rem),
    radial-gradient(circle at 10% 82%, rgba(105, 225, 229, 0.08), transparent 30rem),
    var(--paper);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

.final-copy h2 {
  max-width: 600px;
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: 0.98;
}

.final-copy p {
  max-width: 560px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.58;
}

.decision-options {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.decision-options article {
  padding: 24px 26px;
  border: 1px solid rgba(124, 32, 223, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.decision-options article:last-child {
  border-color: rgba(217, 70, 215, 0.26);
  background: linear-gradient(135deg, rgba(217, 70, 215, 0.12), rgba(255, 255, 255, 0.82));
}

.decision-options span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-options p {
  margin: 0;
}

.checkout-panel {
  padding: clamp(28px, 3vw, 42px);
  border-radius: 18px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 34px 95px rgba(26, 0, 44, 0.22);
}

.checkout-panel h3 {
  color: var(--ink-dark);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.02;
}

.checkout-panel p,
.checkout-panel .offer-list li {
  color: var(--muted-dark);
}

.checkout-head h3 {
  margin-bottom: 0;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  min-height: 94px;
  padding: 20px 20px 20px 54px;
  border: 1px solid rgba(124, 32, 223, 0.12);
  border-radius: var(--radius);
  background: #fff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 0 6px rgba(217, 70, 215, 0.12);
}

.bonus-box,
.guarantee-box {
  border-radius: 16px;
}

.bonus-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(217, 70, 215, 0.18);
  background:
    linear-gradient(135deg, rgba(232, 160, 240, 0.26), rgba(255, 255, 255, 0.92) 58%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.bonus-box::after {
  content: "BONUS";
  position: absolute;
  right: -0.2em;
  bottom: -0.38em;
  color: rgba(124, 32, 223, 0.06);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.bonus-box > span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bonus-box p,
.guarantee-box p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.guarantee-box {
  margin-bottom: 24px;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(124, 32, 223, 0.16);
  background: rgba(245, 235, 250, 0.72);
}

.guarantee-box h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 1.06;
}

.secure-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.secure-copy span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 32, 223, 0.08);
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 850;
}

@media (min-width: 861px) {
  .checkout-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .checkout-head,
  .checkout-panel .btn-wide,
  .secure-copy {
    grid-column: 1 / -1;
  }

  .offer-list {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
  }

  .offer-list li {
    min-height: 90px;
  }

  .bonus-box {
    grid-column: 1 / -1;
    margin: 0;
  }

  .guarantee-box {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin: 0;
  }

  .guarantee-box h3 {
    margin-bottom: 0;
  }

  .checkout-panel .btn-wide {
    margin-top: 0;
  }

  .secure-copy {
    margin-top: 0;
  }
}

.site-footer {
  background: #f4f4f6;
  color: #25152f;
  padding: 42px 0 116px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer .brand-lockup span {
  color: #25152f;
}

.site-footer .brand-lockup small,
.site-footer p {
  color: #6c5c78;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

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

.sticky-cta.is-visible .glowbox {
  pointer-events: auto;
}

.glowbox {
  isolation: isolate;
  overflow: hidden !important;
  contain: layout paint style;
  position: relative;
  width: fit-content;
  margin: auto;
  border-radius: 999px;
  clip-path: inset(0 round 999px);
  --animation-speed: 2.5s;
}

.glowbox-active .glowbox-animations,
.glowbox-active .glowbox-borders-masker {
  opacity: 1;
}

.glowbox-animations,
.glowbox-borders {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 100%;
  transform: translate(-50%, -50%);
}

.glowbox-animations::before,
.glowbox-borders::before {
  content: "";
  float: left;
  padding-top: 100%;
}

.glowbox-animations::after,
.glowbox-borders::after {
  content: "";
  display: block;
  clear: both;
}

.glowbox-animations {
  opacity: 0;
  pointer-events: none;
  transition: 1s ease opacity;
}

.glowbox-animations * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.glowbox-borders,
.glowbox-glow,
.glowbox-stars {
  animation: borderTurn var(--animation-speed) infinite linear;
  background-image: conic-gradient(from 0 at 50% 50%, rgba(180, 100, 255, 1) 0deg, rgba(100, 60, 140, 0) 60deg, rgba(100, 60, 140, 0) 300deg, rgba(180, 100, 255, 1) 360deg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glowbox-stars-masker {
  -webkit-mask: radial-gradient(circle, #000 24%, transparent 28%) 0 0 / 22px 22px;
  mask: radial-gradient(circle, #000 24%, transparent 28%) 0 0 / 22px 22px;
}

.glowbox-glow {
  filter: blur(10px);
  opacity: 0.18;
}

.glowbox-borders {
  animation-name: borderTurnWithTranslate;
}

.glowbox-borders-masker {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.5px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 1s ease opacity;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes borderTurnWithTranslate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(137, 30, 190, 0.97) 0%, rgba(86, 25, 144, 0.98) 50%, rgba(170, 38, 200, 0.97) 100%);
  box-shadow: 0 18px 60px rgba(80, 0, 120, 0.46);
}

.banner-text {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.32;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-cta-link {
  flex-shrink: 0;
}

.btn-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(220, 180, 255, 0.34);
  border-radius: 100px;
  background: linear-gradient(225deg, rgba(220, 180, 255, 0.28), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
}

.btn-cta {
  position: relative;
  z-index: 2;
  min-width: 240px;
  padding: 13px 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 204, 255, 0.46);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(210, 90, 238, 0.68), rgba(125, 40, 210, 0.34), rgba(173, 55, 218, 0.72));
  color: #fff;
  box-shadow: 0 4px 24px rgba(120, 40, 200, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 250ms ease;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(160, 80, 255, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .proof-grid,
  .modules-grid,
  .function-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-large {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .proof-large div {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .split,
  .split.reverse,
  .final-grid,
  .tiktok-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .split.reverse,
  .final-grid {
    gap: 30px;
  }

  .tiktok-title-block {
    position: static;
  }

  .tiktok-copy-panel {
    padding: 26px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: min(1000px, 116svh);
  }

  .hero-bg {
    background-image: url("./Brenda Oliveri_files/brenda-oliveri-mobile-1.webp");
    background-position: top center;
    background-size: 100% auto;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(12, 1, 44, 0.02) 0%, rgba(12, 1, 44, 0.08) 38%, rgba(12, 1, 44, 0.7) 56%, #0c012c 78%, #0c012c 100%),
      linear-gradient(90deg, rgba(12, 1, 44, 0.28), rgba(12, 1, 44, 0.06) 50%, rgba(12, 1, 44, 0.22));
  }

  .hero-content {
    align-items: flex-start;
    padding: clamp(450px, 58vh, 520px) 0 64px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(38px, 8vw, 50px);
    line-height: 1.06;
  }

  .hero-copy p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-copy p + p {
    margin-top: 28px;
  }

  .proof-grid,
  .modules-grid,
  .function-grid,
  .cards-grid,
  .gallery-track,
  .stats-row,
  .proof-stats {
    grid-template-columns: 1fr;
  }

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

  .proof-card img,
  .proof-large img {
    height: min(76vw, 460px);
    max-height: none;
  }

  .guarantee-box {
    display: block;
  }

  .image-stack {
    min-height: 560px;
  }

  .stock-visual {
    min-height: 520px;
  }

  .stock-visual img {
    min-height: 520px;
  }

  .bio-copy {
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 74px;
    padding: 14px 16px;
  }

  .brand-lockup span {
    font-size: 13px;
  }

  .brand-lockup small {
    font-size: 9px;
  }

  .header-cta {
    min-width: 150px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero,
  .hero-content {
    min-height: min(980px, 112svh);
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: clamp(430px, 56vh, 500px);
    padding-bottom: 54px;
  }

  .hero-copy p {
    font-size: 15.5px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

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

  .function-grid {
    gap: 12px;
  }

  .function-card {
    min-height: 168px;
    padding: 16px;
  }

  .function-card span {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .function-card p {
    font-size: 15px;
    line-height: 1.32;
  }

  .tiktok-section {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 82px;
    background-image:
      radial-gradient(circle at 15% 20%, rgba(217, 70, 215, 0.18), transparent 24rem),
      radial-gradient(circle at 90% 65%, rgba(105, 225, 229, 0.08), transparent 22rem),
      linear-gradient(180deg, #0c012c 0%, #090020 100%);
    background-position: center;
    background-size: cover;
  }

  .tiktok-section h2 .title-line {
    white-space: normal;
  }

  .offer-intro,
  .dark-process,
  .method-section,
  .bio-section,
  .proof-section,
  .cards-block,
  .final-offer {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .stock-visual {
    min-height: 470px;
  }

  .stock-visual img {
    min-height: 470px;
  }

  .stock-visual-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .stock-visual-card strong {
    font-size: 18px;
  }

  .image-stack {
    min-height: 450px;
  }

  .image-main {
    width: 76%;
    height: 370px;
  }

  .image-float {
    width: 58%;
    height: 260px;
    border-width: 5px;
  }

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

  .fit-card {
    min-height: 154px;
    padding: 44px 12px 18px;
  }

  .fit-card p {
    font-size: 14px;
    line-height: 1.34;
  }

  .cards-grid {
    gap: 30px 12px;
    margin-bottom: 58px;
  }

  .bio-copy,
  .checkout-panel {
    padding: 24px;
  }

  .decision-options article,
  .bonus-box,
  .guarantee-box {
    padding: 18px;
  }

  .gallery-track img {
    height: 390px;
  }

  .sticky-cta {
    bottom: 12px;
    padding: 0 10px;
  }

  .banner-inner {
    width: min(100vw - 20px, 520px);
    justify-content: space-between;
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }

  .banner-text {
    font-size: 10px;
  }

  .btn-cta {
    min-width: 168px;
    padding: 12px 16px;
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: min(960px, 112svh);
  }

  .hero-content {
    padding-top: clamp(420px, 56vh, 492px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(34px, 9.4vw, 40px);
  }

  h2,
  .cards-heading h2,
  .final-copy h2,
  .tiktok-section h2 {
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 1.08;
  }

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

  .tiktok-copy-panel,
  .proof-card,
  .module-card,
  .fit-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-card img,
  .proof-large img {
    height: clamp(240px, 74vw, 350px);
    max-height: 350px;
    object-fit: contain;
    padding: 8px;
    background: #fff;
  }

  .tiktok-section {
    padding-top: 34px;
  }

  .final-offer {
    padding-bottom: 86px;
  }

  .banner-inner {
    width: min(100vw - 16px, 520px);
  }

  .banner-text {
    display: none;
  }

  .btn-cta-box,
  .btn-cta-link {
    width: 100%;
  }

  .btn-cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .function-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
