:root {
  --ink: #11161c;
  --muted: #505963;
  --cream: #fffdf8;
  --cream-2: #ffffff;
  --blue: #1f66d1;
  --blue-deep: #0e3f86;
  --blue-dark: #092955;
  --orange: #f36a2d;
  --green: #0f9b78;
  --line: rgba(17, 22, 28, 0.14);
  --line-strong: rgba(17, 22, 28, 0.24);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(9, 41, 85, 0.18);
  --max: 1280px;
  --pad: 32px;
  --radius: 8px;
  --display: "Arial Black", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(17, 22, 28, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--white);
  box-shadow: 0 0 0 5px var(--orange);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transform: skewX(-7deg);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.brand__text {
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 13px;
}

.site-nav a {
  min-height: 44px;
  padding: 12px 14px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color 140ms ease, font-weight 140ms ease, transform 140ms ease;
}

.site-nav a:hover {
  color: var(--orange);
  font-weight: 800;
  background: transparent;
  border-color: transparent;
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  color: var(--blue);
  background: transparent;
  border-color: transparent;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.menu-toggle__line {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.menu-toggle__text {
  font-family: var(--mono);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, var(--max)) minmax(var(--pad), 1fr);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -4;
  display: grid;
  grid-template-columns: 1.1fr 0.86fr 0.92fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--blue-dark);
  transform: scale(1.025);
  transition: transform 420ms ease, filter 420ms ease;
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  border-radius: var(--radius);
}

.hero__image--main {
  grid-column: 1;
  grid-row: 1 / 3;
  object-position: 50% 44%;
}

.hero__image--tall {
  grid-column: 2;
  grid-row: 1 / 3;
  object-position: 50% 42%;
}

.hero__image--team {
  grid-column: 3;
  grid-row: 1;
  object-position: 50% 40%;
}

.hero__image--training {
  grid-column: 3;
  grid-row: 2;
  object-position: 50% 38%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 22, 46, 0.9) 0%, rgba(5, 22, 46, 0.78) 39%, rgba(5, 22, 46, 0.3) 72%, rgba(5, 22, 46, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 22, 46, 0.72), rgba(5, 22, 46, 0.08) 45%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 120px 120px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.hero__content {
  grid-column: 2;
  width: min(760px, 100%);
  padding: 150px 0 110px;
}

.eyebrow,
.module-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow {
  margin-bottom: 0;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  font-size: 76px;
}

.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions,
.cta .button {
  margin-top: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero__note {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.hero__module {
  position: absolute;
  right: var(--pad);
  bottom: 96px;
  width: 310px;
  padding: 18px;
  color: var(--white);
  background: rgba(9, 41, 85, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero__module ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__module li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--mono);
  font-size: 13px;
}

.hero__module span {
  color: var(--orange);
}

.hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 1px;
  color: var(--white);
  background: rgba(5, 22, 46, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.hero__ticker span {
  padding: 12px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: 128px 0;
}

.section-index {
  position: absolute;
  top: 132px;
  left: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  grid-template-areas:
    "eyebrow eyebrow"
    "title text";
  gap: 56px;
  row-gap: 20px;
  align-items: start;
  margin-left: 84px;
}

.section-head .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0;
}

.section-head h2 {
  grid-area: title;
}

.section-head > p:not(.eyebrow) {
  grid-area: text;
  align-self: end;
}

.section h2,
.cta h2 {
  font-size: 56px;
}

.section-head p:not(.eyebrow),
.statement__copy p:not(.eyebrow),
.method__content > p:not(.eyebrow),
.deliverables__copy p:not(.eyebrow),
.cta__content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.statement__copy {
  margin-left: 84px;
}

.statement__copy h2 {
  margin-top: 20px;
  margin-bottom: 28px;
}

.statement__copy p + p {
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.feature-grid--compact {
  position: relative;
  display: block;
  min-height: 760px;
  margin: -10px 0 0;
}

.feature-card,
.scenario-grid li,
.fit-grid li,
.trust-grid li {
  min-height: 210px;
  padding: 24px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.scenario-grid li:hover,
.fit-grid li:hover,
.trust-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 102, 209, 0.34);
  box-shadow: 0 18px 44px rgba(9, 41, 85, 0.11);
}

.feature-grid--compact .feature-card {
  position: absolute;
  display: flex;
  overflow: hidden;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--white);
  background: var(--blue-dark);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 60px rgba(9, 41, 85, 0.18);
  isolation: isolate;
}

.feature-grid--compact .feature-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 22, 46, 0.04) 0%, rgba(5, 22, 46, 0.14) 36%, rgba(5, 22, 46, 0.56) 64%, rgba(5, 22, 46, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 22, 46, 0.18), rgba(5, 22, 46, 0));
}

