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

:root {
  --gold: #B8A06A;
  --gold2: #8C6E2F;
  --gold3: #F5F0E8;
  --gold4: #E8DCC8;
  --ink: #1A1814;
  --mid: #5A5247;
  --soft: #9B9186;
  --page: #FDFCFA;
  --surface: #F5F1EB;
  --white: #FFFFFF;
  --teal: #0F6E56;
  --blue: #185FA5;
  --purple: #533BAA;
  --red: #A32D2D;
  --red-light: #FCEBEB;
  --red-text: #791F1F;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
  --max-w: 1140px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--page); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.hidden { display: none !important; }

/* ── UTILITY ────────────────────────────────── */
.eye-line { display: inline-block; width: 28px; height: 0.5px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
.eye-line.eye-light { background: rgba(184,160,106,0.6); }
.section-divider { border: none; border-top: 0.5px solid rgba(184,160,106,0.18); margin: 0; }

/* ── BUTTONS ────────────────────────────────── */
.btn-dark {
  display: inline-block; font-family: var(--sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.06em; padding: 14px 30px;
  background: var(--ink); color: #fff; border: none; border-radius: 2px;
  cursor: pointer; transition: background var(--transition);
}
.btn-dark:hover { background: #2C2820; }
.btn-dark.btn-full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block; font-family: var(--sans); font-size: 13px;
  font-weight: 400; letter-spacing: 0.06em; padding: 14px 30px;
  background: transparent; color: var(--mid);
  border: 0.5px solid rgba(90,82,71,0.35); border-radius: 2px;
  cursor: pointer; transition: all var(--transition);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-gold {
  display: inline-block; font-family: var(--sans); font-size: 13px;
  font-weight: 500; letter-spacing: 0.06em; padding: 12px 26px;
  background: var(--gold); color: #fff; border: none; border-radius: 2px;
  cursor: pointer; transition: background var(--transition);
}
.btn-gold:hover { background: var(--gold2); }
.btn-gold.btn-lg { font-size: 14px; padding: 15px 34px; }

.btn-outline-light {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; padding: 10px 22px;
  background: transparent; color: rgba(255,255,255,0.5);
  border: 0.5px solid rgba(255,255,255,0.2); border-radius: 2px;
  cursor: pointer; transition: all var(--transition);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-outline-light:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── NAV ────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(253,252,250,0.95);
  border-bottom: 0.5px solid rgba(184,160,106,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  letter-spacing: 0.15em; color: var(--ink); text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; flex: 1; justify-content: center; }
.nav-links a { font-size: 13px; color: var(--mid); letter-spacing: 0.03em; transition: color var(--transition); }
.nav-links a:hover { color: var(--ink); }
.nav-mobile-auth { display: none; }
.nav-auth { display: flex; align-items: center; gap: 1rem; }
.nav-auth a { font-size: 13px; color: var(--mid); letter-spacing: 0.03em; transition: color var(--transition); }
.nav-auth a:hover { color: var(--ink); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--sans); font-size: 13px; color: var(--mid);
  letter-spacing: 0.03em; display: flex; align-items: center; gap: 5px;
  transition: color var(--transition);
}
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown-trigger svg { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 176px;
  background: rgba(253,252,250,0.98);
  border: 0.5px solid rgba(184,160,106,0.28);
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(26,24,20,0.1);
  padding: 0.35rem 0; z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a,
.nav-dropdown-menu button {
  display: block; width: 100%; text-align: left;
  font-family: var(--sans); font-size: 13px; color: var(--mid);
  letter-spacing: 0.02em; padding: 0.6rem 1.1rem;
  background: none; border: none; cursor: pointer;
  text-decoration: none; transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu button:hover { color: var(--ink); background: rgba(184,160,106,0.07); }
.nav-dropdown-divider {
  border: none; border-top: 0.5px solid rgba(184,160,106,0.2); margin: 0.3rem 0;
}
.nav-dropdown-menu .nav-dd-signout { color: var(--soft); }

.nav-cta {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  padding: 9px 22px; border: 0.5px solid var(--gold);
  color: var(--gold2); background: transparent; border-radius: 2px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold); color: #fff; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero { padding: 5rem 3rem; }
.hero-h1 {
  font-family: var(--serif); font-size: 60px; font-weight: 300;
  line-height: 1.06; color: var(--ink); margin-bottom: 1.75rem;
}
.hero-h1 em { font-style: italic; color: var(--gold2); }
.hero-sub { font-size: 15px; line-height: 1.85; color: var(--mid); margin-bottom: 2.25rem; max-width: 560px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

/* Five domains strip */
.hero-domains {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 0.5px solid rgba(184,160,106,0.18);
  border-radius: 3px; overflow: hidden;
}
.hero-domain-item {
  padding: 1.25rem 1.5rem;
  border-top: 3px solid transparent;
  border-left: 0.5px solid rgba(184,160,106,0.12);
}
.hero-domain-item:first-child { border-left: none; }
.hero-domain-name {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.35rem;
}
.hero-domain-desc { font-size: 11px; color: var(--soft); line-height: 1.5; }

/* Hero card */
.hero-card {
  background: var(--white); border: 0.5px solid rgba(184,160,106,0.3);
  border-radius: 4px; padding: 2rem;
  box-shadow: 0 4px 40px rgba(26,24,20,0.07);
}
.hc-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.25rem; text-align: center;
}
.score-ring {
  width: 110px; height: 110px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--gold3);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; margin: 0 auto 0.75rem;
}
.score-ring-num { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--gold2); line-height: 1; }
.score-ring-sub { font-size: 10px; color: var(--soft); letter-spacing: 0.05em; }
.score-tier-label { text-align: center; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.score-tier-desc { text-align: center; font-size: 12px; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.5; }

.domain-bars { display: flex; flex-direction: column; gap: 9px; }
.db-row { display: flex; align-items: center; gap: 8px; }
.db-lbl { font-size: 11px; color: var(--mid); width: 84px; flex-shrink: 0; }
.db-track { flex: 1; height: 3px; background: var(--surface); border-radius: 2px; overflow: hidden; }
.db-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease; }
.db-val { font-size: 11px; font-weight: 500; color: var(--ink); width: 24px; text-align: right; flex-shrink: 0; }

.hc-flag {
  margin-top: 1.25rem; padding: 0.75rem 1rem;
  background: var(--red-light); border-left: 2px solid var(--red);
}
.hc-flag-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 500; margin-bottom: 3px; }
.hc-flag-txt { font-size: 12px; color: var(--red-text); line-height: 1.5; }
/* Hero card — updated sample report layout */
.hc-meta-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.1rem;
}
.hc-meta-left {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--soft); font-weight: 500;
}
.hc-meta-right { font-size: 10px; color: var(--soft); letter-spacing: 0.04em; }
.hc-score-row {
  display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.25rem;
}
.hc-score-row .score-ring { margin: 0; flex-shrink: 0; width: 90px; height: 90px; }
.hc-score-row .score-ring-num { font-size: 30px; }
.hc-tier-block { flex: 1; padding-top: 0.15rem; }
.hc-tier-name {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); margin-bottom: 0.35rem; line-height: 1.2;
}
.hc-tier-desc { font-size: 12px; color: var(--mid); line-height: 1.55; }
.hc-section-label {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.6rem;
}
.hc-pattern-box {
  background: var(--surface); border-left: 2px solid var(--teal);
  padding: 0.7rem 0.9rem; border-radius: 1px;
}
.hc-strongest-box {
  background: var(--white); border: 0.5px solid rgba(184,160,106,0.25);
  padding: 0.7rem 0.9rem; border-radius: 1px;
}
.hc-pattern-tag {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--soft); font-weight: 500; margin-bottom: 0.2rem;
}
.hc-pattern-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 0.2rem; }
.hc-pattern-body { font-size: 11px; color: var(--mid); line-height: 1.55; }

