:root {
  --black: #111111;
  --white: #ffffff;
  --muted: #f7f7f7;
  --text: #242424;
  --soft: #747474;
  --line: rgba(17, 17, 17, 0.1);
  --gradient: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  place-items: center;
  width: 128px;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-cta {
  display: none;
}

.section {
  padding: 76px 0;
  overflow: hidden;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 36px));
}

.light-section {
  background: var(--white);
}

.alt-section {
  background: var(--muted);
}

.dark-section {
  color: var(--white);
  background: var(--black);
}

.hero {
  padding-top: 64px;
}

.hero-grid,
.authority-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  color: var(--white);
  background: var(--gradient);
  border-radius: 999px;
}

.eyebrow.dark {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.section-number {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

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

h1,
h2 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 11vw, 5rem);
}

h2 {
  max-width: 920px;
  margin-bottom: 28px;
  color: var(--black);
  font-size: clamp(2rem, 7vw, 4.1rem);
}

.dark-section h2,
.dark-section h1 {
  color: var(--white);
}

h3,
h4 {
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy p,
.copy-block p,
.feature-panel p,
.footer-copy p {
  font-weight: 500;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.pre-headline {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1rem, 4.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 12px 40px rgba(221, 42, 123, 0.28);
}

.hero-subheadline {
  font-size: clamp(1.08rem, 4.6vw, 1.24rem);
  font-weight: 600;
}

.hero-trust {
  display: grid;
  gap: 10px;
  margin: 22px 0 6px;
}

.hero-trust span {
  width: fit-content;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 16px 35px rgba(221, 42, 123, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(221, 42, 123, 0.34);
}

.btn-primary {
  color: var(--white);
  background: var(--gradient);
}

.hero .btn {
  margin-top: 16px;
}

.hero-photo-wrap,
.authority-photo-wrap {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: var(--gradient);
  box-shadow: 0 26px 80px rgba(221, 42, 123, 0.28);
}

.hero-photo-wrap::before,
.authority-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 0;
  background: var(--gradient);
  filter: blur(42px);
  opacity: 0.34;
}

.creator-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  max-height: 640px;
}

.authority-photo {
  aspect-ratio: 4 / 5;
  max-height: 720px;
  object-position: center top;
}

.copy-block {
  display: grid;
  gap: 14px;
}

.copy-block.centered {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
}

.pill-list,
.mini-grid,
.quote-grid,
.card-grid,
.steps,
.benefit-grid,
.bonus-grid,
.check-grid,
.value-stack {
  display: grid;
  gap: 14px;
}

.pill-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 6px 0 12px;
}

.pill-list span,
.mini-grid span {
  padding: 14px 16px;
  font-weight: 600;
  background: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-grid {
  margin: 8px 0 12px;
}

blockquote {
  margin: 0;
}

.quote-grid blockquote {
  padding: 22px;
  min-height: 112px;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid transparent;
  border-image: var(--gradient) 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.step-card,
.benefit-card,
.bonus-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card::before,
.benefit-card::before,
.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gradient);
  border-radius: var(--radius) 0 0 var(--radius);
}

.card span,
.step-card span,
.bonus-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: transparent;
  font-weight: 800;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.card p,
.step-card p,
.benefit-card p,
.bonus-card p {
  margin-bottom: 0;
}

.result-strip,
.closing-panel,
.feature-panel,
.total-box,
.practice-flow {
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.result-strip strong,
.closing-panel strong,
.total-box strong {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.steps {
  counter-reset: steps;
}

.step-card {
  border-top: 5px solid transparent;
  border-image: var(--gradient) 1;
}

.step-card h3,
.benefit-card h4,
.bonus-card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.closing-copy {
  max-width: 760px;
  margin: 30px auto 0;
  font-weight: 600;
  text-align: center;
}

.closing-copy.light {
  color: rgba(255, 255, 255, 0.86);
}

.subhead {
  margin: 42px 0 18px;
  color: var(--black);
  font-size: clamp(1.2rem, 4vw, 1.8rem);
}

.practice-flow {
  margin-top: 32px;
}

.practice-flow h3 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 800;
}

.practice-grid {
  display: grid;
  gap: 14px;
}

.practice-card {
  position: relative;
  padding: 22px;
  background: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.practice-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.practice-card h4 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.02rem;
}

.practice-card p {
  margin-bottom: 0;
}

.bonus-grid {
  margin-top: 28px;
}

.check-grid p {
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.value-stack div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-stack span {
  font-weight: 600;
}

.value-stack strong {
  color: var(--soft);
  text-decoration: line-through;
}

.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.total-box span {
  font-weight: 600;
}

.total-box strong {
  font-size: clamp(2rem, 10vw, 4rem);
  line-height: 1;
}

.checkout-section {
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(245, 133, 41, 0.22), transparent 34%), var(--black);
}

.checkout-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.checkout-card h2 {
  color: var(--white);
}

.checkout-card p,
.checkout-card li {
  color: rgba(255, 255, 255, 0.84);
}

.price {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
}

.checkout-badges,
.security-strip {
  display: grid;
  gap: 10px;
}

.checkout-badges {
  margin: 22px 0 20px;
}

.checkout-badges span,
.security-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.checkout-badges .guarantee-badge {
  color: var(--white);
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(221, 42, 123, 0.24);
}

.price span,
.price small {
  color: var(--black);
  font-weight: 600;
}

.price strong {
  color: transparent;
  font-size: clamp(3rem, 16vw, 6rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.guarantee-note {
  margin: -8px 0 24px;
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.checkout-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.security-strip {
  margin-top: 18px;
}

.condition {
  margin: 18px 0 0;
  text-align: center;
}

.intense blockquote {
  padding: 18px;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--muted);
  border-left: 5px solid transparent;
  border-image: var(--gradient) 1;
  border-radius: var(--radius);
}

.authority-grid h2 {
  margin-bottom: 22px;
}

.authority-highlight {
  padding: 18px;
  color: var(--black);
  font-weight: 800;
  background: var(--white);
  border-left: 5px solid transparent;
  border-image: var(--gradient) 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 20px 54px 20px 20px;
  color: var(--black);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 28px;
  height: 28px;
  color: var(--white);
  line-height: 28px;
  text-align: center;
  background: var(--gradient);
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: max-height 260ms ease, padding 260ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 420px;
  padding: 0 20px 20px;
}

.footer-section {
  padding-bottom: 108px;
}

.footer-logo {
  width: min(210px, 62vw);
  height: auto;
  margin-bottom: 28px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-copy {
  display: grid;
  gap: 10px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #dd2a7b;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: inline-flex;
  justify-content: center;
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background: var(--gradient);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.28);
  transform: translateY(0);
  transition: transform 220ms ease;
}

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

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

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

@media (min-width: 640px) {
  .section {
    padding: 92px 0;
  }

  .btn {
    width: auto;
    min-width: 360px;
  }

  .pill-list,
  .mini-grid,
  .card-grid,
  .benefit-grid,
  .check-grid,
  .value-stack,
  .practice-grid,
  .checkout-badges,
  .security-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 920px) {
  .site-header {
    padding: 12px 36px;
  }

  .brand {
    width: 150px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    background: var(--gradient);
    border-radius: var(--radius);
  }

  .hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  }

  .authority-grid {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  }

  .card-grid.errors,
  .steps,
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-trust {
    grid-template-columns: repeat(3, max-content);
  }

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

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

  .quote-grid blockquote {
    min-height: 180px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

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