/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@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;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Light mode — warm cream palette */
  --navy:       #f5f0e8;   /* main section bg (was dark navy) */
  --navy-deep:  #ede8de;   /* body bg (was deepest navy) */
  --navy-light: #e4ddd0;   /* surface / hover state */
  --navy-card:  #ffffff;   /* card bg */
  --gold:       #b07c08;   /* slightly richer gold on light bg */
  --gold-light: #c99020;
  --gold-pale:  rgba(176,124,8,.09);
  --gold-border:rgba(176,124,8,.28);
  --cream:      #1a1712;   /* text color (was light cream) */
  --cream-muted:#7a7060;   /* muted text (was muted blue-grey) */
  --white:      #ffffff;
  --border:     rgba(0,0,0,.1);
  --radius:     4px;
  --radius-lg:  8px;
  --max:        1160px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 110px 0; }

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.eyebrow.center { justify-content: center; }

/* ── Typography ── */
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.25; }
.italic { font-style: italic; color: var(--gold); }
p { color: var(--cream-muted); line-height: 1.75; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 31, 45, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-size: .65rem;
  font-family: var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 9px 22px !important;
  letter-spacing: .12em !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, var(--border) 79px, var(--border) 80px);
  pointer-events: none;
  z-index: 0;
}
.hero-city {
  position: absolute;
  top: 0; bottom: 0;
  left: 40%; right: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}
.hero-city svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
/* fade city into page background at bottom */
.hero-city::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--navy-deep) 0%, transparent 100%);
  z-index: 1;
}
#hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
#hero h1 { margin-bottom: 28px; }
#hero p { font-size: 1.05rem; max-width: 460px; margin-bottom: 44px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 6px;
}

/* ── Dashboard Mock ── */
.hero-right { position: relative; }
.dash-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 0 0 1px var(--border);
  position: relative;
}
.dash-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.dash-topbar {
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.dash-title-bar {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--cream-muted);
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.dash-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.dash-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dash-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .2s;
}
.dash-card:hover { border-color: var(--gold-border); }
.dash-icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.dash-info { flex: 1; min-width: 0; }
.dash-card-title { font-size: 12px; font-weight: 500; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-card-sub { font-size: 11px; color: var(--cream-muted); margin-top: 2px; }
.dash-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}
.badge-sent { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.badge-new { background: var(--gold-pale); color: var(--gold-light); border: 1px solid var(--gold-border); }
.badge-review { background: rgba(99,102,241,.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,.2); }
.dash-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-footer-stat { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.dash-footer-stat span { color: var(--gold); font-weight: 600; }
.dash-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #34d399;
}
.dash-pulse::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ── Section shared ── */
.section-head { max-width: 660px; margin: 0 auto 72px; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.05rem; }

/* ── Problem ── */
#problem {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.problem-card {
  background: var(--navy-card);
  padding: 44px 36px;
  transition: background .2s;
}
.problem-card:hover { background: var(--navy-light); }
.problem-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.problem-card h3 { color: var(--cream); margin-bottom: 14px; font-size: 1.4rem; }
.problem-card p { font-size: .92rem; }

