:root {
  color-scheme: light;
  --void: #101010;
  --charcoal: #171819;
  --graphite: #262a2d;
  --ink: #171717;
  --ink-soft: #343a40;
  --muted: #6d706b;
  --mist: #f0f2ee;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(23, 23, 23, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --mint: #a8bea7;
  --green: #6f8f72;
  --teal: #4e7c80;
  --cobalt: #59677d;
  --copper: #a67c52;
  --plum: #746b78;
  --rose: #9e6663;
  --shadow: 0 24px 58px rgba(25, 25, 25, 0.14);
  --max: 1180px;
  --radius: 8px;
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(111, 143, 114, 0.42);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #ffffff;
  background: rgba(16, 16, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(142%);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(16, 16, 16, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark svg {
  display: block;
  width: 40px;
  height: 45px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 16px;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #111111;
  background: var(--mint);
  box-shadow: 0 12px 24px rgba(16, 16, 16, 0.16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: #111111;
  background: #bccbb9;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #111111;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 128px;
  background:
    linear-gradient(145deg, transparent 0 47%, rgba(247, 246, 242, 0.98) 47.2% 100%);
  content: "";
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.03) saturate(0.82);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.95) 0%, rgba(16, 16, 16, 0.86) 36%, rgba(16, 16, 16, 0.4) 68%, rgba(16, 16, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.44), rgba(16, 16, 16, 0.08) 44%, rgba(16, 16, 16, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 94px);
  padding-top: 92px;
  padding-bottom: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  max-width: 710px;
  font-size: 78px;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button::after {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  background: currentColor;
  clip-path: polygon(0 45%, 66% 45%, 42% 22%, 54% 10%, 100% 50%, 54% 90%, 42% 78%, 66% 55%, 0 55%);
  content: "";
}

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

.button.primary {
  color: #111111;
  background: var(--mint);
  box-shadow: 0 16px 36px rgba(16, 16, 16, 0.18);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 850;
}

.signal-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 36px));
  margin: -50px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 24, 25, 0.98), rgba(38, 42, 45, 0.98)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.signal-strip div {
  min-height: 128px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(168, 190, 167, 0.08), transparent 42%),
    transparent;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip small {
  display: block;
  min-height: 18px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.signal-strip span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 740px;
}

.section-heading h2,
.academy-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.academy-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.program-list article,
.outcome-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(16, 28, 36, 0.06);
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
  content: "";
}

.service-card::after {
  position: absolute;
  right: -46px;
  bottom: -44px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  transform: rotate(28deg);
  content: "";
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 24, 39, 0.24);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(17, 24, 39, 0.18);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #f4f7f6;
}

.service-icon::before {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  content: "";
}

.service-icon.advisory::before {
  background: var(--cobalt);
  clip-path: polygon(50% 0, 100% 45%, 75% 100%, 25% 100%, 0 45%);
}

.service-icon.projects::before {
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 38% 38%, 38% 100%, 0 100%);
}

.service-icon.training::before {
  border: 3px solid var(--rose);
  background: transparent;
}

.service-icon.talent::before {
  background: var(--teal);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}

.service-icon.support::before {
  background: var(--copper);
  clip-path: circle(50%);
}

.service-icon.automation::before {
  background: linear-gradient(135deg, var(--teal), var(--plum));
  clip-path: polygon(0 28%, 30% 28%, 30% 0, 100% 50%, 30% 100%, 30% 72%, 0 72%);
}

.service-card small {
  display: block;
  margin-top: 30px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 12px 0 12px;
  font-size: 24px;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.workbench-section,
.outcomes-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(23, 24, 25, 0.98), rgba(38, 42, 45, 0.96)),
    var(--charcoal);
}

.workbench-section .section-heading h2,
.outcomes-section .section-heading h2 {
  color: #ffffff;
}

.workbench-section .section-heading p:not(.eyebrow),
.outcomes-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.workbench {
  display: grid;
  gap: 20px;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tab-button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
  cursor: pointer;
}

