:root {
  --bg: #080808;
  --bg-soft: #101010;
  --bg-softer: #171717;
  --text: #fbf7ea;
  --muted: #aaa59a;
  --gold: #edc77e;
  --gold-strong: #f4b84f;
  --line: rgba(237, 199, 126, 0.22);
  --success: #45d483;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.section {
  padding: 56px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.narrow {
  max-width: 760px;
}

.centered {
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
}

h1 {
  font-size: clamp(1.65rem, 6.5vw, 2.5rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.5rem, 7vw, 2.35rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.centered-title {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  margin: 18px auto 0;
  font-size: 1rem;
}

.button {
  display: flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 15px 20px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--success);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #080808;
  box-shadow: 0 18px 50px rgba(237, 199, 126, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero {
  padding-top: 28px;
  padding-bottom: 40px;
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(237, 199, 126, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-subtitle {
  max-width: 780px;
  margin: 12px auto 0;
  color: #ddd6c6;
  font-size: 1rem;
}

.mini-vsl {
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(237, 199, 126, 0.35);
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.mini-vsl iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.mini-vsl-cover {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  padding: 28px 18px;
  background: #090909;
  color: var(--text);
  cursor: pointer;
  font: inherit;
}

.mini-vsl-cover img,
.mini-vsl-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mini-vsl-cover img {
  object-fit: cover;
}

.mini-vsl-shade {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 20%,
    rgba(0, 0, 0, 0.3) 52%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.mini-vsl-cover strong,
.mini-vsl-cover small,
.mini-vsl-play {
  position: relative;
  z-index: 1;
}

.mini-vsl-cover strong {
  margin-top: 10px;
  font-size: 1rem;
}

.mini-vsl-cover small {
  color: #d5cec0;
  font-size: 0.72rem;
}

.mini-vsl-play {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  padding-left: 4px;
  background: rgba(237, 199, 126, 0.92);
  color: #080808;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  font-size: 1.4rem;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.mini-vsl-cover:hover .mini-vsl-play {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.mini-vsl-cover:focus-visible {
  outline: 3px solid var(--success);
  outline-offset: -5px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
}

.scroll-indicator span {
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.scroll-arrow {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

.proof-section,
.mechanism,
.anchor {
  background: #0b0b0b;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--bg-soft);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.carousel-dot {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.24) 0 4px,
    transparent 5px
  );
  cursor: pointer;
}

.carousel-dot.active {
  background: radial-gradient(circle, var(--gold) 0 4px, transparent 5px);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--success);
  outline-offset: 1px;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 42%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.92);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--bg);
}

.carousel-arrow:focus-visible {
  outline: 3px solid var(--success);
  outline-offset: 2px;
}

.carousel-arrow-prev {
  left: 6px;
}

.carousel-arrow-next {
  right: 6px;
}

.proof-grid,
.curriculum-grid,
.audience-grid,
.pricing-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-card,
.audience-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.proof-card strong,
.audience-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
}

.proof-card span,
.audience-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.voice-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.voice-list p {
  margin: 0;
  padding: 15px 16px;
  border-left: 3px solid var(--gold);
  background: var(--bg-soft);
  color: #e7decc;
  font-size: 0.87rem;
  font-weight: 800;
}

.diagnosis-list,
.steps-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.diagnosis-item,
.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.diagnosis-item > span,
.step-item > span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 900;
}

.diagnosis-item p,
.step-item p {
  margin: 0;
}

.step-item h3 {
  margin-bottom: 5px;
}

.curriculum-grid {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.module-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.module-card > span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.module-card p {
  margin: 7px 0 0;
  font-size: 0.82rem;
}

.module-card.featured {
  border-color: var(--line);
  background: rgba(237, 199, 126, 0.06);
}

.not-for-you {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(237, 199, 126, 0.24);
  border-radius: var(--radius);
  background: rgba(237, 199, 126, 0.05);
}

.not-for-you strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.not-for-you p {
  margin: 8px 0 0;
}

.anchor {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(237, 199, 126, 0.12),
      transparent 45%
    ),
    #0b0b0b;
}

.pricing {
  background: #0d0d0d;
}

.pricing-grid {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #111;
  box-shadow: var(--shadow);
}

.plan-card.recommended {
  border-color: rgba(237, 199, 126, 0.62);
  background: linear-gradient(180deg, rgba(237, 199, 126, 0.08), #111 32%);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 1.45rem;
}

.plan-price {
  display: grid;
  gap: 7px;
  margin: 20px 0;
}

.plan-price strong {
  color: var(--gold);
  font-size: clamp(1.75rem, 7vw, 2.45rem);
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #ddd6c6;
  font-size: 0.84rem;
  line-height: 1.45;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.plan-card li.excluded {
  color: #77736b;
}

.plan-card li.excluded::before {
  color: #77736b;
  content: "—";
}

.guarantee {
  position: relative;
  margin: 20px 0 0;
  padding: 0 0 0 22px;
  color: #c9c2b5;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.guarantee::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.plan-card .button {
  width: 100%;
  margin-top: 18px;
}

.microcopy {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.71rem;
  text-align: center;
}

.letter {
  background: #080808;
}

.letter-card {
  margin-top: 20px;
  padding: 24px 20px;
  border-left: 3px solid var(--gold);
  background: #101010;
}

.letter-card p {
  margin: 0 0 16px;
  color: #ddd6c6;
}

.letter-card p:last-child {
  margin-bottom: 0;
}

.signature {
  color: var(--text) !important;
}

.earnings-calculator {
  margin-top: 28px;
  padding: 24px 18px;
  border: 1px solid rgba(237, 199, 126, 0.28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(237, 199, 126, 0.07), #111);
  box-shadow: var(--shadow);
  text-align: left;
}

.calculator-title {
  margin: 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

.calculator-intro {
  max-width: 680px;
  margin: 8px auto 22px;
  text-align: center;
}

.calculator-fields {
  display: grid;
  gap: 16px;
}

.calculator-field {
  display: grid;
  gap: 8px;
}

.calculator-field span {
  color: #ddd6c6;
  font-size: 0.78rem;
  font-weight: 800;
}

.select-wrapper {
  position: relative;
  display: block;
}

.select-wrapper::after {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--gold);
  content: "⌄";
  font-size: 1rem;
  pointer-events: none;
  transform: translateY(-58%);
}

.calculator-field select,
.calculator-field input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 14px;
  background: #080808;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  line-height: 52px;
}

.calculator-field select {
  padding-right: 44px;
  appearance: none;
}

.calculator-field select:focus-visible,
.calculator-field input:focus-visible {
  outline: 3px solid var(--success);
  outline-offset: 3px;
}

.calculator-equation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  color: #ddd6c6;
  text-align: center;
}

.calculator-equation > strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.calculator-result {
  display: grid;
  flex-basis: 100%;
  gap: 4px;
  margin-top: 8px;
}

.calculator-result small {
  color: var(--muted);
  font-size: 0.72rem;
}

.calculator-result output {
  color: var(--success);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.calculator-note {
  max-width: 650px;
  margin: 20px auto 0;
  color: #918b80;
  font-size: 0.72rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.faq-list details {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  font-size: 0.82rem;
}

.final-choice {
  margin-top: 42px;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(237, 199, 126, 0.05);
  text-align: center;
}

.final-choice > p {
  margin: 12px auto 0;
}

.final-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer {
  padding: 28px 16px 72px;
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 7px;
}

.footer p {
  margin: 0;
  color: #8c867a;
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 10px;
}

.footer-links a,
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100svh;
  padding: 48px 18px 80px;
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(237, 199, 126, 0.12),
      transparent 30%
    ),
    var(--bg);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-top: 12px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.25rem;
}

.legal-content p {
  margin: 12px 0 0;
}

.legal-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.8rem;
  font-weight: 800;
}

.legal-warning {
  padding: 14px 16px;
  border: 1px solid rgba(237, 199, 126, 0.35);
  border-radius: 9px;
  background: rgba(237, 199, 126, 0.07);
  color: #ddd6c6;
  font-weight: 700;
}

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

  .proof-grid,
  .audience-grid,
  .curriculum-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide {
    flex-basis: 60%;
  }

  .proof-grid article:last-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 920px) {
  .section {
    padding: clamp(76px, 8vw, 112px) clamp(24px, 4vw, 44px);
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
  }

  .hero-subtitle {
    max-width: 690px;
    font-size: 1.08rem;
  }

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

  .carousel-slide {
    flex-basis: 40%;
  }

  .proof-grid article:last-child {
    grid-column: auto;
  }

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

  .diagnosis-item:last-child {
    grid-column: 1 / -1;
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 18px;
  }

  .plan-card {
    padding: 32px 28px;
  }

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

  .earnings-calculator {
    padding: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
