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

:root {
  --gold: #C9A85C;
  --gold2: #A8853A;
  --gold3: #FFF8EE;
  --gold4: #E8C87A;
  --ink: #0D1117;
  --dark: #0D1117;
  --navy: #1A1F2E;
  --sage: #3ECFA0;
  --orchid: #7B3F8C;
  --orchid2: #6A2F7A;
  --mint: #3ECFA0;
  --teal2: #2BAB83;
  --mid: #4A5060;
  --soft: #7A8898;
  --page: #F5F0E8;
  --surface: #EDE8DC;
  --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.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.hidden { display: none !important; }

/* ── ACCESSIBILITY ──────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -9999px; left: 1rem; z-index: 9999;
  padding: 0.5rem 1rem; background: var(--ink); color: #fff;
  font-family: var(--font-sans); font-size: 0.875rem; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
}
.skip-link:focus { top: 1rem; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── LOADING ANIMATION ──────────────────────── */
@keyframes palymorf-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}
.loading-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: palymorf-pulse 1.2s ease-in-out infinite;
}
.loading-pulse + .loading-pulse { animation-delay: 0.2s; margin-left: 4px; }
.loading-pulse + .loading-pulse + .loading-pulse { animation-delay: 0.4s; }

/* ── 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(201,168,92,0.6); }
.section-divider { border: none; border-top: 0.5px solid rgba(201,168,92,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: var(--navy); }
.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: var(--dark); border: none; border-radius: 2px;
  cursor: pointer; transition: background var(--transition);
}
.btn-gold:hover { background: var(--gold2); color: #fff; }
.btn-gold.btn-lg { font-size: 14px; padding: 15px 34px; }

.btn-outline-light {
  display: inline-block; 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(13,17,23,0.97);
  border-bottom: 0.5px solid rgba(201,168,92,0.22);
  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: #FAF8F4; 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: rgba(250,248,244,0.6); letter-spacing: 0.03em; transition: color var(--transition); }
.nav-links a:hover { color: #FAF8F4; }
.nav-links a.nav-active { color: #FAF8F4; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }
.nav-mobile-auth { display: none; }
.nav-auth { display: flex; align-items: center; gap: 1rem; }
.nav-auth a { font-size: 13px; color: rgba(250,248,244,0.6); letter-spacing: 0.03em; transition: color var(--transition); }
.nav-auth a:hover { color: #FAF8F4; }

/* ── 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: rgba(250,248,244,0.6);
  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: #FAF8F4; }
.nav-dropdown-trigger svg { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-user-email {
  font-size: 11px; font-weight: 400;
  color: rgba(250,248,244,0.35);
  max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  border-left: 1px solid rgba(250,248,244,0.15); padding-left: 7px; margin-left: 2px;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  min-width: 176px;
  background: #0D1117;
  border: 0.5px solid rgba(201,168,92,0.3);
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  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: rgba(250,248,244,0.6);
  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: #FAF8F4; background: rgba(201,168,92,0.08); }
.nav-dropdown-divider {
  border: none; border-top: 0.5px solid rgba(201,168,92,0.2); margin: 0.3rem 0;
}
.nav-dropdown-menu .nav-dd-signout { color: rgba(250,248,244,0.35); }
/* Inner Circle section label inside nav dropdown */
.nav-dd-label {
  display: block; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; padding: 0.4rem 1.1rem 0.2rem;
  pointer-events: none;
}

/* ── ACCOUNT MEMBERSHIP TIER BADGE ── */
.acct-tier-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; margin-top: 0.75rem; padding: 4px 12px;
  border-radius: 100px; border: 0.5px solid rgba(201,168,92,0.3);
  background: rgba(201,168,92,0.08); color: var(--mid);
}
.acct-tier-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  display: inline-block; background: var(--soft);
}
.acct-tier-badge.free {
  background: rgba(155,145,134,0.08); color: var(--soft);
  border-color: rgba(155,145,134,0.25);
}
.acct-tier-badge.free::before { background: var(--soft); }
.acct-tier-badge.report {
  background: rgba(201,168,92,0.1); color: var(--gold2);
  border-color: rgba(201,168,92,0.3);
}
.acct-tier-badge.report::before { background: var(--gold); }
.acct-tier-badge.coaching {
  background: rgba(123,63,140,0.1); color: var(--orchid);
  border-color: rgba(123,63,140,0.35);
}
.acct-tier-badge.coaching::before { background: var(--orchid); }
.acct-tier-badge.ic {
  background: rgba(201,168,92,0.18); color: var(--gold2);
  border-color: var(--gold);
}
.acct-tier-badge.ic::before { background: var(--gold); }