/* ── How It Works ── */
#how-it-works {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.hiw-bg {
  position: absolute;
  /* extend 20% above and below so parallax shift never reveals a gap */
  top: -20%;
  bottom: -20%;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hiw-bg svg {
  width: 100%;
  height: 100%;
}
.hiw-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(245, 238, 220, .22);
  pointer-events: none;
}
.hiw-content {
  position: relative;
  z-index: 2;
}
.hiw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.hiw-card {
  background: rgba(20, 36, 52, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(201,149,42,.3);
  padding: 36px 28px 32px;
  transition: background .25s, border-color .25s, transform .25s;
}
.hiw-card:hover {
  background: rgba(24, 42, 62, .85);
  border-color: rgba(201,149,42,.55);
  transform: translateY(-5px);
}
.hiw-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hiw-icon-box {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.hiw-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.hiw-card p { font-size: .9rem; line-height: 1.7; }

@media (max-width: 900px) {
  .hiw-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hiw-cards { grid-template-columns: 1fr; }
}

/* ── Why ── */
#why {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 0; }
.benefit-card {
  background: var(--navy-card);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.benefit-card:hover { background: var(--navy-light); }
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height .3s;
}
.benefit-card:hover::before { height: 100%; }
.benefit-icon { display: none; } /* replaced by .card-icon-box */
.benefit-card h3 { color: var(--cream); margin-bottom: 12px; font-size: 1.4rem; }

/* ── Who ── */
#who { background: var(--navy-deep); }
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.persona-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.persona-emoji { display: none; } /* replaced by .card-icon-box */
.persona-card h3 { color: var(--cream); margin-bottom: 12px; font-size: 1.35rem; }
.persona-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 4px 10px;
  margin-bottom: 16px;
}

/* ── CTA ── */
#cta {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,149,42,.12), transparent 70%);
  pointer-events: none;
}
#cta h2 { margin-bottom: 20px; }
#cta > .container > p { font-size: 1.1rem; max-width: 520px; margin: 0 auto 48px; }
.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 32px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-card);
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--cream);
  outline: none;
}
.waitlist-form input::placeholder { color: var(--cream-muted); }
.waitlist-form button {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.waitlist-form button:hover { background: var(--gold-light); }
.trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-right { text-align: right; }
.footer-copy {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.footer-contact {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: .04em;
}

/* ── Inner pages ── */
.inner-page {
  max-width: 760px;
  margin: 100px auto;
  padding: 0 32px 80px;
}
.inner-page h1 { margin-bottom: 8px; font-size: 3rem; }
.inner-page .subtitle { color: var(--cream-muted); font-size: .9rem; letter-spacing: .06em; margin-bottom: 56px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.inner-page h2 { font-size: 1.5rem; font-family: var(--serif); margin: 48px 0 14px; color: var(--cream); }
.inner-page p, .inner-page li { color: var(--cream-muted); margin-bottom: 14px; font-size: .95rem; }
.inner-page ul { padding-left: 20px; }
.inner-page li { margin-bottom: 10px; }
.inner-page a { color: var(--gold); }
.inner-page strong { color: var(--cream); font-weight: 500; }

/* ── Shared icon box (used in Why, Who, How sections) ── */
.card-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .2s, border-color .2s;
}
.benefit-card:hover .card-icon-box,
.persona-card:hover .card-icon-box {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ── Divider ── */
.section-divider {
  width: 100%;
  border: none;
  border-top: 1px solid var(--border);
}

/* ── Ticker strip ── */
.ticker {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .steps-layout { grid-template-columns: 1fr; }
  .steps-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 600px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.2rem; }
  .waitlist-form { flex-direction: column; border: none; background: transparent; gap: 10px; }
  .waitlist-form input { border: 1px solid var(--gold-border); border-radius: var(--radius); background: var(--navy-card); }
  .waitlist-form button { border-radius: var(--radius); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .footer-links { gap: 16px; }
}

/* ═══════════════════════════════════════════════════════
   LIGHT MODE OVERRIDES
   Variables handle most flips; these fix hardcoded colors
   ═══════════════════════════════════════════════════════ */

/* ── Nav ── */
nav { background: rgba(245,240,232,.9); }
nav .nav-logo { color: var(--cream); }
nav .nav-links a { color: var(--cream-muted); }
nav .nav-links a:hover { color: var(--cream); }
nav .nav-cta { color: #fff !important; }

/* ── Hero ── */
#hero {
  background: var(--navy-deep);
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 80%, rgba(176,124,8,.07) 0%, transparent 60%);
}
#hero::before {
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(0,0,0,.04) 79px, rgba(0,0,0,.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,0,0,.04) 79px, rgba(0,0,0,.04) 80px);
}
#hero .container { position: relative; z-index: 2; }

/* hero city: keep as subtle architectural overlay */
.hero-city::after  { background: linear-gradient(to top,  var(--navy-deep) 0%, transparent 100%); }
.hero-city::before { background: linear-gradient(to right, var(--navy-deep) 0%, transparent 22%, transparent 78%, var(--navy-deep) 100%); }