.hc-cta {
  display: block; margin-top: 1.25rem; width: 100%; text-align: center;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  padding: 11px; background: var(--gold2); color: #fff; border-radius: 2px;
  transition: background var(--transition); text-decoration: none;
}
.hc-cta:hover { background: var(--gold); }

/* ── SECTIONS SHARED ────────────────────────── */
.section { padding: 5rem 3rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eye {
  display: flex; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.75rem;
}
.section-h2 {
  font-family: var(--serif); font-size: 46px; font-weight: 300;
  color: var(--ink); margin-bottom: 1rem; line-height: 1.08;
}
.section-h2 em { font-style: italic; color: var(--gold2); }
.section-sub { font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 580px; margin-bottom: 3rem; }

/* ── ABOUT ──────────────────────────────────── */
.about-section { background: var(--surface); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.founder-card {
  background: var(--white); border: 0.5px solid rgba(184,160,106,0.22);
  border-radius: 4px; padding: 2rem;
}
.founder-initial {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  margin-bottom: 1.25rem;
}
.founder-w { background: #E1F5EE; color: #085041; }
.founder-s { background: #E6F1FB; color: #0C447C; }
.founder-name { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 0.2rem; }
.founder-role { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; }
.founder-desc { font-size: 14px; color: var(--mid); line-height: 1.78; }

.together-block {
  padding: 1.75rem 2rem; border-left: 3px solid var(--gold);
  background: var(--gold3);
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--ink); font-style: italic; line-height: 1.5;
}

/* ── THE PATH ───────────────────────────────── */
.path-section { background: var(--page); }
.path-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 640px; margin: 0 auto;
}
.path-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.5rem;
  padding: 2.5rem 0;
}
.path-step-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--gold); line-height: 1; padding-top: 2px;
}
.path-step-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 0.5rem;
}
.path-step-desc {
  font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 0.9rem;
}
.path-step-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--gold2); border-bottom: 0.5px solid var(--gold);
  padding-bottom: 1px; transition: color var(--transition), border-color var(--transition);
}
.path-step-link:hover { color: var(--ink); border-color: var(--ink); }
.path-connector {
  margin-left: 56px; height: 0.5px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.4;
}

