/* =====================================================
   Daily Dino Guy — Design System
   v0.1  (foundation)
   ===================================================== */

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  /* Brand palette (deeper navy system) */
  --ink:        #181b2b;   /* deepest navy — primary text, dark surface  */
  --navy:       #061A40;   /* deep navy — hero / dark sections          */
  --slate:      #003559;   /* slate navy — borders dark, surfaces       */
  --blue:       #0353A4;   /* mid blue — interactive secondary          */
  --accent:     #006DAA;   /* bright blue — primary action, links       */
  --sky:        #B9D6F2;   /* powder blue — light accent, hover tint    */
  --paper:      #f8f8fa;   /* off-white — page background               */
  --white:      #ffffff;

  /* Derived */
  --muted:        rgba(24, 27, 43, 0.62);
  --muted-soft:   rgba(24, 27, 43, 0.45);
  --border:       rgba(24, 27, 43, 0.12);
  --border-dark:  rgba(248, 248, 250, 0.10);
  --on-dark:      rgba(248, 248, 250, 0.72);
  --on-dark-soft: rgba(248, 248, 250, 0.55);

  /* Type */
  --display: 'Bricolage Grotesque', 'Anton', system-ui, sans-serif;
  --sans:    'DM Sans', 'Roboto', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --wrap: 1280px;
  --gutter: 60px;
  --gutter-mobile: 24px;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
.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; }

/* ── LAYOUT HELPERS ───────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { width: 100%; }
.section + .section { border-top: 1px solid var(--border); }
.section.section--dark + .section.section--dark { border-top: 1px solid var(--border-dark); }
.section--dark { background: var(--navy); color: var(--paper); }
.section--ink  { background: var(--ink);  color: var(--paper); }
.section--paper { background: var(--paper); }
.pad-lg  { padding: 110px 0; }
.pad-md  { padding: 80px 0; }
.pad-sm  { padding: 56px 0; }

/* ── TYPE PRIMITIVES ──────────────────────────────────── */
.s-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.section--dark .s-label,
.section--ink  .s-label { color: var(--sky); }

.s-h1, .s-h2, .s-h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.section--dark .s-h1,
.section--dark .s-h2,
.section--dark .s-h3,
.section--ink  .s-h1,
.section--ink  .s-h2,
.section--ink  .s-h3 { color: var(--paper); }

.s-h1  { font-size: clamp(2.75rem, 6vw, 5.25rem); }
.s-h2  { font-size: clamp(2.1rem, 4.5vw, 3.75rem); }
.s-h3  { font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 600; line-height: 1.2; }
.s-h2 em, .s-h1 em {
  font-style: italic; font-weight: 500;
  color: var(--accent);
  font-family: var(--display);
}
.section--dark .s-h2 em,
.section--ink  .s-h2 em { color: var(--sky); }

