/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --black: #0a0806;
  --deep: #111008;
  --surface: #17140e;
  --surface-2: #1f1b13;
  --border: #c9a96e26;
  --border-md: #c9a96e4d;
  --gold: #c9a96e;
  --gold-light: #dec08c;
  --gold-dim: #c9a96e8c;
  --cream: #f0e8d6;
  --cream-dim: #f0e8d6a6;
  --text: #ede4cf;
  --text-muted: #ede4cf8c;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base ───────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}

body.lp-loaded {
  opacity: 1;
  transition: opacity 0.7s ease;
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1;
    transition: none;
  }
}

/* ─── Custom scrollbar ───────────────────────────────────── */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--black);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-dim);
  background-clip: padding-box;
  border: 2px solid var(--black);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold);
}

.lp-root {
  min-height: 100vh;
  position: relative;
}

/* ─── Grain overlay ──────────────────────────────────────── */
.lp-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.038;
  background-repeat: repeat;
  background-size: 200px 200px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── Scroll reveal ──────────────────────────────────────── */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

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

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

/* ─── Layout ─────────────────────────────────────────────── */
.lp-section {
  padding: clamp(72px, 10vw, 130px) 24px;
  position: relative;
  overflow: hidden;
}

.lp-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-inner--narrow {
  max-width: 720px;
}

.lp-section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.lp-section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: var(--gold);
}

.lp-section-heading {
  margin-bottom: 40px;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.lp-section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.lp-section-heading--center {
  text-align: center;
}

/* ─── Hero ───────────────────────────────────────────────── */
.lp-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #c9a96e12 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 100%, #8c64320d 0%, transparent 60%),
    var(--black);
}

.lp-hero-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border: 1px solid #c9a96e0d;
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-ornament::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid #c9a96e0a;
  border-radius: 50%;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.lp-eyebrow-dash {
  display: block;
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: var(--gold-dim);
}

.lp-eyebrow-text {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.lp-hero-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-hero-title-line1 {
  font-size: clamp(3.6rem, 13vw, 8.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.lp-hero-title-line2 {
  font-size: clamp(2.2rem, 7.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.05;
}

.lp-hero-title-line3 {
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
}

.lp-hero-tagline-wrap {
  margin-bottom: 44px;
}

.lp-hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
}

.lp-hero-subtitle em {
  font-style: italic;
  color: var(--gold-dim);
}

/* ─── Buttons ────────────────────────────────────────────── */
.lp-cta-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: var(--ff-sans);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.25s var(--ease-out), box-shadow 0.3s;
}

.lp-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #ffffff0f;
  transition: opacity 0.2s;
}

.lp-cta-btn:hover::after {
  opacity: 1;
}

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

.lp-cta-btn:active {
  transform: translateY(0);
}

.lp-cta-btn--hero {
  padding: 17px 38px;
  font-size: 0.72rem;
  border: none;
  border-radius: 2px;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 32px #c9a96e40;
}

.lp-cta-btn--hero:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 42px #c9a96e61;
}

.lp-cta-btn--primary {
  display: block;
  margin: 0 auto 14px;
  padding: 18px 44px;
  font-size: 0.75rem;
  text-align: center;
  border: none;
  border-radius: 2px;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 32px #c9a96e4d;
}

.lp-cta-btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 48px #c9a96e6b;
}

.lp-cta-btn--final {
  display: inline-block;
  margin-top: 36px;
  padding: 18px 44px;
  font-size: 0.75rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--gold);
}

.lp-cta-btn--final:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.lp-cta-subtext {
  margin-top: 12px;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.lp-cta-subtext--center {
  text-align: center;
}

.lp-hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ─── Pain section ───────────────────────────────────────── */
.lp-section--pain {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-bottom: 64px;
  background: var(--border);
  border: 1px solid var(--border);
}

.lp-pain-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}

.lp-pain-card:hover {
  background: var(--surface-2);
}

.lp-pain-number {
  display: block;
  margin-bottom: 18px;
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: #c9a96e26;
}

.lp-pain-text {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
}

.lp-truth-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.lp-truth-line {
  flex: 1;
  min-width: 32px;
  height: 1px;
  background: var(--border-md);
}

.lp-truth-quote-text {
  flex: 3;
  min-width: 200px;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream);
}

.lp-truth-quote-text strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

/* ─── Diagnosis (Here's the Truth) ───────────────────────── */
.lp-section--diagnosis {
  background: var(--black);
}

.lp-diagnosis-body {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  text-align: center;
}

.lp-diagnosis-body em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── Warning box ────────────────────────────────────────── */
.lp-section--warning {
  background: var(--black);
}

