:root {
  --bg: #1a0f14;
  --bg-subtle: #150b10;
  --bg-card: #221319;
  --fg: #f5ede8;
  --fg-muted: #b8907e;
  --accent: #c9935a;
  --accent-glow: rgba(201, 147, 90, 0.12);
  --accent-soft: #b57d46;
  --gold: #d4a96a;
  --rose: #9e4e6b;
  --border: rgba(201, 147, 90, 0.14);
  --border-card: rgba(201, 147, 90, 0.1);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

em {
  font-style: italic;
  color: var(--gold);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(158, 78, 107, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #1e0e16 0%, #1a0f14 50%, #150b10 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid rgba(212, 169, 106, 0.35);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
  background: rgba(212, 169, 106, 0.05);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.1;
}

.hero h1 em {
  display: block;
  font-weight: 500;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 48px auto 0;
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(158, 78, 107, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 110px 24px;
  background: var(--bg-subtle);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  opacity: 0.3;
}

.problem-inner {
  max-width: 980px;
  margin: 0 auto;
}

.problem-label,
.features-label,
.how-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.8;
}

.problem h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-card {
  background: var(--bg-card);
  padding: 44px 32px;
  transition: background 0.3s ease;
}

.problem-card:hover {
  background: #281620;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ---- FEATURES ---- */
.features {
  padding: 110px 24px;
}

.features-inner {
  max-width: 980px;
  margin: 0 auto;
}

.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(201, 147, 90, 0.25);
  transform: translateY(-2px);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card--large {
  grid-column: span 2;
}

.feature-icon {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.7;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg);
  margin-bottom: 12px;
  font-weight: 500;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ---- HOW ---- */
.how {
  padding: 110px 24px;
  background: var(--bg-subtle);
  position: relative;
}

.how-inner {
  max-width: 980px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 64px;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 480px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212, 169, 106, 0.2) 100%);
  opacity: 0.25;
}

.how-step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fg);
  margin-bottom: 12px;
  font-weight: 500;
}

.how-step p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(158, 78, 107, 0.12) 0%, transparent 60%),
    var(--bg);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.25;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
}

/* ---- PRICING ---- */
.pricing {
  padding: 120px 24px;
  background: var(--bg-subtle);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  opacity: 0.3;
}

.pricing-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  opacity: 0.8;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.2;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease;
}

.pricing-card:hover {
  border-color: rgba(201, 147, 90, 0.25);
}

/* VIP card — premium treatment */
.pricing-card--vip {
  background: linear-gradient(160deg, #2a1520 0%, #221319 60%, #1e1018 100%);
  border: 1px solid rgba(212, 169, 106, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 169, 106, 0.1);
}

.pricing-card--vip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-vip-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--rose), var(--accent));
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-top {
  margin-bottom: 28px;
}

.pricing-tier-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  margin-bottom: 16px;
  opacity: 0.7;
}

.pricing-tier-label--vip {
  color: var(--gold);
  opacity: 1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card--vip .pricing-amount {
  color: var(--gold);
}

.pricing-cadence {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.pricing-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--fg);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.pricing-card-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
  border-top: 1px solid var(--border-card);
  padding-top: 24px;
}

.pricing-features li {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.pricing-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

.pricing-card--vip .pricing-features {
  border-top-color: rgba(212, 169, 106, 0.2);
}

.pricing-card--vip .pricing-features li::before {
  opacity: 1;
}

/* CTA buttons */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(201, 147, 90, 0.35);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  margin-bottom: 12px;
}

.btn-pricing:hover {
  background: rgba(201, 147, 90, 0.08);
  border-color: rgba(201, 147, 90, 0.6);
  color: var(--gold);
}

.btn-pricing--vip {
  background: linear-gradient(135deg, rgba(158, 78, 107, 0.3) 0%, rgba(201, 147, 90, 0.2) 100%);
  border: 1px solid rgba(212, 169, 106, 0.5);
  color: var(--gold);
}

.btn-pricing--vip:hover {
  background: linear-gradient(135deg, rgba(158, 78, 107, 0.5) 0%, rgba(201, 147, 90, 0.35) 100%);
  border-color: var(--gold);
  color: var(--fg);
}

.pricing-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
  opacity: 0.6;
  letter-spacing: 0.03em;
}

.pricing-note--vip {
  color: var(--gold);
  opacity: 0.8;
}

.pricing-trust {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pricing-trust p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .pricing-card--vip {
    transform: none;
  }
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 56px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-subtle);
}

.site-footer::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
  opacity: 0.4;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 20px 80px;
  }

  .problem,
  .features,
  .how,
  .closing {
    padding: 72px 20px;
  }
}