/* ── HOW IT WORKS ───────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { padding: 2rem 2rem 2rem 0; border-top: 2px solid var(--gold); }
.step-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--gold4); line-height: 1; margin-bottom: 1rem; }
.step-title { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
.step-desc { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 0.75rem; }
.step-price { font-size: 12px; font-weight: 500; color: var(--gold2); letter-spacing: 0.04em; border-bottom: 0.5px solid var(--gold); padding-bottom: 2px; }

/* ── ASSESSMENT ─────────────────────────────── */
.assessment-section { background: var(--ink); padding: 5rem 3rem; }
.assessment-inner { max-width: 1100px; margin: 0 auto; }

/* Cover: two-column layout — left copy, right sample card */
.assess-cover-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5rem; align-items: center;
}
.assess-cover-right .hero-card { margin: 0; }

.assessment-eye {
  display: flex; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.75rem;
}
.assessment-h2 {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: #fff; margin-bottom: 0.75rem; line-height: 1.1;
}
.assessment-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; line-height: 1.8; }

.assess-meta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.07); margin-bottom: 2.5rem;
  border-radius: 2px; overflow: hidden;
}
.assess-meta-item { padding: 1.25rem 1rem; text-align: center; background: rgba(255,255,255,0.03); }
.assess-meta-num { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--gold); margin-bottom: 3px; }
.assess-meta-lbl { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

/* Domain nav */
.domain-nav { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 2rem; }
.domain-btn {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; padding: 7px 16px; border-radius: 2px;
  border: 0.5px solid rgba(255,255,255,0.15);
  background: transparent; color: rgba(255,255,255,0.4);
  cursor: pointer; transition: all var(--transition);
}
.domain-btn:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.domain-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.domain-btn.done { border-color: rgba(29,158,117,0.5); color: #5DCAA5; }

/* Progress */
.prog-wrap { margin-bottom: 2rem; }
.prog-meta { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.prog-track { height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px; }
.prog-fill { height: 100%; background: var(--gold); border-radius: 1px; transition: width 0.4s ease; }

/* Domain header */
.domain-hdr { margin-bottom: 2rem; }
.domain-hdr-eye { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.4rem; }
.domain-hdr-title { font-family: var(--serif); font-size: 30px; font-weight: 300; color: #fff; margin-bottom: 0.3rem; }
.domain-hdr-desc { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; }

/* Question cards */
.q-card {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 1.25rem; margin-bottom: 0.75rem;
  transition: border-color var(--transition);
}
.q-card.answered { border-color: rgba(184,160,106,0.4); }
.q-card.anchor-q { border-left: 2px solid var(--gold); background: rgba(184,160,106,0.06); }
.q-anchor-tag {
  display: inline-block; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500; color: var(--gold);
  background: rgba(184,160,106,0.15); padding: 2px 8px; border-radius: 2px; margin-bottom: 0.5rem;
}
.q-num { font-size: 10px; color: rgba(255,255,255,0.22); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.q-text { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 0.5rem; font-weight: 400; }
.q-subtext { font-size: 12px; color: rgba(255,255,255,0.36); margin-bottom: 1rem; line-height: 1.5; font-style: italic; }

.q-scale { display: flex; gap: 6px; }
.q-opt { flex: 1; }
.q-opt input[type="radio"] { display: none; }
.q-opt label {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 2px;
  border: 0.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03); cursor: pointer;
  transition: all var(--transition);
}
.q-opt label:hover { border-color: rgba(184,160,106,0.5); }
.q-opt input[type="radio"]:checked + label { background: var(--gold); border-color: var(--gold); }
.q-val { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); }
.q-lbl { font-size: 9px; color: rgba(255,255,255,0.32); text-align: center; line-height: 1.3; }
.q-opt input[type="radio"]:checked + label .q-val { color: #fff; }
.q-opt input[type="radio"]:checked + label .q-lbl { color: rgba(255,255,255,0.75); }

.q-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.75rem; }
.q-nav-info { font-size: 11px; color: rgba(255,255,255,0.22); }
.q-nav-info.nav-error { color: #F09595; font-weight: 500; }
.q-card.unanswered { border-color: rgba(163,45,45,0.7); background: rgba(163,45,45,0.08); animation: shake 0.35s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

/* Results */
.results-hero { text-align: center; padding: 2rem 0 1.5rem; }
.results-eye { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.25rem; }
.results-ring {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid var(--gold); background: rgba(184,160,106,0.1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
}
.results-score { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; }
.results-denom { font-size: 12px; color: rgba(184,160,106,0.55); }
.results-tier { font-family: var(--serif); font-size: 26px; font-weight: 300; color: #fff; margin-bottom: 0.5rem; }
.results-tagline { font-size: 13px; color: rgba(255,255,255,0.48); max-width: 440px; margin: 0 auto 2rem; line-height: 1.65; }

.d-scores-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 2rem; }
.d-score-card { background: rgba(255,255,255,0.04); border-radius: 2px; padding: 0.9rem; text-align: center; }
.d-score-name { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.32); margin-bottom: 0.3rem; }
.d-score-val { font-size: 24px; font-weight: 500; margin-bottom: 0.3rem; }
.d-score-track { height: 2px; background: rgba(255,255,255,0.07); border-radius: 1px; }
.d-score-fill-bar { height: 100%; border-radius: 1px; }

.insight-box {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 2px; padding: 1.25rem; margin-bottom: 0.75rem;
}
.insight-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.4rem; }
.insight-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
.insight-body { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; }

.flag-box {
  border-left: 2px solid var(--red);
  background: rgba(163,45,45,0.12);
  padding: 1.25rem; margin-bottom: 0.75rem;
}
.flag-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: #F09595; margin-bottom: 0.4rem; }
.flag-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 0.4rem; }
.flag-body { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.65; }

.results-cta {
  margin-top: 2rem; padding: 2rem; text-align: center;
  background: rgba(184,160,106,0.08);
  border: 0.5px solid rgba(184,160,106,0.25); border-radius: 2px;
}
.results-cta-title { font-family: var(--serif); font-size: 26px; font-weight: 300; color: #fff; margin-bottom: 0.5rem; }
.results-cta-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; line-height: 1.65; }
.results-retake { text-align: center; margin-top: 1.25rem; }

/* ── OFFERS ─────────────────────────────────── */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offer-card {
  padding: 2rem; border: 0.5px solid rgba(184,160,106,0.2);
  border-radius: 4px; background: var(--white);
  display: flex; flex-direction: column;
}
.offer-card.offer-featured { background: var(--ink); border-color: var(--gold); }
.offer-step-num {
  font-family: var(--serif); font-size: 13px; font-weight: 400;
  color: rgba(184,160,106,0.5); letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}
.offer-featured .offer-step-num { color: rgba(184,160,106,0.4); }
.offer-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 0.75rem; }
.offer-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.2; }
.offer-featured .offer-name { color: #fff; }
.offer-price { font-size: 13px; font-weight: 500; color: var(--gold); margin-bottom: 1rem; }
.offer-desc { font-size: 13px; color: var(--mid); line-height: 1.78; flex: 1; }
.offer-featured .offer-desc { color: rgba(255,255,255,0.52); }
.offer-availability {
  font-size: 11px; color: var(--gold2); letter-spacing: 0.04em;
  margin-top: 1rem; font-weight: 500;
}
.offer-btn {
  display: block; margin-top: 1.5rem; width: 100%; text-align: center;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  padding: 11px; border-radius: 2px; cursor: pointer;
  border: 0.5px solid rgba(184,160,106,0.3);
  color: var(--gold2); background: transparent;
  transition: all var(--transition);
}
.offer-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.offer-featured .offer-btn { background: var(--gold); border-color: var(--gold); color: #fff; }
.offer-featured .offer-btn:hover { background: var(--gold2); border-color: var(--gold2); }
.offers-private {
  margin-top: 2rem; font-size: 12px; color: var(--soft);
  text-align: center; letter-spacing: 0.02em; line-height: 1.7;
  border-top: 0.5px solid rgba(184,160,106,0.15); padding-top: 1.5rem;
}

/* ── CONTACT ────────────────────────────────── */
.contact-section { background: var(--surface); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--mid); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--white); border: 0.5px solid rgba(90,82,71,0.25);
  border-radius: 2px; padding: 10px 14px;
  transition: border-color var(--transition); outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B9186' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-success { padding: 1rem; background: #E1F5EE; color: #085041; font-size: 14px; border-radius: 2px; text-align: center; }

/* ── FOOTER ─────────────────────────────────── */
footer { padding: 2.5rem 3rem; border-top: 0.5px solid rgba(184,160,106,0.15); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-logo { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0.15em; color: var(--ink); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 12px; color: var(--soft); transition: color var(--transition); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--soft); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 48px; }
  .hero-domains { grid-template-columns: repeat(3, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(253,252,250,0.98);
    border-bottom: 0.5px solid rgba(184,160,106,0.2);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; width: 100%; }
  .nav-mobile-auth { display: block; }
  .nav-auth { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero { padding: 3rem 1.5rem; }
  .hero-h1 { font-size: 40px; }
  .hero-domains { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 1.5rem; }
  .section-h2 { font-size: 36px; }
  .founders-grid { grid-template-columns: 1fr; }
  .path-step { grid-template-columns: 40px 1fr; gap: 1rem; }
  .path-step-num { font-size: 28px; }
  .path-connector { margin-left: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .assessment-section { padding: 3.5rem 1.5rem; }
  .assessment-h2 { font-size: 34px; }
  .assess-cover-layout { grid-template-columns: 1fr; gap: 3rem; }
  .assess-cover-right { display: none; }
  .assess-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .d-scores-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 34px; }
  .section-h2 { font-size: 30px; }
  .hero-domains { grid-template-columns: 1fr; }
  .d-scores-grid { grid-template-columns: repeat(2, 1fr); }
  .q-scale { gap: 4px; }
  .q-lbl { font-size: 8px; }
}

/* ── GATE FORM ──────────────────────────────── */
.gate-form { margin-top: 0; }
.gate-intro { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 1.25rem; line-height: 1.65; }
.gate-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.gate-field-group { display: flex; flex-direction: column; gap: 6px; }
.gate-field-group label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.gate-field-group input {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 2px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s; color: #fff;
}
.gate-field-group input::placeholder { color: rgba(255,255,255,0.25); }
.gate-field-group input:focus { border-color: var(--gold); }
.gate-privacy { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 0.75rem; text-align: center; }
.assess-user-bar { }

@media (max-width: 480px) {
  .gate-fields { grid-template-columns: 1fr; }
}

/* ── CAPTURE MODAL ──────────────────────────── */
.capture-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(26,24,20,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.capture-card {
  background: var(--ink); width: 100%; max-width: 480px;
  border: 0.5px solid rgba(184,160,106,0.3); border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4);
  animation: fadeUp 0.3s ease both;
}
.capture-eye {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.75rem;
}
.capture-title {
  font-family: var(--serif); font-size: 26px; font-weight: 300;
  color: #fff; margin-bottom: 0.75rem; line-height: 1.2;
}
.capture-sub {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 1.75rem;
}
.capture-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.capture-field-group { display: flex; flex-direction: column; gap: 6px; }
.capture-field-group label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }
.capture-field-group input {
  font-family: var(--sans); font-size: 14px; color: #fff;
  background: rgba(255,255,255,0.07); border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 2px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s; width: 100%;
}
.capture-field-group input::placeholder { color: rgba(255,255,255,0.22); }
.capture-field-group input:focus { border-color: var(--gold); }
.capture-submit { width: 100%; font-size: 14px; padding: 13px; }
.capture-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.capture-privacy { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 0.75rem; text-align: center; line-height: 1.5; }

/* Remove old gate styles that are no longer needed */
.gate-privacy { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 0.75rem; }

@media (max-width: 480px) {
  .capture-card { padding: 1.75rem; }
  .capture-fields { grid-template-columns: 1fr; }
}

/* ── BOOKS SECTION (homepage) ────────────────── */
.books-section { background: var(--surface); }
.books-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; margin-top: 3rem;
}
.book-card {
  background: var(--white); border: 0.5px solid rgba(184,160,106,0.22);
  border-radius: 2px; overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.book-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.08); }
.book-cover-wrap {
  background: var(--ink); padding: 1.75rem;
  display: flex; justify-content: center; align-items: center;
}
.book-cover-placeholder {
  width: 96px; height: 144px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-radius: 2px; display: flex; align-items: center;
  justify-content: center; padding: 0.6rem; text-align: center;
  font-family: var(--serif); font-size: 12px; color: rgba(255,255,255,0.9);
  font-weight: 300; line-height: 1.4;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.45);
}
.book-cover-img {
  width: 96px; height: 144px; object-fit: cover; border-radius: 2px;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.45);
}
.book-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.book-author { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.4rem; }
.book-title { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.2; }
.book-desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.book-formats { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.1rem; }
.book-format {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft); border: 0.5px solid rgba(155,145,134,0.3);
  border-radius: 2px; padding: 3px 7px;
}
.book-btn {
  display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gold2); border-bottom: 0.5px solid rgba(140,110,47,0.3);
  padding-bottom: 2px; transition: all 0.18s; align-self: flex-start;
}
.book-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.books-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 900px) { .books-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .books-grid { grid-template-columns: 1fr; } }