.feature-grid--compact .feature-card:nth-child(1) {
  top: 4px;
  right: -14px;
  width: 54%;
  height: 330px;
  z-index: 3;
}

.feature-grid--compact .feature-card:nth-child(2) {
  top: 258px;
  left: 0;
  width: 50%;
  height: 360px;
  z-index: 4;
}

.feature-grid--compact .feature-card:nth-child(3) {
  right: 7%;
  bottom: 0;
  width: 52%;
  height: 315px;
  z-index: 2;
}

.feature-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--blue-dark);
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.feature-grid--compact .feature-card:nth-child(1) img {
  object-position: 52% 48%;
}

.feature-grid--compact .feature-card:nth-child(2) img {
  object-position: 50% 45%;
}

.feature-grid--compact .feature-card:nth-child(3) img {
  object-position: 50% 48%;
}

.feature-card__index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-width: 38px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(9, 41, 85, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.feature-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  background: rgba(31, 102, 209, 0.09);
  border: 1px solid rgba(31, 102, 209, 0.28);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(31, 102, 209, 0.22);
}

.feature-card:nth-child(2) .feature-icon {
  color: var(--orange);
  background: rgba(243, 106, 45, 0.1);
  border-color: rgba(243, 106, 45, 0.32);
  box-shadow: 0 10px 30px rgba(243, 106, 45, 0.18);
}

.feature-card:nth-child(3) .feature-icon {
  color: var(--green);
  background: rgba(15, 155, 120, 0.1);
  border-color: rgba(15, 155, 120, 0.32);
  box-shadow: 0 10px 30px rgba(15, 155, 120, 0.18);
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-icon circle,
.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.issue-list h3,
.scenario-grid h3,
.fit-grid h3,
.before-after h3,
.trust-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.feature-card p,
.issue-list p,
.scenario-grid p,
.fit-grid p,
.trust-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.feature-grid--compact .feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid--compact .feature-card h3,
.feature-grid--compact .feature-card p {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.46);
}

.feature-grid--compact .feature-card h3 {
  max-width: 92%;
  color: var(--white);
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1;
}

.problem,
.scenarios,
.trust,
.faq {
  border-top: 1px solid var(--line);
}

.problem-subtitle {
  width: min(100%, 560px);
  margin: 56px 0 0 84px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-top: 64px;
  margin-left: 84px;
}

.poster-card {
  position: sticky;
  top: 110px;
  overflow: hidden;
  background: var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.poster-card:hover img {
  transform: scale(1.04);
}

.poster-card__label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 260px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(9, 41, 85, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
}

.issue-list,
.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-list li {
  padding: 26px 0 26px 24px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.method {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.method__visual {
  position: sticky;
  top: 110px;
  margin-left: 84px;
}

.method__visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: 50% 45%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.frame-box {
  position: absolute;
  top: 11%;
  right: 10%;
  width: 38%;
  height: 43%;
  border: 1px solid rgba(17, 22, 28, 0.54);
}

.method__content {
  padding-top: 4px;
}

.method__content h2 {
  margin-top: 20px;
  margin-bottom: 26px;
}

.step-list {
  margin-top: 36px;
  counter-reset: steps;
}

.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: color 160ms ease, border-color 160ms ease;
}

.step-card.is-active {
  border-color: var(--orange);
}

.step-card__index {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--blue);
}

.step-card.is-active .step-card__index {
  color: var(--orange);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.08;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.scenario-grid,
.fit-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 64px 0 0 84px;
  padding: 0;
  list-style: none;
}

.scenario-grid li {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue-deep);
  border-color: rgba(255, 255, 255, 0.18);
}

.scenario-grid li:nth-child(2),
.scenario-grid li:nth-child(5) {
  color: var(--ink);
  background: var(--cream-2);
  border-color: var(--line);
}

.scenario-grid span {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--orange);
}

.scenario-grid p {
  color: inherit;
  opacity: 0.76;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 12px;
  margin: 64px 0 0 84px;
}

.visual-strip__item {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.visual-strip__item--wide {
  min-height: 430px;
}

.visual-strip__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 420ms ease, filter 420ms ease;
}

.visual-strip__item:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.05);
}

.visual-strip__item:nth-child(1) img {
  object-position: 50% 40%;
}

.visual-strip__item:nth-child(2) img {
  object-position: 50% 44%;
}

.visual-strip__item:nth-child(3) img {
  object-position: 50% 42%;
}

.visual-strip__item:nth-child(4) img {
  object-position: 50% 46%;
}

.visual-strip__item::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(0deg, rgba(5, 22, 46, 0.75), transparent);
}