.s-body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink);
}
.s-body--lg { font-size: 1.1rem; }
.s-body--sm { font-size: 0.92rem; }
.section--dark .s-body,
.section--ink  .s-body { color: var(--on-dark); }
.s-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 4px 18px rgba(3, 83, 164, 0.20);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(3, 83, 164, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-on-dark {
  background: var(--paper);
  color: var(--navy);
}
.btn-on-dark:hover {
  background: var(--sky);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  border-color: var(--paper);
  background: rgba(255,255,255,0.06);
}
.btn-text {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.btn-text:hover { color: var(--blue); border-color: var(--blue); gap: 0.6rem; }

/* ── SITE HEADER / NAV ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 248, 250, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--accent); }
.nav-link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -28px;
  height: 2px; background: var(--accent);
}
.nav-cta { display: inline-flex; align-items: center; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 16px; height: 1.5px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top:  5px; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding: 96px 0 32px;
}
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .footer-logo img { height: 46px; width: auto; }
.footer-brand .footer-tag {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.3rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  color: var(--on-dark);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--wrap);
  margin: 72px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-wrap: wrap; gap: 1rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--on-dark-soft);
}
.footer-bottom a:hover { color: var(--paper); }
.footer-legal {
  display: flex; gap: 1.4rem;
  font-size: 0.8rem;
}
.footer-legal a {
  color: var(--on-dark-soft);
  transition: color 0.18s ease;
}
.footer-legal a:hover { color: var(--sky); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(248,248,250,0.05);
  border: 1px solid var(--border-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.footer-socials a:hover {
  border-color: var(--accent);
  background: rgba(0, 109, 170, 0.18);
}
.footer-socials svg { width: 16px; height: 16px; color: var(--sky); }

/* ── HERO (homepage) ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 120px var(--gutter) 100px;
  text-align: center;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--navy);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,64,0.55) 0%, rgba(6,26,64,0.42) 40%, rgba(24,27,43,0.88) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(0, 109, 170, 0.20) 0%, transparent 60%);
  z-index: 0;
}
.hero--darker::before {
  background:
    linear-gradient(180deg, rgba(6,26,64,0.82) 0%, rgba(6,26,64,0.72) 40%, rgba(24,27,43,0.95) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(0, 109, 170, 0.14) 0%, transparent 60%);
}
.hero > * { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(248,248,250,0.06);
  border: 1px solid rgba(248,248,250,0.14);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  margin-bottom: 2rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(185, 214, 242, 0.25); }
.hero-badge-text { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--on-dark); }
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 920px;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: italic; font-weight: 500; color: var(--sky); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--on-dark);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  align-items: center; justify-content: center;
}
.hero-trust {
  margin-top: 3.5rem;
  font-size: 0.78rem;
  color: var(--on-dark-soft);
  max-width: 880px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
.hero-trust strong { color: var(--paper); font-weight: 500; }

/* ── /links PAGE (standalone) ─────────────────────────── */
.links-page {
  min-height: 100vh; min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(6, 26, 64, 0.78) 0%, rgba(6, 26, 64, 0.50) 30%, rgba(3, 83, 164, 0.42) 60%, rgba(24, 27, 43, 0.85) 100%),
    url('https://assets.cdn.filesafe.space/4o1IKKewRuwryNTT31yY/media/6a0677decf7891b0fac9b34a.jpg') center/cover no-repeat;
  color: var(--paper);
  padding: 72px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
.links-container {
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative; z-index: 1;
}
.links-logo {
  width: 112px; height: 112px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(248,248,250,0.04);
  border: 2px solid rgba(248,248,250,0.20);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 6px rgba(0, 109, 170, 0.14);
}
.links-logo img { width: 100%; height: 100%; object-fit: cover; object-position: 35% 22%; }
.links-name {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 6px;
}
.links-handle {
  font-size: 0.85rem;
  color: var(--sky);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.links-bio {
  font-size: 0.95rem;
  color: var(--on-dark);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 380px;
}
.links-stack { display: flex; flex-direction: column; gap: 12px; }
.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  background: rgba(6, 26, 64, 0.78);
  border: 1px solid rgba(185, 214, 242, 0.25);
  border-radius: 14px;
  color: var(--paper);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}
.link-btn:hover {
  background: rgba(0, 109, 170, 0.62);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 109, 170, 0.32);
}
.link-btn.is-featured {
  background: linear-gradient(135deg, rgba(0, 109, 170, 0.94) 0%, rgba(3, 83, 164, 0.90) 100%);
  border-color: rgba(185, 214, 242, 0.50);
}
.link-btn.is-featured:hover {
  background: linear-gradient(135deg, rgba(0, 109, 170, 1) 0%, rgba(3, 83, 164, 1) 100%);
  border-color: var(--sky);
}
.link-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
}
.link-icon svg { width: 100%; height: 100%; }
.link-text { flex: 1; }
.link-text .link-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 3px;
}
.link-arrow {
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.link-btn:hover .link-arrow { opacity: 1; transform: translateX(3px); }

.links-socials {
  display: flex; gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.links-social {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(248, 248, 250, 0.06);
  border: 1px solid rgba(248, 248, 250, 0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.links-social:hover {
  border-color: var(--accent);
  background: rgba(0, 109, 170, 0.22);
  transform: translateY(-2px);
}
.links-social svg { width: 18px; height: 18px; color: var(--sky); }

.links-footer {
  margin-top: 40px;
  font-size: 0.72rem;
  color: var(--on-dark-soft);
  text-align: center;
}
.links-footer a { color: var(--sky); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .nav { height: 64px; }
  .nav-links {
    position: fixed; inset: 64px 0 0 0;
    flex-direction: column;
    background: var(--paper);
    padding: 32px var(--gutter);
    gap: 1.5rem;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    border-top: 1px solid var(--border);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-link { font-size: 1.05rem; }

  .pad-lg { padding: 72px 0; }
  .pad-md { padding: 56px 0; }

  .hero { padding: 80px var(--gutter) 72px; min-height: 78svh; }
  .hero-h1 { font-size: clamp(2.25rem, 9vw, 3.5rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =====================================================
   HOMEPAGE SECTIONS
   ===================================================== */

/* ── FOUNDER (Section 2) ──────────────────────────────── */
.founder { padding: 130px 0; background: var(--paper); }
.founder .wrap {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 90px; align-items: start;
}
.founder-text .s-label { margin-bottom: 1.25rem; }
.founder-text .s-h2    { margin-bottom: 1.75rem; max-width: 540px; }
.founder-lede {
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.founder-body p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.founder-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.founder-body a:hover { color: var(--blue); }
.founder-body em { font-style: italic; }
.founder-cta { margin-top: 1.75rem; }
.founder-image { position: relative; }
.founder-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(24,27,43,0.18);
}
.founder-image figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ── PILLARS (Section 3) ──────────────────────────────── */
.pillars { padding: 130px 0; background: var(--paper); border-top: 1px solid var(--border); }
.pillars-head { max-width: 760px; margin: 0 auto 70px; text-align: center; }
.pillars-head .s-label { margin-bottom: 1.25rem; }
.pillars-head .s-h2    { margin: 0 auto; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 44px 36px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
  position: relative;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(24,27,43,0.08);
  border-color: var(--accent);
}
.pillar-num {
  font-family: var(--display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sky);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.pillar-h {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.pillar-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex: 1;
}
.pillar-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.pillar:hover .pillar-link { gap: 0.6rem; }

/* ── NEWSLETTER CAPTURE (Section 4) ───────────────────── */
.newsletter-block {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.newsletter-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 109, 170, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 110%, rgba(3, 83, 164, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.newsletter-block .wrap {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-block .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.newsletter-block .s-h2 { color: var(--paper); margin-bottom: 1.5rem; }
.newsletter-block .s-h2 em { color: var(--sky); }
.newsletter-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--on-dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-fine {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--on-dark-soft);
  letter-spacing: 0.02em;
}

/* ── THE BOOK (Section 5) ─────────────────────────────── */
.book-section {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.book-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.book-image { position: relative; }
.book-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 36px 80px rgba(24,27,43,0.20), 0 12px 28px rgba(24,27,43,0.08);
}
.book-text .s-label { margin-bottom: 1.25rem; }
.book-text .s-h2 {
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.book-text .s-h2 em {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}
.book-hook {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.book-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 520px;
}
.book-body em { font-style: italic; }
.book-credits {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.book-credits strong { color: var(--ink); font-weight: 500; }
.book-credits span { display: inline-flex; align-items: center; gap: 0.4rem; }
.book-credits span::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 0.4rem;
}
.book-credits span:first-child::before { display: none; }
.book-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
}

/* ── SPEAKING & PARTNERSHIPS (Section 6) ──────────────── */
.speaking-block {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 60%, var(--ink) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.speaking-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 109, 170, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(185, 214, 242, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.speaking-block .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.speaking-text .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.speaking-text .s-h2 { color: var(--paper); margin-bottom: 1.5rem; max-width: 540px; }
.speaking-text .s-h2 em { color: var(--sky); }
.speaking-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--on-dark);
  margin-bottom: 1.25rem;
  max-width: 500px;
}
.speaking-body strong { color: var(--paper); font-weight: 500; }
.speaking-fee {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--on-dark-soft);
  border-left: 2px solid var(--sky);
  padding-left: 1.1rem;
  margin: 1.75rem 0 2.25rem;
  max-width: 480px;
}
.speaking-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.speaking-image { position: relative; }
.speaking-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 36px 90px rgba(0,0,0,0.45);
}
.speaking-image-tag {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(6,26,64,0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.speaking-image-tag strong { color: var(--sky); font-weight: 500; }

/* ── AS FEATURED IN (Section 7) ───────────────────────── */
.featured {
  padding: 90px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  text-align: center;
}
.featured .s-label { display: inline-block; margin-bottom: 2.25rem; }
.featured-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 32px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.featured-item {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.25s var(--ease);
}
.featured-item:hover { opacity: 1; }
.featured-item em { color: var(--accent); font-style: italic; font-weight: 500; }

/* ── JOURNAL TEASER (Section 8) ───────────────────────── */
.journal {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.journal-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.journal-head-text .s-label { margin-bottom: 1.25rem; }
.journal-head-text .s-h2 { max-width: 480px; }
.journal-head-cta {
  display: flex; justify-content: flex-end;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(24,27,43,0.08);
  border-color: var(--accent);
}
.article-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sky);
}
.article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body {
  padding: 26px 28px 30px;
  display: flex; flex-direction: column;
  flex: 1;
}
.article-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.article-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.article-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.article-summary {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex: 1;
}
.article-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.35rem;
  align-self: flex-start;
  transition: gap 0.2s;
}
.article-card:hover .article-link { gap: 0.55rem; }
.article-placeholder-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 32px;
}

/* ── FAQ (Section 9) ──────────────────────────────────── */
.faq {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.faq-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.faq-head .s-label { margin-bottom: 1.25rem; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 28px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}
.faq-body em { font-style: italic; }

/* ── HOMEPAGE RESPONSIVE OVERRIDES ────────────────────── */
@media (max-width: 960px) {
  .founder .wrap,
  .book-section .wrap,
  .speaking-block .wrap { grid-template-columns: 1fr; gap: 48px; }
  .founder-image,
  .book-image,
  .speaking-image { max-width: 480px; }
  .pillars-grid,
  .journal-grid { grid-template-columns: 1fr; gap: 16px; }
  .journal-head { grid-template-columns: 1fr; gap: 24px; }
  .journal-head-cta { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .founder, .pillars, .newsletter-block, .book-section,
  .speaking-block, .journal, .faq { padding: 72px 0; }
  .featured { padding: 56px 0; }
  .founder-image img,
  .book-image img,
  .speaking-image img { aspect-ratio: 4/3; }
  .featured-grid { gap: 20px 32px; }
  .featured-item { font-size: 0.95rem; }
  .pillar-num { font-size: 2.5rem; }
  .faq-item summary { font-size: 1rem; padding: 22px 0; }
}

/* =====================================================
   SPEAKING PAGE
   ===================================================== */

/* ── Speaker hero entity-definition ───────────────────── */
.speaker-entity {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--sky);
  background: rgba(248, 248, 250, 0.05);
  border: 1px dashed rgba(185, 214, 242, 0.38);
  border-radius: 6px;
  padding: 0.85rem 1.4rem;
  margin: 0 auto 2rem;
  max-width: 720px;
}

/* ── About the speaker (Section 2) ────────────────────── */
.about-speaker {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.about-speaker .wrap { max-width: 920px; }
.about-speaker .s-label { margin-bottom: 1.25rem; }
.about-speaker .s-h2 { margin-bottom: 2rem; max-width: 720px; }
.about-speaker .s-h2 em { font-style: italic; }
.about-speaker-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.82;
  margin-bottom: 1.25rem;
  max-width: 780px;
}
.about-speaker-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.about-speaker-body a:hover { color: var(--blue); }
.about-speaker-body em { font-style: italic; }

/* ── Signature talks (Section 3) ──────────────────────── */
.signature-talks {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.signature-talks-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.signature-talks-head .s-label { margin-bottom: 1.25rem; }
.talks-list { display: flex; flex-direction: column; gap: 32px; }
.talk-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  transition: all 0.25s var(--ease);
}
.talk-card:hover {
  border-color: var(--accent);
  box-shadow: 0 24px 56px rgba(24, 27, 43, 0.10);
}
.talk-card.flip { grid-template-columns: 1.25fr 1fr; }
.talk-card.flip .talk-image { order: 2; }
.talk-image { aspect-ratio: 4/3; overflow: hidden; border-radius: 10px; }
.talk-image img { width: 100%; height: 100%; object-fit: cover; }
.talk-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: inline-block;
}
.talk-title {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.talk-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.talk-tagline {
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.talk-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 1.25rem;
}
.talk-pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.talk-body { font-size: 0.96rem; line-height: 1.7; color: var(--muted); margin-bottom: 0.85rem; }
.talk-body strong { color: var(--ink); font-weight: 500; }
.talk-body em { font-style: italic; }
.talk-body a { color: var(--accent); text-decoration: underline; }
.talk-body:last-child { margin-bottom: 0; }
.talks-custom {
  margin-top: 40px;
  padding: 36px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 14px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.talks-custom strong { color: var(--ink); font-weight: 500; }
.talks-custom a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Audience grid (Section 4) ────────────────────────── */
.audience-grid-section {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.audience-grid-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(0, 109, 170, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 95%, rgba(3, 83, 164, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.audience-grid-section .wrap { position: relative; z-index: 1; }
.audience-grid-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.audience-grid-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.audience-grid-head .s-h2 { color: var(--paper); }
.audience-grid-head .s-h2 em { color: var(--sky); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  overflow: hidden;
}
.audience-cell {
  padding: 38px 32px;
  background: var(--navy);
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.audience-name {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.audience-detail {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--on-dark-soft);
}
.audience-detail strong { color: var(--sky); font-weight: 500; }
.audience-price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0.25rem 0;
}
.audience-price small {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--on-dark-soft);
  letter-spacing: 0;
}
.audience-bestfor {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
  margin-top: auto;
}
.audience-bestfor strong { color: var(--paper); font-weight: 500; display: block; margin-bottom: 0.25rem; letter-spacing: 0.04em; }
.audience-grid-footnote {
  margin-top: 36px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--on-dark);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.audience-grid-footnote em { font-style: italic; color: var(--sky); }

/* ── What's included (Section 5) ──────────────────────── */
.whats-included {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.whats-included .wrap {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.whats-included-head { padding-top: 8px; }
.whats-included-head .s-label { margin-bottom: 1.25rem; }
.whats-included-head .s-h2 { max-width: 380px; }
.whats-included-head .s-h2 em { font-style: italic; }
.whats-included-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.whats-included-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}
.whats-included-list li::before {
  content: '—';
  color: var(--accent);
  font-weight: 600;
}

/* ── Past venues + testimonials (Section 6) ───────────── */
.past-venues {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.past-venues-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.past-venues-head .s-label { margin-bottom: 1.25rem; }
.venues-list {
  max-width: 900px;
  margin: 0 auto;
}
.venue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.venue-item:first-child { border-top: 1px solid var(--border); }
.venue-item:hover { border-bottom-color: var(--accent); }
.venue-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.venue-status {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.venue-status.is-invited { color: var(--blue); }
.venue-status.is-dev    { color: var(--muted); }
.venues-footnote {
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 28px;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.video-testimonials { margin-top: 80px; }
.video-testimonials-head {
  text-align: center;
  margin-bottom: 40px;
}
.video-testimonials-head .s-label { margin-bottom: 1rem; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}
.video-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 44px rgba(24, 27, 43, 0.08);
}
.video-embed {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--slate) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.video-embed::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 109, 170, 0.20) 0%, transparent 60%);
}
.video-placeholder {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.video-placeholder svg {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.85;
}
.video-card-body { padding: 26px 30px 30px; }
.video-quote {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 1rem;
}
.video-quote::before { content: '“'; color: var(--accent); }
.video-quote::after  { content: '”'; color: var(--accent); }
.video-attribution {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
.video-attribution strong { color: var(--ink); font-weight: 500; }

/* ── Inquiry form (Section 8) ─────────────────────────── */
.inquiry-form {
  padding: 130px 0;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 60%, var(--ink) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.inquiry-form::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(0, 109, 170, 0.22) 0%, transparent 60%);
  pointer-events: none;
}
.inquiry-form .wrap { max-width: 820px; position: relative; z-index: 1; }
.inquiry-form-head { text-align: center; margin-bottom: 50px; }
.inquiry-form-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.inquiry-form-head .s-h2 { color: var(--paper); margin-bottom: 1.25rem; }
.inquiry-form-head .s-h2 em { color: var(--sky); }
.inquiry-form-head p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--on-dark);
  max-width: 580px;
  margin: 0 auto;
}
.inquiry-form-note {
  background: rgba(0, 109, 170, 0.18);
  border: 1px dashed rgba(185, 214, 242, 0.45);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--sky);
  text-align: center;
  letter-spacing: 0.02em;
}
.inquiry-form-note strong { color: var(--paper); font-weight: 500; }
.inquiry-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inquiry-form-fields .field-full { grid-column: 1 / -1; }
.inquiry-form-fields label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.55rem;
}
.inquiry-form-fields input,
.inquiry-form-fields select,
.inquiry-form-fields textarea {
  width: 100%;
  background: rgba(248, 248, 250, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.inquiry-form-fields input::placeholder,
.inquiry-form-fields textarea::placeholder { color: rgba(248, 248, 250, 0.40); }
.inquiry-form-fields input:focus,
.inquiry-form-fields select:focus,
.inquiry-form-fields textarea:focus {
  border-color: var(--sky);
  background: rgba(248, 248, 250, 0.10);
}
.inquiry-form-fields select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B9D6F2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}
.inquiry-form-fields select option { background: var(--navy); color: var(--paper); }
.inquiry-form-fields textarea { min-height: 110px; resize: vertical; }
.inquiry-form-submit {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.inquiry-form-direct {
  margin-top: 32px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--on-dark);
  line-height: 1.7;
}
.inquiry-form-direct a { color: var(--sky); text-decoration: underline; }
.inquiry-form-direct strong { color: var(--paper); font-weight: 500; }
.inquiry-form-bureau {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Speaker one-sheet download (Section 9) ───────────── */
.one-sheet {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.one-sheet .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
}
.one-sheet-visual {
  aspect-ratio: 8.5/11;
  max-width: 280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 60%, var(--ink) 100%);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(24, 27, 43, 0.20), 0 8px 24px rgba(24, 27, 43, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  font-family: var(--display);
  position: relative;
  overflow: hidden;
}
.one-sheet-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 109, 170, 0.32) 0%, transparent 60%);
}
.one-sheet-visual-text {
  position: relative; z-index: 1;
  text-align: center;
  padding: 1.5rem;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.one-sheet-text .s-label { margin-bottom: 1.25rem; }
.one-sheet-text .s-h2 { margin-bottom: 1.5rem; max-width: 480px; }
.one-sheet-text .s-h2 em { font-style: italic; }
.one-sheet-text-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ── Speaking page responsive ─────────────────────────── */
@media (max-width: 960px) {
  .talk-card,
  .talk-card.flip { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .talk-card.flip .talk-image { order: 0; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .whats-included .wrap,
  .one-sheet .wrap { grid-template-columns: 1fr; gap: 40px; }
  .video-grid { grid-template-columns: 1fr; }
  .inquiry-form-fields { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .audience-grid { grid-template-columns: 1fr; }
  .signature-talks,
  .audience-grid-section,
  .whats-included,
  .past-venues,
  .inquiry-form,
  .one-sheet,
  .about-speaker { padding: 72px 0; }
  .venue-item { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 0; }
  .talk-card { padding: 28px; }
  .talk-title { font-size: 1.5rem; }
}

/* ── LOGO MARQUEES ────────────────────────────────────── */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 52px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  position: relative;
}
.logo-marquee + .logo-marquee { border-top: none; }
.logo-marquee:last-of-type { border-bottom: 1px solid var(--border); }
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before { left: 0;  background: linear-gradient(to right, var(--paper), transparent); }
.logo-marquee::after  { right: 0; background: linear-gradient(to left,  var(--paper), transparent); }
.logo-marquee-label {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}
.logo-marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.logo-marquee--reverse .logo-marquee-track { animation-direction: reverse; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  opacity: 0.62;
  white-space: nowrap;
  transition: opacity 0.25s var(--ease), color 0.25s var(--ease);
  text-decoration: none;
}
.logo-marquee-item:hover { opacity: 1; color: var(--accent); }
.logo-marquee-item em { color: var(--accent); font-style: italic; font-weight: 500; }
/* When real logo PNG/SVG assets land, swap the text spans for img tags using this class */
.logo-marquee-img {
  height: 60px;
  width: auto;
  filter: grayscale(100%) opacity(0.62);
  transition: filter 0.3s var(--ease);
}
.logo-marquee-item:hover .logo-marquee-img {
  filter: grayscale(0%) opacity(1);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-marquee { padding: 36px 0; }
  .logo-marquee::before, .logo-marquee::after { width: 60px; }
  .logo-marquee-track { gap: 48px; animation-duration: 30s; }
  .logo-marquee-item { font-size: 1.3rem; }
  .logo-marquee-img { height: 44px; }
}

/* =====================================================
   WORK WITH ME PAGE
   ===================================================== */

/* ── Hero partners strip (logos below trust strip) ────── */
.hero-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 52px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-partner {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  opacity: 0.78;
  white-space: nowrap;
}
.hero-partner em { color: var(--sky); font-style: italic; font-weight: 500; }

/* ── Audience snapshot (Section 2) ────────────────────── */
.audience-snapshot {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.audience-snapshot-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.audience-snapshot-head .s-label { margin-bottom: 1.25rem; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.stat-block {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: all 0.25s var(--ease);
}
.stat-block:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(24,27,43,0.06);
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.stat-number small {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.4rem;
  letter-spacing: 0;
}
.stat-label {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.stat-context {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 0.5rem;
}
.stat-context.is-placeholder {
  color: var(--accent);
  background: rgba(0, 109, 170, 0.08);
  border: 1px dashed rgba(0, 109, 170, 0.32);
  padding: 6px 10px;
  border-radius: 4px;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.stat-affinity {
  display: flex; flex-wrap: wrap; gap: 5px;
  list-style: none;
}
.stat-affinity li {
  font-size: 0.74rem;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--muted);
}
.audience-snapshot-footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 18px;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Performance highlights (Section 2.5) ─────────────── */
.performance-highlights {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.performance-highlights::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 0%, rgba(0,109,170,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(3,83,164,0.16) 0%, transparent 50%);
  pointer-events: none;
}
.performance-highlights .wrap { position: relative; z-index: 1; }
.performance-highlights-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.performance-highlights-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.performance-highlights-head .s-h2 { color: var(--paper); }
.performance-highlights-head .s-h2 em { color: var(--sky); }
.perf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.perf-card {
  padding: 32px 32px 30px;
  background: rgba(248, 248, 250, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all 0.25s var(--ease);
}
.perf-card:hover {
  border-color: rgba(185, 214, 242, 0.32);
  background: rgba(248, 248, 250, 0.08);
}
.perf-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
}
.perf-headline {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.perf-headline em { font-style: italic; color: var(--sky); }
.perf-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--on-dark);
}
.perf-body em { font-style: italic; }
.perf-body.is-placeholder {
  color: var(--sky);
  background: rgba(0, 109, 170, 0.18);
  border: 1px dashed rgba(185, 214, 242, 0.45);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-style: italic;
}
.performance-highlights-footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--on-dark);
  margin-top: 28px;
}
.performance-highlights-footnote a { color: var(--sky); text-decoration: underline; }

/* ── Past partners (Section 3 — static list) ──────────── */
.past-partners-static {
  padding: 110px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.past-partners-static .wrap { max-width: 980px; }
.past-partners-head { text-align: center; margin-bottom: 48px; }
.past-partners-head .s-label { margin-bottom: 1.25rem; }
.past-partners-list { display: flex; flex-direction: column; }
.partner-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.partner-item:first-child { border-top: 1px solid var(--border); }
.partner-name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.partner-tag {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
  max-width: 60%;
}
.partner-tag em { font-style: italic; }
.past-partners-footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 26px;
}
.past-partners-footnote a { color: var(--accent); text-decoration: underline; }

/* ── Featured case study (Section 3.5) ────────────────── */
.featured-case {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.featured-case .wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.case-image { position: relative; }
.case-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(24,27,43,0.20);
}
.case-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
}
.case-text .s-label { margin-bottom: 1.25rem; }
.case-text .s-h2 { margin-bottom: 1.5rem; max-width: 560px; }
.case-text .s-h2 em { font-style: italic; color: var(--accent); }
.case-rows {
  display: flex; flex-direction: column;
  gap: 1.4rem;
  margin: 2rem 0;
  max-width: 600px;
}
.case-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  align-items: baseline;
}
.case-row dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.case-row dd { margin: 0; }
.case-row dd em { font-style: italic; }
.case-result {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.case-result em { font-style: italic; color: var(--accent); }
.case-takeaway {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  max-width: 600px;
  margin-top: 1rem;
}
.case-todo {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(0, 109, 170, 0.08);
  border: 1px dashed rgba(0, 109, 170, 0.32);
  padding: 10px 14px;
  border-radius: 6px;
  line-height: 1.6;
}
.case-todo strong { color: var(--ink); font-weight: 600; }

/* ── Why partner (Section 4) ──────────────────────────── */
.why-partner {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.why-partner-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.why-partner-head .s-label { margin-bottom: 1.25rem; }
.why-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-card {
  padding: 36px 36px 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s var(--ease);
}
.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(24,27,43,0.08);
  transform: translateY(-2px);
}
.why-card-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sky);
  letter-spacing: -0.02em;
}
.why-card-h {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.why-card-h em { font-style: italic; color: var(--accent); }
.why-card-body {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--muted);
}
.why-card-body em { font-style: italic; }

/* ── Partnership formats menu (Section 5) ─────────────── */
.formats-section {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.formats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(3,83,164,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.formats-section .wrap { position: relative; z-index: 1; }
.formats-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.formats-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.formats-head .s-h2 { color: var(--paper); }
.formats-head .s-h2 em { color: var(--sky); }
.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.format-card {
  background: rgba(248, 248, 250, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.25s var(--ease);
}
.format-card:hover { border-color: rgba(185, 214, 242, 0.32); }
.format-card-h {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.format-card-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0.7rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--on-dark);
}
.format-card-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.75rem;
  align-items: baseline;
}
.format-card-list li::before {
  content: '—';
  color: var(--sky);
  font-weight: 600;
}
.format-card-list em { font-style: italic; }
.format-card-note {
  font-size: 0.82rem;
  color: var(--on-dark-soft);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  line-height: 1.55;
}
.formats-footnote {
  margin-top: 32px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--on-dark);
}
.formats-footnote a { color: var(--sky); text-decoration: underline; }

/* ── Brand fit (Section 6) ────────────────────────────── */
.brand-fit {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.brand-fit-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.brand-fit-head .s-label { margin-bottom: 1.25rem; }
.brand-fit-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 56px;
}
.brand-fit-intro em { font-style: italic; }
.brand-yes-h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  text-align: center;
}
.brand-yes-h3 em { color: var(--accent); font-style: italic; }
.brand-yes-table {
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--white);
}
.brand-yes-row { display: contents; }
.brand-yes-row > div {
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.brand-yes-row:last-child > div { border-bottom: none; }
.brand-yes-cat {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  background: var(--paper);
  border-right: 1px solid var(--border);
}
.brand-yes-examples {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
.brand-no-h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-align: center;
}
.brand-no-h3 em { font-style: italic; color: var(--accent); }
.brand-no-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 28px 36px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 14px;
}
.brand-no-text em { font-style: italic; color: var(--ink); }

/* ── How it works (Section 7) ─────────────────────────── */
.how-it-works {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.how-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.how-head .s-label { margin-bottom: 1.25rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sky);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.process-step-h {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.process-step-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Inquiry floor anchor (sits under form heading) ───── */
.inquiry-floor {
  text-align: center;
  font-size: 0.92rem;
  color: var(--on-dark);
  margin: 1.25rem auto 0;
  padding: 12px 24px;
  background: rgba(0, 109, 170, 0.18);
  border: 1px dashed rgba(185, 214, 242, 0.45);
  border-radius: 6px;
  max-width: 600px;
  line-height: 1.55;
}
.inquiry-floor strong { color: var(--paper); font-weight: 500; }

/* ── Work With Me responsive ──────────────────────────── */
@media (max-width: 960px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-grid { grid-template-columns: 1fr; }
  .featured-case .wrap { grid-template-columns: 1fr; gap: 40px; }
  .why-partner-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .brand-yes-table { grid-template-columns: 1fr; }
  .brand-yes-row > div { border-right: none !important; }
  .brand-yes-cat { padding-bottom: 8px; border-bottom: none !important; }
  .brand-yes-examples { padding-top: 6px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .case-row { grid-template-columns: 1fr; gap: 0.4rem; }
}
@media (max-width: 600px) {
  .stat-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-partners { gap: 14px 32px; }
  .hero-partner { font-size: 0.9rem; }
  .audience-snapshot, .performance-highlights, .past-partners-static, .featured-case,
  .why-partner, .formats-section, .brand-fit, .how-it-works { padding: 72px 0; }
  .partner-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .partner-tag { text-align: left; max-width: 100%; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

/* ── About hero (portrait + text, NOT full-bleed bg) ─── */
.about-hero {
  padding: 100px 0 110px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.about-hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-hero-image { position: relative; }
.about-hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 36px 80px rgba(24,27,43,0.20), 0 12px 28px rgba(24,27,43,0.06);
}
.about-hero-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.85rem;
  font-style: italic;
}
.about-hero-text .s-label { margin-bottom: 1.25rem; }
.about-hero-text .s-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.about-hero-text .s-h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.about-hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.86;
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.about-hero-sub em { font-style: italic; }
.about-hero-sub strong { font-weight: 600; color: var(--ink); }
.about-hero-text .speaker-entity {
  background: rgba(0, 109, 170, 0.06);
  border-color: rgba(0, 109, 170, 0.32);
  color: var(--blue);
  margin: 0;
  max-width: 600px;
}
.about-hero-text .speaker-entity em { color: var(--accent); }

/* ── Short version (canonical AI bio) ─────────────────── */
.short-version {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.short-version .wrap { max-width: 820px; }
.short-version-head { margin-bottom: 2rem; }
.short-version-head .s-label { margin-bottom: 1.25rem; }
.short-version-head .s-h2 em { font-style: italic; }
.short-version-body p {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.86;
  margin-bottom: 1.25rem;
}
.short-version-body p:last-child { margin-bottom: 0; }
.short-version-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.short-version-body a:hover { color: var(--blue); }
.short-version-body em { font-style: italic; }

/* ── Long version (story w/ sub-sections + images) ────── */
.long-version {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.long-version-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.long-version-head .s-label { margin-bottom: 1.25rem; }
.long-version-head .s-h2 em { font-style: italic; }
.story-stack {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.story-section { }
.story-section.with-image {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.story-section.with-image.flip { grid-template-columns: 1.1fr 1fr; }
.story-section.with-image.flip .story-image { order: 2; }
.story-section-h {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.story-section-h em { font-style: italic; color: var(--accent); }
.story-body p {
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 1.1rem;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.story-body em { font-style: italic; }
.story-image { position: relative; }
.story-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(24,27,43,0.15);
}
.story-image figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.85rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Then/Now feature (child + adult at same exhibit) ── */
.then-now {
  margin: 36px 0 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(24,27,43,0.12);
}
.then-now-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.then-now-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper);
}
.then-now-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.then-now-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(6,26,64,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.10);
}
.then-now-caption {
  padding: 22px 28px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-style: italic;
  background: var(--white);
}

/* ── Placeholder inline (for [PLACEHOLDER] tags) ──────── */
.placeholder-inline {
  color: var(--accent);
  background: rgba(0,109,170,0.08);
  border: 1px dashed rgba(0,109,170,0.32);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.92em;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── Credentials (CV-style) ───────────────────────────── */
.credentials-section {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.credentials-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(0,109,170,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(3,83,164,0.16) 0%, transparent 50%);
  pointer-events: none;
}
.credentials-section .wrap { position: relative; z-index: 1; max-width: 1100px; }
.credentials-head { text-align: center; margin-bottom: 60px; max-width: 760px; margin-left: auto; margin-right: auto; }
.credentials-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.credentials-head .s-h2 { color: var(--paper); }
.credentials-head .s-h2 em { color: var(--sky); }
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.cred-block-h {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cred-item {
  display: flex; flex-direction: column;
  gap: 0.3rem;
}
.cred-item-h {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.cred-item-meta {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--on-dark);
}
.cred-item-meta a { color: var(--sky); text-decoration: underline; }
.cred-item-meta em { font-style: italic; }
.cred-item-meta .placeholder-inline {
  background: rgba(185,214,242,0.10);
  border-color: rgba(185,214,242,0.30);
  color: var(--sky);
}

/* ── Books & Publications ─────────────────────────────── */
.books-publications {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.books-publications-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.books-publications-head .s-label { margin-bottom: 1.25rem; }
.books-publications-head .s-h2 em { font-style: italic; }
.featured-book {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-bottom: 80px;
  box-shadow: 0 24px 56px rgba(24,27,43,0.08);
}
.featured-book-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.featured-book-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-book-body {
  padding: 44px 48px;
  display: flex; flex-direction: column;
}
.featured-book-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.featured-book-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.featured-book-subtitle {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.featured-book-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.featured-book-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  align-self: center;
}
.featured-book-meta dd { margin: 0; color: var(--muted); }
.featured-book-blurb {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
}
.featured-book-blurb em { font-style: italic; }
.featured-book-ctas {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.85rem;
  margin-top: auto;
}
.featured-book-tertiary {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-top: 0.25rem;
}
.selected-pubs h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--ink);
}
.selected-pubs-list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
}
.selected-pubs-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}
.selected-pubs-list li:first-child { border-top: 1px solid var(--border); }
.selected-pubs-list li.is-placeholder {
  color: var(--accent);
  background: rgba(0,109,170,0.06);
  border: 1px dashed rgba(0,109,170,0.32);
  padding: 14px 18px;
  margin: 6px 0;
  font-style: italic;
  font-size: 0.85rem;
  opacity: 1;
}

/* ── Speaking & media highlights ─────────────────────── */
.speaking-highlights {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.speaking-highlights .wrap { max-width: 980px; }
.speaking-highlights-head { text-align: center; margin-bottom: 50px; }
.speaking-highlights-head .s-label { margin-bottom: 1.25rem; }
.speaking-highlights-head .s-h2 em { font-style: italic; }
.speaking-highlights-list { display: flex; flex-direction: column; }
.speaking-highlight {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.speaking-highlight:first-child { border-top: 1px solid var(--border); }
.speaking-highlight-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.speaking-highlight-name em { font-style: italic; }
.speaking-highlight-detail {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.5;
  max-width: 55%;
}
.speaking-highlight-detail em { font-style: italic; }
.speaking-highlights-cta {
  text-align: center;
  margin-top: 36px;
}

/* ── What I Believe (philosophy section) ──────────────── */
.beliefs {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.beliefs-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.beliefs-head .s-label { margin-bottom: 1.25rem; }
.beliefs-head .s-h2 em { font-style: italic; }
.beliefs-intro {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 50px;
  font-style: italic;
}
.beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 860px;
  margin: 0 auto;
}
.belief-item {
  background: var(--white);
  padding: 30px 36px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 14px 36px rgba(24,27,43,0.06);
}
.belief-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.belief-item strong em { font-style: italic; color: var(--accent); }
.belief-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.belief-item p em { font-style: italic; }

/* ── Bio variants (50/100/200-word press bios) ────────── */
.bio-variants {
  padding: 130px 0;
  background: var(--navy);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.bio-variants::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(0,109,170,0.20) 0%, transparent 55%);
  pointer-events: none;
}
.bio-variants .wrap { position: relative; z-index: 1; }
.bio-variants-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.bio-variants-head .s-label { color: var(--sky); margin-bottom: 1.25rem; }
.bio-variants-head .s-h2 { color: var(--paper); }
.bio-variants-head .s-h2 em { color: var(--sky); }
.bio-variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bio-card {
  padding: 32px 30px;
  background: rgba(248,248,250,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.bio-card:hover { border-color: rgba(185,214,242,0.30); }
.bio-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}
.bio-card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--on-dark);
  flex: 1;
  margin-bottom: 1.5rem;
}
.bio-card-text em { font-style: italic; }
.bio-copy {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sky);
  border: 1px solid rgba(185,214,242,0.45);
  background: transparent;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.bio-copy:hover {
  background: rgba(0, 109, 170, 0.20);
  border-color: var(--sky);
}
.bio-copy svg { width: 13px; height: 13px; }
.bio-copy.is-copied {
  background: rgba(0, 109, 170, 0.32);
  border-color: var(--sky);
  color: var(--paper);
}
.bio-variants-cta {
  text-align: center;
  margin-top: 36px;
}
.bio-variants-cta .btn { display: inline-flex; }

/* ── Connect (3-column CTA grid) ──────────────────────── */
.connect-section {
  padding: 130px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.connect-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.connect-head .s-label { margin-bottom: 1.25rem; }
.connect-head .s-h2 em { font-style: italic; }
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.connect-card {
  padding: 38px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.connect-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(24,27,43,0.08);
  transform: translateY(-2px);
}
.connect-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 109, 170, 0.10);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.connect-card-icon svg { width: 22px; height: 22px; }
.connect-card-h {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.connect-card-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex: 1;
}
.connect-card-ctas {
  display: flex; flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
}
.connect-card-ctas a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.2s, color 0.2s;
}
.connect-card-ctas a:hover { gap: 0.55rem; color: var(--blue); }
.connect-card-email {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.connect-card-email a { color: var(--accent); text-decoration: underline; }
.connect-card-socials {
  display: flex; gap: 10px;
  margin-top: 0.5rem;
}
.connect-card-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0, 109, 170, 0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.connect-card-socials a:hover {
  background: var(--accent);
}
.connect-card-socials a:hover svg { color: var(--paper); }
.connect-card-socials svg { width: 16px; height: 16px; color: var(--accent); transition: color 0.2s; }

/* ── About page responsive ────────────────────────────── */
@media (max-width: 960px) {
  .about-hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-hero-image { max-width: 460px; }
  .story-section.with-image,
  .story-section.with-image.flip { grid-template-columns: 1fr; gap: 32px; }
  .story-section.with-image.flip .story-image { order: 0; }
  .credentials-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-book { grid-template-columns: 1fr; }
  .featured-book-image { aspect-ratio: 4/3; }
  .featured-book-body { padding: 32px 30px; }
  .bio-variants-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .speaking-highlight { flex-direction: column; align-items: flex-start; gap: 6px; }
  .speaking-highlight-detail { text-align: left; max-width: 100%; }
}
@media (max-width: 600px) {
  .about-hero, .short-version, .long-version, .credentials-section, .books-publications,
  .speaking-highlights, .beliefs, .bio-variants, .connect-section { padding: 72px 0; }
  .then-now-caption { font-size: 0.95rem; padding: 16px 18px; }
  .belief-item { padding: 24px 26px; }
  .featured-book-body { padding: 26px; }
}
