*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #050505;
  --ivory: #F4EFE7;
  --ivory-dim: #C8BFB6;
  --gold: #C9A84F;
  --gold-border: rgba(201,168,79,0.45);
  --gold-dim: rgba(201,168,79,0.18);
  --card: rgba(18,15,10,0.72);
  --text-sec: #8B8275;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

body {
  background: var(--bg);
  background-image: url('bokeh.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; display: block; }
section { position: relative; z-index: 1; }

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 920px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ivory); line-height: 1.2; }
h1 { font-size: clamp(34px, 6vw, 52px); margin-bottom: 20px; text-align: center; }
h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 20px; text-align: center; }
h3 { font-size: clamp(19px, 3vw, 24px); margin-bottom: 12px; }

p { font-size: 16px; color: var(--ivory-dim); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }

.lead {
  font-size: 17px;
  color: var(--ivory-dim);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 16px;
  font-weight: 300;
  text-align: center;
}

.gold-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
  opacity: 0.7;
}

.glass {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: #080808;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 44px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow: 0 0 32px rgba(201,168,79,0.35);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #dbb85a; box-shadow: 0 0 48px rgba(201,168,79,0.5); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold-border);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,79,0.06); }

.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.sunburst { width: 56px; height: 56px; margin: 0 auto 24px; display: block; opacity: 0.5; filter: drop-shadow(0 0 12px rgba(201,168,79,0.4)); }

.checklist { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-gold { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.check-text { font-size: 16px; color: var(--ivory-dim); line-height: 1.65; font-weight: 300; }

.hero-page { padding: 148px 0 72px; text-align: center; }
.section { padding: 60px 0; }
.section-tight { padding: 40px 0; }

@media (max-width: 640px) {
  .hero-page { padding: 128px 0 48px; }
  .section { padding: 36px 0; }
  .section-tight { padding: 26px 0; }
}

/* ── Top nav ─────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(5,4,2,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,79,0.15);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 9px;
}
.nav-logo { width: 26px; height: 26px; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 13px; color: var(--ivory-dim); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  display: inline-block; background: var(--gold); color: #080808;
  font-size: 12.5px; font-weight: 600; padding: 10px 22px; border-radius: 100px;
  text-decoration: none; letter-spacing: 0.03em; white-space: nowrap; transition: all 0.2s;
}
.nav-cta:hover { background: #dbb85a; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--gold);
  font-size: 22px; cursor: pointer; padding: 4px;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 2px;
  background: rgba(5,4,2,0.97); border-top: 1px solid rgba(201,168,79,0.15);
  padding: 8px 24px 20px;
}
.nav-mobile a {
  color: var(--ivory-dim); text-decoration: none; font-size: 15px;
  padding: 13px 0; border-bottom: 1px solid rgba(201,168,79,0.08);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(201,168,79,0.12);
  padding: 56px 24px 28px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.footer-tag { font-size: 13px; color: var(--text-sec); line-height: 1.6; max-width: 220px; }
.footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13.5px; color: var(--text-sec);
  text-decoration: none; margin-bottom: 11px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: 900px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(201,168,79,0.08);
  text-align: center; font-size: 11px; color: rgba(184,175,164,0.4); letter-spacing: 0.04em;
  line-height: 1.7; margin-bottom: 8px;
}
.footer-disclaimer {
  max-width: 640px; margin: 0 auto; text-align: center; font-size: 11.5px;
  color: rgba(200,191,182,0.8); letter-spacing: 0.02em; line-height: 1.7;
}

/* ── Pathway diagram (How It Works) ─────────────────────── */
.pathway { display: flex; flex-direction: column; gap: 0; margin: 40px 0; }
.pathway-step {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border-radius: 16px;
}
.pathway-num {
  font-family: var(--serif); font-size: 26px; color: var(--gold); opacity: 0.7;
  width: 40px; flex-shrink: 0; text-align: center;
}
.pathway-label { font-family: var(--serif); font-size: 19px; color: var(--ivory); }
.pathway-arrow { text-align: center; color: var(--gold); opacity: 0.6; font-size: 18px; padding: 4px 0; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(201,168,79,0.15); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 4px; display: flex; justify-content: space-between; align-items: center;
  color: var(--ivory); font-family: var(--serif); font-size: 18px; gap: 16px;
}
.faq-q .faq-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 4px 24px; font-size: 14.5px; color: var(--ivory-dim); line-height: 1.75; }

/* ── Insight cards ───────────────────────────────────────── */
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
@media (max-width: 640px) { .insight-grid { grid-template-columns: 1fr; } }
.insight-card {
  padding: 26px 24px; text-decoration: none; display: block; transition: all 0.2s;
}
.insight-card:hover { border-color: rgba(201,168,79,0.7); transform: translateY(-2px); }
.insight-card-title { font-family: var(--serif); font-size: 19px; color: var(--ivory); margin-bottom: 8px; line-height: 1.3; }
.insight-card-sub { font-size: 13px; color: var(--text-sec); line-height: 1.6; }
.topic-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin: 32px 0; }
@media (max-width: 720px) { .topic-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .topic-grid { grid-template-columns: 1fr; } }
.topic-card { padding: 22px 20px; }
.topic-card h3 { font-size: 17px; margin-bottom: 8px; }
.topic-card p { font-size: 13px; margin-bottom: 0; }

footer.legacy { display: none; }