.visual-strip figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 9px;
  background: rgba(9, 41, 85, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.pull-quote {
  max-width: 900px;
  margin: 72px 0 0 84px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-grid li {
  min-height: 250px;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.deliverables__copy {
  margin-left: 84px;
  max-width: 880px;
}

.deliverables__copy h2 {
  margin-top: 20px;
  margin-bottom: 26px;
}

.deliverable-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(31, 102, 209, 0.08);
  border: 1px solid rgba(31, 102, 209, 0.22);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
}

.deliverable-plus {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.slides-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.slides-icon svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 18px rgba(251, 188, 4, 0.22));
}

.deliverable-badge > span:not(.slides-icon) {
  color: var(--muted);
}

.deliverables-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: center;
  min-height: 720px;
  margin-left: 84px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 74px 74px,
    radial-gradient(circle at 50% 42%, rgba(31, 102, 209, 0.38), transparent 34%),
    var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.deliverables-lab::before {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.analysis-person {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: rgba(5, 22, 46, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.analysis-person__frames {
  position: absolute;
  inset: 0;
}

.analysis-person__frames img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.02) contrast(1.05);
  animation: personCycle 20s ease-in-out infinite;
}

.analysis-person__frames img:nth-child(1) {
  animation-delay: 0s;
  object-position: 50% 34%;
}

.analysis-person__frames img:nth-child(2) {
  animation-delay: 5s;
  object-position: 50% 30%;
}

.analysis-person__frames img:nth-child(3) {
  animation-delay: 10s;
  object-position: 50% 34%;
}

.analysis-person__frames img:nth-child(4) {
  animation-delay: 15s;
  object-position: 50% 28%;
}

.analysis-person::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 22, 46, 0.08), rgba(5, 22, 46, 0.72)),
    radial-gradient(circle at 50% 36%, transparent 0 28%, rgba(5, 22, 46, 0.22) 56%, rgba(5, 22, 46, 0.64) 100%);
}

.analysis-frame {
  position: absolute;
  inset: 12%;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.analysis-frame span {
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--orange);
  border-style: solid;
}

.analysis-frame span:nth-child(1) {
  top: -1px;
  left: -1px;
  border-width: 5px 0 0 5px;
}

.analysis-frame span:nth-child(2) {
  top: -1px;
  right: -1px;
  border-width: 5px 5px 0 0;
}

.analysis-frame span:nth-child(3) {
  right: -1px;
  bottom: -1px;
  border-width: 0 5px 5px 0;
}

.analysis-frame span:nth-child(4) {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 5px 5px;
}

.analysis-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(255, 255, 255, 0.4) 50%, transparent 51%);
  opacity: 0.26;
  animation: scanShift 5.5s ease-in-out infinite alternate;
}

.analysis-person__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  margin: 0;
  padding: 8px 10px;
  background: rgba(9, 41, 85, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.analysis-orbit {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 14px;
}

.analysis-node {
  position: relative;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.analysis-node::after {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  content: "";
  background: rgba(243, 106, 45, 0.78);
}

.analysis-orbit--left .analysis-node::after {
  right: -55px;
}

.analysis-orbit--right .analysis-node::after {
  left: -55px;
}

.analysis-node span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.analysis-node h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.06;
}

.analysis-node p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 64px 0 0 84px;
}

.before-after article {
  min-height: 360px;
  padding: 30px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius);
}

.before-after article:first-child {
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.before-after ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding-left: 20px;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 58px 0 0 84px;
}

.faq-list details {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  min-height: 58px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  padding: 0 22px 22px;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(var(--pad), 1fr) minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(var(--pad), 1fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  padding: 118px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 92px 92px;
  opacity: 0.55;
}

.cta__media {
  position: absolute;
  inset: 0;
  opacity: 0.24;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
}

.cta__content,
.cta__side {
  position: relative;
}

.cta__content {
  grid-column: 2;
}

.cta h2 {
  margin-top: 20px;
  margin-bottom: 26px;
}

.cta .eyebrow {
  margin-bottom: 0;
}

.cta__content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.cta__side {
  grid-column: 3;
  display: grid;
  gap: 16px;
}

.contact-card,
.lead-form {
  display: grid;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.contact-card {
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.contact-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.98) contrast(1.03);
}

.contact-card .module-label {
  margin-bottom: 8px;
  color: var(--blue);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.08;
}

.contact-card a {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-form {
  gap: 16px;
  padding: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.field textarea {
  resize: vertical;
}

.field-error {
  display: none;
  margin: 0;
  color: #a33112;
  font-size: 14px;
}

.field.is-invalid .field-error {
  display: block;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #a33112;
}

.form-status,
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(31, 102, 209, 0.12);
  border-left: 4px solid var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad);
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1.025);
  }

  to {
    transform: translate3d(-8px, 5px, 0) scale(1.06);
  }
}