/* ── IC PAGE USER IDENTITY ROW ── */
.ic-user-row {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  margin: 0.4rem 0 0.6rem;
}
.ic-user-name { font-size: 13px; color: var(--ink); text-transform: uppercase; }
.ic-user-row .acct-tier-badge { margin-top: 0; margin-left: 0.4rem; }

/* ── IC QUICK-ACCESS FEATURE CARDS ── */
.ic-features { margin: 0 0 2.5rem; }
.ic-features-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.ic-features-eyebrow::before {
  content: ''; display: inline-block; width: 20px;
  height: 0.5px; background: var(--gold);
}
.ic-feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 600px) { .ic-feat-grid { grid-template-columns: 1fr; } }
.ic-feat-card {
  display: block; text-decoration: none;
  border: 0.5px solid rgba(201,168,92,0.22); border-radius: 2px;
  padding: 1.4rem 1.5rem; background: rgba(201,168,92,0.025);
  transition: border-color 0.15s, background 0.15s;
}
.ic-feat-card:hover {
  border-color: var(--gold); background: rgba(201,168,92,0.06);
}
.ic-feat-title {
  font-size: 14px; font-weight: 500; color: var(--ink);
  margin-bottom: 0.3rem; letter-spacing: 0.01em;
}
.ic-feat-sub {
  font-size: 12px; color: var(--soft); line-height: 1.6; margin-bottom: 0.9rem;
}
.ic-feat-link {
  font-size: 11px; letter-spacing: 0.06em; color: var(--gold2);
  text-transform: uppercase; font-weight: 500;
}

.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: #FAF8F4; 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 {
  background: var(--dark);
  padding: 7rem 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(62,207,160,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero .section-inner { position: relative; z-index: 1; }
.hero .section-eye { justify-content: center; }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 400; line-height: 1.0;
  color: #FAF8F4; margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 17px; line-height: 1.85;
  color: rgba(250,248,244,0.55);
  margin: 0 auto 2.75rem; max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 5rem; }
.hero .btn-dark { background: var(--mint); color: var(--dark); padding: 16px 44px; letter-spacing: 0.1em; }
.hero .btn-dark:hover { background: var(--teal2); color: var(--dark); }
.hero .btn-ghost { border-color: rgba(250,248,244,0.2); color: rgba(250,248,244,0.5); }
.hero .btn-ghost:hover { border-color: rgba(250,248,244,0.55); color: #FAF8F4; }

/* Five domains strip */
.hero-domains {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: none;
  border-top: 0.5px solid rgba(201,168,92,0.12);
  border-radius: 0; overflow: visible;
}
.hero-domain-item {
  padding: 1.75rem 1.5rem;
  border-left: 0.5px solid rgba(201,168,92,0.08);
  border-top: 2px solid transparent;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}
.hero-domain-item:first-child { border-left: none; }
.hero-domain-item:hover { background: rgba(201,168,92,0.04); }
.hero-domain-name {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: #FAF8F4; margin-bottom: 0.4rem; letter-spacing: 0.01em;
}
.hero-domain-desc { font-size: 11px; color: rgba(250,248,244,0.38); line-height: 1.55; }

/* ── QUOTE BREAK ────────────────────────────── */
.quote-break {
  background: var(--dark);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-break::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,92,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.quote-break-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.quote-break-mark {
  font-family: var(--serif); font-size: 64px; line-height: 0.6;
  color: var(--gold); opacity: 0.5; margin-bottom: 1.5rem; display: block;
}
.quote-break-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px); font-weight: 300; font-style: italic;
  color: #FAF8F4; line-height: 1.45; margin-bottom: 1.75rem;
}
.quote-break-text em { color: var(--gold); font-style: normal; }
.quote-break-attr {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,248,244,0.3);
}