.tab-button.active {
  color: #111111;
  border-color: transparent;
  background: var(--mint);
}

.track-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: stretch;
}

.track-summary,
.track-detail {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.track-summary {
  position: relative;
  overflow: hidden;
  padding: 32px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(78, 124, 128, 0.7), rgba(89, 103, 125, 0.38) 58%, rgba(166, 124, 82, 0.3)),
    #1b1d1e;
}

.track-summary::after {
  position: absolute;
  right: -34px;
  bottom: -54px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transform: rotate(23deg);
  content: "";
}

.track-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 900;
}

.track-summary h3 {
  position: relative;
  z-index: 1;
  margin: 42px 0 16px;
  font-size: 46px;
  line-height: 1;
}

.track-summary p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.62;
}

.track-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.track-point {
  min-height: 179px;
  padding: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.065);
}

.track-point strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.track-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 28, 36, 0.06);
}

.timeline-item::before {
  position: absolute;
  top: 43px;
  left: 76px;
  right: -21px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(23, 23, 23, 0.12));
  content: "";
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #111111;
  background: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.timeline-item h3 {
  margin: 56px 0 10px;
  font-size: 22px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.academy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: start;
}

.academy-copy {
  position: sticky;
  top: 104px;
}

.academy-copy p {
  max-width: 540px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--teal);
  font-weight: 950;
  text-decoration: none;
}

.text-link::after {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  clip-path: polygon(0 45%, 66% 45%, 42% 22%, 54% 10%, 100% 50%, 54% 90%, 42% 78%, 66% 55%, 0 55%);
  content: "";
}

.text-link:hover {
  text-decoration: underline;
}

.program-list {
  display: grid;
  gap: 14px;
}

.program-list article {
  position: relative;
  min-height: 144px;
  padding: 24px 24px 24px 88px;
  overflow: hidden;
}

.program-list article::before {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(168, 190, 167, 0.82), rgba(89, 103, 125, 0.18)),
    #f2f4f0;
  content: "";
}

.program-list strong,
.program-list span {
  display: block;
}

.program-list strong {
  font-size: 22px;
}

.program-list span {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.6;
}

.talent-section {
  border-top: 1px solid var(--line);
}

.role-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.role-card {
  min-height: 164px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 247, 0.92)),
    var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.role-card:hover,
.role-card.active {
  transform: translateY(-4px);
  border-color: rgba(78, 124, 128, 0.45);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.1);
}

.role-card span,
.role-card strong {
  display: block;
}

.role-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.role-card strong {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.34;
}

.role-detail {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.03), rgba(168, 190, 167, 0.08)),
    rgba(255, 255, 255, 0.92);
}

.role-detail h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

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

.role-detail li {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  line-height: 1.45;
}

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

