/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  /* Brand palette */
  --plum:          #2D1B36;
  --plum-deep:     #1E0F25;
  --plum-mid:      #3D2550;
  --plum-light:    #5C3D72;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dim:      rgba(201, 168, 76, 0.18);
  --gold-glow:     rgba(201, 168, 76, 0.08);
  --cream:         #F7F3EC;
  --cream-warm:    #EDE7DB;
  --cream-deep:    #D9CFBE;
  --charcoal:      #2C2C2C;
  --charcoal-mid:  #4A4A4A;
  --charcoal-soft: #6B6B6B;

  /* Semantic tokens */
  --bg-primary:    var(--plum-deep);
  --bg-secondary:  var(--plum);
  --bg-surface:    #27163200;
  --bg-card:       rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --text-primary:  var(--cream);
  --text-secondary:rgba(247, 243, 236, 0.7);
  --text-muted:    rgba(247, 243, 236, 0.42);
  --accent:        var(--gold);
  --accent-dim:    var(--gold-dim);
  --accent-glow:   var(--gold-glow);
  --border:        rgba(201, 168, 76, 0.15);
  --border-subtle: rgba(247, 243, 236, 0.08);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-pad-v: 7rem;
  --inner-max:     1080px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === SHARED UTILITIES === */
.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

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

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

/* Gold divider line */
.divider-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0.6;
}

/* === CTA BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--plum-deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.95rem 2.2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

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

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, rgba(30, 15, 37, 0.95) 0%, rgba(30, 15, 37, 0) 100%);
  backdrop-filter: blur(4px);
}

.nav-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
}

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.nav-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 2rem 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(92, 61, 114, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(45, 27, 54, 0.5) 0%, transparent 55%),
    linear-gradient(160deg, var(--plum-deep) 0%, #160B1F 50%, #1A0E22 100%);
  z-index: 0;
}

.hero-ornament {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
  z-index: 1;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.07);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--inner-max);
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-kicker-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-kicker-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
  max-width: 760px;
}

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

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* === PAIN POINTS === */
.pain {
  padding: var(--section-pad-v) 2rem;
  background: var(--plum);
  position: relative;
}

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

.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pain-intro .section-title {
  max-width: 380px;
}

.pain-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1.75rem;
  transition: border-color 0.3s, background 0.3s;
}

.pain-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.pain-icon {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.pain-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.pain-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === SOLUTION === */
.solution {
  padding: var(--section-pad-v) 2rem;
  background: var(--plum-deep);
  position: relative;
}

.solution-intro {
  max-width: 640px;
  margin-bottom: 5rem;
}

.solution-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}

.solution-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s;
  cursor: default;
}

.solution-row:hover {
  background: rgba(255, 255, 255, 0.02);
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.solution-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
}

.solution-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  padding-top: 0.15rem;
}

.solution-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* === TIERS === */
.tiers {
  padding: var(--section-pad-v) 2rem;
  background: var(--plum);
  position: relative;
}

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

.tiers-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4.5rem;
}

.tiers-intro .section-sub {
  margin: 0 auto;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.25s;
}

.tier-card.featured {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--gold);
  position: relative;
}

.tier-card.featured::before {
  content: 'Start Here';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--plum-deep);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.tier-card.featured:hover {
  border-color: var(--gold-light);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.tier-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.tier-divider {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}

.tier-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 2rem;
}

.tier-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
}

.tier-cta-primary {
  background: var(--gold);
  color: var(--plum-deep);
}

.tier-cta-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.tier-cta-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tier-cta-ghost:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

/* === WHO IT'S FOR === */
.who {
  padding: var(--section-pad-v) 2rem;
  background: var(--plum-deep);
}

.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.who-list {
  list-style: none;
  margin-top: 2rem;
}

.who-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.who-list li:last-child {
  border-bottom: none;
}

.who-list li:hover {
  color: var(--cream);
}

.who-check {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  letter-spacing: 0;
  opacity: 0.8;
}

.who-callout {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
}

.who-callout-quote {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.who-callout-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.75;
}

/* === CREDIBILITY === */
.credibility {
  padding: var(--section-pad-v) 2rem;
  background: var(--plum);
  text-align: center;
  position: relative;
}

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

.credibility-intro {
  max-width: 600px;
  margin: 0 auto 5rem;
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto 5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.cred-stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border-subtle);
}

.cred-stat:last-child {
  border-right: none;
}

.cred-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cred-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promise-block {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem 2.5rem;
}

.promise-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.promise-headline {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.promise-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* === FINAL CTA === */
.final-cta {
  padding: 9rem 2rem;
  background: var(--plum-deep);
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(92, 61, 114, 0.3) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

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

.final-cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.audit-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.audit-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.audit-detail-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-guarantee {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  background: var(--plum-deep);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--cream);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --section-pad-v: 4.5rem; }

  .hero {
    padding: 8rem 1.5rem 5rem;
    min-height: auto;
  }

  .hero h1 { font-size: clamp(2.6rem, 9vw, 3.5rem); }

  .hero-ornament { display: none; }

  .hero-trust-row {
    gap: 1.5rem;
  }

  .trust-divider { display: none; }

  .pain-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pain-cards {
    grid-template-columns: 1fr;
  }

  .solution-row {
    grid-template-columns: 48px 1fr;
  }

  .solution-desc {
    grid-column: 2;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credibility-stats {
    grid-template-columns: 1fr;
  }

  .cred-stat {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .cred-stat:last-child {
    border-bottom: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .audit-details {
    text-align: left;
  }
}
