:root {
  --bg: #f8f8f6;
  --fg: #111111;
  --muted: #5b5b57;
  --soft: #7a7a74;
  --line: rgba(17, 17, 17, 0.13);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-quiet: rgba(255, 255, 255, 0.42);
  --accent: #c23b2d;
  --accent-soft: #f3ded9;
  --container: 1500px;
  --gutter: clamp(1rem, 2.2vw, 2rem);
  --radius: 8px;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.08);
  --hairline: rgba(17, 17, 17, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(194, 59, 45, 0.05), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.04), transparent 24rem),
    var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 12rem),
    linear-gradient(90deg, rgba(17, 17, 17, 0.015), transparent 18%, transparent 82%, rgba(17, 17, 17, 0.015));
  mix-blend-mode: multiply;
  z-index: -1;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(194, 59, 45, 0.7);
  outline-offset: 3px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}

figure img,
.buildout-card img,
.outcome-card img,
.program-card img,
.trust-badge img {
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

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

input,
select,
textarea,
button {
  min-width: 0;
}

.section {
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 var(--gutter);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline) 18%, var(--hairline) 82%, transparent);
  pointer-events: none;
  transform-origin: top;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 248, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.03);
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .section::before {
  transform: scaleY(0);
  transition: transform 900ms ease;
}

.motion-ready .section.is-visible::before {
  transform: scaleY(1);
}