/* Hero card */
.hero-card {
  background: var(--white); border: 0.5px solid rgba(201,168,92,0.3);
  border-radius: 4px; padding: 2rem;
  box-shadow: 0 4px 40px rgba(26,26,26,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(201,168,92,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(--gold); color: var(--dark); border-radius: 2px;
  transition: background var(--transition); text-decoration: none;
}
.hc-cta:hover { background: var(--gold2); color: #fff; }

/* ── SECTIONS SHARED ────────────────────────── */
.section { padding: 5rem 3rem; }
.section.bg-page    { background: var(--page); }
.section.bg-surface { background: var(--surface); }
.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: 400;
  color: var(--ink); margin-bottom: 1rem; line-height: 1.08;
}
.section-h2 em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 18px; color: var(--mid); line-height: 1.9; 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(201,168,92,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: 16px; color: var(--mid); line-height: 1.85; }

.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;
}

/* ── WHY BOTH FOUNDERS ──────────────────────── */
.founders-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 0.5rem;
}
.founders-why-card {
  background: #fff; border: 0.5px solid rgba(201,168,92,0.25);
  border-radius: 3px; padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(26,26,26,0.04);
}
.founders-why-initial {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold3); border: 1px solid rgba(201,168,92,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--gold2);
  margin-bottom: 0.75rem;
}
.founders-why-name {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.85rem;
}
.founders-why-body { font-size: 14px; color: var(--mid); line-height: 1.82; }
.founders-why-domains {
  margin-top: 2.5rem; padding: 1.75rem 2rem;
  border: 0.5px solid rgba(201,168,92,0.2); background: var(--page);
}
.founders-why-domain-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--soft); margin-bottom: 1.25rem;
}
.founders-why-domain-list { display: flex; flex-direction: column; gap: 0.85rem; }
.founders-why-domain { display: flex; align-items: center; gap: 0.85rem; font-size: 14px; }
.fwd-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fwd-name { font-weight: 500; color: var(--ink); min-width: 90px; }
.fwd-desc { color: var(--soft); font-size: 13px; }
.fwd-identity .fwd-name { color: var(--gold2); }
.fwd-identity .fwd-desc { color: var(--mid); }

