:root {
  --ink: #171817;
  --muted: #656866;
  --line: #d9ddda;
  --paper: #ffffff;
  --mist: #f3f5f3;
  --blue: #175ee6;
  --blue-dark: #0d48b7;
  --lime: #dff2a6;
  --coral: #ff795f;
  --page: min(1240px, calc(100% - 32px));
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
main [id] { scroll-margin-top: 92px; }
body, button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
::selection { color: white; background: var(--blue); }
h1, h2, h3, p, figure, blockquote { margin: 0; }
p { line-height: 1.6; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 66px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid rgba(23, 24, 23, .08);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}
.brand-mark { display: inline-flex; width: 36px; height: 36px; flex: 0 0 36px; }
.brand-mark img { width: 36px; height: 36px; }
.desktop-nav { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.mobile-menu { position: relative; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--line);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
.mobile-menu[open] .menu-icon { background: transparent; }
.mobile-menu[open] .menu-icon::before { top: 0; transform: rotate(45deg); }
.mobile-menu[open] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-menu__panel {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  padding: 18px 16px 28px;
  display: grid;
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
}
.mobile-menu__panel a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 18px; }
.mobile-menu__panel a[aria-current="page"] { color: var(--blue); }

.button {
  min-height: 46px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.button--small { min-height: 40px; padding: 9px 13px; }
.button--secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--secondary:hover { background: var(--ink); color: white; }
.button--light { background: white; color: var(--ink); }
.button--light:hover { background: var(--lime); color: var(--ink); }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: #343634; }
.arrow::before { content: "\2192"; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding: 7px 0; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }

.section { width: var(--page); margin: 0 auto; padding: 88px 0; }
.section--bordered { border-top: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading h2, .band-heading h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}
.section-heading h2:last-child { margin-bottom: 0; }
.section-heading > p { max-width: 650px; color: var(--muted); font-size: 18px; }

.visual-hero {
  width: var(--page);
  margin: 0 auto;
  padding: 68px 0 54px;
}
.visual-hero__content { max-width: 900px; margin: 0 auto; text-align: center; }
.visual-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 13vw, 64px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: 0;
}
.visual-hero h1 span { color: var(--blue); }
.visual-hero__copy { max-width: 680px; margin: 0 auto; color: #4f5250; font-size: 18px; }
.visual-hero .cta-row { justify-content: center; }
.cta-row { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.visual-hero__image { position: relative; margin-top: 56px; overflow: hidden; border-radius: 8px; }
.visual-hero__image picture { display: block; aspect-ratio: 3 / 2; }
.visual-hero__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.hero-conversation {
  position: absolute;
  left: 6%;
  top: 32%;
  width: min(48%, 560px);
  display: grid;
  gap: 16px;
  justify-items: start;
  pointer-events: none;
}
.hero-message {
  position: relative;
  padding: 17px 24px;
  border-radius: 22px;
  color: white;
  font-size: 28px;
  line-height: 1.2;
  animation: hero-message-in .45s cubic-bezier(.2, .8, .2, 1) .35s both;
}
.hero-message::after {
  position: absolute;
  bottom: -5px;
  width: 14px;
  height: 14px;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}
.hero-message--question { background: var(--blue); transform-origin: left bottom; }
.hero-message--question::after { left: 20px; }
.hero-message--reply {
  margin-left: 38%;
  background: var(--ink);
  font-size: 24px;
  transform-origin: right bottom;
  animation-delay: .95s;
}
.hero-message--reply::after { right: 20px; }

@keyframes hero-message-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.service-grid { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.service-card { min-height: 290px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; background: white; }
.service-card:nth-child(1) { background: #e7efff; }
.service-card:nth-child(2) { background: var(--lime); }
.service-card:nth-child(3) { background: #f5ebe7; }
.service-card h3 { margin: 8px 0 16px; font-size: 29px; line-height: 1.1; font-weight: 500; }
.service-card p { margin-bottom: 28px; color: #555956; font-size: 15px; }
.service-card .text-link { margin-top: auto; }

.offer-band { background: var(--blue); color: white; }
.offer-band__inner { width: var(--page); margin: 0 auto; padding: 64px 0; display: grid; gap: 36px; }
.offer-band h2 { max-width: 760px; font-size: clamp(40px, 5vw, 64px); line-height: 1; font-weight: 500; }
.offer-band__lead { max-width: 660px; color: rgba(255,255,255,.82); font-size: 18px; }
.offer-band__summary { display: grid; gap: 16px; justify-items: start; }
.offer-band__summary p { color: white; font-size: 15px; }

.split-section { display: grid; gap: 44px; }
.split-section__copy h2 { margin-bottom: 24px; font-size: clamp(38px, 5vw, 64px); line-height: 1.03; font-weight: 500; }
.split-section__copy > p { margin-bottom: 24px; color: var(--muted); font-size: 18px; }
.plain-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-list li { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 17px; }

.dark-band { background: var(--ink); color: white; }
.dark-band__inner { width: var(--page); margin: 0 auto; padding: 88px 0; }
.dark-band p { color: #bfc3c0; }
.dark-band .plain-list { border-color: #444744; }
.dark-band .plain-list li { border-color: #444744; }
.dark-band__inner.compact-band { padding-top: 64px; padding-bottom: 64px; display: grid; gap: 26px; }
.compact-band h2 { font-size: clamp(38px, 5vw, 58px); line-height: 1.02; font-weight: 500; }
.compact-band p { margin-bottom: 18px; font-size: 17px; }

.process-grid { display: grid; border-top: 1px solid var(--line); }
.process-grid article { min-height: 230px; padding: 26px 0 28px; border-bottom: 1px solid var(--line); }
.process-grid span { color: var(--blue); font-size: 12px; font-weight: 700; }
.process-grid h3 { margin: 40px 0 14px; font-size: 25px; font-weight: 500; }
.process-grid p { margin: 0; color: var(--muted); font-size: 15px; }

.philosophy { background: var(--lime); }
.philosophy__inner { width: var(--page); margin: 0 auto; padding: 88px 0; }
.philosophy h2 { max-width: 900px; margin-bottom: 28px; font-size: clamp(42px, 6vw, 76px); line-height: .98; font-weight: 500; }
.philosophy p { max-width: 710px; font-size: 18px; }
.philosophy-points { margin-top: 42px; display: grid; gap: 1px; background: rgba(23,24,23,.2); border: 1px solid rgba(23,24,23,.2); }
.philosophy-points div { padding: 22px; background: var(--lime); }
.philosophy-points strong { display: block; margin-bottom: 8px; }
.philosophy-points p { margin: 0; font-size: 14px; }

.reviews-grid { display: grid; gap: 18px; }
.review-card { padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: white; }
.review-card blockquote { margin-bottom: 28px; font-size: 18px; line-height: 1.5; }
.review-card footer { display: flex; gap: 13px; align-items: center; padding: 0; }
.review-card picture { display: block; flex: 0 0 48px; }
.review-card img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.review-card cite { display: block; font-style: normal; font-weight: 700; }
.review-card small { color: var(--muted); }

.founder { display: grid; gap: 36px; align-items: center; }
.founder__picture { width: 100%; max-width: 500px; }
.founder__image { width: 100%; max-width: 500px; aspect-ratio: 1; object-fit: cover; }
.founder h2 { margin-bottom: 22px; font-size: clamp(42px, 5vw, 66px); line-height: 1.02; font-weight: 500; }
.founder div > p { margin-bottom: 22px; color: var(--muted); font-size: 18px; }

.lead-magnet { background: var(--mist); }
.lead-magnet__inner { width: var(--page); margin: 0 auto; padding: 72px 0; display: grid; gap: 38px; }
.lead-magnet h2 { margin-bottom: 20px; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; font-weight: 500; }
.lead-magnet p { color: var(--muted); }
.lead-magnet__inner > div > p { margin-top: 22px; }
.lead-form { display: grid; gap: 12px; align-content: start; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; }
.field input { min-height: 50px; width: 100%; padding: 12px; border: 1px solid #b9beba; border-radius: 2px; background: white; color: var(--ink); }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }

.final-cta { margin: 12px; padding: 76px 0; background: var(--coral); }
.final-cta__inner { width: min(1240px, calc(100% - 44px)); margin: 0 auto; }
.final-cta h2 { max-width: 900px; margin-bottom: 24px; font-size: clamp(42px, 6vw, 78px); line-height: .98; font-weight: 500; }
.final-cta p { max-width: 640px; font-size: 18px; }

.page-hero { width: var(--page); margin: 0 auto; padding: 76px 0 54px; }
.page-hero h1 { max-width: 1020px; margin-bottom: 28px; font-size: clamp(48px, 7vw, 92px); line-height: .96; font-weight: 500; }
.page-hero > p { max-width: 690px; color: var(--muted); font-size: 19px; }
.media-frame { width: var(--page); margin: 0 auto; overflow: hidden; border-radius: 8px; background: var(--mist); }
.media-frame picture { display: block; }
.media-frame img { width: 100%; height: auto; object-fit: contain; }
.training-image { aspect-ratio: auto; background: #151b1e; }

.training-live { background: #151b1e; }
.training-live picture { aspect-ratio: 1672 / 941; }
.live-transcript {
  position: absolute;
  left: 69%;
  top: 2.1%;
  width: 29.7%;
  height: 95.5%;
  padding: 24px 24px 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 8px;
  background: #f4f4f4;
  color: var(--ink);
}
.live-transcript__title { font-size: 22px; font-weight: 700; }
.live-transcript__window {
  min-height: 0;
  margin: 24px 0 16px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, black 5%, black 92%, transparent 100%);
}
.live-transcript__track { --transcript-shift: -66%; padding: 8px 4px 90% 0; animation: transcript-scroll 68s linear infinite; }
.transcript-entry { margin-bottom: 25px; }
.transcript-entry > p:first-child { margin-bottom: 10px; display: flex; gap: 8px; align-items: baseline; font-size: 11px; line-height: 1.3; }
.transcript-entry time { color: var(--muted); }
.transcript-entry > p:last-child { font-size: 14px; line-height: 1.45; }
.live-transcript__search {
  min-height: 40px;
  padding: 10px 12px 10px 38px;
  display: flex;
  align-items: center;
  border: 1px solid #cfd3d0;
  border-radius: 4px;
  color: var(--muted);
  background: white;
  font-size: 12px;
}
.live-transcript__search::before { margin-left: -24px; margin-right: 10px; content: "\2315"; font-size: 18px; }
.training-live:hover .live-transcript__track,
.training-live:focus-within .live-transcript__track { animation-play-state: paused; }

@keyframes transcript-scroll {
  0%, 6% { transform: translateY(0); }
  94%, 100% { transform: translateY(var(--transcript-shift)); }
}

.service-rows { border-top: 1px solid var(--line); }
.service-rows article { padding: 28px 0; display: grid; gap: 12px; border-bottom: 1px solid var(--line); scroll-margin-top: 92px; }
.service-rows h3 { margin: 0; font-size: 25px; line-height: 1.15; font-weight: 500; }
.service-rows p { max-width: 560px; margin: 0; color: var(--muted); font-size: 15px; }
.dark-band .service-rows { border-color: #444744; }
.dark-band .service-rows article { border-color: #444744; }
.dark-band .service-rows p { color: #bfc3c0; }
.two-up { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.two-up article { min-height: 320px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; background: white; }
.two-up article:first-child { background: #e7efff; }
.two-up article:last-child { background: #f5ebe7; }
.two-up img { width: 100%; height: auto; }
.two-up h3 { margin: 0 0 17px; font-size: 31px; font-weight: 500; }
.two-up img + h3 { margin-top: 28px; }
.two-up p { margin-bottom: 24px; color: var(--muted); }
.two-up .text-link { margin-top: auto; }

.audience-grid { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.audience-grid article { padding: 24px; background: white; }
.audience-grid h3 { margin-bottom: 10px; font-size: 20px; font-weight: 500; }
.audience-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 46px 24px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 22px; color: var(--blue); font-size: 24px; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { max-width: 760px; padding: 0 0 24px; color: var(--muted); }

.plan-pair { display: grid; gap: 48px; }
.plan-pair h2 { margin-bottom: 22px; font-size: clamp(34px, 4vw, 50px); line-height: 1.06; font-weight: 500; }

.action-plan-price {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: baseline;
}
.action-plan-price strong { color: var(--blue); font-size: 56px; line-height: 1; font-weight: 500; }
.action-plan-price span { color: var(--muted); font-size: 15px; }
.action-plan-note { margin-top: 7px; color: var(--muted); font-size: 14px; }
.action-plan-reassurance { margin-top: 16px; color: var(--muted); font-size: 13px; }
.action-plan-deliverables article { min-height: 190px; }
.questionnaire-band h2 { max-width: 640px; margin-bottom: 24px; font-size: clamp(42px, 6vw, 72px); line-height: 1; font-weight: 500; }
.questionnaire-layout { display: grid; gap: 48px; }
.questionnaire-layout > div > p { max-width: 640px; font-size: 18px; }
.sample-plan { display: grid; border-top: 1px solid var(--line); }
.sample-plan > div { min-height: 150px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.sample-plan strong { display: block; margin-bottom: 14px; font-size: 14px; }
.sample-plan p { max-width: 500px; margin: 0; color: var(--muted); font-size: 16px; }
.scope-pair h2, .fit-pair h2 { max-width: 520px; }
.action-plan-close .action-plan-reassurance { max-width: 720px; color: rgba(23,24,23,.78); }

.contact-options { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.contact-option { padding: 30px; background: white; }
.contact-option h2 { margin-bottom: 14px; font-size: 30px; font-weight: 500; }
.contact-option p { color: var(--muted); }
.contact-option > p:not(.config-note) { margin-bottom: 24px; }
.config-note { margin-top: 14px; color: var(--muted); font-size: 12px; }

.work-hero {
  width: var(--page);
  margin: 0 auto;
  padding: 82px 0 90px;
}
.work-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.work-hero h1 {
  margin-bottom: 26px;
  font-size: 58px;
  line-height: .98;
  font-weight: 500;
  letter-spacing: 0;
}
.work-hero p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 19px; }
.work-list { border-top: 1px solid var(--line); }
.work-project { padding: 72px 0; border-bottom: 1px solid var(--line); }
.work-project--blue { background: #e7efff; }
.work-project--green { background: #eef6da; }
.work-project--dark { color: white; background: var(--ink); }
.work-project__inner { width: var(--page); margin: 0 auto; }
.work-project__header { display: grid; gap: 36px; align-items: start; }
.work-project__media { margin-top: 48px; overflow: hidden; border-radius: 8px; }
.work-project__media picture { display: block; }
.work-project__media img { width: 100%; height: auto; }
.work-project__copy { min-width: 0; }
.work-project__copy h2 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}
.work-project__copy > p { max-width: 620px; color: var(--muted); }
.work-project__copy .work-project__lead { margin-bottom: 14px; color: var(--ink); font-size: 22px; line-height: 1.35; }
.work-project--dark .work-project__copy > p { color: rgba(255, 255, 255, .68); }
.work-project--dark .work-project__copy .work-project__lead { color: white; }
.work-project__copy h3 { margin: 30px 0 14px; font-size: 16px; font-weight: 700; }
.work-project__tasks { max-width: 620px; margin: 0; padding-left: 20px; }
.work-project__tasks li { margin-bottom: 10px; padding-left: 5px; line-height: 1.55; }
.work-project__facts { margin: 0; border-top: 1px solid rgba(23, 24, 23, .2); }
.work-project__facts div { padding: 15px 0; display: grid; grid-template-columns: 90px 1fr; gap: 16px; border-bottom: 1px solid rgba(23, 24, 23, .2); }
.work-project__facts dt { font-size: 12px; font-weight: 700; }
.work-project__facts dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.work-project--dark .work-project__facts { border-color: rgba(255, 255, 255, .22); }
.work-project--dark .work-project__facts div { border-color: rgba(255, 255, 255, .22); }
.work-project--dark .work-project__facts dd { color: rgba(255, 255, 255, .68); }

.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--line); }
.site-footer__inner { width: var(--page); margin: 0 auto; display: grid; gap: 34px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; font-size: 14px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 12px; }
.site-footer__location { display: grid; gap: 6px; font-size: 14px; }
.home-page .section { padding-top: 76px; padding-bottom: 76px; }

@media (min-width: 720px) {
  :root { --page: min(1240px, calc(100% - 64px)); }
  .split-section, .lead-magnet__inner { grid-template-columns: 1.2fr .8fr; }
  .service-grid, .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid--two { grid-template-columns: repeat(2, 1fr); }
  .service-grid--two .service-card:nth-child(2) { background: #f5ebe7; }
  .offer-band__inner { grid-template-columns: 1.25fr .75fr; align-items: end; }
  .compact-band { grid-template-columns: 1.1fr .9fr; align-items: end; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid--four { grid-template-columns: repeat(2, 1fr); }
  .process-grid article { padding-right: 34px; padding-left: 34px; border-right: 1px solid var(--line); }
  .process-grid article:first-child { padding-left: 0; }
  .process-grid article:last-child { padding-right: 0; border-right: 0; }
  .process-grid--four article:nth-child(2n) { padding-right: 0; border-right: 0; }
  .process-grid--four article:nth-child(2n + 1) { padding-left: 0; }
  .philosophy-points { grid-template-columns: repeat(4, 1fr); }
  .founder { grid-template-columns: minmax(280px, 480px) minmax(0, 620px); gap: 70px; }
  .two-up, .contact-options { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .plan-pair { grid-template-columns: 1fr 1fr; }
  .questionnaire-layout { grid-template-columns: 1fr 1fr; align-items: start; }
  .sample-plan { grid-template-columns: 1fr 1fr; }
  .sample-plan > div { padding-right: 34px; }
  .sample-plan > div:nth-child(even) { padding-right: 0; padding-left: 34px; border-left: 1px solid var(--line); }
  .service-rows article { grid-template-columns: minmax(220px, .8fr) minmax(300px, 1fr); gap: 48px; }
  .site-footer__inner { grid-template-columns: .6fr 1fr .8fr; align-items: end; }
  .work-hero { padding-top: 96px; padding-bottom: 88px; }
  .work-hero h1 { font-size: 82px; }
  .work-project { padding: 96px 0; }
  .work-project__header { grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); gap: 72px; }
  .work-project__copy h2 { font-size: 56px; }
  .work-project__media { margin-top: 64px; }
}

@media (min-width: 980px) {
  .site-header { min-height: 72px; padding: 0 32px; }
  .desktop-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; }
  .desktop-nav a:not(.button) { padding: 12px 0; }
  .desktop-nav a[aria-current="page"] { color: var(--blue); }
  .mobile-menu { display: none; }
  .header-actions { display: none; }
  .visual-hero { padding: 86px 0 64px; }
  .visual-hero h1 { font-size: clamp(64px, 6vw, 88px); }
  .process-grid--four { grid-template-columns: repeat(4, 1fr); }
  .process-grid--four article:nth-child(2) { padding-right: 34px; border-right: 1px solid var(--line); }
  .process-grid--four article:nth-child(3) { padding-left: 34px; }
  .section, .dark-band__inner, .philosophy__inner { padding-top: 118px; padding-bottom: 118px; }
  .work-project { padding: 118px 0; }
}

@media (max-width: 899px) {
  .training-live picture {
    aspect-ratio: 1128 / 941;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
  }
  .training-live picture img {
    width: 148.2%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    border-radius: 8px 8px 0 0;
  }
  .live-transcript {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 300px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
  }
  .live-transcript__title { font-size: 18px; }
  .live-transcript__window { margin: 16px 0 12px; }
  .live-transcript__track { --transcript-shift: -89%; padding-bottom: 120%; }
  .transcript-entry { margin-bottom: 20px; }
  .transcript-entry > p:last-child { font-size: 13px; }
}

@media (max-width: 719px) {
  .hero-conversation { left: 5%; top: 28%; width: 64%; gap: 10px; }
  .hero-message { padding: 10px 14px; border-radius: 14px; font-size: 16px; }
  .hero-message--reply { margin-left: 30%; font-size: 15px; }
  .hero-message::after { bottom: -3px; width: 9px; height: 9px; }
  .hero-message--question::after { left: 14px; }
  .hero-message--reply::after { right: 14px; }
}

@media (max-width: 420px) {
  .button { width: 100%; }
  .header-actions .button { width: auto; }
  .cta-row { align-items: stretch; }
  .visual-hero h1 { font-size: 49px; }
  .hero-conversation { top: 25%; gap: 8px; }
  .hero-message { padding: 7px 10px; border-radius: 10px; font-size: 11px; }
  .hero-message--reply { margin-left: 26%; font-size: 10px; }
  .live-transcript { height: 280px; padding: 16px; }
  .live-transcript__title { font-size: 17px; }
  .transcript-entry > p:first-child { margin-bottom: 7px; font-size: 10px; }
  .transcript-entry > p:last-child { font-size: 12px; }
  .live-transcript__search { min-height: 36px; font-size: 11px; }
  .final-cta { margin: 6px; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hero-message { animation: none; }
  .live-transcript__window { overflow-y: auto; mask-image: none; }
  .live-transcript__track { animation: none; }
}
