@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3/SourceSans3-Regular.ttf.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3/SourceSans3-Semibold.ttf.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #005be8;
  --blue-dark: #0046b7;
  --sky: #00c4f9;
  --orange: #f63600;
  --paper: #fffefb;
  --cream: #f5f0e8;
  --mist: #eef5f7;
  --ink: #071426;
  --muted: #596471;
  --rule: #d8dce0;
  --blue-rule: rgba(0, 91, 232, 0.22);
  --font: "Source Sans 3", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --shell: 1100px;
  --page-gutter: clamp(1.25rem, 4.2vw, 3.125rem);
  --header-height: 68px;
  --banner-offset: 0px;
  --section-space: clamp(5rem, 10vw, 8.5rem);
  --ease-out: cubic-bezier(0.2, 0.82, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--banner-offset) + 2rem);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  font-size: 1.0625rem;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 19ch;
  margin-inline: auto;
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 1.01;
}

h2 {
  max-width: 17ch;
  font-size: clamp(2.35rem, 4.4vw, 3.65rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + var(--banner-offset) + 2rem);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.header-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), 87.5rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  padding-block: var(--section-space);
  border-top: 1px solid var(--rule);
}

.section-label,
.state-line,
.panel-title,
.availability-note,
.menu-row small,
.menu-feature small,
.resource-menu small,
.future-menu small {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 1rem;
  color: var(--blue-dark);
}

.state-line {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
}

.state-line::before {
  width: 1.1rem;
  height: 2px;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.split-heading > .section-label {
  padding-top: 0.55rem;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  color: var(--muted);
}

.two-column-copy p {
  margin: 0;
}

/* Header and desktop navigation */

.site-header {
  position: sticky;
  z-index: 100;
  top: var(--banner-offset);
  height: var(--header-height);
  border-bottom: 1px solid rgba(7, 20, 38, 0.1);
  background: rgba(255, 254, 251, 0.98);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, top 220ms var(--ease-out), transform 520ms var(--ease-out);
  will-change: transform;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.055);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1px));
}