.site-header__inner {
  min-height: 4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.site-header__brand {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.05rem;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-header__nav a,
.footer-links a,
.hero-link {
  transition: color 180ms ease;
}

.site-header__nav a:hover,
.footer-links a:hover,
.hero-link:hover {
  color: var(--fg);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid var(--fg);
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header__cta:hover,
.cta-primary:hover {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.12);
}

.section-heading .eyebrow,
.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.section-heading h2,
h1 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.9rem;
  font-weight: 500;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 500;
}

.section-header,
.section-footer {
  padding: 0.85rem 0;
}

.header-shell,
.footer-shell,
.hero-shell,
.intro-shell,
.system-shell,
.experience-shell,
.outcomes-shell,
.training-shell,
.trust-shell {
  padding: clamp(1.5rem, 4vw, 4rem) 0;
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-shell--editorial {
  align-items: start;
}

.header-nav,
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.header-nav--center {
  justify-content: center;
  flex: 1;
}

.header-meta {
  display: flex;
  align-items: end;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: end;
  max-width: 24rem;
}

.header-note,
.hero-lede,
.intro-note,
.system-side__copy,
.training-note,
.trust-note,
.footer-note {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.cta-primary {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--fg);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cta-primary::after {
  content: "->";
  margin-left: 0.65rem;
}

.cta-primary:hover {
  transform: translateY(-1px);
}

.brand {
  font-weight: 700;
  letter-spacing: 0;
}

.brand--stacked {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand--stacked small {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero-shell--stacked {
  align-items: start;
}

.hero-copy {
  max-width: 36rem;
}

.hero-copy h1 {
  max-width: 12ch;
}

.hero-lede {
  max-width: 31rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.hero-link {
  color: var(--muted);
}

.hero-points {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  padding: 0.45rem 0.7rem;
}

.hero-collage {
  display: grid;
  min-height: 25rem;
  position: relative;
}

.hero-collage::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  bottom: -0.7rem;
  left: 1.25rem;
  border: 1px solid var(--hairline);
  transform: rotate(-1.2deg);
  pointer-events: none;
  z-index: -1;
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.hero-card::after,
.intro-media::after,
.system-overview__media::after,
.experience-lab__media::after,
.buildout-card::after,
.trust-badge::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.hero-card--large {
  min-height: 0;
}

.hero-card--large img {
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
}

.hero-card--note {
  min-height: 8rem;
}

.hero-card--small {
  min-height: 12rem;
}

.hero-card--captioned {
  display: grid;
  gap: 0.5rem;
  padding: 0.65rem;
}

.hero-card--captioned figcaption {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.hero-card:hover,
.statement-card:hover,
.flow-node:hover,
.mechanic-card:hover,
.buildout-card:hover,
.outcome-card:hover,
.program-card:hover,
.trust-badge:hover {
  transform: translateY(-3px);
}

.hero-card:hover img,
.intro-media:hover img,
.system-overview__media:hover img,
.experience-lab__media:hover img,
.buildout-card:hover img,
.outcome-card:hover img,
.program-card:hover img,
.trust-badge:hover img {
  transform: scale(1.045);
}

.intro-shell--grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.intro-aside {
  max-width: 26rem;
}

.intro-content {
  display: grid;
  gap: 1rem;
  grid-column: 1 / -1;
}

.statement-grid,
.flow-diagram,
.workflow-panels,
.outcome-card-grid,
.program-card-grid,
.trust-bento {
  display: grid;
  gap: 1rem;
}

.statement-grid--offset {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
  position: relative;
}

.statement-grid--offset::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--hairline);
  pointer-events: none;
  transform-origin: left;
}

.motion-ready .statement-grid--offset::before,
.motion-ready .flow-diagram--stacked::before,
.motion-ready .system-mechanics::before,
.motion-ready .experience-buildout::before,
.motion-ready .lab-points::before {
  transform: scaleX(0);
  transition: transform 820ms ease 160ms;
}

.motion-ready .statement-grid--offset:has(.is-visible)::before,
.motion-ready .flow-diagram--stacked:has(.is-visible)::before,
.motion-ready .system-mechanics:has(.is-visible)::before,
.motion-ready .experience-buildout:has(.is-visible)::before,
.motion-ready .lab-points:has(.is-visible)::before {
  transform: scaleX(1);
}

.statement-card {
  min-height: 8.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  align-content: end;
  padding: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.statement-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 3rem;
  height: 3px;
  background: var(--accent);
}

.statement-card::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.statement-card span {
  max-width: 16rem;
  line-height: 1.45;
  font-weight: 600;
}

.statement-card--lead {
  min-height: 11rem;
}

.statement-card:nth-child(2) {
  margin-top: 2.5rem;
}

.statement-card:nth-child(3) {
  margin-top: 5rem;
}

.intro-media-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: start;
}

.intro-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-quiet);
  box-shadow: var(--shadow);
  position: relative;
}

.motion-ready .hero-card--large img,
.motion-ready .system-overview__media img,
.motion-ready .experience-lab__media img {
  animation: editorialDrift 12s ease-in-out infinite alternate;
}

.intro-media--tall {
  min-height: 17rem;
}

.intro-media--short {
  min-height: 15rem;
  margin-top: 1.15rem;
}

.system-shell--flow {
  display: grid;
  gap: clamp(1.25rem, 2.8vw, 2rem);
}

.section-heading--wide {
  max-width: 52rem;
}

.section-deck {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.03rem;
}

.system-layout {
  display: grid;
  grid-template-columns: 0.72fr 2.28fr;
  gap: 1rem;
  align-items: start;
}

.system-overview,
.experience-lab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.system-overview__copy,
.experience-lab__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-height: 16rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}

.system-overview__copy::before,
.experience-lab__copy::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4.5rem;
  height: 1px;
  background: var(--line);
}

.system-overview__copy::after,
.experience-lab__copy::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1px;
  height: 4.5rem;
  background: var(--line);
}

.system-overview__copy p,
.experience-lab__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.system-kicker {
  color: var(--fg) !important;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35 !important;
}

.experience-lab__copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
}

