/* =========================================================
   THE PRACTITIONER'S PIVOT — Design System
   Hyper-modern · Asymmetric · Motion-rich
   Brand: Navy #1B2B4B · Burnt Orange #C4622D · Cream #F8F5F0
   ========================================================= */

:root {
  /* Brand colors */
  --navy: #1B2B4B;
  --navy-deep: #0F1A33;
  --navy-soft: #2A3A5C;
  --orange: #C4622D;
  --orange-bright: #E8783A;
  --orange-deep: #A4501F;
  --orange-tint: rgba(196, 98, 45, 0.08);
  --cream: #F8F5F0;
  --cream-warm: #F2EDE3;
  --cream-deep: #ECE5D8;
  --ink: #14213D;
  --ink-soft: #5A6680;
  --ink-mute: #8A92A8;
  --line: rgba(27, 43, 75, 0.08);
  --line-strong: rgba(27, 43, 75, 0.16);
  --white: #ffffff;

  /* Layout */
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1280px;
  --container-narrow: 960px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms var(--ease-out);
  --t-med: 400ms var(--ease-out);
  --t-slow: 800ms var(--ease-out);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(196, 98, 45, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(27, 43, 75, 0.08), transparent 65%),
    var(--cream-warm);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
::selection { background: var(--orange); color: var(--cream); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow {
  max-width: var(--container-narrow);
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  body {
    background:
      radial-gradient(ellipse 80% 30% at 0% 0%, rgba(196, 98, 45, 0.05), transparent 70%),
      var(--cream);
    background-attachment: scroll;
  }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(1.7rem, 3.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}
h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}
p { margin: 0 0 1em; }

em {
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
}

.muted { color: var(--ink-mute); font-weight: 400; }
.accent { color: var(--orange); }
.italic-display {
  font-style: italic;
  font-weight: 300;
  color: var(--orange);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin-bottom: 1.5em;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

/* Strike through with orange */
.strike-orange {
  position: relative;
  display: inline-block;
  color: var(--ink-mute);
}
.strike-orange::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 52%;
  width: 104%;
  height: 6px;
  background: var(--orange);
  transform: rotate(-2deg);
  border-radius: 4px;
  opacity: 0.85;
}

/* Big numbers */
.big-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--navy);
  font-feature-settings: "tnum";
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: -0.005em;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transition: transform var(--t-med);
}
.btn--primary {
  color: var(--cream);
}
.btn--primary::before {
  background: var(--navy);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 26, 51, 0.2);
}
.btn--primary:hover::before {
  background: var(--navy-deep);
}
.btn--accent {
  color: var(--white);
}
.btn--accent::before {
  background: var(--orange);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 98, 45, 0.3);
}
.btn--accent:hover::before {
  background: var(--orange-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.btn--ghost::before { display: none; }
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--text {
  background: transparent;
  color: var(--navy);
  padding: 16px 8px;
}
.btn--text::before { display: none; }
.btn--text:hover { color: var(--orange); }
.btn--lg { padding: 20px 32px; font-size: 1.04rem; }
.btn--sm { padding: 11px 20px; font-size: 0.88rem; }
.btn--full { width: 100%; }

.btn__arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform var(--t-med);
}
.link-arrow:hover::after { transform: scaleX(0); transform-origin: left; }
.link-arrow:hover { color: var(--orange); }
.link-arrow span { transition: transform var(--t-fast); display: inline-block; }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- HEADER (shared across pages) ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast), padding var(--t-fast);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(248, 245, 240, 0.85);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo img { height: 36px; width: auto; }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  background: rgba(27, 43, 75, 0.04);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav a:hover, .nav a.is-active {
  color: var(--navy);
  background: var(--white);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--t-fast);
}
.header__link:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 14px 4px;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 16px; align-self: flex-start; }

@media (max-width: 1080px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* ---------- PAGE TOP SPACER ---------- */
/* Account for fixed header on internal pages */
.page-top {
  padding-top: 120px;
}

/* ---------- TICKER / MARQUEE ---------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  background: transparent;
}
.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.ticker__track span:nth-child(even) {
  color: var(--orange);
  font-style: italic;
  font-weight: 300;
}
.ticker__star {
  display: inline-flex;
  align-items: center;
  font-size: 0.6em;
  color: var(--orange) !important;
  font-style: normal !important;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- BACKGROUND ATMOSPHERE ---------- */
.atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 1;
}
.atmosphere__orb--orange {
  background: radial-gradient(circle, rgba(196, 98, 45, 0.8), rgba(196, 98, 45, 0.2) 50%, transparent 75%);
}
.atmosphere__orb--navy {
  background: radial-gradient(circle, rgba(27, 43, 75, 0.4), rgba(27, 43, 75, 0.1) 55%, transparent 75%);
}
.atmosphere__grid {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background-image: radial-gradient(circle at 1px 1px, rgba(27, 43, 75, 0.16) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 40%, transparent 85%);
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.05); }
}