.outcome-grid article {
  min-height: 232px;
  padding: 23px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.outcome-grid span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(168, 190, 167, 0.32);
  border-radius: 8px;
  color: var(--mint);
  background: rgba(168, 190, 167, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.outcome-grid h3 {
  margin: 44px 0 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.35;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: start;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 24, 25, 0.98), rgba(38, 42, 45, 0.98)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  padding: 13px 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.contact-form select {
  color: #ffffff;
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}

.form-output {
  display: none;
  padding: 16px;
  border: 1px solid rgba(168, 190, 167, 0.28);
  border-radius: 8px;
  color: #edf5ea;
  background: rgba(168, 190, 167, 0.13);
  line-height: 1.55;
}

.form-output.visible {
  display: block;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer p {
  max-width: 790px;
  margin: 0;
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.service-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.page-main {
  overflow: hidden;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  min-height: 660px;
  padding: 150px max(18px, calc((100vw - var(--max)) / 2)) 88px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 28%, rgba(168, 190, 167, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(16, 16, 16, 0.99), rgba(38, 42, 45, 0.98));
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy .eyebrow,
.page-cta .eyebrow {
  color: var(--mint);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.62;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.page-hero-panel span {
  display: grid;
  min-height: 84px;
  padding: 14px;
  place-items: end start;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.page-section {
  scroll-margin-top: 76px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.detail-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 38px rgba(16, 28, 36, 0.06);
  scroll-margin-top: 96px;
}

.compact-grid .detail-card {
  min-height: 250px;
}

.detail-card > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card h3 {
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1.18;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.detail-card p {
  margin: 0;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 19px;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-step > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.process-step h3 {
  margin: 48px 0 10px;
  font-size: 22px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.page-academy {
  align-items: start;
}

.page-cta {
  display: grid;
  justify-items: start;
  padding: clamp(72px, 8vw, 108px) max(18px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(78, 124, 128, 0.3), transparent 52%),
    var(--charcoal);
}

.page-cta h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

.page-cta > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.6;
}

.contact-page-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
}

.contact-page-section .contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-wide {
  grid-column: 1 / -1;
}

.contact-expectations {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-expectations article {
  display: grid;
  gap: 5px;
  padding: 15px;
  border-left: 3px solid var(--mint);
  background: rgba(255, 255, 255, 0.66);
}

.contact-expectations strong {
  font-size: 13px;
}

.contact-expectations span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-enquiry[hidden] {
  display: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.success {
  color: #d9f2d5;
}

.form-status.error {
  color: #ffc1bc;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-nav a {
  font-size: 12px;
}

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .signal-strip strong {
    font-size: 30px;
  }

  .section-heading h2,
  .academy-copy h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .track-summary h3 {
    font-size: 40px;
  }

  .signal-strip,
  .service-grid,
  .timeline,
  .role-board,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .track-panel,
  .academy-section,
  .contact-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero {
    gap: 42px;
    min-height: auto;
    padding-top: 132px;
  }

  .page-hero-panel {
    max-width: 620px;
  }

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

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

  .academy-copy,
  .contact-copy {
    position: static;
  }

  .timeline-item:nth-child(2)::before {
    display: none;
  }

  .role-detail ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(16, 16, 16, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 150ms ease, transform 150ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::after {
    height: 88px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 16, 16, 0.96), rgba(16, 16, 16, 0.66)),
      linear-gradient(180deg, rgba(16, 16, 16, 0.48), rgba(16, 16, 16, 0.78));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 76px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .timeline,
  .track-detail,
  .role-board,
  .outcome-grid,
  .detail-grid,
  .detail-grid.compact-grid,
  .process-grid,
  .process-grid.four-column {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 110px;
    padding-bottom: 62px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .page-hero-panel span {
    min-height: 68px;
  }

  .detail-card,
  .compact-grid .detail-card,
  .process-step {
    min-height: auto;
  }

  .signal-strip {
    margin-top: -32px;
  }

  .signal-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .signal-strip strong {
    font-size: 28px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .academy-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-heading p:not(.eyebrow),
  .academy-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .service-card,
  .track-point,
  .program-list article,
  .role-card,
  .outcome-grid article {
    min-height: auto;
  }

  .track-summary,
  .track-detail {
    min-height: auto;
  }

  .track-summary h3 {
    font-size: 34px;
  }

  .timeline-item::before {
    top: 66px;
    left: 44px;
    right: auto;
    bottom: -20px;
    width: 2px;
    height: auto;
  }

  .timeline-item:nth-child(2)::before {
    display: block;
  }

  .timeline-item:last-child::before {
    display: none;
  }

  .timeline-item h3 {
    margin-top: 34px;
  }

  .program-list article {
    padding: 82px 22px 22px;
  }

  .contact-section {
    padding: 66px 0;
  }

  .contact-form {
    padding: 18px;
  }

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

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

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

  .hero-copy {
    font-size: 16px;
  }

  .hero-proof span {
    min-height: 30px;
    font-size: 11px;
  }
}