/* ── 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: 16px; color: var(--mid); line-height: 1.85; 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(--gold); 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(--dark); 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(201,168,92,0.4); }
.q-card.anchor-q { border-left: 2px solid var(--gold); background: rgba(201,168,92,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(201,168,92,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(201,168,92,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(201,168,92,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(201,168,92,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(201,168,92,0.08);
  border: 0.5px solid rgba(201,168,92,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(201,168,92,0.2);
  border-radius: 4px; background: var(--white);
  display: flex; flex-direction: column;
}
.offer-card.offer-featured {
  background: var(--ink); border-color: var(--gold);
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 32px rgba(201,168,92,0.12);
}
.offer-card.offer-featured:hover { box-shadow: 0 12px 48px rgba(201,168,92,0.18); }
.offer-step-num {
  font-family: var(--serif); font-size: 13px; font-weight: 400;
  color: rgba(201,168,92,0.5); letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}
.offer-featured .offer-step-num { color: rgba(201,168,92,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-includes { list-style: none; margin: 1rem 0 0; flex: 1; }
.offer-includes li { font-size: 12px; color: var(--mid); line-height: 1.6; padding: 0.45rem 0 0.45rem 1.2rem; position: relative; border-top: 0.5px solid rgba(201,168,92,0.1); }
.offer-includes li:first-child { border-top: none; padding-top: 0; }
.offer-includes li::before { content: '–'; position: absolute; left: 0; color: var(--gold); font-weight: 400; }
.offer-includes li strong { color: var(--ink); font-weight: 500; }
.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(201,168,92,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(--mint); border-color: var(--mint); color: var(--dark); font-weight: 500; }
.offer-featured .offer-btn:hover { background: var(--teal2); border-color: var(--teal2); color: var(--dark); }
.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(201,168,92,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; background: var(--dark); border-top: 0.5px solid rgba(201,168,92,0.18); }
.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: #FAF8F4; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 12px; color: rgba(250,248,244,0.4); transition: color var(--transition); }
.footer-links a:hover { color: #FAF8F4; }
.footer-copy { font-size: 12px; color: rgba(250,248,244,0.28); }

/* ── 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-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(13,17,23,0.99);
    border-bottom: 0.5px solid rgba(201,168,92,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: 5rem 1.5rem 0; }
  .hero-h1 { font-size: 44px; }
  .hero-domains { grid-template-columns: repeat(2, 1fr); }
  .quote-break { padding: 4rem 1.5rem; }
  .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: 36px; }
  .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; }
  .founders-why-grid { grid-template-columns: 1fr; }
  .founders-why-domain { flex-wrap: wrap; gap: 0.4rem 0.85rem; }
  .fwd-desc { flex-basis: 100%; padding-left: calc(8px + 0.85rem); }
}

/* ── 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,26,26,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(201,168,92,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(201,168,92,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(142,114,68,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; } }

/* ══════════════════════════════════════════════════════════
   PÄLYMORF — "What You'll Know After the Assessment"
   Append this block to the BOTTOM of css/styles.css
   ══════════════════════════════════════════════════════════ */

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.wyk-section {
  background: var(--bg, #0a0a0a);
  padding: 7rem 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.wyk-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── HEADER ──────────────────────────────────────────────── */
.wyk-header {
  margin-bottom: 3.5rem;
  max-width: 580px;
}

/* ── SECTION HEADING (standalone styles — not inherited from site) ── */
.wyk-section .section-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 500;
  margin: 0 0 1rem;
}

.wyk-section .section-title {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #f0ebe0;
  line-height: 1.1;
  margin: 0;
}

.wyk-section .section-title em {
  font-style: italic;
  color: var(--gold, #C9A84C);
}

.wyk-subhead {
  font-size: 1rem;
  color: var(--text-muted, rgba(255,255,255,0.4));
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 500px;
}

/* ── 5-DOMAIN GRID ───────────────────────────────────────── */
.wyk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.wyk-card {
  background: #0d0c09;
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.3s ease;
}

.wyk-card:hover {
  background: #111008;
}

/* Gold left-border reveal on hover */
.wyk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold, #C9A84C);
  transition: height 0.4s ease;
}

.wyk-card:hover::before {
  height: 100%;
}

.wyk-domain-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.wyk-card-title {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #f0ebe0;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.wyk-card-body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.75;
  margin: 0;
}

/* ── PULL QUOTE CARD (6th cell) ──────────────────────────── */
.wyk-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0f0e0b;
}

.wyk-card--quote:hover {
  background: #0f0e0b;
}

.wyk-card--quote::before {
  display: none;
}

.wyk-quote-text {
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
  margin: 0 0 1rem;
  border: none;
  padding: 0;
}

.wyk-quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  margin: 0;
}

/* ── BOTTOM ROW ──────────────────────────────────────────── */
.wyk-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.wyk-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.wyk-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wyk-stat-number {
  font-family: var(--serif, Georgia, serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--gold, #C9A84C);
  line-height: 1;
}

.wyk-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.wyk-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.wyk-cta {
  text-align: right;
  flex-shrink: 0;
}

.wyk-cta-note {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.18);
  margin: 0 0 0.85rem;
}

/* ── "WHAT THIS IS NOT" CLARIFIER ────────────────────────── */
.wyk-clarifier {
  border-left: 2px solid var(--gold, #C9A84C);
  padding: 1.5rem 2rem;
  background: rgba(201, 168, 76, 0.03);
}

.wyk-clarifier-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin: 0 0 0.5rem;
}

.wyk-clarifier-text {
  font-family: var(--serif, Georgia, serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  margin: 0;
}

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

@media (max-width: 600px) {
  .wyk-section {
    padding: 5rem 1.5rem;
  }

  .wyk-grid {
    grid-template-columns: 1fr;
  }

  .wyk-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .wyk-cta {
    text-align: left;
    width: 100%;
  }

  .wyk-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ══ END: What You'll Know styles ════════════════════════ */