@keyframes personCycle {
  0%,
  5%,
  23% {
    opacity: 1;
    transform: scale(1);
  }

  28%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

@keyframes scanShift {
  from {
    transform: translate3d(-8px, -10px, 0);
  }

  to {
    transform: translate3d(8px, 12px, 0);
  }
}

@media (max-width: 1100px) {
  :root {
    --pad: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section h2,
  .cta h2 {
    font-size: 46px;
  }

  .hero__module {
    display: none;
  }

  .section,
  .method,
  .deliverables {
    padding: 96px 0;
  }

  .statement,
  .split,
  .method,
  .deliverables,
  .cta {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "text";
    gap: 18px;
  }

  .statement__copy,
  .section-head,
  .problem-subtitle,
  .split,
  .method__visual,
  .deliverables__copy,
  .deliverables-lab,
  .scenario-grid,
  .fit-grid,
  .before-after,
  .trust-grid,
  .faq-list {
    margin-left: 64px;
  }

  .poster-card,
  .method__visual {
    position: relative;
    top: auto;
  }

  .scenario-grid,
  .visual-strip,
  .fit-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid--compact {
    max-width: 760px;
    min-height: 720px;
  }

  .deliverables-lab {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .analysis-person {
    order: 1;
    min-height: 620px;
  }

  .analysis-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .analysis-orbit--left {
    order: 2;
  }

  .analysis-orbit--right {
    order: 3;
  }

  .analysis-node::after {
    display: none;
  }

  .cta {
    display: grid;
    padding-right: var(--pad);
    padding-left: var(--pad);
  }

  .cta__content,
  .cta__side {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 16px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 12px var(--pad);
  }

  .menu-toggle {
    display: inline-flex;
    padding: 10px 12px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--pad);
    left: var(--pad);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: var(--ink);
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero__media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    padding: 6px;
  }

  .hero__image--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hero__image--tall {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__image--team {
    grid-column: 2;
    grid-row: 2;
  }

  .hero__image--training {
    display: none;
  }

  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(5, 22, 46, 0.92) 0%, rgba(5, 22, 46, 0.56) 42%, rgba(5, 22, 46, 0.08) 82%),
      linear-gradient(90deg, rgba(5, 22, 46, 0.32), rgba(5, 22, 46, 0.18));
  }

  .hero__content {
    grid-column: 1 / -1;
    padding: 112px var(--pad) 82px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__ticker {
    display: none;
  }

  .section {
    width: calc(100% - (var(--pad) * 2));
    padding: 72px 0;
  }

  .section-index {
    position: static;
    margin-bottom: 18px;
  }

  .statement__copy,
  .section-head,
  .problem-subtitle,
  .split,
  .method__visual,
  .deliverables__copy,
  .deliverables-lab,
  .scenario-grid,
  .visual-strip,
  .fit-grid,
  .before-after,
  .trust-grid,
  .faq-list,
  .pull-quote {
    margin-left: 0;
  }

  .section h2,
  .cta h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section-head p:not(.eyebrow),
  .statement__copy p:not(.eyebrow),
  .method__content > p:not(.eyebrow),
  .deliverables__copy p:not(.eyebrow),
  .cta__content p:not(.eyebrow) {
    font-size: 17px;
  }

  .feature-card,
  .scenario-grid li,
  .fit-grid li,
  .trust-grid li {
    min-height: auto;
    padding: 20px;
  }

  .feature-grid--compact {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 38px;
  }

  .feature-grid--compact .feature-card,
  .feature-grid--compact .feature-card:nth-child(1),
  .feature-grid--compact .feature-card:nth-child(2),
  .feature-grid--compact .feature-card:nth-child(3) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 320px;
  }

  .deliverables-lab {
    gap: 14px;
    padding: 16px;
  }

  .analysis-person {
    min-height: 500px;
  }

  .analysis-orbit {
    grid-template-columns: 1fr;
  }

  .analysis-node {
    padding: 16px;
  }

  .split,
  .scenario-grid,
  .visual-strip,
  .fit-grid,
  .trust-grid,
  .before-after {
    gap: 10px;
    margin-top: 38px;
  }

  .scenario-grid,
  .visual-strip,
  .fit-grid,
  .trust-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .visual-strip__item,
  .visual-strip__item--wide {
    min-height: 300px;
  }

  .poster-card img {
    aspect-ratio: 4 / 3;
  }

  .issue-list li {
    padding: 22px 0 22px 18px;
  }

  .method {
    gap: 38px;
  }

  .method__visual img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .step-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .step-card h3 {
    font-size: 22px;
  }

  .pull-quote {
    font-size: 32px;
  }

  .deliverables {
    gap: 38px;
  }

  .before-after article {
    min-height: auto;
    padding: 22px;
  }

  .cta {
    gap: 32px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .lead-form,
  .contact-card {
    padding: 18px;
  }

  .contact-card {
    grid-template-columns: 72px 1fr;
  }

  .contact-card img {
    width: 72px;
    height: 72px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__media {
    transform: none;
  }

  .analysis-person__frames img:first-child {
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
