:root {
  --navy: #0b2145;
  --blue: #0b57c8;
  --blue-dark: #0646a5;
  --pale: #eef6fd;
  --line: #c8d7e8;
  --ink: #18243a;
  --muted: #56657a;
  --white: #ffffff;
  --max: 1180px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
}
a, h1, h2, h3, p, label, summary { overflow-wrap: anywhere; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.hero-copy, .hero-media, .section-inner, .download-copy, .download-action,
.framework-list article > div, .pathway-grid article, .site-footer > * {
  min-width: 0;
}
.author-copy, .author-portrait, .author-story-grid > *, .firm-bridge-inner > * { min-width: 0; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--navy);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }
.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 max(4vw, 1.25rem);
  border-bottom: 1px solid #dfe6ef;
  background: rgba(255,255,255,.98);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  color: var(--navy);
  font: 700 clamp(1.5rem, 2.6vw, 2.25rem)/1 var(--serif);
  text-decoration: none;
}
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { font-weight: 600; text-decoration: none; }
.primary-nav a:not(.button):hover { color: var(--blue); }
.menu-button { display: none; }
.button, .outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border: 2px solid var(--blue);
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button { background: var(--blue); color: white; }
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: .55rem 1rem; }
.outline-button { color: var(--blue); background: white; }
.outline-button:hover { color: white; background: var(--blue); }
.button:focus-visible, .outline-button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 3px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: 610px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(2rem, 6vw, 6rem);
}
h1, h2 {
  color: var(--navy);
  font-family: var(--serif);
  letter-spacing: -.025em;
}
h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  font-size: clamp(2.55rem, 4vw, 3.85rem);
  line-height: 1.1;
}
h2 { margin: 0 0 1.5rem; font-size: clamp(2rem, 3.3vw, 3.25rem); line-height: 1.2; }
h3 { color: var(--navy); line-height: 1.3; }
.hero-copy > p { max-width: 720px; font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin: 1rem 0 .75rem; }
.text-link { color: var(--blue); font-weight: 700; text-underline-offset: .25rem; }
.safety-note { color: var(--muted); font-size: .9rem !important; }
.hero-media { margin: 0; overflow: hidden; background: var(--pale); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section { padding: clamp(4.5rem, 7vw, 7rem) max(4vw, 1.25rem); }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.narrow { max-width: 980px; }
.review-topics h2 { text-align: center; }
.topic-list {
  counter-reset: review;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}
.topic-list li {
  counter-increment: review;
  position: relative;
  min-height: 76px;
  padding-left: 4.4rem;
  border-left: 1px solid var(--line);
}
.topic-list li::before {
  content: counter(review);
  position: absolute;
  left: -3.2rem;
  top: -.3rem;
  color: var(--blue);
  font: 400 2.75rem/1 var(--serif);
}
.topic-list h3 { margin: 0 0 .25rem; }
.topic-list p { margin: 0; color: var(--muted); }
.framework {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to right, #edf6fd 0, white 7%, white 93%, #edf6fd 100%);
}
.framework h2 { text-align: center; }
.framework-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--navy);
}
.framework-list article:last-child { border-bottom: 0; }
.framework-list article > span {
  color: var(--blue);
  border-right: 1px solid var(--navy);
  font: 400 4.7rem/1 var(--serif);
  text-align: center;
}
.framework-list h3 { margin: 0 0 .25rem; font-size: 1.45rem; }
.framework-list p { margin: 0; color: var(--muted); }
.download { background: var(--pale); }
.download-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.3);
}
.download-copy p { font-size: 1.05rem; }
.local-note {
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
  color: var(--muted);
  font-size: .92rem !important;
}
.download-action {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--line);
}
.download-action p { max-width: 36rem; margin: 0; color: var(--muted); }
.download-action .button { border: 0; }
.form-status { margin: 0; color: #155b2d; font-weight: 600; }
.pathway-grid { display: grid; grid-template-columns: 1fr 1fr; }
.pathway-grid article { padding: 0 clamp(1rem, 4vw, 4rem); }
.pathway-grid article:first-child { border-right: 1px solid var(--line); padding-left: 0; }
.pathway-grid article:last-child { padding-right: 0; }
.pathway-grid h2 { font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.faq { border-top: 1px solid var(--line); padding-top: 4rem; }
.faq h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  padding: 1.1rem 2.5rem 1.1rem 0;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}
details p { max-width: 900px; margin: 0 0 1.2rem; color: var(--muted); }
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 3rem;
  padding: 2.5rem max(4vw, 1.25rem);
  background: var(--navy);
  color: white;
  font-size: .9rem;
}
.site-footer p { margin: 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer a { text-underline-offset: .2rem; }
.footer-notice { grid-column: 1 / -1; color: #cbd7e9; max-width: 920px; }

.author-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 630px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.author-portrait {
  margin: 0;
  min-height: 630px;
  overflow: hidden;
  background: var(--navy);
}
.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.author-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6.5rem);
}
.author-copy h1 { margin-bottom: .75rem; }
.author-role {
  margin: 0 0 1.5rem;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.author-lead {
  max-width: 690px;
  margin: 0 0 1rem;
  color: var(--navy);
  font: 400 clamp(1.25rem, 2vw, 1.65rem)/1.55 var(--serif);
}
.author-copy > p:not(.author-role):not(.author-lead) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
}
.inline-link { color: var(--blue); font-weight: 700; text-underline-offset: .2rem; }
.author-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.author-story { background: var(--pale); }
.author-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}
.author-story h2 { max-width: 530px; }
.author-story-copy { font-size: 1.08rem; }
.author-story-copy p:first-child { margin-top: 0; }
.author-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0 1.5rem;
  border-left: 3px solid var(--blue);
  color: var(--navy);
  font: 400 1.25rem/1.6 var(--serif);
}
.firm-bridge { background: var(--navy); color: white; }
.firm-bridge-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
}
.firm-bridge h2 { color: white; margin-bottom: 1rem; }
.firm-bridge p { max-width: 780px; color: #d8e2f0; font-size: 1.05rem; }
.firm-bridge p a { color: white; font-weight: 700; text-underline-offset: .2rem; }
.firm-bridge .button { background: white; border-color: white; color: var(--navy); white-space: nowrap; }
.firm-bridge .button:hover { background: var(--pale); border-color: var(--pale); }
.author-note { margin-top: 1.25rem !important; font-size: .88rem !important; color: #bdcbe0 !important; }

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
    background: white;
    border: 1px solid var(--navy);
    padding: .45rem .75rem;
    color: var(--navy);
  }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 1.25rem;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { order: 1; padding: 4rem 1.5rem 3rem; }
  .hero-media { order: 2; min-height: 440px; }
  .topic-list { grid-template-columns: 1fr 1fr; }
  .download-inner { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pathway-grid article, .pathway-grid article:first-child, .pathway-grid article:last-child { padding: 0; border: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-notice { grid-column: auto; }
  .author-hero { grid-template-columns: 1fr; }
  .author-portrait { min-height: 500px; }
  .author-copy { padding: 4rem 1.5rem; }
  .author-story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .firm-bridge-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.35rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-media { min-height: 330px; }
  .section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .topic-list { grid-template-columns: 1fr; gap: 2rem; padding-left: 2rem; }
  .framework { background: white; }
  .framework-list article { grid-template-columns: 58px 1fr; gap: 1rem; }
  .framework-list article > span { font-size: 2.9rem; }
  .framework-list h3 { font-size: 1.1rem; }
  .download-action { min-height: 0; padding: 1.25rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .download-inner { padding: 1.25rem; }
  .site-footer nav { flex-direction: column; gap: .75rem; }
  .author-portrait { min-height: 390px; }
  .author-actions { align-items: stretch; flex-direction: column; }
  .author-actions .button, .author-actions .outline-button { width: 100%; }
  .firm-bridge .button { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