.system-overview__media,
.experience-lab__media {
  margin: 0;
  min-height: 16rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.system-side {
  padding-top: 0.35rem;
  max-width: 18rem;
  position: sticky;
  top: 5.5rem;
}

.system-side__label {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.flow-diagram {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.flow-diagram--stacked {
  grid-template-columns: 1fr;
  position: relative;
}

.flow-diagram--stacked::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.2rem;
  width: 1px;
  background: var(--hairline);
  transform-origin: top;
}

.motion-ready .flow-diagram--stacked::before {
  transform: scaleY(0);
}

.motion-ready .flow-diagram--stacked:has(.is-visible)::before {
  transform: scaleY(1);
}

.flow-node {
  min-height: 8.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  gap: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.flow-node::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
}

.flow-node::after {
  content: "->";
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  color: var(--accent);
  font-size: 0.82rem;
  transition: transform 260ms ease;
}

.flow-node:hover::after,
.text-cta:hover::after,
.cta-primary:hover::after {
  transform: translateX(4px);
}

.flow-node div {
  display: grid;
  gap: 0.5rem;
  max-width: 32rem;
}

.flow-node p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.flow-node ul,
.workflow-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.flow-node li,
.workflow-panel li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.78rem;
  padding: 0.28rem 0.48rem;
}

.flow-node img {
  width: 5.4rem;
  height: 5.4rem;
  flex: 0 0 auto;
  border-radius: var(--radius);
}

.flow-node-worker {
  margin-right: 12%;
}

.flow-node-coordination {
  margin-left: 8%;
  margin-right: 4%;
}

.flow-node-executive {
  margin-left: 14%;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1rem;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.92rem;
}

.text-cta::after {
  content: "->";
  margin-left: 0.5rem;
}

.system-mechanics {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  position: relative;
}

.system-mechanics::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--hairline);
}

.mechanic-card {
  min-height: 11rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.mechanic-card--image {
  grid-row: span 2;
  margin: 0;
}

.mechanic-card--copy {
  display: grid;
  align-content: end;
  padding: 1rem;
}

.mechanic-card--copy::before,
.buildout-card:not(.buildout-card--wide):not(.buildout-card--dark)::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 1.8rem;
  height: 1.8rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.mechanic-card span,
.buildout-card span,
.experience-timeline span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mechanic-card h3,
.buildout-card h3,
.experience-timeline h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.mechanic-card p,
.buildout-card p,
.experience-timeline p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.experience-shell--panels {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.section-heading--compact {
  max-width: 46rem;
}

.experience-heading {
  max-width: 44rem;
}

.experience-steps {
  display: grid;
  gap: 1rem;
  position: relative;
  padding-left: 1.8rem;
}

.experience-steps::before {
  content: "";
  position: absolute;
  left: 0.78rem;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 1px;
  background: var(--hairline);
}

.motion-ready .experience-steps::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 900ms ease 120ms;
}

.motion-ready .experience-steps:has(.is-visible)::before {
  transform: scaleY(1);
}

.experience-step {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.4fr);
  gap: 1.15rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
  overflow: visible;
  box-shadow: 0 12px 35px rgba(17, 17, 17, 0.05);
}

.experience-step__number {
  position: absolute;
  left: -2.1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #171717;
  color: #f8f8f6;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.16);
}

.experience-step__media {
  margin: 0;
  min-height: 14rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid var(--line);
  background: var(--surface-quiet);
}

.experience-step__media img {
  object-position: center center;
}

.experience-step__content {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  padding: 0.45rem 0.35rem 0.45rem 0.15rem;
}

.experience-step__eyebrow {
  color: #c23b2d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-step__content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  max-width: 18ch;
}

.experience-step__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 58rem;
}

.experience-step__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.experience-step__chips span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.6rem 0.7rem;
  font-size: 0.83rem;
  line-height: 1.25;
  color: var(--fg);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.03);
}

.experience-step__chips span:first-child {
  font-weight: 700;
}

.workflow-panel {
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(17, 17, 17, 0.05);
}

.workflow-panel--wide {
  min-height: 18rem;
}

.panel-copy {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.panel-copy strong {
  font-size: 1rem;
}

.panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.experience-strip {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.experience-strip p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.experience-strip img {
  min-height: 10rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.lab-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
  position: relative;
  padding-top: 1rem;
}

.lab-points::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  width: min(18rem, 100%);
  height: 1px;
  background: var(--line);
}

.lab-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.82rem;
  padding: 0.35rem 0.55rem;
}

.experience-buildout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.experience-buildout::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto 1rem;
  height: 1px;
  background: var(--hairline);
  pointer-events: none;
}

.buildout-card {
  min-height: 14rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.buildout-card--wide,
.buildout-card--dark {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: end;
  grid-column: span 2;
  padding: 0;
}

.buildout-card--wide::before,
.buildout-card--dark::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: calc(45% + 0.5rem);
  width: 1px;
  background: var(--line);
  z-index: 1;
}