/* hero tag */
.hero-tag { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold); }

/* hero stats divider */
.hero-stats { border-top-color: var(--border); }

/* ── Dashboard mock — light window chrome ── */
.dash-wrap {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
}
.dash-wrap::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.dash-topbar { background: #f5f0e8; border-bottom-color: var(--border); }
.dash-title-bar { color: var(--cream-muted); }
.dash-section-label { color: var(--gold); border-bottom-color: var(--border); }
.dash-card { background: #faf8f4; border-color: var(--border); }
.dash-card:hover { border-color: var(--gold-border); }
.dash-card-title { color: var(--cream); }
.dash-card-sub { color: var(--cream-muted); }
.dash-footer { border-top-color: var(--border); }
.dash-footer-stat { color: var(--cream-muted); }

/* ── Buttons ── */
.btn-gold { background: var(--gold); color: #ffffff; }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(176,124,8,.25); }
.btn-outline { border-color: var(--border); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Problem section ── */
#problem { background: var(--navy-deep); }
.problem-grid { background: var(--border); border-color: var(--border); }
.problem-card { background: #ffffff; }
.problem-card:hover { background: var(--navy-light); }
.problem-num { color: var(--gold-border); }
.problem-card h3 { color: var(--cream); }

/* ── How It Works — keep cinematic but lighter overlay ── */
.hiw-overlay { background: rgba(245,238,220,.22); }
.hiw-card {
  background: rgba(255, 252, 244, .80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  border-top: 2px solid rgba(176,124,8,.45);
}
.hiw-card:hover {
  background: rgba(255, 254, 248, .92);
  border-color: rgba(176,124,8,.6);
}
.hiw-card h3 { color: #1a1712; }
.hiw-card p  { color: #5a5040; }
.hiw-num { color: var(--gold); opacity: .5; }

/* ── Benefits ── */
#why { background: var(--navy); }
.benefits-grid { background: var(--border); border-color: var(--border); }
.benefit-card { background: #ffffff; }
.benefit-card:hover { background: var(--navy-light); }
.benefit-card h3 { color: var(--cream); }

/* ── Who It's For ── */
#who { background: var(--navy-deep); }
.persona-card { background: #ffffff; border-color: var(--border); }
.persona-card:hover { border-color: var(--gold-border); }
.persona-card h3 { color: var(--cream); }

/* icon hover on light bg: invert to dark bg */
.benefit-card:hover .card-icon-box,
.persona-card:hover .card-icon-box {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

/* ── CTA ── */
#cta { background: #1a1712; border-top-color: rgba(255,255,255,.08); }
#cta h2 { color: #f0ede6; }
#cta > .container > p { color: rgba(240,237,230,.75); }
#cta::before { background: radial-gradient(circle, rgba(176,124,8,.18), transparent 70%); }
.waitlist-form { background: rgba(255,255,255,.06); border-color: rgba(176,124,8,.35); }
.waitlist-form input { color: #f0ede6; }
.waitlist-form input::placeholder { color: rgba(240,237,230,.45); }
.waitlist-form button { background: var(--gold); color: #ffffff; }
.waitlist-form button:hover { background: var(--gold-light); }
.trust-item { color: rgba(240,237,230,.6); }
.trust-item::before { color: var(--gold); }

/* ── Footer stays dark ── */
footer {
  background: #1a1712;
  border-top-color: rgba(255,255,255,.08);
}
footer .footer-logo { color: #f0ede6; }
footer .footer-logo span { color: var(--gold); }
footer .footer-links a { color: #7a7060; }
footer .footer-links a:hover { color: var(--gold); }
footer .footer-copy { color: #7a7060; }
footer .footer-contact { color: var(--gold); }

/* ── Ticker ── */
.ticker { background: #f0ebe0; border-color: var(--border); }

/* ── Inner pages ── */
.inner-page h2 { color: var(--cream); }
.inner-page strong { color: var(--cream); }