/* ---------- FOOTER (shared) ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 44px 0 20px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(196, 98, 45, 0.15), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.footer__cta {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(248, 245, 240, 0.08);
}
.footer__cta h2 {
  color: var(--cream);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.footer__cta h2 em {
  color: var(--orange-bright);
  font-style: italic;
  font-weight: 300;
}
.footer__cta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(248, 245, 240, 0.08);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__brand p {
  color: rgba(248, 245, 240, 0.55);
  font-size: 0.94rem;
  max-width: 480px;
  line-height: 1.55;
  margin: 0 auto;
}
.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 18px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 720px;
  text-align: center;
  justify-items: center;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__col h3 {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  opacity: 0.75;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  color: rgba(248, 245, 240, 0.78);
  font-size: 0.94rem;
  transition: color var(--t-fast);
}
.footer__col a:hover {
  color: var(--orange-bright);
}
.footer__bottom {
  position: relative;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(248, 245, 240, 0.5);
}
.footer__sub { color: var(--orange-bright); display: block; margin-top: 4px; }
.footer__sub a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(232, 120, 58, 0.35); transition: border-color var(--t-fast), color var(--t-fast); }
.footer__sub a:hover { color: var(--cream); border-bottom-color: var(--cream); }
.footer__credit { margin: 0; font-size: 0.78rem; color: rgba(248, 245, 240, 0.38); }
.footer__credit a { color: rgba(248, 245, 240, 0.6); text-decoration: none; transition: color var(--t-fast); }
.footer__credit a:hover { color: var(--cream); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  color: rgba(248, 245, 240, 0.5);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .footer { padding: 32px 0 20px; }
  .footer__cta { margin-bottom: 28px; padding-bottom: 28px; }
  .footer__top { gap: 28px; }
  .footer__cols { gap: 32px; }
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer__col a { font-size: 0.84rem; padding: 4px 0; }
  .footer__col h3 { font-size: 0.7rem; margin-bottom: 10px; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Staggered word reveal for headlines */
.reveal-words {
  display: inline-block;
}
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1000ms var(--ease-out);
}
.reveal-words.is-in .reveal-word > span {
  transform: translateY(0);
}

/* Char/letter reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal-up.is-in {
  opacity: 1;
  transform: none;
}

/* Scale-in for cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal-scale.is-in {
  opacity: 1;
  transform: none;
}

/* Line/divider grow */
.reveal-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1200ms var(--ease-out);
}
.reveal-line.is-in {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-up, .reveal-scale { opacity: 1; transform: none; }
  .reveal-line { transform: scaleX(1); }
  .reveal-word > span { transform: none; }
}

/* ---------- CUSTOM CURSOR DOT ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out), height 300ms var(--ease-out), background 300ms var(--ease-out);
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
}
.cursor-dot.is-hover {
  width: 48px;
  height: 48px;
  background: var(--cream);
}

/* ---------- SECTION DIVIDERS ---------- */
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* =========================================================
   MOBILE UX PASS
   Tighter density on phones so content scans, not walls.
   ========================================================= */