.buildout-card--wide div,
.buildout-card--dark div {
  padding: 1rem;
}

.buildout-card--wide img,
.buildout-card--dark img {
  min-height: 100%;
}

.buildout-card--dark {
  grid-column: 2 / 4;
  background: #141414;
  color: #f8f8f6;
}

.buildout-card--dark::before {
  background: rgba(248, 248, 246, 0.18);
}

.buildout-card--dark p {
  color: rgba(248, 248, 246, 0.72);
}

.experience-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
}

.experience-timeline article {
  min-height: 12rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
  position: relative;
}

.experience-timeline article::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 1rem;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  transition: background 300ms ease, transform 300ms ease;
}

.experience-timeline article:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  transition: transform 260ms ease;
}

.experience-timeline article:hover::before {
  background: var(--accent);
  transform: scale(1.2);
}

.experience-timeline article:hover::after {
  transform: translateX(4px);
}

.included-note {
  border: 1px solid rgba(194, 59, 45, 0.34);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(49, 29, 25, 0.92)),
    #141414;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.13);
  color: #f8f8f6;
  display: grid;
  gap: 0.55rem;
  overflow: hidden;
  padding: 1.15rem 1.25rem;
  position: relative;
}

.included-note::before {
  content: "";
  position: absolute;
  inset: auto -5rem -6rem auto;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(248, 248, 246, 0.12);
  border-radius: 50%;
  background: transparent;
}

.included-note::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgba(248, 248, 246, 0.26);
  border-right: 1px solid rgba(248, 248, 246, 0.26);
  pointer-events: none;
}

.included-note span {
  width: fit-content;
  border: 1px solid rgba(248, 248, 246, 0.26);
  border-radius: 999px;
  color: #f8f8f6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}

.included-note p {
  margin: 0;
  color: rgba(248, 248, 246, 0.72);
  font-size: 1.02rem;
  line-height: 1.52;
  max-width: 56rem;
}

.included-note--outcomes {
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(49, 29, 25, 0.92)),
    #141414;
}

.section-outcomes--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.outcomes-shell--contrast {
  display: grid;
  gap: 1.25rem;
}

.outcome-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.outcome-card {
  min-height: 10rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7));
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0.5rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
}

.outcome-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.outcome-card img {
  margin-top: 0.5rem;
  min-height: 8rem;
  border-radius: var(--radius);
  object-position: center top;
}

.card-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.section-training--split {
  background: rgba(255, 255, 255, 0.3);
}

.training-shell--split {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 1.5rem;
  align-items: start;
}

.training-aside {
  max-width: 22rem;
}

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

.program-card {
  min-height: 7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.68));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.program-card img {
  min-height: 5rem;
}

.program-card::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  pointer-events: none;
}

.lms-callout {
  grid-column: 1 / -1;
  border: 1px solid rgba(194, 59, 45, 0.34);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(49, 29, 25, 0.92)),
    #141414;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.13);
  color: #f8f8f6;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.lms-callout::before {
  content: "";
  position: absolute;
  inset: auto -5rem -6rem auto;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(248, 248, 246, 0.12);
  border-radius: 50%;
}

.lms-callout::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgba(248, 248, 246, 0.26);
  border-right: 1px solid rgba(248, 248, 246, 0.26);
  pointer-events: none;
}

.lms-callout div {
  display: grid;
  gap: 0.45rem;
  max-width: 48rem;
}

.lms-callout span {
  width: fit-content;
  border: 1px solid rgba(248, 248, 246, 0.26);
  border-radius: 999px;
  color: #f8f8f6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.55rem;
  text-transform: uppercase;
}

.lms-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.08;
}

.lms-callout p {
  color: rgba(248, 248, 246, 0.72);
  line-height: 1.5;
  margin: 0;
}

.section-trust--wall {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(248, 248, 246, 0.7));
}

.trust-shell--wall {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.trust-copy {
  max-width: 48rem;
}

.trust-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(7rem, auto);
  gap: 0.75rem;
}

.trust-badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.68));
  display: grid;
  grid-template-rows: minmax(4.2rem, 0.72fr) auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.trust-badge--large {
  grid-column: span 2;
  grid-row: span 2;
}

.trust-badge--wide {
  grid-column: span 2;
}