.lp-warning-box {
  position: relative;
  border: 1px solid var(--border-md);
  background: var(--surface);
  border-radius: 4px;
  padding: clamp(36px, 6vw, 56px);
}

.lp-warning-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.lp-warning-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
}

.lp-warning-heading {
  margin-bottom: 28px;
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--cream);
}

.lp-warning-list {
  list-style: none;
}

.lp-warning-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #c9a96e12;
  font-family: var(--ff-sans);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
}

.lp-warning-dash {
  display: block;
  width: 20px;
  height: 1px;
  margin-top: 12px;
  flex-shrink: 0;
  background: var(--gold-dim);
}

.lp-warning-close {
  margin-top: 28px;
  font-family: var(--ff-serif);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
}

.lp-warning-close em {
  color: var(--gold-light);
}

/* ─── Solution / outcomes ────────────────────────────────── */
.lp-section--solution {
  background: var(--black);
}

.lp-solution-intro {
  max-width: 680px;
  margin-bottom: 56px;
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
}

.lp-solution-intro strong {
  font-weight: 500;
  color: var(--gold-light);
}

.lp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.lp-outcome-card {
  position: relative;
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s, transform 0.4s var(--ease-out);
  will-change: transform;
}

.lp-outcome-card:hover {
  background: var(--surface-2);
}

.lp-outcome-number {
  margin-bottom: 18px;
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.lp-outcome-title {
  margin-bottom: 12px;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cream);
}

.lp-outcome-body {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Bonuses ─────────────────────────────────────────────── */
.lp-section--bonuses {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.lp-bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.lp-bonus-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 32px;
  background: var(--surface);
  transition: background 0.3s, transform 0.4s var(--ease-out);
  will-change: transform;
}

.lp-bonus-row:hover {
  background: var(--surface-2);
}

.lp-bonus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  border: 1px solid var(--border-md);
  border-radius: 50%;
  color: var(--gold);
}

.lp-bonus-content {
  flex: 1;
}

.lp-bonus-title {
  margin-bottom: 6px;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cream);
}

.lp-bonus-desc {
  font-family: var(--ff-sans);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-bonus-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 4px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--gold);
}

/* ─── Pricing ─────────────────────────────────────────────── */
.lp-section--cta {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.lp-price-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border-md);
  background: var(--surface);
  border-radius: 4px;
  padding: clamp(40px, 7vw, 72px);
}

@property --shimmer-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.lp-price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--shimmer-angle), transparent 0%, var(--gold-light) 6%, transparent 16%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: shimmerRotate 6s linear infinite;
}

@keyframes shimmerRotate {
  to { --shimmer-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-price-card::after {
    animation: none;
  }
}

.lp-price-ornament {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #c9a96e14, transparent 70%);
  pointer-events: none;
}

.lp-price-eyebrow {
  margin-bottom: 20px;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.lp-price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  line-height: 1;
}

.lp-price-currency {
  padding-top: 12px;
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 300;
  color: var(--gold);
}

.lp-price-amount {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.lp-price-context {
  max-width: 540px;
  margin: 0 auto 40px;
  font-family: var(--ff-sans);
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ─── Not for everyone ───────────────────────────────────── */
.lp-section--notfor {
  background: var(--deep);
  border-top: 1px solid var(--border);
  text-align: center;
}

.lp-notfor-heading {
  margin-bottom: 28px;
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

.lp-notfor-body {
  font-family: var(--ff-sans);
  font-size: clamp(0.93rem, 2vw, 1.06rem);
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream-dim);
}

.lp-notfor-body strong {
  font-weight: 500;
  color: var(--text);
}

.lp-notfor-body em {
  font-style: italic;
  color: var(--gold-light);
}

/* ─── Final ──────────────────────────────────────────────── */
.lp-section--final {
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
  padding-bottom: clamp(80px, 12vw, 140px);
}

.lp-final-reminder {
  margin-bottom: 24px;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.lp-final-heading {
  margin-bottom: 22px;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.lp-final-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.lp-final-body {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream-dim);
}

/* ─── Footer ─────────────────────────────────────────────── */
.lp-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px 24px;
}

.lp-footer p {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .lp-pain-grid,
  .lp-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .lp-bonus-row {
    flex-wrap: wrap;
  }

  .lp-bonus-check {
    display: none;
  }

  .lp-truth-block {
    flex-direction: column;
    gap: 18px;
  }

  .lp-truth-line {
    flex: none;
    width: 40px;
    height: 1px;
  }

  .lp-hero-title-line1 {
    font-size: clamp(3.4rem, 20vw, 6rem);
  }
}