@media (max-width: 720px) {
  /* Tighter section padding sitewide */
  .stats { padding: 32px 0 !important; }
  .problem { padding: 40px 0 !important; }
  .framework-preview { padding: 40px 0 !important; }
  .feature { padding: 40px 0 !important; }
  .founder { padding: 40px 0 !important; }
  .work-preview { padding: 40px 0 !important; }
  .journal-preview { padding: 40px 0 !important; }
  .beyond { padding: 40px 0 !important; }
  .testimonial { padding: 32px 0 !important; }
  .page-hero { padding: 76px 0 24px !important; }
  .framework-hero { padding: 76px 0 20px !important; }
  .work-hero { padding: 76px 0 20px !important; }
  .contact-hero { padding: 76px 0 20px !important; }
  .journal-hero { padding: 76px 0 20px !important; }
  .portrait { padding: 24px 0 32px !important; }
  .story { padding: 24px 0 40px !important; }
  .identity { padding: 44px 0 !important; }
  .creds-wall { padding: 40px 0 !important; }
  .pillar-deep { padding: 32px 0 !important; }
  .work-tiers { padding: 20px 0 32px !important; }
  .comparison { padding: 32px 0 !important; }
  .faq { padding: 36px 0 !important; }
  .contact-form-section { padding: 24px 0 40px !important; }

  /* Hero pain copy on home — tighten the wall */
  .hero__pain {
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 24px 0 28px;
  }
  .hero__pain p { margin: 0 0 14px; }
  .hero__pain-close {
    font-size: 1.05rem;
    margin-top: 18px !important;
  }

  /* Section h2s sized for mobile */
  .problem__title,
  .framework-preview__title,
  .feature h2,
  .founder__copy h2,
  .work-preview h2,
  .journal-preview h2,
  .identity h2,
  .creds-wall__head h2,
  .faq__head h2,
  .comparison__head h2,
  .footer__cta h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.1;
  }

  /* Framework page — pillar sub-points scannable */
  .pillar-deep__num { font-size: 2.4rem !important; margin-bottom: 12px; }
  .pillar-deep__visual { width: 120px !important; height: 120px !important; margin-bottom: 12px; }
  .pillar-deep__right h2 { font-size: 1.7rem !important; margin-bottom: 8px; }
  .pillar-deep__sub { font-size: 0.92rem; margin-bottom: 14px; }
  .pillar-deep__right > p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 12px; }
  .pillar-deep__points { margin-top: 18px; }
  .pillar-deep__point {
    padding: 14px 0;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .pillar-deep__point h3 { font-size: 1rem; margin: 0 0 4px; }
  .pillar-deep__point p { font-size: 0.92rem; line-height: 1.5; }
  .framework-hero__sub p { font-size: 0.96rem; line-height: 1.55; }

  /* Work page — denser tier cards */
  .work-tier-large { gap: 12px !important; padding: 22px 0 !important; }
  .work-tier-large--featured { padding: 24px 18px !important; }
  .work-tier-large__main h2 { font-size: 1.6rem !important; margin-bottom: 8px; }
  .work-tier-large__main > p { font-size: 0.94rem; line-height: 1.55; margin-bottom: 14px; }
  .work-tier-large__features { margin: 0 0 16px; }
  .work-tier-large__features li {
    padding: 8px 0;
    font-size: 0.86rem;
    grid-template-columns: 14px 1fr;
    gap: 8px;
  }
  .work-tier-large__invest {
    font-size: 0.9rem;
    padding: 10px 12px;
    margin: 12px 0 16px;
  }
  .work-tier-large__sidebar { display: flex; flex-direction: row; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .work-tier-large__num { font-size: 1.8rem !important; margin-bottom: 0 !important; }
  .work-tier-large__price { font-size: 1.4rem !important; }
  .work-tier-large__price-note { font-size: 0.78rem !important; }

  /* Comparison table — too cramped on phones; hide since info is in the cards */
  .comparison { display: none; }

  /* About story — tighter chapter spacing */
  .story__details { padding: 14px 0 !important; }
  .story__chapter-num { font-size: 0.78rem !important; }
  .story__chapter-title { font-size: 1.05rem !important; }
  .story__body p { font-size: 0.95rem !important; line-height: 1.6 !important; margin-bottom: 12px !important; }

  /* About identity / confidence case — tighter */
  .identity h2 { margin-bottom: 18px; }
  .identity__body p { font-size: 0.94rem; line-height: 1.6; margin-bottom: 14px; }
  .identity__close { font-size: 1rem !important; margin-top: 18px !important; padding-top: 12px; }

  /* Page hero ledes/titles smaller */
  .page-hero__title { font-size: clamp(1.7rem, 7vw, 2.4rem) !important; }
  .page-hero__lede,
  .contact-hero__lede { font-size: 0.96rem !important; line-height: 1.55 !important; }

  /* Footer — keep 3-col grid centered, tighter */
  .footer__cols { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  .footer__col h3 { font-size: 0.68rem !important; margin-bottom: 10px !important; letter-spacing: 0.1em !important; }
  .footer__col a { font-size: 0.82rem !important; padding: 4px 0 !important; }
  .footer__cta h2 { margin-bottom: 14px; }
  .footer__cta-actions { flex-direction: column; align-items: stretch; }
  .footer__cta-actions .btn { width: 100%; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: center !important; text-align: center; }

  /* Beyond-education waitlist — tighter */
  .beyond__card { padding: 28px !important; }
  .beyond__copy h2 { font-size: 1.5rem !important; margin-bottom: 12px; }
  .beyond__copy p { font-size: 0.94rem; line-height: 1.55; }

  /* FAQ accordion — smaller padding */
  .faq__list details { padding: 14px 0; }
  .faq__list summary { font-size: 1rem; }
  .faq__list p { font-size: 0.94rem; line-height: 1.55; }

  /* Field Guide TOC — already responsive, just tighten */
  .fg-toc__section { font-size: 0.92rem; }
  .fg-toc__tool { font-size: 0.76rem; }

  /* Ticker — faster, smaller text */
  .ticker__track span { font-size: 0.94rem !important; }

  /* Stats — single column on tightest mobile */
  .stats__grid { gap: 16px !important; }
  .stats__num.big-num { font-size: clamp(2rem, 9vw, 2.6rem) !important; }
  .stats__label { font-size: 0.84rem !important; }

  /* Header — tighter */
  .header__inner { padding: 12px 16px !important; }
  .header__actions .btn { font-size: 0.82rem; padding: 10px 14px; }

  /* Contact info column — tighter */
  .contact-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  .contact-info__item { padding: 12px 0 !important; }
  .contact-info__label { font-size: 0.74rem !important; }
  .contact-info__value { font-size: 0.96rem !important; }
}

/* Even tighter on phones <480px */
@media (max-width: 480px) {
  .hero__pain { font-size: 0.9rem; margin: 20px 0 24px; }
  .hero__pain-close { font-size: 1rem; }
  .hero__title { font-size: clamp(1.4rem, 7vw, 2rem) !important; }
  .work-tier-large__sidebar { gap: 8px; }
  .pillar-deep__point { grid-template-columns: 32px 1fr; gap: 10px; }
  .beyond__card { padding: 22px !important; border-radius: 16px; }
  .identity h2 { font-size: 1.5rem !important; }
}

/* Sections hidden on mobile to streamline the funnel */
@media (max-width: 720px) {
  .ticker,
  .creds,
  .beyond,
  .journal-preview {
    display: none !important;
  }
}

/* Mobile centering pass: titles, ledes, section heads centered on phones */
@media (max-width: 720px) {
  /* Page heroes — center all the lead content */
  .page-hero,
  .framework-hero,
  .work-hero,
  .contact-hero,
  .journal-hero { text-align: center; }
  .page-hero__inner,
  .framework-hero__inner,
  .work-hero .container,
  .contact-hero .container,
  .journal-hero .container { text-align: center; }
  .page-hero__lede,
  .contact-hero__lede,
  .framework-hero__sub,
  .framework-hero__sub p { text-align: center; margin-left: auto; margin-right: auto; }

  /* Eyebrow + section h2 centered on common section heads */
  .story__head,
  .creds-wall__head,
  .faq__head,
  .work-preview__head,
  .journal-preview__head,
  .framework-preview__head,
  .comparison__head { text-align: center; }
  .journal-preview__head { flex-direction: column; gap: 12px; align-items: center; }

  /* About — center the portrait pull quote and identity block */
  .portrait__layout { text-align: center; }
  .portrait__pull { text-align: center; }
  .portrait__photo { margin-left: auto; margin-right: auto; }
  .identity__inner { text-align: center; }
  .identity .eyebrow { display: inline-block; }
  .identity__body p { text-align: center; margin-left: auto; margin-right: auto; }
  .identity__close { border-top: none; }

  /* Framework — center pillar intro text (keep sub-point list left-aligned for scan) */
  .pillar-deep__inner { text-align: center; }
  .pillar-deep__visual { margin-left: auto; margin-right: auto; }
  .pillar-deep__right h2,
  .pillar-deep__sub,
  .pillar-deep__right > p { text-align: center; }
  .pillar-deep__points { text-align: left; }

  /* Work — center tier headings and intro paragraph; features stay left */
  .work-tier-large__main h2,
  .work-tier-large__main > p,
  .work-tier-large__invest { text-align: center; }
  .work-tier-large__cta { justify-content: center; }
  .work-tier-large__sidebar { justify-content: center; }

  /* Contact — center info column items, form heading */
  .contact-info { text-align: center; }
  .contact-info__item { display: flex; flex-direction: column; align-items: center; }
  .contact-form h2 { text-align: center; }
  .contact-form__note { text-align: center; }

  /* Journal — center featured post + filter rail */
  .featured-post { text-align: center; }
  .featured-post__copy { text-align: center; }
  .featured-post__meta { justify-content: center; }
  .journal-filters { justify-content: center; }

  /* CTA blocks inside section footers — center buttons */
  .footer__cta-actions,
  .hero__ctas,
  .feature__cta { justify-content: center; }

  /* Story chapter summary (about) — keep the chapter num + title row visually centered for the eye */
  .story__head { text-align: center; }
}

picture { display: contents; }

/* Bulleted lists typed in the copy editor: a line starting with "- ".
   Spans rather than <ul> so they stay valid inside a <p> or a heading. */
.cms-bullets { display: block; margin: 12px 0 0; text-align: left; }
.cms-bullet {
  display: block;
  position: relative;
  padding-left: 1.25em;
  margin-top: 8px;
}
.cms-bullet:first-child { margin-top: 0; }
.cms-bullet::before {
  content: "\2022";
  position: absolute;
  left: 0.15em;
  top: 0;
  color: var(--orange);
  font-weight: 600;
}
