/* ============================================================
   EA Analytics — Shared Design System
   ============================================================ */

:root {
  --navy-900: #0a1652;
  --navy-800: #0f1f6e;
  --navy-700: #1a2d8a;
  --navy-600: #2541a8;
  --navy-500: #3356c0;
  --navy-200: #b8c4e8;
  --navy-100: #e8ecf8;
  --navy-50: #f3f5fc;
  --accent: #e8e4de;
  --accent-dark: #c0bdb8;
  --accent-mid: #d5d1cb;
  --accent-light: #f4f2ef;
  --gold: #c4a35a;
  --gold-light: #d4b76e;
  --gold-dark: #a88a3e;
  --gold-subtle: rgba(196, 163, 90, 0.12);
  --gray-900: #1a1a2e;
  --gray-700: #3d3d56;
  --gray-500: #6b6b80;
  --gray-300: #b0b0c0;
  --gray-100: #ededf2;
  --gray-50: #f8f8fb;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  line-height: 1.65;
  font-size: 16px;
  background: var(--white);
}

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 22, 82, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-left: 10px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid var(--gold) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: rgba(196,163,90,0.1) !important; transform: translateY(-1px); }

/* Hamburger menu (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 1px;
}

/* ==================== HERO (Homepage — full viewport) ==================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-900) 0%, #0c1b60 50%, var(--navy-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,228,222,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(51,86,192,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196,163,90,0.08);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  background: var(--white);
  color: var(--navy-900);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.hero-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 6px 32px rgba(196,163,90,0.2);
}

.hero-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ==================== PAGE HERO (Interior pages — shorter) ==================== */
.page-hero {
  background: linear-gradient(150deg, var(--navy-900) 0%, #0c1b60 50%, var(--navy-700) 100%);
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,228,222,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(51,86,192,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  padding: 16px 40px;
  background: var(--accent-light);
  border-bottom: 1px solid var(--accent);
  font-size: 0.8rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--navy-600);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--gray-300); }

/* ==================== SOCIAL PROOF ==================== */
.proof {
  padding: 24px 40px;
  background: var(--accent-light);
  text-align: center;
  border-bottom: 1px solid var(--accent);
}

.proof p {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==================== SECTION SHARED ==================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ==================== OUTCOMES ==================== */
.outcomes {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.outcome-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s;
}

.outcome-card:hover {
  box-shadow: 0 8px 32px rgba(10,22,82,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--navy-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.outcome-icon svg { width: 24px; height: 24px; }

.outcome-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.outcome-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ==================== HOW IT WORKS ==================== */
.how {
  padding: 100px 40px;
  background: var(--navy-900);
  color: var(--white);
}

.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-label { color: var(--gold); }
.how .section-title { color: var(--white); }
.how .section-subtitle { color: rgba(255,255,255,0.45); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(196,163,90,0.1));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(196,163,90,0.08);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ==================== CASE STUDY ==================== */
.case-study {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(10,22,82,0.04);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold));
}

.case-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy-50);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.case-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 28px;
  line-height: 1.35;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-600);
  margin-bottom: 8px;
}

.case-item p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.case-quote {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==================== DEEP DIVES (resource cards on homepage) ==================== */
.deep-dives {
  padding: 0 40px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.deep-dives-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 24px;
}

.deep-dives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deep-dive-card {
  padding: 24px 20px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.deep-dive-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10,22,82,0.06);
}

.deep-dive-card .dd-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.deep-dive-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.deep-dive-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.deep-dive-card .dd-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-700);
}

/* ==================== PRICING HINT ==================== */
.pricing-hint {
  padding: 80px 40px;
  background: var(--accent-light);
  text-align: center;
}

.pricing-inner { max-width: 600px; margin: 0 auto; }

.pricing-hint h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.pricing-hint p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.pricing-hint .highlight {
  color: var(--gold-dark);
  font-weight: 700;
}

