:root {
  --purple-950: #1E0629;
  --purple-900: #2E0A3D;
  --purple-800: #431256;
  --purple-700: #5C1A73;
  --gold: #E8C86A;
  --gold-dark: #C9A94E;
  --cream: #FAF6F0;
  --cream-dark: #F1E9DD;
  --ink: #241129;
  --ink-soft: #5B4C64;
  --white: #FFFFFF;
  --line: #E7DFEF;
  --shadow: 0 20px 50px -25px rgba(46, 10, 61, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--purple-900);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; }

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--purple-900);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.logo span { color: var(--gold-dark); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--purple-700); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-900);
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.nav-toggle { display: none; }

.mobile-nav { display: none; }

@media (max-width: 720px) {
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav summary {
    list-style: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--purple-900);
    padding: 4px 8px;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav[open] summary { color: var(--gold-dark); }
  .mobile-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    min-width: 180px;
    z-index: 60;
  }
  .mobile-nav-menu a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    border-radius: 8px;
    font-size: 15px;
  }
  .mobile-nav-menu a:hover, .mobile-nav-menu a.active { background: var(--cream-dark); color: var(--purple-700); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-950);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(232, 200, 106, 0.6); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--purple-900);
  color: var(--white);
}

.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 15% 20%, var(--purple-800), var(--purple-950) 65%);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(232,200,106,0.05) 0, rgba(232,200,106,0.05) 2px, transparent 2px, transparent 26px),
    repeating-linear-gradient(-45deg, rgba(232,200,106,0.04) 0, rgba(232,200,106,0.04) 2px, transparent 2px, transparent 26px);
  pointer-events: none;
}

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

.hero-copy {
  max-width: 640px;
}

.hero-panel { display: none; }

@media (min-width: 960px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
  }
  .hero-panel { display: block; }
  .hero-panel-quote {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 200, 106, 0.25);
    border-radius: 20px;
    padding: 40px 36px;
  }
  .hero-panel-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 21px;
    line-height: 1.5;
    color: var(--white);
    margin: 0 0 18px;
  }
  .hero-panel-quote span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232, 200, 106, 0.12);
  border: 1px solid rgba(232, 200, 106, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 58px);
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  max-width: 420px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat:first-child {
  padding-top: 0;
  border-top: none;
}

.hero-stat strong {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.2px;
  min-width: 92px;
}

.hero-stat span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-light { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark {
  background: var(--purple-950);
  color: rgba(255,255,255,0.85);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.65); }

.kicker {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.section-dark .kicker { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); }

/* ---------- Anchor / truth cards ---------- */
.truths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.truth-card {
  background: var(--purple-900);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.truth-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  color: rgba(232, 200, 106, 0.09);
  font-weight: 700;
  line-height: 1;
}

.truth-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 18px;
}

.truth-card h3 { color: var(--white); font-size: 20px; }
.truth-card p { color: rgba(255,255,255,0.68); margin-bottom: 0; }

/* ---------- Grid cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 15px; margin-bottom: 0; }

.pill-list { list-style: none; margin: 0; padding: 0; }
.pill-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.pill-list li::before {
  content: '✓';
  color: var(--purple-700);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  position: relative;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 14px; margin-bottom: 0; }

/* ---------- Module rows (features page) ---------- */
.module {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.module:last-child { border-bottom: none; }

.module-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--cream-dark);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.module h3 { font-size: 26px; }

.module-visual {
  background: linear-gradient(160deg, var(--purple-900), var(--purple-950));
  border-radius: 20px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: var(--shadow);
}

.module-visual img {
  width: 88px;
  height: 88px;
}

.module.reverse { grid-template-columns: 1.4fr 0.9fr; }
.module.reverse .module-visual { order: 2; }
.module.reverse .module-text { order: 1; }

.wedge-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--purple-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-left: 10px;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  background: var(--purple-900);
  color: var(--white);
  border: none;
  box-shadow: 0 30px 60px -20px rgba(46,10,61,0.5);
  transform: scale(1.03);
}

.price-card.featured h3, .price-card.featured .price { color: var(--white); }
.price-card.featured p, .price-card.featured .pill-list li { color: rgba(255,255,255,0.72); }
.price-card.featured .pill-list li::before { color: var(--gold); }

.price-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: var(--purple-950);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.price-for { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.price-card.featured .price-for { color: rgba(255,255,255,0.6); }

.price {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--purple-900);
  margin-bottom: 4px;
}

.price small { font-size: 14px; font-weight: 400; color: var(--ink-soft); }

.price-cadence { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }
.price-card.featured .price-cadence { color: rgba(255,255,255,0.55); }

.price-card .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------- Quote block ---------- */
.quote-block {
  background: var(--cream-dark);
  border-radius: 22px;
  padding: 44px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--purple-900);
  margin: 0 0 14px;
}

.quote-block cite { font-size: 14px; color: var(--ink-soft); font-style: normal; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--purple-900), var(--purple-950));
  color: var(--white);
  border-radius: 28px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 0; max-width: 420px; }

/* ---------- Footer ---------- */
footer {
  background: var(--purple-950);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-logo span { color: var(--gold); }

.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232,200,106,0.25);
}

.section-white .tag, .section-light .tag {
  background: var(--cream-dark);
  color: var(--purple-700);
  border: 1px solid var(--line);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-2, .grid-4, .steps, .truths, .pricing-grid { grid-template-columns: 1fr; }
  .module, .module.reverse { grid-template-columns: 1fr; }
  .module.reverse .module-visual { order: 1; }
  .module.reverse .module-text { order: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 64px 0 72px; }
  section { padding: 64px 0; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
}