.trust-badge img {
  min-height: 4.2rem;
}

.trust-badge div {
  display: grid;
  gap: 0.22rem;
  padding: 0.62rem;
}

.trust-badge span {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-badge h3 {
  font-size: 0.88rem;
  line-height: 1.15;
  margin: 0;
}

.trust-badge p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
  margin: 0;
}

.section-footer--split {
  padding: 4rem 0 2rem;
  background: #f4f4f2;
  border-top: 1px solid var(--line);
}

.footer-shell--split {
  align-items: start;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.5rem;
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-cta {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.footer-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.contact-card strong {
  color: var(--fg);
  font-size: 1.05rem;
}

.contact-card a {
  color: var(--fg);
  text-decoration: none;
  width: fit-content;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-options {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 1rem;
}

.service-options legend {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0 0.35rem;
  text-transform: uppercase;
}

.service-options label {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  gap: 0.45rem;
  padding: 0.55rem 0.72rem;
}

.service-options input {
  accent-color: var(--accent);
  flex: 0 0 auto;
  width: auto;
}

.service-options label span {
  color: var(--fg);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--fg);
  font: inherit;
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: rgba(194, 59, 45, 0.5);
  box-shadow: 0 0 0 4px rgba(194, 59, 45, 0.1);
}

.service-options input,
.service-options input:focus {
  border: 0;
  box-shadow: none;
  padding: 0;
  width: auto;
}

.contact-form button {
  justify-self: start;
}

.footer-note {
  margin: 0;
}

@media (min-width: 900px) {
  .container {
    width: min(var(--container), 90vw);
  }

  .hero-shell {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .hero-shell--stacked {
    grid-template-columns: 1fr 1.1fr;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.3rem;
  }

  .section-heading h2,
  .footer-cta h2 {
    font-size: 2.25rem;
  }

  .system-mechanics,
  .outcome-card-grid,
  .program-card-grid--stacked {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-node img {
    width: 5.5rem;
    height: 5.5rem;
  }
}

@media (max-width: 899px) {
  :root {
    --gutter: 1rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .section-heading h2,
  .footer-cta h2 {
    font-size: 2rem;
  }

  .header-shell,
  .footer-shell,
  .hero-shell,
  .intro-shell,
  .system-shell,
  .experience-shell,
  .outcomes-shell,
  .training-shell,
  .trust-shell {
    padding: clamp(2rem, 7vw, 3rem) 0;
  }

  .site-header__inner {
    min-height: auto;
    padding: 0.8rem 0;
    grid-template-columns: 1fr auto;
  }

  .site-header__nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.15rem 0 0.25rem;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .site-header__nav::-webkit-scrollbar {
    display: none;
  }

  .site-header__nav a {
    flex: 0 0 auto;
  }

  .header-shell,
  .footer-shell,
  .system-layout,
  .system-overview,
  .experience-lab,
  .outcomes-shell--contrast,
  .training-shell--split,
  .trust-shell--wall,
  .footer-shell--split {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .system-side {
    position: static;
    max-width: 34rem;
  }

  .hero-copy,
  .intro-aside,
  .section-heading--wide,
  .section-heading--compact,
  .training-aside,
  .trust-copy {
    max-width: none;
  }

  .header-shell--editorial {
    gap: 1rem;
  }

  .header-nav--center {
    justify-content: flex-start;
  }

  .statement-grid--offset,
  .intro-shell--grid,
  .program-card-grid--stacked,
  .trust-bento,
  .system-mechanics,
  .outcome-card-grid {
    grid-template-columns: 1fr;
  }

  .statement-card:nth-child(2),
  .statement-card:nth-child(3),
  .flow-node-worker,
  .flow-node-coordination,
  .flow-node-executive,
  .intro-media--short {
    margin: 0;
  }

  .intro-media-row,
  .buildout-card--wide,
  .buildout-card--dark,
  .experience-strip,
  .experience-step {
    grid-template-columns: 1fr;
  }

  .intro-content {
    grid-column: auto;
  }

  .hero-collage {
    min-height: 20rem;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-card--large,
  .buildout-card--wide,
  .buildout-card--dark {
    grid-column: auto;
  }

  .hero-card,
  .intro-media,
  .workflow-panel,
  .outcome-card,
  .program-card,
  .trust-badge {
    max-height: none;
  }

  .flow-node {
    margin-left: 0;
    margin-right: 0;
  }

  .system-overview__copy,
  .experience-lab__copy,
  .system-overview__media,
  .experience-lab__media {
    min-height: 14rem;
  }

  .mechanic-card--image {
    grid-row: auto;
  }

  .footer-shell--split {
    gap: 1rem;
  }

  .experience-timeline article:not(:last-child)::after,
  .buildout-card--wide::before,
  .buildout-card--dark::before {
    display: none;
  }

  .experience-step__number {
    left: -1.58rem;
    top: 0.9rem;
  }

  .experience-step__chips {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 0.8rem;
    --radius: 7px;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__inner {
    gap: 0.6rem;
    padding: 0.65rem 0;
  }

  .site-header__brand {
    font-size: 1rem;
  }

  .site-header__nav {
    gap: 0.9rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 2.35rem);
    line-height: 1;
  }

  .section-heading h2,
  .footer-cta h2 {
    font-size: clamp(1.6rem, 8.5vw, 1.9rem);
    line-height: 1.08;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-lede,
  .section-deck,
  .intro-note,
  .footer-note {
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    display: grid;
    gap: 0.7rem;
  }

  .cta-primary,
  .hero-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-proof,
  .lab-points,
  .footer-links {
    gap: 0.4rem;
  }

  .hero-proof span,
  .lab-points span {
    font-size: 0.78rem;
  }

  .hero-collage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0.75rem;
  }

  .hero-card--large {
    grid-row: auto;
    min-height: 0;
  }

  .hero-card--note,
  .hero-card--small,
  .intro-media--tall,
  .intro-media--short {
    min-height: 12rem;
  }

  .hero-card--captioned img {
    height: 11rem;
  }

  .hero-collage::before,
  .statement-grid--offset::before {
    display: none;
  }

  .statement-card,
  .statement-card--lead,
  .mechanic-card,
  .buildout-card,
  .outcome-card,
  .program-card,
  .trust-badge {
    min-height: auto;
  }

  .trust-badge--large,
  .trust-badge--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .statement-card,
  .system-overview__copy,
  .experience-lab__copy,
  .mechanic-card,
  .buildout-card,
  .outcome-card,
  .program-card,
  .included-note,
  .lms-callout,
  .contact-card,
  .contact-form {
    padding: 0.9rem;
  }

  .system-overview__media,
  .experience-lab__media,
  .mechanic-card--image,
  .trust-badge {
    min-height: 11rem;
  }

  .flow-node {
    display: grid;
    gap: 0.85rem;
    min-height: auto;
    padding: 0.9rem;
  }

  .flow-node img {
    width: 100%;
    height: 9rem;
    order: -1;
  }

  .flow-node ul {
    gap: 0.3rem;
  }

  .flow-node li {
    font-size: 0.74rem;
  }

  .buildout-card--wide img,
  .buildout-card--dark img {
    min-height: 12rem;
  }

  .experience-timeline article {
    min-height: auto;
    padding: 0.9rem;
  }

  .outcome-card {
    padding: 0.9rem;
  }

  .outcome-card img {
    min-height: 10rem;
  }

  .experience-step {
    padding: 0.9rem;
  }

  .experience-step__media {
    min-height: 11rem;
  }

  .experience-step__content {
    padding: 0;
  }

  .experience-steps {
    padding-left: 1.45rem;
  }

  .experience-steps::before {
    left: 0.56rem;
  }

  .trust-bento {
    gap: 0.75rem;
  }

  .service-options {
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem;
  }

  .service-options label {
    border-radius: 0.8rem;
    width: 100%;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-radius: 0.75rem;
    padding: 0.78rem 0.8rem;
  }

  .contact-form button {
    justify-self: stretch;
  }
}

@media (max-width: 380px) {
  .site-header__nav {
    font-size: 0.82rem;
  }

  .hero-card--large {
    min-height: 0;
  }

  .footer-links a {
    width: 100%;
  }
}

@keyframes editorialDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.2%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