.header-shell {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(9rem, 1fr) auto minmax(11.25rem, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-size: 1.33rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.wordmark strong {
  color: var(--blue);
  font-weight: 600;
}

.primary-nav {
  display: flex;
  gap: clamp(0.65rem, 1.25vw, 1.35rem);
  align-items: center;
  justify-content: center;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  min-height: 44px;
  padding: 0.35rem 0;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-trigger {
  gap: 0.55rem;
  cursor: pointer;
}

.nav-trigger::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 190ms var(--ease-out);
}

.nav-link {
  position: relative;
}

.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-trigger[aria-expanded="true"]::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-arrow {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms var(--ease-out);
}

.nav-trigger[aria-expanded="true"] .nav-arrow {
  transform: translateY(2px) rotate(225deg);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0.65rem 1rem;
  justify-self: end;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -1px 0 rgba(0, 0, 0, 0.32), 0 10px 24px rgba(7, 20, 38, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.28), 0 14px 28px rgba(7, 20, 38, 0.2);
  color: #fff;
}

.dropdown-panel {
  position: fixed;
  z-index: 95;
  top: var(--desktop-panel-top, calc(var(--header-height) - 22px));
  left: 50%;
  width: min(calc(100vw - (var(--page-gutter) * 2)), var(--shell));
  max-height: calc(100svh - var(--header-height) - 1rem);
  padding-top: 22px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transform-origin: top center;
  transition: opacity 180ms ease-in, transform 180ms ease-in;
  will-change: opacity, transform;
}

.dropdown-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 24px;
  content: "";
}

.dropdown-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.dropdown-panel.is-closing {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 180ms ease-in, transform 180ms ease-in;
}

.panel-surface {
  border: 1px solid #d9e4e8;
  border-radius: 17px;
  background: var(--mist);
  box-shadow: none;
}

.panel-surface--compact {
  padding: 0.6rem 0.75rem;
}

.offer-nav-heading {
  display: flex;
  min-height: 3rem;
  padding: 0.45rem 0.75rem 0.65rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.offer-nav-heading p,
.offer-nav-heading span {
  margin: 0;
}

.offer-nav-heading p {
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-nav-heading span {
  color: var(--muted);
  font-size: 0.8rem;
}

.panel-title {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.menu-list a {
  display: grid;
  min-height: 116px;
  padding: 0.75rem;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-right: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.menu-list a:last-child {
  border-right: 0;
}

.menu-list strong,
.menu-list__copy,
.menu-list__copy > span {
  display: block;
}

.menu-list strong {
  width: max-content;
  max-width: 100%;
  font-size: 1.04rem;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: text-decoration-color 180ms ease;
}

.menu-list__copy > span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  background: var(--paper);
}

.menu-list a:hover strong,
.menu-list a:focus-visible strong {
  text-decoration-color: var(--ink);
}

.guidance-menu {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.75fr);
  gap: 1.8rem;
  padding: 1.7rem;
}

.guidance-menu__list {
  border-top: 1px solid var(--rule);
}

.menu-row {
  display: grid;
  min-height: 96px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.menu-row:hover,
.menu-row:focus-visible {
  background: var(--paper);
}

.icon-tile {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--blue-rule);
  border-radius: 10px;
  background: var(--paper);
}

.menu-row small,
.menu-row strong,
.menu-row em {
  display: block;
}

.menu-row small,
.menu-feature small,
.resource-menu small,
.future-menu small {
  margin-bottom: 0.2rem;
  color: var(--blue-dark);
}

.menu-row strong {
  width: max-content;
  max-width: 100%;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: text-decoration-color 180ms ease;
}

.menu-row:hover strong,
.menu-row:focus-visible strong {
  text-decoration-color: var(--ink);
}

.menu-row em {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.4;
}

.menu-feature {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
  border-left: 3px solid var(--blue);
  background: var(--paper);
  text-decoration: none;
}

.menu-feature strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.menu-feature ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-explore {
  display: inline-flex;
  margin-top: 1.2rem;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.menu-explore i {
  font-style: normal;
}

.resource-menu {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(18rem, 0.58fr);
  gap: 2.2rem;
  padding: 1.65rem;
}

.resource-menu__index {
  align-self: stretch;
}

.resource-menu__index > a {
  display: grid;
  min-height: 94px;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0.65rem;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.resource-menu__index > a:last-child {
  border-bottom: 1px solid var(--rule);
}

.resource-menu__index > a:hover,
.resource-menu__index > a:focus-visible {
  background: var(--paper);
}

.resource-menu__index strong,
.resource-menu__index em,
.resource-menu__index small {
  display: block;
}

.resource-menu__index strong {
  width: max-content;
  max-width: 100%;
  font-size: 1.04rem;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
}

.resource-menu__index a:hover strong,
.resource-menu__index a:focus-visible strong {
  text-decoration-color: var(--ink);
}

.resource-menu__index em {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.35;
}

.resource-index-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--blue-rule);
  border-radius: 10px;
  background: var(--paper);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.resource-menu__feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-content: start;
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--paper);
}

.resource-menu__feature h2 {
  margin: 0.35rem 0 0.6rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.resource-menu__feature p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.42;
}

.packet-preview {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  padding: 1.05rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.packet-preview::after {
  position: absolute;
  right: -2.2rem;
  bottom: -2.5rem;
  width: 6.7rem;
  height: 6.7rem;
  border: 1px solid var(--sky);
  border-radius: 50%;
  content: "";
}

.packet-preview__rule {
  width: 2.4rem;
  height: 3px;
  margin-bottom: 0.75rem;
  background: var(--sky);
}

.packet-preview > span:not(.packet-preview__rule) {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.packet-preview strong {
  margin: auto 0;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.packet-preview i {
  display: block;
  width: 75%;
  height: 2px;
  margin-top: 0.38rem;
  background: rgba(255, 255, 255, 0.46);
}

.packet-preview i:nth-of-type(2) {
  width: 55%;
}

.packet-preview i:nth-of-type(3) {
  width: 68%;
}

.menu-button {
  display: inline-flex;
  min-height: 46px;
  margin-top: 0.6rem;
  padding: 0.7rem 1rem;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.availability-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.future-menu {
  padding: 1.7rem;
}

.future-menu__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 1.45rem;
}

.future-menu__line::before {
  position: absolute;
  top: 1.45rem;
  right: 9%;
  left: 9%;
  height: 1px;
  background: var(--blue);
  content: "";
}

.future-menu__line a {
  position: relative;
  min-height: 9.5rem;
  padding: 2rem 1rem 1rem;
  border-right: 1px solid var(--rule);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.future-menu__line a:last-child {
  border-right: 0;
}

.future-menu__line a::before {
  position: absolute;
  z-index: 2;
  top: -0.28rem;
  left: 1rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  background: var(--mist);
  content: "";
}

.future-menu__line a:hover,
.future-menu__line a:focus-visible {
  background: var(--paper);
}

.future-menu__line strong,
.future-menu__line span,
.future-menu__line small {
  display: block;
}

.future-menu__line strong {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
}

.future-menu__line a:hover strong,
.future-menu__line a:focus-visible strong {
  text-decoration-color: var(--ink);
}

.future-menu__line span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

/* One-goal live-training prompt */

.training-banner {
  position: fixed;
  z-index: 130;
  top: 0;
  right: 0;
  left: 0;
  background: var(--ink);
  color: #fff;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

html.training-banner-visible {
  --banner-offset: 52px;
}

html.training-banner-visible .training-banner {
  opacity: 1;
  transform: translateY(0);
}

.training-banner__inner {
  position: relative;
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell));
  min-height: 52px;
  margin-inline: auto;
  padding: 0.55rem 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
}

.training-banner__tag {
  flex: 0 0 auto;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.065em;
}

.training-banner__copy,
.training-banner__link {
  font-size: 0.9rem;
  line-height: 1.3;
}

.training-banner__link {
  flex: 0 0 auto;
  font-weight: 600;
  text-underline-offset: 0.25rem;
}

.training-banner__close {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}

.training-banner__close:hover,
.training-banner__close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.training-banner :focus-visible {
  outline-color: var(--sky);
}

.mobile-menu-button,
.mobile-drawer {
  display: none;
}

.no-js .primary-nav,
.no-js .mobile-menu-button,
.no-js .quote-toggle {
  display: none !important;
}

/* Recording-derived route entry: hero mask first, header bloom second. */

@keyframes header-center-bloom {
  0% {
    opacity: 0;
    transform: translateX(var(--header-intro-x, 0px)) scale(0.76);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes header-menu-center-bloom {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(var(--header-intro-x, 0px)) scale(0.76);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
  }
}

@keyframes hero-title-mask-resolve {
  0% {
    opacity: 0;
    transform: translateY(105%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-eyebrow-resolve {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-support-resolve {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes route-detail-resolve {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes button-sheen {
  0%, 65% {
    transform: translateX(-120%) skewX(-18deg);
  }

  82%, 100% {
    transform: translateX(480%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button::after,
  .header-cta::after,
  .mobile-menu-button::after,
  .scroll-cue::after {
    animation: button-sheen 7.8s var(--ease-out) infinite;
  }

  .button::after {
    animation-delay: -5.3s;
  }

  .header-cta::after {
    animation-delay: -2.6s;
  }

  .mobile-menu-button::after {
    animation-delay: -4.1s;
  }

  .scroll-cue::after {
    animation-delay: -6.4s;
  }

  .js[data-page-intro="ready"] .header-intro-target {
    animation: header-center-bloom 800ms 400ms cubic-bezier(0.33, 1, 0.68, 1) backwards;
    transform-origin: center;
  }

  .js[data-page-intro="ready"] .hero-title-intro-target .hero-title-line > span {
    animation: hero-title-mask-resolve 370ms cubic-bezier(0.33, 1, 0.68, 1) backwards;
  }

  .js[data-page-intro="ready"] .hero-eyebrow-intro-target {
    animation: hero-eyebrow-resolve 370ms cubic-bezier(0.33, 1, 0.68, 1) backwards;
  }

  .js[data-page-intro="ready"] .hero-support-intro-target {
    animation: hero-support-resolve 370ms cubic-bezier(0.33, 1, 0.68, 1) backwards;
  }

  .js[data-page-intro="ready"] .hero-cue-intro-target {
    animation: route-detail-resolve 300ms 400ms ease-out backwards;
  }

  .js[data-page-intro="ready"] .proof-rail-intro-target {
    animation: route-detail-resolve 100ms 300ms ease-out backwards;
  }
}

.noscript-nav {
  display: flex;
  padding: 0.75rem var(--page-gutter);
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: max(38rem, calc(100svh - var(--header-height) - 177px));
  place-items: center;
  overflow: clip;
  padding: clamp(5rem, 10vw, 8.5rem) var(--page-gutter);
  background: #071426;
  color: #fff;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(rgba(4, 16, 38, 0.42), rgba(4, 16, 38, 0.42)),
    linear-gradient(90deg, rgba(4, 16, 38, 0.82) 0%, rgba(4, 16, 38, 0.42) 57%, rgba(4, 16, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 16, 38, 0.3), transparent 45%);
  content: "";
  pointer-events: none;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__center {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 72rem);
  margin-inline: auto;
  justify-items: start;
  text-align: left;
}

.hero h1 {
  max-width: 15em;
  margin-inline: 0;
  font-size: clamp(3rem, 4.4vw, 3.85rem);
  line-height: 1.04;
}

.hero-intro {
  max-width: 38rem;
  margin: 0 0 1.2rem;
  color: var(--sky);
  text-shadow: 0 1px 18px rgba(4, 16, 38, 0.7);
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
  overflow: clip;
}

.hero-title-line > span {
  display: block;
  opacity: 1;
  transform: none;
}

.hero-offer {
  max-width: 43rem;
  margin: 1.55rem 0 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.58;
  text-shadow: 0 1px 18px rgba(4, 16, 38, 0.72);
}

.hero-note {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  margin-top: 1.8rem;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-start;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 14px;
  isolation: isolate;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta,
.mobile-menu-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::after,
.header-cta::after,
.mobile-menu-button::after,
.scroll-cue::after {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  z-index: 1;
  width: 42%;
  background: linear-gradient(102deg, rgba(0, 91, 232, 0) 0%, rgba(0, 91, 232, 0.1) 26%, rgba(255, 255, 255, 0.62) 50%, rgba(0, 91, 232, 0.14) 74%, rgba(0, 91, 232, 0) 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
}

.button--primary {
  border-color: #fff;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(7, 20, 38, 0.12), 0 12px 26px rgba(2, 10, 24, 0.22);
  color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: #fff;
  background: #edf7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), inset 0 -1px 0 rgba(7, 20, 38, 0.12), 0 16px 30px rgba(2, 10, 24, 0.27);
  color: var(--ink);
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(7, 20, 38, 0.1), 0 12px 26px rgba(2, 10, 24, 0.14);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: #fff;
  background: #e9f7ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), inset 0 -1px 0 rgba(7, 20, 38, 0.1), 0 16px 30px rgba(2, 10, 24, 0.18);
}

.button--ink {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -1px 0 rgba(0, 0, 0, 0.32), 0 12px 26px rgba(2, 10, 24, 0.2);
  color: #fff;
}

.button--ink:hover,
.button--ink:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.28), 0 16px 30px rgba(2, 10, 24, 0.26);
  color: #fff;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  gap: 0.6rem;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--sky);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
  text-decoration-thickness: 2px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 0, 0, 0.32), 0 10px 24px rgba(2, 10, 24, 0.18);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  transform: translateX(-50%);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: rgba(238, 248, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(2, 10, 24, 0.18), 0 14px 28px rgba(2, 10, 24, 0.24);
  transform: translateX(-50%);
}

.voices-rail {
  width: 100%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.voices-rail__top {
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell));
  min-height: 46px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.voices-rail__top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.quote-toggle {
  display: inline-flex;
  min-height: 44px;
  padding: 0.45rem 0;
  gap: 0.65rem;
  align-items: center;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 0.86rem;
  cursor: pointer;
}

.quote-toggle:hover,
.quote-toggle:focus-visible {
  border-bottom-color: var(--ink);
}

.quote-toggle i {
  position: relative;
  width: 10px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.voices-rail.is-paused .quote-toggle i {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.quote-viewport {
  overflow: hidden;
}

.quote-track {
  display: flex;
  width: max-content;
}

.quote-track.is-ready {
  animation: quote-rail-move 68s linear infinite;
  animation-delay: 370ms;
}

.quote-viewport:hover .quote-track,
.voices-rail:focus-within .quote-track,
.voices-rail.is-paused .quote-track {
  animation-play-state: paused;
}

.quote-card {
  display: flex;
  width: clamp(22rem, 34vw, 34rem);
  min-height: 130px;
  margin: 0;
  padding: 1.2rem clamp(1.5rem, 3vw, 2.5rem);
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rule);
  background: var(--paper);
}

.quote-card p {
  max-width: 30ch;
  margin: 0 0 0.9rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  letter-spacing: -0.018em;
  line-height: 1.24;
}

.quote-card footer {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.quote-card footer a {
  color: var(--ink);
  text-decoration-color: transparent;
  text-underline-offset: 0.2rem;
}

.quote-card footer a:hover,
.quote-card footer a:focus-visible {
  text-decoration-color: var(--ink);
}

.quote-card footer strong {
  color: var(--ink);
  font-weight: 600;
}

.quote-card footer span::before {
  margin-right: 0.55rem;
  color: var(--blue);
  content: "/";
}

@keyframes quote-rail-move {
  to { transform: translateX(-50%); }
}

/* Main page */

.about-story {
  background: var(--cream);
}

.about-story__frame {
  width: min(calc(100% - (var(--page-gutter) * 2)), 1200px);
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8.5rem);
  padding: clamp(2rem, 5.25vw, 5.5rem);
  align-items: start;
  border: 1px solid rgba(0, 50, 96, 0.08);
  border-radius: clamp(2rem, 5vw, 4.25rem);
  background: var(--paper);
}

.about-story__label {
  display: flex;
  margin: 0;
  gap: 0.9rem;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.about-story__label span {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: none;
}

.story-video-card {
  display: block;
  margin-top: clamp(3.5rem, 8vw, 9rem);
  padding: clamp(0.8rem, 1.3vw, 1rem) clamp(0.8rem, 1.3vw, 1rem) 0;
  overflow: hidden;
  border: 1px solid rgba(0, 50, 96, 0.08);
  border-radius: clamp(1.7rem, 3vw, 2.4rem);
  background: #e3e9ed;
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow 240ms var(--ease-out);
}

.story-video-card:hover,
.story-video-card:focus-visible {
  box-shadow: 0 1.4rem 3.5rem rgba(6, 34, 67, 0.18);
}

.story-video-card__screen {
  position: relative;
  display: grid;
  aspect-ratio: 1.43 / 1;
  overflow: hidden;
  border-radius: clamp(1rem, 1.8vw, 1.45rem);
  place-items: center;
  isolation: isolate;
  background: var(--ink);
}

.story-video-card__screen::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(110deg, rgba(1, 10, 25, 0.08), transparent 48%, rgba(1, 10, 25, 0.18));
  content: "";
}

.story-video-card__thumbnail {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease;
}

.story-video-card__play {
  position: absolute;
  display: grid;
  width: clamp(3.7rem, 5vw, 4.7rem);
  height: clamp(3.7rem, 5vw, 4.7rem);
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 0.85rem 2.1rem rgba(0, 0, 0, 0.24);
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out);
}

.story-video-card__play svg {
  width: 43%;
  height: 43%;
  margin-left: 0.12rem;
}

.story-video-card__watch {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.story-video-card:hover .story-video-card__play,
.story-video-card:focus-visible .story-video-card__play {
  background: var(--sky);
  color: var(--blue-dark);
}

.story-video-card__footer {
  display: flex;
  min-height: 5.8rem;
  padding: 1.25rem 1.45rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.story-video-card__footer > span {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.story-video-card__footer img {
  width: clamp(2.25rem, 3.6vw, 3.25rem);
  height: auto;
}

.about-story__copy {
  padding-top: clamp(0rem, 1.7vw, 1.35rem);
}

.about-story__eyebrow {
  margin: 0 0 clamp(0.65rem, 1.2vw, 1rem);
  color: var(--blue-dark) !important;
  font-size: clamp(0.72rem, 0.86vw, 0.84rem) !important;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.about-story__copy h2 {
  max-width: 14ch;
  margin-bottom: clamp(1.6rem, 3vw, 2.8rem);
  font-size: clamp(2.45rem, 3.45vw, 4.1rem);
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.about-story__copy > p {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.23vw, 1.2rem);
}

.about-story__lead {
  max-width: 47rem !important;
  color: var(--ink) !important;
  font-size: clamp(1.2rem, 1.72vw, 1.55rem) !important;
  line-height: 1.48;
}

.about-story__cta {
  display: inline-flex;
  min-height: 4rem;
  margin-top: 0.65rem;
  padding: 0.62rem 0.72rem 0.62rem 1.5rem;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.about-story__cta:hover,
.about-story__cta:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
}

.about-story__cta img {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  object-fit: contain;
}

body.story-video-open {
  overflow: hidden;
}

.story-video-modal {
  width: min(calc(100% - 2rem), 78rem);
  max-width: none;
  max-height: calc(100svh - 2rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  background: transparent;
  color: var(--ink);
}

.story-video-modal::backdrop {
  background: rgba(1, 12, 28, 0.86);
  backdrop-filter: blur(10px);
}

.story-video-modal[open] {
  animation: story-modal-enter 260ms var(--ease-out) both;
}

.story-video-modal__surface {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  background: #fff;
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.38);
}

.story-video-modal__topline,
.story-video-modal__footer {
  display: flex;
  padding: 1.15rem 1.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.story-video-modal__topline p {
  margin: 0 0 0.12rem;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.story-video-modal__topline h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: -0.04em;
}

.story-video-modal__close {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem 0.65rem 1.05rem;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.story-video-modal__close i {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.story-video-modal__close i::before,
.story-video-modal__close i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}

.story-video-modal__close i::before { transform: rotate(45deg); }
.story-video-modal__close i::after { transform: rotate(-45deg); }

.story-video-modal__close:hover,
.story-video-modal__close:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.story-video-modal__player {
  aspect-ratio: 16 / 9;
  background: #020914;
}

.story-video-modal__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-video-modal__footer {
  min-height: 4.5rem;
  background: #e3e9ed;
}

.story-video-modal__footer p {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.story-video-modal__footer a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-underline-offset: 0.22em;
}

@keyframes story-modal-enter {
  from { opacity: 0; transform: translateY(1rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.help {
  background: var(--mist);
}

.help-heading {
  grid-template-areas: "visual copy";
  row-gap: 0;
}

.help-heading > .section-label {
  z-index: 1;
  grid-area: visual;
  align-self: start;
}

.help-heading__copy {
  grid-area: copy;
}

.help-heading__visual {
  width: min(132%, 46rem);
  margin: clamp(3.5rem, 5vw, 5rem) 0 0;
  aspect-ratio: 1;
  grid-area: visual;
  justify-self: center;
}

.help-heading__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 56%, rgba(0, 0, 0, 0.96) 64%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.34) 88%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 56%, rgba(0, 0, 0, 0.96) 64%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.34) 88%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.service-ledger {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  min-height: 160px;
  padding: 1.5rem 0;
  grid-template-columns: 3.5rem 48px minmax(13rem, 0.82fr) minmax(18rem, 1.18fr);
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.service-number {
  align-self: start;
  padding-top: 0.7rem;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.service-row h3 {
  margin: 0;
}

.service-row > p:last-child {
  margin: 0;
  color: var(--muted);
}

.approach {
  background: var(--paper);
}

.process-list {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  min-height: 19rem;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--rule);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  display: block;
  margin-bottom: 5rem;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

.process-list h3 {
  font-size: 1.28rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.audience {
  background: var(--cream);
}

.audience-stages {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.audience-stages article {
  min-height: 15rem;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
}

.audience-stages article:first-child {
  padding-left: 0;
}

.audience-stages article:last-child {
  padding-right: 0;
  border-right: 0;
}

.audience-stages span {
  display: block;
  margin-bottom: 4.5rem;
  color: var(--blue-dark);
  font-size: 1.22rem;
  font-weight: 600;
}

.audience-stages p {
  margin: 0;
  color: var(--muted);
}

.home-connection {
  overflow: clip;
  background: var(--ink);
  color: #fff;
}

.home-connection::after {
  position: absolute;
  right: -10rem;
  bottom: -15rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(0, 196, 249, 0.32);
  border-radius: 50%;
  content: "";
}

.home-connection__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(21rem, 0.97fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.home-connection .state-line,
.home-connection .section-label {
  color: var(--sky);
}

.home-connection h2 {
  max-width: 13ch;
}

.home-connection__layout > div > p:not(.state-line, .section-label, .boundary-note) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
}

.home-connection__vision {
  color: #fff !important;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.42;
}

.boundary-note {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.prototype-intent {
  padding: clamp(1.6rem, 4vw, 2.8rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.prototype-intent .icon-tile {
  margin-bottom: clamp(2.5rem, 7vw, 5.5rem);
  border-color: rgba(255, 255, 255, 0.24);
  background: #fff;
}

.prototype-intent p,
.prototype-intent strong,
.prototype-intent small {
  display: block;
}

.prototype-intent p {
  margin: 0 0 0.8rem;
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.prototype-intent strong {
  max-width: 21ch;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

.prototype-intent small {
  margin-top: clamp(2.5rem, 7vw, 5.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.45;
}

.resources {
  background: var(--mist);
}

.starter-plan {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
  gap: 3rem;
}

.starter-plan__index {
  border-top: 1px solid var(--ink);
}

.starter-plan__index p {
  display: grid;
  min-height: 58px;
  margin: 0;
  padding: 0.75rem 0;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.starter-plan__index span {
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.starter-plan__index strong {
  font-weight: 400;
}

.starter-plan__feature {
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.25fr);
  gap: 2.2rem;
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.packet-preview--large {
  width: min(100%, 15rem);
  justify-self: center;
  padding: 1.6rem;
}

.packet-preview--large strong {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.starter-plan__feature h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.starter-plan__feature > div:last-child > p:not(.state-line) {
  color: var(--muted);
}

.starter-plan details {
  margin-top: 1.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.starter-plan summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.starter-plan summary::-webkit-details-marker {
  display: none;
}

.starter-plan summary span {
  color: var(--blue-dark);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.starter-plan details[open] summary span {
  transform: rotate(45deg);
}

.starter-plan details > div {
  padding: 0 0 1rem;
  color: var(--muted);
}

.starter-plan details p {
  margin: 0;
}

.roadmap {
  background: var(--paper);
}

.roadmap-line {
  position: relative;
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-line::before {
  position: absolute;
  top: 1rem;
  right: 6%;
  left: 6%;
  height: 1px;
  background: var(--blue);
  content: "";
}

.roadmap-line article {
  position: relative;
  min-height: 15rem;
  padding: 2.5rem 1.2rem 1rem;
  border-right: 1px solid var(--rule);
}

.roadmap-line article:first-child {
  padding-left: 0;
}

.roadmap-line article:last-child {
  padding-right: 0;
  border-right: 0;
}

.roadmap-node {
  position: absolute;
  z-index: 2;
  top: -0.28rem;
  left: 1.2rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue);
  background: var(--paper);
}

.roadmap-line article:first-child .roadmap-node {
  left: 0;
}

.roadmap-line h3 {
  font-size: 1.35rem;
}

.roadmap-icon {
  margin-bottom: 1.5rem;
}

.roadmap-line article > p:last-child {
  color: var(--muted);
}

.questions {
  background: var(--cream);
}

.questions__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.questions__heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list summary {
  display: grid;
  min-height: 98px;
  padding: 1rem 0;
  grid-template-columns: 3.5rem minmax(0, 1fr) 2rem;
  gap: 1rem;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--blue-dark);
  font-size: 0.78rem;
}

.faq-list summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > div {
  max-width: 40rem;
  padding: 0 2.5rem 1.5rem 4.5rem;
  color: var(--muted);
}

.faq-list details > div p {
  margin: 0;
}

.final-cta {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--blue);
  color: #fff;
}

.final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.final-cta .section-label {
  color: #fff;
}

.final-cta h2 {
  margin-bottom: 0;
}

.final-cta__layout > div:last-child p {
  max-width: 25rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--ink);
  color: #fff;
}

/* True 404 */

.error-header {
  display: flex;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell));
  min-height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  padding: var(--section-space) var(--page-gutter);
  place-items: center;
}

.not-found__inner {
  width: min(100%, 44rem);
  text-align: center;
}

.not-found__inner h1 {
  max-width: 12ch;
}

.not-found__inner > p:not(.section-label) {
  max-width: 34rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr;
  gap: 3rem;
}

.wordmark--footer {
  color: #fff;
}

.wordmark--footer strong {
  color: var(--sky);
}

.footer-grid p {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-grid strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.footer-bottom a {
  min-height: 44px;
  padding: 0.6rem 0;
}

/* Progressive section motion */

.reveal-pending {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

/* Owner-directed Who panel: fade first, then finish a quiet oversized-to-rest settle. */

.about-story__frame.reveal-pending {
  opacity: 0;
  transform: translateY(20px) scale(1.022);
  transform-origin: 50% 50%;
}

.about-story__frame.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 300ms ease-out,
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Recorded desktop full-screen menu: surface first, then one grouped type fade. */

@media (min-width: 82rem) {
  .header-shell {
    position: relative;
  }

  .header-cta {
    margin-right: 4.4rem;
  }

  .mobile-menu-button {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .js[data-page-intro="ready"] .mobile-menu-button.header-intro-target {
    animation-name: header-menu-center-bloom;
  }

  .mobile-menu-button > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .mobile-menu-button i {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
  }

  .mobile-menu-button i::before,
  .mobile-menu-button i::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: top 180ms ease, transform 180ms ease;
  }

  .mobile-menu-button i::before { top: 3px; }
  .mobile-menu-button i::after { top: 10px; }

  .mobile-menu-button[aria-expanded="true"] i::before {
    top: 7px;
    transform: rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] i::after {
    top: 7px;
    transform: rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    opacity: 0;
    transition: opacity 220ms ease-in;
    will-change: opacity;
  }

  .mobile-drawer.is-open {
    opacity: 1;
    transition: opacity 220ms ease-out;
  }

  .mobile-drawer.is-closing {
    opacity: 0;
  }

  .mobile-drawer__inner {
    width: min(calc(100% - (var(--page-gutter) * 2)), 87.5rem);
    margin-inline: auto;
    padding: 1.25rem 0 3.5rem;
  }

  .mobile-drawer__inner > * {
    opacity: 0;
    transition: opacity 180ms ease-in;
  }

  .mobile-drawer.is-open .mobile-drawer__inner > * {
    opacity: 1;
    transition: opacity 250ms 90ms ease-out;
  }

  .mobile-drawer__top {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .drawer-close {
    min-width: 58px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--blue-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    cursor: pointer;
  }

  .mobile-nav-content {
    display: grid;
    gap: 1.75rem;
    padding-top: clamp(2rem, 6vh, 4rem);
  }

  .mobile-section-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }

  .mobile-offer-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .mobile-offer-list > a {
    display: grid;
    min-height: 8.5rem;
    padding: 1.25rem;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    border-right: 1px solid var(--rule);
    text-decoration: none;
  }

  .mobile-offer-list > a:last-child {
    border-right: 0;
  }

  .mobile-offer-list strong,
  .mobile-offer-list small {
    display: block;
  }

  .mobile-offer-list strong {
    font-size: 1.05rem;
    font-weight: 400;
  }

  .mobile-offer-list small {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .mobile-direct-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--rule);
  }

  .mobile-direct-links a {
    display: flex;
    min-height: 64px;
    padding: 0.8rem 1rem;
    align-items: center;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    font-size: 1.1rem;
    text-decoration: none;
  }

  .mobile-direct-links a:last-child {
    border-right: 0;
  }

  .mobile-primary-action {
    display: inline-flex;
    min-height: 52px;
    width: max-content;
    padding: 0.8rem 1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }
}

/* Desktop uses the full navigation; the compact menu begins below laptop width. */

@media (min-width: 82rem) {
  .header-cta {
    margin-right: 0;
  }

  .mobile-menu-button,
  .mobile-drawer {
    display: none !important;
  }
}

/* Mobile navigation and page recomposition */

@media (max-width: 81.999rem) {
  :root {
    --header-height: 72px;
  }

  html.training-banner-visible {
    --banner-offset: 0px;
  }

  .site-header {
    backdrop-filter: none;
    will-change: auto;
  }

  .header-shell {
    display: flex;
    justify-content: space-between;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    min-width: 6rem;
    min-height: 46px;
    padding: 0.65rem 0.8rem;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--ink);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(7, 20, 38, 0.1), 0 8px 20px rgba(7, 20, 38, 0.08);
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .mobile-menu-button:hover,
  .mobile-menu-button:focus-visible {
    border-color: var(--blue-dark);
    background: #e9f7ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), inset 0 -1px 0 rgba(7, 20, 38, 0.1), 0 12px 24px rgba(7, 20, 38, 0.12);
    transform: translateY(-1px);
  }

  .mobile-menu-button i {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
  }

  .mobile-menu-button i::before,
  .mobile-menu-button i::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: top 180ms ease, transform 180ms ease;
  }

  .mobile-menu-button i::before { top: 3px; }
  .mobile-menu-button i::after { top: 10px; }

  .mobile-menu-button[aria-expanded="true"] i::before {
    top: 7px;
    transform: rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] i::after {
    top: 7px;
    transform: rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    transform: translateY(-100%);
    transition: transform 460ms cubic-bezier(0.62, 0, 0.78, 0);
    will-change: transform;
  }

  .mobile-drawer.is-open {
    transform: translateY(0);
    transition: transform 580ms var(--ease-out);
  }

  .mobile-drawer.is-closing {
    transform: translateY(-100%);
  }

  .mobile-drawer__inner {
    width: min(calc(100% - 2.5rem), 42rem);
    margin-inline: auto;
    padding: 1.25rem 0 3.5rem;
  }

  .mobile-drawer__inner > * {
    opacity: 0;
    transform: translateY(-12px);
  }

  .mobile-drawer.is-open .mobile-drawer__inner > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 360ms var(--row-delay, 190ms) var(--ease-out), transform 420ms var(--row-delay, 190ms) var(--ease-out);
  }

  .mobile-drawer__inner > :nth-child(1) { --row-delay: 190ms; }
  .mobile-drawer__inner > :nth-child(2) { --row-delay: 230ms; }
  .mobile-drawer__inner > :nth-child(3) { --row-delay: 270ms; }
  .mobile-drawer__inner > :nth-child(4) { --row-delay: 310ms; }
  .mobile-drawer__inner > :nth-child(5) { --row-delay: 350ms; }
  .mobile-drawer__inner > :nth-child(6) { --row-delay: 390ms; }
  .mobile-drawer__inner > :nth-child(7) { --row-delay: 430ms; }

  .mobile-drawer__top {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .drawer-close {
    min-width: 58px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--blue-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
    cursor: pointer;
  }

  .mobile-nav-content {
    display: grid;
    gap: 1.15rem;
    padding-top: 1.25rem;
  }

  .mobile-section-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }

  .mobile-offer-list {
    display: grid;
    gap: 0.55rem;
  }

  .mobile-offer-list > a {
    display: grid;
    min-height: 76px;
    padding: 0.75rem;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    border: 1px solid var(--rule);
    border-radius: 12px;
    text-decoration: none;
  }

  .mobile-offer-list strong,
  .mobile-offer-list small {
    display: block;
  }

  .mobile-offer-list strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .mobile-offer-list small {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .mobile-direct-links {
    display: grid;
    border-top: 1px solid var(--rule);
  }

  .mobile-direct-links a {
    display: flex;
    min-height: 54px;
    padding: 0.65rem 0;
    align-items: center;
    border-bottom: 1px solid var(--rule);
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-accordion,
  .mobile-direct-link {
    border-bottom: 1px solid var(--rule);
  }

  .mobile-accordion > button,
  .mobile-direct-link {
    display: flex;
    width: 100%;
    min-height: 64px;
    padding: 0.85rem 0;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    font-size: 1.18rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-accordion > button i {
    position: relative;
    width: 18px;
    height: 18px;
  }

  .mobile-accordion > button i::before,
  .mobile-accordion > button i::after {
    position: absolute;
    top: 8px;
    left: 1px;
    width: 16px;
    height: 2px;
    background: var(--blue);
    content: "";
    transition: transform 180ms ease;
  }

  .mobile-accordion > button i::after {
    transform: rotate(90deg);
  }

  .mobile-accordion > button[aria-expanded="true"] i::after {
    transform: rotate(0);
  }

  .mobile-accordion > div {
    padding: 0 0 0.8rem 1rem;
    border-left: 2px solid var(--blue);
  }

  .mobile-accordion > div a {
    display: flex;
    min-height: 48px;
    padding: 0.55rem 0.8rem;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
  }

  .mobile-primary-action {
    display: flex;
    min-height: 52px;
    margin-top: 1.5rem;
    padding: 0.8rem 1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 6px;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
  }

  .training-banner {
    top: auto;
    right: var(--page-gutter);
    bottom: 1rem;
    left: var(--page-gutter);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(7, 20, 38, 0.28);
    transform: translateY(calc(100% + 2rem));
  }

  .training-banner__inner {
    width: 100%;
  }

  body.drawer-open .training-banner {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 2rem));
  }

  .starter-plan {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2rem;
  }

  .starter-plan__feature {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1.5rem;
  }
}

@media (max-width: 820px) {
  .about-story__frame {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-video-card {
    width: min(100%, 42rem);
    margin-top: 3rem;
  }

  .about-story__copy {
    padding-top: 0;
  }

  .split-heading,
  .questions__layout,
  .final-cta__layout,
  .home-connection__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .help-heading {
    grid-template-areas:
      "label"
      "copy"
      "visual";
  }

  .help-heading__visual {
    width: min(100%, 32rem);
    margin-top: 0.5rem;
    justify-self: center;
  }

  .two-column-copy {
    gap: 1.25rem;
  }

  .observation-ledger p {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
  }

  .service-row {
    grid-template-columns: 3rem 48px minmax(0, 1fr);
    gap: 1rem;
  }

  .service-row > p:last-child {
    grid-column: 2 / -1;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .audience-stages {
    grid-template-columns: 1fr;
  }

  .audience-stages article,
  .audience-stages article:first-child,
  .audience-stages article:last-child {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .audience-stages span {
    margin-bottom: 1rem;
  }

  .prototype-intent {
    margin-top: 1rem;
  }

  .starter-plan {
    grid-template-columns: 1fr;
  }

  .starter-plan__feature {
    grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr);
  }

  .roadmap-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-line::before {
    display: none;
  }

  .roadmap-line article:nth-child(2) {
    border-right: 0;
  }

  .roadmap-line article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .roadmap-node {
    top: 1.5rem;
  }

  .questions__heading {
    position: static;
  }

  .quote-toggle {
    display: none;
  }

  .quote-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .quote-track,
  .quote-track.is-ready {
    animation: none;
    transform: none;
  }

  .quote-card {
    scroll-snap-align: start;
  }

  .quote-card[aria-hidden="true"] {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: clamp(4.5rem, 21vw, 6rem);
  }

  body {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .wordmark {
    font-size: 1.2rem;
  }

  .mobile-menu-button {
    min-width: 5.5rem;
  }

  .training-banner__inner {
    min-height: 0;
    padding: 0.9rem 3.25rem 0.9rem 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
  }

  .training-banner__copy {
    margin-top: 0.2rem;
  }

  .training-banner__close {
    top: 1.45rem;
    right: 0.5rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 4.5rem 1.25rem 6rem;
  }

  .hero__media img {
    object-position: 66% center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .voices-rail__top {
    min-height: 64px;
    gap: 1rem;
  }

  .voices-rail__top p {
    font-size: 0.7rem;
  }

  .quote-card {
    width: min(86vw, 25rem);
  }

  .about-story__frame {
    padding: 1.5rem;
    border-radius: 1.7rem;
  }

  .about-story__label {
    font-size: 1.1rem;
  }

  .story-video-card {
    margin-top: 2.5rem;
    border-radius: 1.45rem;
  }

  .story-video-card__screen {
    aspect-ratio: 1.43 / 1;
  }

  .story-video-card__footer {
    min-height: 5.1rem;
    padding: 1rem 1.1rem;
  }

  .about-story__copy h2 {
    max-width: 12.5ch;
    font-size: clamp(2.25rem, 9.8vw, 3.1rem);
  }

  .story-video-modal {
    width: calc(100% - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .story-video-modal__topline,
  .story-video-modal__footer {
    padding: 0.9rem 1rem;
  }

  .story-video-modal__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .story-video-modal__close span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 2rem 48px minmax(0, 1fr);
    padding: 1.4rem 0;
  }

  .service-row > p:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .process-list li > span {
    margin-bottom: 2rem;
  }

  .starter-plan__feature {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .packet-preview--large {
    width: min(100%, 13rem);
  }

  .roadmap-line {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .roadmap-line article,
  .roadmap-line article:first-child,
  .roadmap-line article:last-child {
    min-height: 0;
    padding: 2rem 0 1.5rem 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .roadmap-node,
  .roadmap-line article:first-child .roadmap-node {
    top: 2.45rem;
    left: 0;
  }

  .faq-list summary {
    min-height: 86px;
    grid-template-columns: 2.5rem minmax(0, 1fr) 1.5rem;
    gap: 0.65rem;
    font-size: 1rem;
  }

  .faq-list details > div {
    padding: 0 0 1.25rem 3.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .dropdown-panel,
  .dropdown-panel.is-open,
  .dropdown-panel.is-closing {
    transform: translateX(-50%);
  }

  .mobile-drawer,
  .mobile-drawer.is-open,
  .mobile-drawer.is-closing,
  .header-intro-target,
  .hero-eyebrow-intro-target,
  .hero-support-intro-target,
  .hero-cue-intro-target,
  .proof-rail-intro-target,
  .hero__center > *,
  .hero-title-line > span,
  .reveal-pending,
  .reveal-pending.is-visible {
    opacity: 1;
    animation: none !important;
    transform: none;
  }

  .quote-toggle {
    display: none;
  }

  .quote-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .quote-track,
  .quote-track.is-ready {
    animation: none !important;
    transform: none !important;
  }

  .quote-card {
    scroll-snap-align: start;
  }

  .quote-card[aria-hidden="true"] {
    display: none;
  }
}

.hero :focus-visible,
.home-connection :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
}

@media print {
  :root {
    --page-gutter: 0.5in;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .site-header,
  .training-banner,
  .voices-rail,
  .scroll-cue,
  .button,
  .text-link {
    display: none !important;
  }

  .section,
  .hero,
  .final-cta,
  .site-footer,
  .home-connection {
    min-height: 0;
    padding-block: 0.45in;
    background: #fff !important;
    color: #000 !important;
    break-inside: avoid;
  }

  .home-connection p,
  .site-footer p,
  .final-cta p,
  .home-connection .state-line,
  .home-connection .section-label {
    color: #000 !important;
  }

  .hero__center > *,
  .hero-title-line > span,
  .reveal-pending,
  .reveal-pending.is-visible {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* Layered circular gradient for the coaching photograph */
.help-heading__visual {
  position: relative;
  isolation: isolate;
}

.help-heading__visual::after {
  position: absolute;
  z-index: 1;
  inset: -1px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    transparent 50%,
    color-mix(in srgb, var(--mist) 12%, transparent) 62%,
    color-mix(in srgb, var(--mist) 38%, transparent) 74%,
    color-mix(in srgb, var(--mist) 72%, transparent) 88%,
    var(--mist) 100%
  );
  content: "";
  pointer-events: none;
}