.pricing-compare {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.pricing-compare strong { color: var(--navy-900); }

/* ==================== FAQ ==================== */
.faq {
  padding: 100px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==================== FOOTER CTA ==================== */
.footer-cta {
  padding: 100px 40px;
  background: var(--navy-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,228,222,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-cta p {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.footer-cta .hero-cta { font-size: 1.05rem; padding: 18px 42px; }

.footer-cta .alt-contact {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-cta .alt-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
}

.footer-cta .alt-contact a:hover { color: rgba(255,255,255,0.7); }

/* ==================== FOOTER ==================== */
.footer {
  padding: 28px 40px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.5); }

.footer-right {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ==================== TWO-COLUMN LAYOUT ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col-55 {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: start;
}

.two-col-40 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

/* ==================== CONTENT SECTION ==================== */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 40px;
}

/* ==================== PROFILE / ABOUT ==================== */
.profile-photo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 32px rgba(10,22,82,0.08);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.profile-blur {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.05);
  transition: opacity 0.4s ease-out;
}

.profile-photo-wrap.loaded .profile-blur {
  opacity: 0;
  pointer-events: none;
}

.about-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy-900);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-intro p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.personal-section {
  padding: 80px 40px;
  background: var(--accent-light);
}

.personal-inner {
  max-width: 700px;
  margin: 0 auto;
}

.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.personal-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.personal-item .pi-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.personal-item .pi-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.personal-item .pi-text strong {
  color: var(--navy-900);
}

/* ==================== FORM ELEMENTS ==================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: inline-block;
  background: var(--white);
  color: var(--navy-900);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,163,90,0.15);
  border-color: var(--gold-light);
}

/* ==================== CONTACT SIDEBAR ==================== */
.contact-alt {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 12px;
  padding: 36px 28px;
}

.contact-alt h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.contact-method {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-method:last-child { border-bottom: none; }

.contact-method .cm-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-method a {
  color: var(--navy-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.contact-method a:hover { color: var(--navy-900); text-decoration: underline; }

.contact-method p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Contact success message */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ==================== RESOURCE CARDS ==================== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.resource-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  box-shadow: 0 8px 32px rgba(10,22,82,0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.resource-card .rc-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy-50);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.resource-card .rc-badge.gated {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

.resource-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.35;
}

.resource-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.resource-card .rc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resource-card .rc-link:hover { color: var(--gold-dark); }

/* Lead magnet CTA */
.lead-magnet {
  padding: 80px 40px;
  background: var(--navy-900);
  text-align: center;
}

.lead-magnet-inner {
  max-width: 500px;
  margin: 0 auto;
}

.lead-magnet h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.lead-magnet p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.lead-magnet-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.lead-magnet-form input {
  flex: 1;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
}

.lead-magnet-form input::placeholder { color: rgba(255,255,255,0.3); }
.lead-magnet-form input:focus { border-color: var(--gold); }

.lead-magnet-form button {
  padding: 14px 24px;
  background: var(--white);
  color: var(--navy-900);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.lead-magnet-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,163,90,0.2);
}

/* ==================== ARTICLE CONTENT (for resource guides) ==================== */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 32px 0 12px;
}

.article-body p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-body ul, .article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body li {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article-body strong { color: var(--navy-900); }

.article-callout {
  background: var(--gold-subtle);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.article-callout strong { color: var(--gold-dark); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.article-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.article-card {
  padding: 20px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: 10px;
}

.article-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 6px;
}

.article-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10, 22, 82, 0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open a { display: block; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 24px 48px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; margin-bottom: 16px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-footnote { margin-top: 14px; }
  .page-hero { padding: 100px 24px 60px; }
  .page-hero h1 { font-size: 2rem; }
  .outcome-grid { grid-template-columns: 1fr; gap: 20px; }
  .resource-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .case-grid { grid-template-columns: 1fr; gap: 20px; }
  .case-card { padding: 28px; }
  .outcomes, .how, .case-study, .faq { padding: 60px 24px; }
  .content-section, .content-narrow { padding: 60px 24px; }
  .deep-dives { padding: 0 24px 60px; }
  .deep-dives-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 60px 24px; }
  .footer-cta h2 { font-size: 1.8rem; }
  .footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .section-title { font-size: 1.6rem; }
  .two-col, .two-col-55, .two-col-40 { grid-template-columns: 1fr; gap: 32px; }
  .two-col-40 > div:first-child { display: flex; justify-content: center; }
  .two-col-40 .about-intro { text-align: left; }
  .two-col-40 .about-intro h2 { text-align: center; }
  .profile-photo-wrap { width: 220px; height: 220px; }
  .personal-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid-2 { grid-template-columns: 1fr; }
  .lead-magnet-form { flex-direction: column; }
  .breadcrumb { padding: 12px 24px; }
  .personal-section { padding: 60px 24px; }
}

/* ==================== ANIMATIONS ==================== */

/* Hero entrance */
/* ---------- TOOLS STRIP ---------- */
.tools-strip {
  text-align: center;
  padding: 28px 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.tools-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.tools-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tool-logo {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.tool-logo:hover {
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .tools-strip { display: none; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  animation: fadeUp 0.7s ease-out both;
}

.hero h1 {
  animation: fadeUp 0.7s ease-out 0.15s both;
}

.hero-sub {
  animation: fadeUp 0.7s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeUp 0.7s ease-out 0.45s both;
}

.hero-footnote {
  animation: fadeUp 0.7s ease-out 0.55s both;
}

/* Scroll reveal — elements start hidden, appear on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.3s; }

/* Subtle hover lifts for cards */
.outcome-card,
.step-card,
.deep-dive-card,
.case-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover,
.step-card:hover,
.deep-dive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10, 22, 82, 0.08);
}

/* Gold underline grow on section labels */
.section-label::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease-out;
  margin-top: 6px;
}

.section-label.visible::after {
  width: 40px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero h1, .hero-sub, .hero-cta, .hero-footnote {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .outcome-card:hover, .step-card:hover, .deep-dive-card:hover {
    transform: none;
  }
}
