:root {
  --color-bg: #f4f7f9;
  --color-bg-dark: #040d1d;
  --color-surface: #ffffff;
  --color-surface-soft: #f6f8fa;
  --color-surface-dark: #071a31;
  --color-text: #111927;
  --color-text-muted: #5a6876;
  --color-accent: #58d7e6;
  --color-accent-strong: #1799c4;
  --color-accent-soft: rgba(88, 215, 230, 0.12);
  --color-border: rgba(19, 48, 82, 0.14);
  --color-border-strong: rgba(19, 48, 82, 0.24);
  --color-focus: #8eeaf2;
  --shadow-soft: 0 18px 48px rgba(6, 22, 43, 0.1);
  --shadow-card: 0 22px 58px rgba(6, 22, 43, 0.13);
  --shadow-panel: 0 30px 80px rgba(2, 9, 20, 0.28);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --space-section: clamp(72px, 8vw, 118px);
  --space-section-sm: clamp(50px, 6vw, 82px);
  --container-width: 1180px;
  --navy-950: #06162b;
  --navy-900: #091f3e;
  --navy-800: #102e5c;
  --navy-700: #183e73;
  --cyan-500: var(--color-accent-strong);
  --cyan-300: var(--color-accent);
  --teal-600: #0f7f8d;
  --amber-500: #b98b44;
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --paper: var(--color-bg);
  --white: var(--color-surface);
  --line: var(--color-border);
  --shadow: var(--shadow-card);
  --radius: var(--radius-lg);
  --header-height: 76px;
  --hero-screen-min: 100svh;
}

@supports (min-height: 100dvh) {
  :root {
    --hero-screen-min: 100dvh;
  }
}

/* Booking-first UX layer */
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.62fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
}

.split-heading > p,
.rich-copy p {
  color: rgba(232, 242, 249, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.booking-section,
.program-family-section,
.path-choice-section,
.process-section,
.guidance-form-section,
.custom-proof-section,
.detail-overview-section,
.calendar-list-section,
.about-origin-section,
.policy-copy {
  background:
    radial-gradient(circle at 82% 0%, rgba(50, 205, 226, 0.08), transparent 34rem),
    #f7fafc;
  color: #06121f;
}

.booking-section .section-kicker,
.program-family-section .section-kicker,
.path-choice-section .section-kicker,
.process-section .section-kicker,
.guidance-form-section .section-kicker,
.custom-proof-section .section-kicker,
.detail-overview-section .section-kicker,
.calendar-list-section .section-kicker,
.about-origin-section .section-kicker,
.policy-copy .section-kicker {
  color: #05758b;
}

.booking-section h2,
.program-family-section h2,
.path-choice-section h2,
.process-section h2,
.guidance-form-section h2,
.custom-proof-section h2,
.detail-overview-section h2,
.calendar-list-section h2,
.about-origin-section h2,
.policy-copy h2 {
  color: #071626;
}

.booking-section p,
.program-family-section p,
.path-choice-section p,
.process-section p,
.guidance-form-section p,
.custom-proof-section p,
.detail-overview-section p,
.calendar-list-section p,
.about-origin-section p,
.policy-copy p {
  color: #516071;
}

.booking-card-grid,
.program-family-grid,
.path-choice-grid,
.image-story-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.single-feature {
  grid-template-columns: minmax(0, 1fr);
}

.workshop-card,
.program-card,
.program-family-grid article,
.path-choice-grid article,
.path-choice-grid a,
.detail-card,
.policy-grid article {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(6, 18, 31, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-choice-grid a {
  display: block;
}

.workshop-card:hover,
.program-card:hover,
.program-family-grid article:hover,
.path-choice-grid article:hover,
.path-choice-grid a:hover,
.detail-card:hover,
.policy-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(50, 205, 226, 0.42);
  box-shadow: 0 24px 52px rgba(6, 18, 31, 0.12);
}

.workshop-card h3,
.program-card h3,
.program-family-grid h3,
.path-choice-grid h3,
.detail-card h2,
.policy-grid h2 {
  margin: 0 0 0.7rem;
  color: #071626;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: normal;
}

.program-card > span,
.program-family-grid article > span,
.status-badge,
.workshop-card-top span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  color: #05758b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workshop-card-top,
.booking-actions,
.section-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.workshop-card-top {
  justify-content: space-between;
}

.program-matrix-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  max-width: none;
}

.program-matrix-heading .section-kicker,
.program-matrix-heading h2 {
  grid-column: 1;
}

.program-matrix-heading p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: #405775;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.6;
}

.program-matrix {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 82px rgba(6, 18, 31, 0.11);
}

.program-matrix-row {
  display: grid;
  grid-template-columns: 70px minmax(230px, 1.2fr) minmax(250px, 1.35fr) minmax(210px, 250px);
  min-height: 116px;
  border-bottom: 1px solid rgba(8, 24, 41, 0.12);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.program-matrix-row:last-child {
  border-bottom: 0;
}

.program-matrix-row[hidden] {
  display: none;
}

.program-matrix-row:hover,
.program-matrix-row:focus-within {
  background: rgba(246, 252, 254, 0.9);
}

.program-matrix-cell {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 1.8vw, 1.45rem) clamp(1rem, 2vw, 1.7rem);
  border-right: 1px solid rgba(8, 24, 41, 0.12);
}

.program-matrix-cell:last-child {
  border-right: 0;
}

.program-matrix-number {
  align-items: center;
  color: #0392b4;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.program-matrix-program span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.4rem;
  color: #375473;
  font-size: 0.82rem;
  font-weight: 900;
}

.program-matrix-program h3 {
  margin: 0;
  color: #071626;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.program-matrix-outcome p {
  margin: 0;
  color: #35516f;
  font-size: 0.96rem;
  line-height: 1.48;
}

.program-matrix-actions {
  gap: 0.65rem;
}

.program-matrix-actions .button {
  width: 100%;
  min-height: 42px;
  padding-inline: 0.85rem;
  font-size: 0.84rem;
}

.program-matrix-actions .button-secondary {
  color: #071626;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(50, 205, 226, 0.55);
}

.program-matrix-actions .button-secondary:hover,
.program-matrix-actions .button-secondary:focus-visible {
  color: var(--white);
  background: var(--navy-800);
  border-color: rgba(88, 215, 230, 0.6);
}

.workshop-meta {
  font-weight: 700;
}

.featured-workshop-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(6, 18, 31, 0.09);
}

.featured-workshop-visual {
  position: relative;
  min-height: 340px;
  margin: 0;
  background: #071626;
}

.featured-workshop-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.featured-workshop-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 13, 25, 0.12), rgba(3, 13, 25, 0.72));
  pointer-events: none;
}

.featured-workshop-visual figcaption {
  position: absolute;
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  bottom: clamp(1rem, 2.4vw, 1.6rem);
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  color: var(--white);
}

.featured-workshop-visual figcaption span {
  color: var(--cyan-300);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-workshop-visual figcaption strong {
  color: var(--white);
  font-size: clamp(2.45rem, 4.5vw, 4rem);
  line-height: 0.98;
}

.featured-workshop-visual figcaption em {
  color: rgba(239, 248, 255, 0.88);
  font-size: 1rem;
  font-style: normal;
  font-weight: 750;
}

.featured-workshop-content {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: clamp(1.4rem, 3.2vw, 2.6rem);
}

.featured-workshop-content .workshop-card-top {
  margin-bottom: 0.7rem;
}

.featured-workshop-content h3 {
  max-width: 680px;
  margin: 0;
  color: #071626;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.featured-workshop-content p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: #516071;
  font-size: clamp(1rem, 1.22vw, 1.1rem);
  line-height: 1.58;
}

.featured-workshop-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.25rem 0 1.45rem;
  list-style: none;
}

.featured-workshop-points li {
  padding: 0.58rem 0.72rem;
  color: #071626;
  background: rgba(88, 215, 230, 0.11);
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
}

@media (max-width: 820px) {
  .featured-workshop-panel {
    grid-template-columns: 1fr;
  }

  .featured-workshop-visual {
    min-height: 260px;
  }

  .featured-workshop-content .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .featured-workshop-points {
    display: grid;
  }
}

.calendar-save-shell {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.calendar-save {
  position: relative;
  display: grid;
  gap: 0.65rem;
  align-self: flex-start;
}

.calendar-save summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  width: fit-content;
  padding: 0.84rem 1rem 0.84rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  user-select: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.calendar-save summary::-webkit-details-marker {
  display: none;
}

.calendar-save summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.14rem;
  border-right: 2px solid #58d7e6;
  border-bottom: 2px solid #58d7e6;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 160ms ease;
}

.calendar-save[open] summary {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(88, 215, 230, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(6, 18, 31, 0.18);
}

.calendar-save[open] summary::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.calendar-save summary:hover,
.calendar-save summary:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(88, 215, 230, 0.44);
}

.calendar-save-menu {
  display: grid;
  gap: 0.45rem;
  min-width: min(340px, 84vw);
  padding: 0.6rem;
  border: 1px solid rgba(88, 215, 230, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 31, 0.96);
  box-shadow: 0 24px 58px rgba(6, 18, 31, 0.22);
}

.calendar-save-link {
  display: grid;
  gap: 0.18rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.calendar-save-link strong {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.3;
}

.calendar-save-link span {
  color: rgba(232, 242, 249, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.calendar-save-link:hover,
.calendar-save-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(88, 215, 230, 0.08);
  border-color: rgba(88, 215, 230, 0.28);
}

.detail-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.detail-list div {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(8, 24, 41, 0.1);
}

.detail-list dt {
  color: #05758b;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: #253244;
}

.booking-signal-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(50, 205, 226, 0.1), transparent 36rem),
    linear-gradient(180deg, #f7fafc, #eef4f8);
}

.booking-signal-section .page-shell {
  width: min(1424px, calc(100% - 110px));
}

.booking-signal-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 7vw, 6.5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.booking-signal-heading h2 {
  max-width: 740px;
  font-size: clamp(2.65rem, 4.25vw, 4.8rem);
  font-weight: 390;
  line-height: 1.05;
}

.booking-signal-heading > p {
  max-width: 520px;
  margin: 0;
  color: #2f4360;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.68;
}

.booking-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: 1.2rem;
  align-items: stretch;
}

.booking-signal-main,
.booking-signal-steps {
  border: 1px solid rgba(6, 18, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(6, 18, 31, 0.08);
  overflow: hidden;
}

.booking-signal-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.42fr) minmax(0, 0.68fr);
  min-width: 0;
  min-height: clamp(560px, 54vw, 690px);
  background: #061626;
  isolation: isolate;
}

.booking-signal-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.18) 42%, rgba(2, 8, 18, 0.66) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.04), rgba(2, 8, 18, 0.28));
  pointer-events: none;
}

.booking-signal-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  background: #071626;
}

.booking-signal-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.92) contrast(1.04);
}

.booking-signal-body {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 3rem);
  border-left: 1px solid rgba(88, 215, 230, 0.26);
  color: #f7fbff;
  background:
    linear-gradient(180deg, rgba(7, 61, 96, 0.72), rgba(4, 30, 56, 0.78));
  backdrop-filter: blur(10px);
}

.booking-signal-body .status-badge {
  margin-bottom: 1rem;
  color: #86f2ff;
  letter-spacing: 0.16em;
}

.booking-signal-body h3 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 2.75vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.booking-signal-body p {
  max-width: 560px;
  margin: 0.8rem 0 0;
  color: rgba(239, 248, 255, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.booking-signal-strip {
  display: grid;
  grid-template-columns: 1fr;
  margin: clamp(1.5rem, 3vw, 2.2rem) 0 0;
  border: 1px solid rgba(239, 248, 255, 0.16);
  background: rgba(2, 12, 25, 0.18);
}

.booking-signal-strip div {
  display: grid;
  grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(239, 248, 255, 0.14);
}

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

.booking-signal-strip dt {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 1rem clamp(1rem, 1.8vw, 1.35rem);
  border-right: 1px solid rgba(239, 248, 255, 0.14);
  color: #86f2ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-signal-strip dd {
  margin: 0;
  padding: 1rem clamp(1rem, 1.8vw, 1.35rem);
  color: #ffffff;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 850;
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: normal;
}

.booking-signal-steps {
  display: grid;
  grid-template-rows: auto repeat(3, 1fr);
}

.booking-signal-route-intro {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  color: #f7fbff;
  background:
    linear-gradient(135deg, rgba(7, 22, 38, 0.98), rgba(4, 53, 82, 0.94));
  border-bottom: 1px solid rgba(6, 18, 31, 0.1);
}

.booking-signal-route-intro span {
  color: #86f2ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-signal-route-intro p {
  max-width: 25rem;
  margin: 0;
  color: rgba(239, 248, 255, 0.82);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  line-height: 1.52;
}

.booking-signal-steps a {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  color: #071626;
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 18, 31, 0.1);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.booking-signal-steps a:last-child {
  border-bottom: 0;
}

.booking-signal-steps a:hover,
.booking-signal-steps a:focus-visible {
  color: #03111d;
  background: linear-gradient(90deg, rgba(50, 205, 226, 0.14), rgba(255, 255, 255, 0.78));
  box-shadow: inset 4px 0 0 var(--cyan-500);
  outline: none;
}

.booking-signal-steps span {
  color: var(--cyan-500);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.booking-signal-steps strong {
  display: block;
  margin-top: 0.9rem;
  color: currentColor;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
}

.booking-signal-steps em {
  display: block;
  margin-top: 0.35rem;
  color: #516071;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  font-style: normal;
  line-height: 1.42;
}

.path-linear-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 104px) 0 clamp(76px, 8vw, 110px);
  background:
    radial-gradient(circle at 88% 2%, rgba(88, 215, 230, 0.12), transparent 34rem),
    linear-gradient(180deg, #f6f9fc 0%, #f8fbfd 100%);
  color: #071626;
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.path-linear-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.52fr);
  column-gap: clamp(2rem, 6vw, 6.5rem);
  row-gap: clamp(0.35rem, 0.85vw, 0.75rem);
  align-items: end;
}

.path-linear-copy {
  margin: 0;
}

.path-linear-section .section-kicker {
  color: var(--cyan-500);
}

.path-linear-copy h2 {
  max-width: 850px;
  color: #071626;
  font-size: clamp(3.25rem, 5.25vw, 5.35rem);
  font-weight: 360;
  line-height: 1.02;
  letter-spacing: 0;
}

.path-linear-copy h2 span {
  color: inherit;
}

.path-linear-intro {
  max-width: 560px;
  justify-self: end;
  padding-bottom: clamp(0.4rem, 1vw, 0.8rem);
}

.path-linear-intro p {
  margin: 0;
  color: #38506b;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
}

.path-linear-band {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(0.2rem, 0.55vw, 0.45rem);
  overflow: hidden;
  border: 1px solid rgba(6, 18, 31, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 70px rgba(6, 18, 31, 0.1);
}

.path-linear-card {
  position: relative;
  min-height: clamp(300px, 24vw, 360px);
  display: flex;
  flex-direction: column;
  padding: clamp(1.55rem, 2.45vw, 2.15rem);
  color: #071626;
  text-decoration: none;
  border-right: 1px solid rgba(6, 18, 31, 0.1);
  background: rgba(255, 255, 255, 0.94);
  isolation: isolate;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.path-linear-card:last-child {
  border-right: 0;
}

.path-linear-card-active {
  background: rgba(255, 255, 255, 0.94);
}

.path-linear-card::before {
  content: "";
  position: absolute;
  left: calc(clamp(1.55rem, 2.45vw, 2.15rem) + 9px);
  right: -1px;
  top: 52%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(88, 215, 230, 0.92), rgba(88, 215, 230, 0.64));
}

.path-linear-card:last-child::before {
  right: clamp(48px, 7vw, 128px);
}

.path-linear-card::after {
  content: "";
  position: absolute;
  left: clamp(1.55rem, 2.45vw, 2.15rem);
  top: calc(52% - 9px);
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan-300);
  box-shadow: 0 0 0 18px rgba(88, 215, 230, 0.1), 0 0 34px rgba(88, 215, 230, 0.34);
  transform-origin: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.path-linear-card span {
  position: relative;
  z-index: 2;
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.path-linear-card strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 280px;
  margin-top: 1.25rem;
  color: #071626;
  font-size: clamp(1.42rem, 1.9vw, 1.72rem);
  line-height: 1.08;
}

.path-linear-card em {
  position: absolute;
  left: clamp(1.55rem, 2.45vw, 2.15rem);
  right: clamp(1.55rem, 2.45vw, 2.15rem);
  top: calc(52% + 42px);
  z-index: 2;
  display: block;
  max-width: 300px;
  margin-top: 0;
  color: #38506b;
  font-size: clamp(0.95rem, 1.08vw, 1.02rem);
  font-style: normal;
  line-height: 1.48;
}

.path-linear-card:hover,
.path-linear-card:focus-visible {
  background:
    linear-gradient(180deg, rgba(5, 17, 34, 0.58), rgba(5, 17, 34, 0.74)),
    linear-gradient(90deg, rgba(5, 22, 42, 0.56), rgba(5, 22, 42, 0.18)),
    var(--path-image) center / cover no-repeat,
    #071626;
  box-shadow:
    inset 0 0 0 2px rgba(88, 215, 230, 0.72),
    0 28px 64px rgba(6, 18, 31, 0.18);
  transform: translateY(-3px);
  outline: none;
}

.path-linear-card:hover::after,
.path-linear-card:focus-visible::after {
  animation: pathLinearDotPulse 1.1s ease-out infinite;
}

.path-linear-card:hover span,
.path-linear-card:focus-visible span {
  color: var(--cyan-300);
}

.path-linear-card:hover strong,
.path-linear-card:focus-visible strong {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.path-linear-card:hover em,
.path-linear-card:focus-visible em {
  color: rgba(232, 242, 249, 0.86);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
}

@keyframes pathLinearDotPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 18px rgba(88, 215, 230, 0.1),
      0 0 34px rgba(88, 215, 230, 0.34),
      0 0 0 0 rgba(88, 215, 230, 0.35);
  }

  70% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 20px rgba(88, 215, 230, 0.14),
      0 0 42px rgba(88, 215, 230, 0.42),
      0 0 0 28px rgba(88, 215, 230, 0);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 18px rgba(88, 215, 230, 0.1),
      0 0 34px rgba(88, 215, 230, 0.34),
      0 0 0 0 rgba(88, 215, 230, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .path-linear-card:hover::after,
  .path-linear-card:focus-visible::after {
    animation: none;
    transform: none;
    box-shadow:
      0 0 0 20px rgba(88, 215, 230, 0.14),
      0 0 42px rgba(88, 215, 230, 0.4);
  }
}

.path-orbit-section {
  position: relative;
  min-height: clamp(650px, 74vw, 780px);
  overflow: hidden;
  color: var(--white);
  background: #030b17;
  isolation: isolate;
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.path-orbit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 23, 0.98), rgba(3, 11, 23, 0.78) 48%, rgba(3, 11, 23, 0.7)),
    linear-gradient(180deg, rgba(3, 11, 23, 0.22), rgba(3, 11, 23, 0.84)),
    radial-gradient(circle at 78% 20%, rgba(88, 215, 230, 0.14), transparent 30rem),
    #030b17;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.02);
}

.path-orbit-section::after {
  content: "";
  position: absolute;
  inset: auto -10vw -16vh auto;
  z-index: 1;
  width: 82vw;
  height: 58vh;
  border-top: 1px solid rgba(88, 215, 230, 0.28);
  border-radius: 100% 0 0 0;
  pointer-events: none;
}

.path-orbit-layout {
  position: relative;
  z-index: 2;
  min-height: clamp(540px, 58vw, 650px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: clamp(3rem, 6vw, 5.8rem);
  align-items: center;
}

.path-orbit-copy {
  max-width: 650px;
  margin-bottom: 0;
}

.path-orbit-section .section-kicker {
  color: var(--cyan-300);
}

.path-orbit-section .path-orbit-copy h2 {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 380;
  line-height: 1.02;
  letter-spacing: 0;
}

.path-orbit-section .path-orbit-copy h2 span {
  color: var(--cyan-300);
}

.path-orbit-copy p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 1.35rem;
  color: rgba(239, 248, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.65;
}

.path-orbit-stage {
  position: relative;
  min-height: clamp(500px, 44vw, 580px);
}

.path-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(320px, 32vw, 430px);
  height: clamp(320px, 32vw, 430px);
  border: 1px solid rgba(88, 215, 230, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 72px rgba(88, 215, 230, 0.13);
}

.path-orbit-ring::before,
.path-orbit-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.path-orbit-ring::before {
  inset: 16%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.path-orbit-ring::after {
  inset: 36%;
  border: 1px solid rgba(88, 215, 230, 0.2);
}

.path-orbit-ring img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(104px, 9vw, 132px);
  height: auto;
  transform: translate(-50%, -50%) perspective(520px) rotateY(-24deg);
  filter: drop-shadow(0 22px 38px rgba(88, 215, 230, 0.25));
}

.path-orbit-node {
  position: absolute;
  z-index: 2;
  width: min(270px, 34vw);
  min-height: 150px;
  display: grid;
  align-content: center;
  padding: 1.2rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(5, 18, 38, 0.9), rgba(3, 12, 26, 0.78)),
    rgba(3, 12, 26, 0.88);
  border: 1px solid rgba(88, 215, 230, 0.3);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.path-orbit-node:hover,
.path-orbit-node:focus-visible {
  border-color: rgba(88, 215, 230, 0.62);
  background:
    linear-gradient(135deg, rgba(88, 215, 230, 0.12), rgba(3, 12, 26, 0.88)),
    rgba(3, 12, 26, 0.92);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.3), 0 0 34px rgba(88, 215, 230, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.path-orbit-node span {
  color: var(--cyan-300);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.path-orbit-node strong {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.08;
}

.path-orbit-node em {
  display: block;
  margin-top: 0.45rem;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.36;
}

.path-orbit-node-one {
  left: 4%;
  top: 7%;
}

.path-orbit-node-two {
  right: 0;
  top: 14%;
}

.path-orbit-node-three {
  left: 10%;
  bottom: 12%;
}

.path-orbit-node-four {
  right: 4%;
  bottom: 7%;
}

@media (max-width: 1100px) {
  .booking-signal-section .page-shell {
    width: min(var(--container-width), calc(100% - 44px));
  }

  .booking-signal-heading,
  .booking-signal-grid {
    grid-template-columns: 1fr;
  }

  .booking-signal-heading > p {
    max-width: 760px;
  }

  .booking-signal-main {
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 0.56fr);
  }

  .booking-signal-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .booking-signal-route-intro {
    grid-column: 1 / -1;
  }

  .booking-signal-steps a {
    border-bottom: 0;
    border-right: 1px solid rgba(6, 18, 31, 0.1);
  }

  .booking-signal-steps a:last-child {
    border-right: 0;
  }

  .path-linear-layout {
    grid-template-columns: 1fr;
    row-gap: 0.55rem;
    column-gap: 0;
  }

  .path-linear-intro {
    justify-self: start;
    max-width: 780px;
  }

  .path-linear-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.35rem;
  }

  .path-linear-card {
    min-height: 260px;
  }

  .path-orbit-section {
    min-height: auto;
  }

  .path-orbit-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .path-orbit-copy {
    max-width: 760px;
  }

  .path-orbit-stage {
    min-height: 560px;
  }

  .path-orbit-node {
    width: min(250px, 42vw);
  }
}

@media (max-width: 740px) {
  .booking-signal-section .page-shell {
    width: min(var(--container-width), calc(100% - 28px));
  }

  .booking-signal-heading {
    gap: 1rem;
    margin-bottom: 1.35rem;
  }

  .booking-signal-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .booking-signal-main,
  .booking-signal-steps,
  .booking-signal-strip {
    grid-template-columns: 1fr;
  }

  .booking-signal-main {
    min-height: auto;
    padding-top: clamp(12rem, 56vw, 18rem);
  }

  .booking-signal-main::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.34) 42%, rgba(2, 8, 18, 0.76) 100%);
  }

  .booking-signal-photo img {
    object-position: center top;
  }

  .booking-signal-body {
    grid-column: 1;
    width: auto;
    margin: 0;
    padding: 1.3rem;
    border-top: 1px solid rgba(88, 215, 230, 0.26);
    border-left: 0;
    background:
      linear-gradient(180deg, rgba(7, 61, 96, 0.8), rgba(4, 30, 56, 0.86));
  }

  .booking-signal-body h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }

  .booking-signal-route-intro {
    padding: 1.25rem;
  }

  .booking-signal-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 31, 0.1);
  }

  .booking-signal-steps a {
    min-height: 128px;
    padding: 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 31, 0.1);
  }

  .booking-signal-steps a:last-child {
    border-bottom: 0;
  }

  .path-linear-section {
    padding: clamp(54px, 13vw, 76px) 0;
  }

  .path-linear-copy h2 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

  .path-linear-intro p {
    font-size: 1rem;
  }

  .path-linear-band {
    grid-template-columns: 1fr;
    margin-top: 0.35rem;
  }

  .path-linear-card {
    min-height: 0;
    padding: 1.35rem 1.25rem 1.35rem 4.15rem;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 31, 0.1);
  }

  .path-linear-card:last-child {
    border-bottom: 0;
  }

  .path-linear-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(6, 18, 31, 0.1);
  }

  .path-linear-card::before {
    left: 2.02rem;
    right: auto;
    top: 2.1rem;
    bottom: -1px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(88, 215, 230, 0.86), rgba(88, 215, 230, 0.3));
  }

  .path-linear-card:last-child::before {
    display: none;
  }

  .path-linear-card::after {
    left: 1.5rem;
    top: 1.55rem;
  }

  .path-linear-card strong {
    margin-top: 0.9rem;
    font-size: clamp(1.28rem, 6vw, 1.65rem);
  }

  .path-linear-card em {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 0.85rem;
  }

  .path-orbit-section {
    padding: var(--space-section-sm) 0;
  }

.path-orbit-bg {
    background:
      linear-gradient(90deg, rgba(3, 11, 23, 0.97), rgba(3, 11, 23, 0.9)),
      linear-gradient(180deg, rgba(3, 11, 23, 0.28), rgba(3, 11, 23, 0.92)),
      radial-gradient(circle at 72% 18%, rgba(88, 215, 230, 0.14), transparent 28rem),
      #030b17;
  }

  .path-orbit-section h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.4rem);
  }

  .path-orbit-stage {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
  }

  .path-orbit-ring {
    position: relative;
    left: auto;
    top: auto;
    width: min(220px, 58vw);
    height: min(220px, 58vw);
    margin: 0 auto 0.8rem;
    transform: none;
    opacity: 0.7;
  }

  .path-orbit-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 116px;
  }

  .path-orbit-node:hover,
  .path-orbit-node:focus-visible {
    transform: none;
  }
}

.calendar-list {
  display: grid;
  gap: 0.85rem;
}

.calendar-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.calendar-row > div {
  min-width: 0;
}

.calendar-row time,
.calendar-row > span {
  color: #05758b;
  font-weight: 800;
}

.calendar-row h3 {
  margin: 0 0 0.25rem;
  overflow-wrap: anywhere;
  word-break: normal;
}

.muted-row {
  opacity: 0.82;
}

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

.contact-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-family-grid article a {
  display: inline-flex;
  margin-top: 1rem;
  color: #05758b;
  font-weight: 800;
  text-decoration: none;
}

.program-preview-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #030a16;
  isolation: isolate;
}

.program-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("assets/training/edunex-clean-boardroom.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.program-preview-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 10, 22, 0.94), rgba(3, 10, 22, 0.86)),
    linear-gradient(180deg, rgba(3, 10, 22, 0.2), rgba(3, 10, 22, 0.88)),
    radial-gradient(circle at 82% 6%, rgba(88, 215, 230, 0.16), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(3, 10, 22, 0.34));
}

.program-preview-section > .page-shell {
  position: relative;
  z-index: 2;
}

body.reveal-ready .program-preview-section[data-reveal],
body.reveal-ready .program-preview-section[data-reveal].is-visible {
  transform: none;
  filter: none;
}

.program-preview-section .section-kicker {
  color: var(--cyan-300);
}

.program-preview-section .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.program-preview-section .split-heading > p {
  color: rgba(232, 242, 249, 0.84);
}

@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  .program-preview-section::before {
    background-attachment: scroll;
  }
}

.program-focus-panel,
.program-command-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid rgba(88, 215, 230, 0.22);
  border-radius: 10px;
  background: rgba(88, 215, 230, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.program-command-panel {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  min-height: clamp(390px, 31vw, 430px);
  background: rgba(88, 215, 230, 0.3);
}

.program-focus-intro,
.program-focus-list article,
.program-command-nav,
.program-command-detail {
  background:
    linear-gradient(135deg, rgba(8, 25, 45, 0.86), rgba(3, 13, 29, 0.88)),
    rgba(3, 13, 29, 0.9);
  backdrop-filter: blur(14px);
}

.program-command-nav {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: clamp(1.45rem, 2.6vw, 2.1rem);
}

.program-command-nav > span {
  margin-bottom: 1rem;
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-command-nav button {
  width: 100%;
  padding: 0.76rem 0.9rem;
  color: rgba(232, 242, 249, 0.82);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.program-command-nav button:hover,
.program-command-nav button:focus-visible,
.program-command-nav button.is-active {
  color: #071626;
  background: var(--cyan-300);
  border-color: rgba(88, 215, 230, 0.86);
  outline: none;
}

.program-command-nav button:hover,
.program-command-nav button:focus-visible {
  transform: translateX(3px);
}

.program-command-detail {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(2rem, 4.2vw, 3.7rem);
}

.program-command-detail > span {
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.program-command-detail h3 {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.2rem, 3.3vw, 3.35rem);
  line-height: 1.04;
}

.program-command-detail p {
  max-width: 690px;
  margin: 0;
  color: rgba(232, 242, 249, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.program-command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.35rem);
  margin-top: clamp(1.2rem, 2.6vw, 2.4rem);
}

.program-command-metrics article {
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
}

.program-command-metrics span {
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-command-metrics strong {
  color: #1b3149;
  font-size: 1rem;
  line-height: 1.35;
}

.program-command-detail .button {
  width: fit-content;
}

.program-focus-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.45rem, 3vw, 2.35rem);
}

.program-focus-intro > span,
.program-focus-list span {
  color: var(--cyan-500);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-focus-intro h3 {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.08;
}

.program-focus-intro p {
  margin: 0;
  color: rgba(232, 242, 249, 0.72);
  font-size: 1rem;
  line-height: 1.62;
}

.program-focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.program-focus-list article {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: clamp(1.15rem, 2vw, 1.55rem);
}

.program-focus-list strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.16;
}

.program-focus-list em {
  max-width: 420px;
  color: rgba(232, 242, 249, 0.68);
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.5;
}

.proof-band-section,
.visual-environment-section,
.final-booking-cta {
  background: #06121f;
}

.custom-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 212, 232, 0.1), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(56, 212, 232, 0.08), transparent 30rem),
    #f6f9fc;
}

.custom-preview-section::before {
  content: "";
  position: absolute;
  inset: -20% -12% auto auto;
  width: min(46rem, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(33, 184, 207, 0.28);
  border-radius: 999px;
  pointer-events: none;
}

.programs-custom-support-section {
  background:
    linear-gradient(115deg, rgba(56, 212, 232, 0.12) 0 1px, transparent 1px 14rem),
    radial-gradient(circle at 16% 18%, rgba(56, 212, 232, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(78, 140, 255, 0.16), transparent 30rem),
    linear-gradient(135deg, #020a13 0%, #06121f 46%, #081d2c 100%);
  color: #f3fbff;
}

.custom-enablement-section {
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(88, 215, 230, 0.12) 0 1px, transparent 1px 13rem),
    radial-gradient(circle at 18% 16%, rgba(88, 215, 230, 0.2), transparent 27rem),
    radial-gradient(circle at 84% 70%, rgba(94, 255, 190, 0.1), transparent 24rem),
    linear-gradient(135deg, #020a13 0%, #06121f 48%, #071b2a 100%);
  color: #f3fbff;
}

.home-custom-training-section {
  isolation: isolate;
  background:
    linear-gradient(112deg, rgba(56, 212, 232, 0.08) 0 1px, transparent 1px 12.5rem),
    radial-gradient(circle at 14% 18%, rgba(56, 212, 232, 0.18), transparent 29rem),
    radial-gradient(circle at 84% 12%, rgba(94, 255, 190, 0.11), transparent 27rem),
    linear-gradient(180deg, #f8fbfd 0%, #f0f6fa 100%);
}

.programs-custom-support-section::before {
  inset: -20% -10% auto auto;
  width: min(52rem, 64vw);
  border-color: rgba(56, 212, 232, 0.28);
  box-shadow:
    inset 0 0 0 5.5rem rgba(56, 212, 232, 0.018),
    0 0 80px rgba(56, 212, 232, 0.08);
  animation: customSupportOrbit 24s linear infinite;
}

.custom-enablement-section::before {
  inset: -18% -9% auto auto;
  width: min(50rem, 62vw);
  border-color: rgba(88, 215, 230, 0.28);
  box-shadow:
    inset 0 0 0 5rem rgba(88, 215, 230, 0.018),
    0 0 76px rgba(88, 215, 230, 0.08);
  animation: customSupportOrbit 25s linear infinite;
}

.home-custom-training-section::before {
  inset: -22% -10% auto auto;
  z-index: 0;
  width: min(52rem, 66vw);
  border-color: rgba(33, 184, 207, 0.26);
  box-shadow:
    inset 0 0 0 5.4rem rgba(56, 212, 232, 0.024),
    0 0 70px rgba(56, 212, 232, 0.08);
  animation: customSupportOrbit 28s linear infinite;
}

.programs-custom-support-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 64%, rgba(94, 255, 190, 0.12), transparent 17rem),
    radial-gradient(circle at 72% 74%, rgba(56, 212, 232, 0.2), transparent 19rem),
    linear-gradient(90deg, transparent 0 12%, rgba(56, 212, 232, 0.08) 12.08%, transparent 12.18% 34%, rgba(255, 255, 255, 0.045) 34.08%, transparent 34.16% 64%, rgba(56, 212, 232, 0.07) 64.08%, transparent 64.18% 100%);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: customSupportDrift 18s ease-in-out infinite alternate;
}

.custom-enablement-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 70%, rgba(94, 255, 190, 0.1), transparent 16rem),
    radial-gradient(circle at 72% 56%, rgba(88, 215, 230, 0.18), transparent 20rem),
    linear-gradient(90deg, transparent 0 12%, rgba(88, 215, 230, 0.075) 12.08%, transparent 12.18% 34%, rgba(255, 255, 255, 0.04) 34.08%, transparent 34.16% 64%, rgba(88, 215, 230, 0.065) 64.08%, transparent 64.18% 100%);
  opacity: 0.92;
  transform: translate3d(0, 0, 0);
  animation: customSupportDrift 19s ease-in-out infinite alternate;
}

.home-custom-training-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 68%, rgba(94, 255, 190, 0.12), transparent 16rem),
    radial-gradient(circle at 72% 70%, rgba(56, 212, 232, 0.16), transparent 20rem),
    linear-gradient(90deg, transparent 0 10%, rgba(56, 212, 232, 0.07) 10.08%, transparent 10.18% 35%, rgba(7, 22, 38, 0.035) 35.08%, transparent 35.16% 66%, rgba(56, 212, 232, 0.055) 66.08%, transparent 66.18% 100%);
  opacity: 0.86;
  transform: translate3d(0, 0, 0);
  animation: customSupportDrift 22s ease-in-out infinite alternate;
}

.meeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.custom-preview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4.25rem);
  align-items: start;
}

.custom-preview-copy {
  max-width: 760px;
}

.custom-preview-copy .section-kicker {
  color: #21b8cf;
}

.programs-custom-support-section .section-kicker {
  color: #b8ecf4;
}

.custom-enablement-section .section-kicker {
  color: #b8ecf4;
}

.custom-preview-layout h2 {
  max-width: 720px;
  margin: 0;
  color: #071626;
  font-size: clamp(2.45rem, 4vw, 3.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.programs-custom-support-section .custom-preview-layout h2 {
  color: #f8fcff;
}

.custom-enablement-section .custom-preview-layout h2 {
  color: #f8fcff;
}

.meeting-layout h2,
.visual-environment-section h2,
.proof-band h2 {
  color: #fff;
}

.custom-preview-layout p {
  max-width: 680px;
  color: #304764;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}

.programs-custom-support-section .custom-preview-layout p {
  color: rgba(232, 242, 249, 0.76);
}

.custom-enablement-section .custom-preview-layout p {
  color: rgba(232, 242, 249, 0.76);
}

.custom-enablement-section .button-primary {
  justify-self: start;
  min-width: min(100%, 340px);
  box-shadow: 0 18px 38px rgba(88, 215, 230, 0.14);
}

@media (max-width: 640px) {
  .custom-enablement-section .button-primary {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
}

.meeting-layout p,
.visual-environment-section p,
.proof-band p,
.proof-band small {
  color: rgba(232, 242, 249, 0.72);
}

.custom-preview-image {
  margin: 0;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(6, 18, 31, 0.16);
}

.custom-preview-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
}

.custom-runway {
  grid-column: 1 / -1;
  margin-top: clamp(0.25rem, 1.4vw, 0.8rem);
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 68px rgba(6, 18, 31, 0.1);
}

.home-custom-training-section .custom-runway {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 24px 68px rgba(6, 18, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.custom-runway > p {
  margin: 0 0 1.7rem;
  color: #21b8cf;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.custom-runway ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-runway ol::before {
  content: none;
}

.custom-runway li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.1rem;
  min-height: 6.6rem;
  color: #071626;
}

.custom-runway li::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  width: calc(100% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 212, 232, 0.95), rgba(56, 212, 232, 0.36));
  transform: translateY(-50%);
}

.custom-runway li:last-child::after {
  display: none;
}

.custom-runway li::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #38d4e8;
  box-shadow: 0 0 0 8px rgba(56, 212, 232, 0.12);
  transform-origin: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.custom-runway li:hover::before {
  animation: customRunwayDotPulse 1.1s ease-out infinite;
}

.custom-runway span {
  color: #21b8cf;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.custom-runway strong {
  max-width: 12rem;
  color: #071626;
  font-size: 0.95rem;
  line-height: 1.24;
}

.custom-runway-actions {
  grid-column: 1 / -1;
  margin-top: -0.6rem;
}

.custom-runway-actions .button-secondary {
  border-color: rgba(8, 24, 41, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #071626;
}

.custom-runway-actions .button-secondary:hover,
.custom-runway-actions .button-secondary:focus-visible {
  border-color: rgba(33, 184, 207, 0.6);
  background: #fff;
  color: #071626;
}

.programs-custom-support-section .section-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fcff;
}

.programs-custom-support-section .section-actions .button-secondary:hover,
.programs-custom-support-section .section-actions .button-secondary:focus-visible {
  border-color: rgba(88, 215, 230, 0.78);
  background: rgba(88, 215, 230, 0.12);
  color: #fff;
}

@keyframes customSupportOrbit {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(-3%, 4%, 0) rotate(180deg) scale(1.04);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(360deg) scale(1);
  }
}

@keyframes customSupportDrift {
  0% {
    background-position: 0% 0%, 100% 50%, 0 0;
    transform: translate3d(-1.4%, -1%, 0) scale(1);
  }

  100% {
    background-position: 14% 8%, 86% 44%, 4rem 0;
    transform: translate3d(1.6%, 1%, 0) scale(1.03);
  }
}

@keyframes customRunwayDotPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 8px rgba(56, 212, 232, 0.12),
      0 0 0 0 rgba(56, 212, 232, 0.34);
  }

  70% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 10px rgba(56, 212, 232, 0.15),
      0 0 0 20px rgba(56, 212, 232, 0);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 8px rgba(56, 212, 232, 0.12),
      0 0 0 0 rgba(56, 212, 232, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .programs-custom-support-section::before,
  .programs-custom-support-section::after,
  .custom-enablement-section::before,
  .custom-enablement-section::after,
  .home-custom-training-section::before,
  .home-custom-training-section::after,
  .custom-runway li:hover::before {
    animation: none;
  }

  .programs-custom-support-section::after,
  .custom-enablement-section::after,
  .home-custom-training-section::after {
    transform: none;
  }

  .custom-runway li:hover::before {
    box-shadow: 0 0 0 11px rgba(56, 212, 232, 0.18);
  }
}

.method-orbit-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(56, 212, 232, 0.1), transparent 33rem),
    radial-gradient(circle at 86% 18%, rgba(56, 212, 232, 0.08), transparent 30rem),
    #f6f9fc;
}

.method-orbit-section::before {
  content: "";
  position: absolute;
  inset: 5% -18% auto auto;
  width: min(46rem, 56vw);
  aspect-ratio: 1;
  border: 1px solid rgba(33, 184, 207, 0.26);
  border-radius: 999px;
  pointer-events: none;
}

.method-orbit-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.72fr);
  gap: clamp(2.2rem, 6vw, 7rem);
  align-items: center;
}

.method-orbit-section .method-orbit-copy {
  max-width: 640px;
  margin-bottom: 0;
}

.method-orbit-section .section-kicker {
  color: #21b8cf;
}

.method-orbit-section .method-orbit-copy h2 {
  color: #071626;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 430;
  line-height: 1.02;
}

.method-orbit-section .method-orbit-copy p {
  color: #304764;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.68;
}

.method-orbit-section .section-actions {
  margin-top: clamp(1.5rem, 3vw, 2.35rem);
}

.method-orbit-stage {
  position: relative;
  min-height: clamp(520px, 48vw, 660px);
  perspective: 1200px;
}

.method-orbit-rings,
.method-orbit-rings::before,
.method-orbit-rings::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(33, 184, 207, 0.2);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.method-orbit-rings {
  width: min(440px, 70vw);
  aspect-ratio: 1;
  box-shadow: inset 0 0 34px rgba(56, 212, 232, 0.07);
  animation: methodOrbitRingSpin 34s linear infinite;
}

.method-orbit-rings::before,
.method-orbit-rings::after {
  content: "";
}

.method-orbit-rings::before {
  width: 70%;
  aspect-ratio: 1;
}

.method-orbit-rings::after {
  width: 42%;
  aspect-ratio: 1;
  border-color: rgba(33, 184, 207, 0.16);
}

.method-orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(6rem, 10vw, 8.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 184, 207, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 60px rgba(6, 18, 31, 0.12);
  transform: translate(-50%, -50%);
  animation: methodCoreGlow 5.8s ease-in-out infinite;
}

.method-orbit-core img {
  width: 70%;
  height: auto;
  max-height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(6, 18, 31, 0.14));
  transform-style: preserve-3d;
}

.method-orbit-card {
  --orbit-x: 0px;
  --orbit-y: 0px;
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(320px, 44vw);
  min-height: 118px;
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(33, 184, 207, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(6, 18, 31, 0.11);
  transform:
    translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y)))
    perspective(1000px)
    rotateY(-3deg);
  transform-style: preserve-3d;
  animation: methodOrbitCardAxis 9s ease-in-out infinite;
}

.method-orbit-card-top {
  --orbit-y: clamp(-14.25rem, -17vw, -11rem);
  animation-delay: -1s;
}

.method-orbit-card-right {
  --orbit-x: clamp(13rem, 18vw, 16.2rem);
  animation-delay: -3s;
}

.method-orbit-card-bottom {
  --orbit-y: clamp(11.2rem, 16vw, 14.25rem);
  animation-delay: -5s;
}

.method-orbit-card-left {
  --orbit-x: clamp(-16.2rem, -18vw, -13rem);
  animation-delay: -7s;
}

.method-orbit-card span {
  color: #21b8cf;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.method-orbit-card h3 {
  margin: 0;
  color: #071626;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.1;
}

.method-orbit-card p {
  margin: 0;
  color: #38506b;
  font-size: 0.92rem;
  line-height: 1.42;
}

@keyframes methodOrbitRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes methodCoreGlow {
  0%,
  100% {
    box-shadow:
      0 26px 60px rgba(6, 18, 31, 0.12),
      0 0 0 0 rgba(56, 212, 232, 0.18);
  }

  50% {
    box-shadow:
      0 28px 68px rgba(6, 18, 31, 0.14),
      0 0 0 18px rgba(56, 212, 232, 0);
  }
}

@keyframes methodOrbitCardAxis {
  0%,
  100% {
    transform:
      translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y)))
      perspective(1000px)
      rotateY(-3deg)
      rotateX(0deg);
  }

  50% {
    transform:
      translate(calc(-50% + var(--orbit-x)), calc(-50% + var(--orbit-y)))
      perspective(1000px)
      rotateY(5deg)
      rotateX(1.5deg);
  }
}

.method-gates-section {
  position: relative;
  overflow: hidden;
  color: #f7fbff;
  background:
    linear-gradient(90deg, rgba(3, 10, 22, 0.96), rgba(3, 10, 22, 0.84) 42%, rgba(3, 10, 22, 0.7)),
    linear-gradient(180deg, rgba(3, 10, 22, 0.78), rgba(3, 10, 22, 0.94)),
    radial-gradient(circle at 74% 16%, rgba(88, 215, 230, 0.14), transparent 31rem),
    #030a16;
  isolation: isolate;
}

.method-gates-section::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 12%, rgba(56, 212, 232, 0.18), transparent 26rem),
    radial-gradient(circle at 8% 78%, rgba(56, 212, 232, 0.1), transparent 32rem),
    linear-gradient(180deg, rgba(3, 10, 22, 0.12), rgba(3, 10, 22, 0.46));
  pointer-events: none;
  will-change: transform;
}

.method-gates-section::after {
  content: "";
  position: absolute;
  inset: clamp(3rem, 7vw, 6rem) -18vw auto auto;
  z-index: -1;
  width: min(58rem, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(88, 215, 230, 0.24);
  border-radius: 999px;
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.method-gates-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.method-gates-motion::before {
  content: "";
  position: absolute;
  inset: 10% -16% 6%;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(88, 215, 230, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 215, 230, 0.12) 1px, transparent 1px);
  background-size: clamp(4.8rem, 7vw, 7.25rem) clamp(4.8rem, 7vw, 7.25rem);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 74%, transparent 100%);
  transform: perspective(900px) rotateX(58deg) translate3d(0, 0, 0);
  transform-origin: center bottom;
  will-change: transform, background-position;
}

.method-gates-motion::after {
  content: "";
  position: absolute;
  top: clamp(6rem, 13vw, 10rem);
  right: -10vw;
  width: min(34rem, 48vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(88, 215, 230, 0.22);
  border-radius: 999px;
  opacity: 0.42;
  box-shadow: inset 0 0 48px rgba(88, 215, 230, 0.06);
  transform: translate3d(0, 0, 0) rotate(0deg);
  will-change: transform;
}

.method-gates-signal,
.method-gates-node {
  position: absolute;
  display: block;
}

.method-gates-signal {
  left: 6vw;
  width: min(56rem, 68vw);
  height: 1px;
  opacity: 0.34;
  background: linear-gradient(90deg, transparent, rgba(88, 215, 230, 0.12), rgba(88, 215, 230, 0.66), transparent);
  transform: translateX(-12%);
  will-change: transform, opacity;
}

.method-gates-signal-a {
  top: 32%;
}

.method-gates-signal-b {
  right: 4vw;
  left: auto;
  top: 68%;
  width: min(44rem, 54vw);
  opacity: 0.22;
}

.method-gates-node {
  width: 0.46rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #58d7e6;
  box-shadow:
    0 0 0 8px rgba(88, 215, 230, 0.08),
    0 0 26px rgba(88, 215, 230, 0.48);
  opacity: 0.74;
  will-change: transform, opacity;
}

.method-gates-node-a {
  top: 24%;
  right: 24%;
}

.method-gates-node-b {
  bottom: 20%;
  left: 10%;
  opacity: 0.5;
}

@media (prefers-reduced-motion: no-preference) {
  .method-gates-section::before {
    animation: methodGatesAtmosphereDrift 24s ease-in-out infinite alternate;
  }

  .method-gates-section::after {
    animation: methodGatesHaloDrift 22s ease-in-out infinite;
  }

  .method-gates-motion::before {
    animation: methodGatesGridFlow 30s linear infinite;
  }

  .method-gates-motion::after {
    animation: methodGatesDashedRing 36s linear infinite;
  }

  .method-gates-signal-a {
    animation: methodGatesSignalSweep 11s ease-in-out infinite;
  }

  .method-gates-signal-b {
    animation: methodGatesSignalSweepReverse 13s ease-in-out infinite;
  }

  .method-gates-node-a {
    animation: methodGatesNodeFloatA 12s ease-in-out infinite;
  }

  .method-gates-node-b {
    animation: methodGatesNodeFloatB 15s ease-in-out infinite;
  }
}

@keyframes methodGatesAtmosphereDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

@keyframes methodGatesHaloDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }

  36% {
    transform: translate3d(-4.5vw, 2.1rem, 0) scale(1.04);
    opacity: 0.82;
  }

  72% {
    transform: translate3d(2.2vw, -1.2rem, 0) scale(0.98);
    opacity: 0.68;
  }
}

@keyframes methodGatesGridFlow {
  from {
    background-position: 0 0, 0 0;
    transform: perspective(900px) rotateX(58deg) translate3d(0, 0, 0);
  }

  to {
    background-position: 7.25rem 7.25rem, 7.25rem 7.25rem;
    transform: perspective(900px) rotateX(58deg) translate3d(2rem, -1.2rem, 0);
  }
}

@keyframes methodGatesDashedRing {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(-2.5vw, 1.4rem, 0) rotate(360deg);
  }
}

@keyframes methodGatesSignalSweep {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.14;
  }

  45% {
    transform: translateX(38%);
    opacity: 0.42;
  }
}

@keyframes methodGatesSignalSweepReverse {
  0%,
  100% {
    transform: translateX(18%);
    opacity: 0.1;
  }

  52% {
    transform: translateX(-34%);
    opacity: 0.3;
  }
}

@keyframes methodGatesNodeFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.58;
  }

  48% {
    transform: translate3d(-4.6rem, 3.2rem, 0);
    opacity: 0.88;
  }
}

@keyframes methodGatesNodeFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.38;
  }

  50% {
    transform: translate3d(5rem, -2.8rem, 0);
    opacity: 0.66;
  }
}

.method-gates-layout {
  position: relative;
  z-index: 1;
}

.method-gates-head {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.method-gates-copy {
  max-width: 760px;
  margin-bottom: 0;
}

.method-gates-section .section-kicker {
  color: #58d7e6;
}

.method-gates-section .method-gates-copy h2 {
  color: #f8fbff;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: 0;
}

.method-gates-context {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border: 1px solid rgba(88, 215, 230, 0.22);
  border-radius: 8px;
  background: rgba(3, 13, 27, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.method-gates-context img {
  width: clamp(2.6rem, 4vw, 3.8rem);
  height: auto;
  display: block;
  filter: none;
}

.method-gates-context p {
  margin: 0;
  color: rgba(232, 242, 249, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.method-gates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(88, 215, 230, 0.3);
  border-radius: 8px;
  background: rgba(3, 12, 25, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.method-gates-grid article {
  position: relative;
  min-height: clamp(18rem, 25vw, 24rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(88, 215, 230, 0.18);
  background:
    linear-gradient(180deg, rgba(7, 25, 48, 0.2), rgba(2, 9, 20, 0.54)),
    rgba(2, 9, 20, 0.18);
  transition:
    transform 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.method-gates-grid article:last-child {
  border-right: 0;
}

.method-gates-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(88, 215, 230, 0.95), rgba(88, 215, 230, 0));
  opacity: 0.72;
}

.method-gates-grid article::after {
  content: "";
  position: absolute;
  inset: auto clamp(1.25rem, 2.5vw, 2rem) clamp(1.15rem, 2vw, 1.6rem);
  height: 1px;
  background: rgba(88, 215, 230, 0.18);
  pointer-events: none;
}

.method-gates-grid article:hover,
.method-gates-grid article:focus-within {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(9, 39, 70, 0.48), rgba(2, 9, 20, 0.68)),
    rgba(2, 9, 20, 0.26);
  box-shadow: inset 0 0 0 1px rgba(88, 215, 230, 0.18);
}

.method-gates-grid span {
  color: #58d7e6;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.method-gates-grid h3 {
  max-width: 12rem;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.method-gates-grid p {
  max-width: 15.5rem;
  margin: 0;
  color: rgba(232, 242, 249, 0.74);
  font-size: 0.96rem;
  line-height: 1.5;
}

.method-gates-actions {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

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

.process-list li {
  padding: 1.25rem;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 18, 31, 0.07);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #05758b;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 0.55rem;
  color: #071626;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-intake-shell {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
}

.contact-intake-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: end;
}

.contact-intake-copy {
  display: grid;
  gap: 0.55rem;
}

.contact-intake-lede {
  max-width: 44rem;
  margin: 0;
  color: #4e6074;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.7;
}

.contact-intake-meta {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: end;
  padding: 1rem 0 0.15rem;
  border-top: 1px solid rgba(8, 24, 41, 0.08);
}

.contact-intake-assurance {
  margin: 0;
  color: #617387;
  font-weight: 700;
  justify-self: end;
  max-width: 34rem;
  text-align: right;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(6, 18, 31, 0.1);
}

.contact-form-wide {
  width: 100%;
  padding: clamp(1.35rem, 3vw, 2.35rem);
  box-shadow: 0 28px 72px rgba(6, 18, 31, 0.1);
}

.smart-request-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(50, 205, 226, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 205, 226, 0.12), rgba(6, 18, 31, 0.03)),
    #f8fbfd;
}

.smart-request-summary span,
.single-request-panel span {
  color: #05758b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.smart-request-summary strong {
  color: #06121f;
  font-size: 1.2rem;
}

.smart-request-summary p {
  margin: 0;
  color: #40536d;
}

.smart-form-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 205, 226, 0.04), rgba(255, 255, 255, 0)),
    #fcfeff;
}

.smart-form-section-details {
  background:
    linear-gradient(135deg, rgba(50, 205, 226, 0.08), rgba(255, 255, 255, 0)),
    #f8fbfd;
}

.smart-form-section-head {
  display: grid;
  gap: 0.3rem;
}

.smart-form-section-head span {
  color: #05758b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.smart-form-section-head strong {
  color: #06121f;
  font-size: 1.08rem;
}

.smart-form-section-head p {
  max-width: 44rem;
  margin: 0;
  color: #55677c;
}

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

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

.smart-details-empty {
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(8, 24, 41, 0.14);
  border-radius: 8px;
  color: #5b6b7e;
  background: rgba(255, 255, 255, 0.72);
}

.smart-inquiry-panels {
  display: grid;
  gap: 1rem;
}

.smart-inquiry-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: #fff;
}

.smart-inquiry-panel legend {
  padding: 0 0.35rem;
  color: #05758b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.smart-type-field select {
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #213146;
  font-weight: 800;
}

.smart-training-meta {
  display: block;
  margin-top: 0.05rem;
  color: #5a6c81;
  font-size: 0.84rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(8, 24, 41, 0.18);
  border-radius: 8px;
  color: #06121f;
  background: #f8fbfd;
  font: inherit;
}

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

.contact-form small {
  color: #667589;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  min-height: 1.05rem;
  margin: 0.15rem 0 0;
  padding: 0;
  accent-color: #05758b;
}

.facilitator-field-group {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.9rem;
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 8px;
  background: #f8fbfd;
}

.facilitator-group-label {
  color: #213146;
  font-weight: 850;
}

.facilitator-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.facilitator-choice-grid-compact {
  grid-template-columns: 1fr;
}

.facilitator-choice-grid label,
.consent-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.62rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 8px;
  color: #213146;
  background: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.facilitator-choice-grid label span,
.consent-field span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.facilitator-other-field {
  margin-top: 0.1rem;
}

.field-error,
.file-selected,
.character-counter {
  display: block;
}

.field-error {
  min-height: 1.2em;
  color: #a13b21;
}

.file-selected {
  color: #05758b;
}

.character-counter {
  justify-self: end;
  color: #5a6c81;
}

.thanks-disclaimer {
  margin-top: 0.75rem;
  color: rgba(239, 248, 255, 0.72);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}

.full-field,
.program-interest-field,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.contact-form-actions .button {
  grid-column: auto;
}

.contact-form-actions .button-reset {
  color: #213146;
  background: #ffffff;
  border-color: rgba(8, 24, 41, 0.16);
}

.contact-form-actions .button-reset:hover,
.contact-form-actions .button-reset:focus-visible {
  color: #06121f;
  background: #f1f7fa;
  border-color: rgba(5, 117, 139, 0.28);
}

.form-note {
  margin: 0;
  color: #667589;
  font-size: 0.9rem;
}

.contact-direct {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.contact-direct a,
.policy-copy a {
  color: #05758b;
  font-weight: 800;
}

.contact-guidance-form-section {
  padding-top: clamp(54px, 6vw, 82px);
}

.single-request-layout {
  align-items: stretch;
}

.single-request-panel {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(50, 205, 226, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 205, 226, 0.13), rgba(255, 255, 255, 0)),
    #ffffff;
  box-shadow: 0 24px 52px rgba(6, 18, 31, 0.1);
}

.single-request-panel h3 {
  margin: 0;
  color: #06121f;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.single-request-panel p {
  max-width: 46rem;
  margin: 0;
  color: #40536d;
}

.single-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(50, 205, 226, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.proof-stat-grid span {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(232, 242, 249, 0.76);
  background: rgba(255, 255, 255, 0.04);
}

.proof-stat-grid strong {
  color: #39d4e8;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
}

.proof-vault-section {
  position: relative;
  overflow: hidden;
  color: #f8fbff;
  background:
    linear-gradient(90deg, rgba(3, 10, 22, 0.98), rgba(3, 10, 22, 0.84)),
    linear-gradient(180deg, rgba(3, 10, 22, 0.6), rgba(3, 10, 22, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(88, 215, 230, 0.12), transparent 32rem),
    #030a16;
  isolation: isolate;
}

.proof-vault-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 16%, rgba(88, 215, 230, 0.1), transparent 28rem),
    linear-gradient(90deg, rgba(3, 10, 22, 0.18), rgba(3, 10, 22, 0.46));
  pointer-events: none;
}

.proof-vault-section .page-shell {
  width: min(1424px, calc(100% - 110px));
}

.proof-vault-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 0.96fr);
  gap: clamp(2rem, 4.6vw, 4.5rem);
  align-items: center;
}

.proof-vault-copy {
  display: grid;
  gap: clamp(1.15rem, 2vw, 1.55rem);
  align-content: center;
}

.proof-vault-section .section-kicker {
  color: #58d7e6;
}

.proof-vault-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 4.2vw, 4rem);
  font-weight: 390;
  line-height: 1.02;
  letter-spacing: 0;
}

.proof-vault-copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 0;
  color: rgba(232, 242, 249, 0.84);
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.68;
}

.proof-vault-copy .button-secondary {
  width: min(100%, 630px);
  margin-top: 0.35rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(88, 215, 230, 0.44);
}

.proof-vault-actions {
  width: min(100%, 630px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.proof-vault-actions .button-secondary {
  width: 100%;
  margin-top: 0;
}

.proof-vault-copy .button-secondary:hover,
.proof-vault-copy .button-secondary:focus-visible {
  color: #06121f;
  background: #58d7e6;
  border-color: #58d7e6;
}

.proof-vault-panel {
  display: grid;
  gap: 1.15rem;
}

.proof-vault-evidence {
  padding: clamp(1.5rem, 2.8vw, 2.2rem);
  border: 1px solid rgba(88, 215, 230, 0.24);
  border-radius: 8px;
  background: rgba(3, 12, 25, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.proof-vault-evidence h3 {
  max-width: 760px;
  margin: 0 0 1.1rem;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.proof-vault-evidence small {
  display: block;
  color: rgba(232, 242, 249, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
}

.proof-vault-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.6rem, 1vw, 0.8rem);
}

.proof-vault-stat-grid span {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: clamp(0.9rem, 1.5vw, 1rem);
  border: 1px solid rgba(88, 215, 230, 0.2);
  border-radius: 8px;
  color: rgba(232, 242, 249, 0.84);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(3, 12, 25, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  font-weight: 780;
  line-height: 1.12;
}

.proof-vault-stat-grid strong {
  color: #58d7e6;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 0.95;
}

.image-story-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.image-story-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-story-grid figcaption {
  padding: 1rem;
  color: rgba(232, 242, 249, 0.78);
  font-weight: 700;
}

.environment-filmstrip-section {
  position: relative;
  overflow: hidden;
  color: #071626;
  background:
    radial-gradient(circle at 90% 0%, rgba(88, 215, 230, 0.18), transparent 34rem),
    radial-gradient(circle at 8% 70%, rgba(88, 215, 230, 0.07), transparent 30rem),
    linear-gradient(180deg, #f8fbfd, #eef4f8);
}

.environment-filmstrip-section::before {
  content: "";
  position: absolute;
  inset: auto -14% -35% auto;
  width: min(52rem, 62vw);
  aspect-ratio: 1;
  border: 1px solid rgba(33, 184, 207, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.environment-filmstrip-section .page-shell {
  width: min(1424px, calc(100% - 176px));
}

.environment-filmstrip-section .split-heading {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.48fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.1rem);
}

.environment-filmstrip-section .section-heading {
  max-width: 820px;
  margin-bottom: 0;
}

.environment-filmstrip-section .section-kicker {
  color: #20bdd2;
}

.environment-filmstrip-section h2,
.environment-filmstrip-section .section-heading h2 {
  color: #071626;
  font-size: clamp(3rem, 4vw, 4.1rem);
  font-weight: 430;
  line-height: 1.01;
  letter-spacing: 0;
}

.environment-filmstrip-section .split-heading > p {
  max-width: 520px;
  margin: 0;
  color: #314762;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.environment-filmstrip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2vw, 1.55rem);
  align-items: stretch;
}

.environment-signal-panel {
  min-height: clamp(360px, 31vw, 410px);
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.55rem);
  border: 1px solid rgba(7, 22, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 72px rgba(7, 22, 38, 0.1);
}

.environment-signal-panel h3 {
  max-width: 430px;
  margin: 0;
  color: #071626;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: 0;
}

.environment-signal-panel p:not(.section-kicker) {
  max-width: 450px;
  margin: 0;
  color: #314762;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.62;
}

.environment-frames {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}

.environment-frame {
  position: relative;
  min-height: clamp(300px, 30vw, 410px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 22, 38, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.environment-frame:nth-child(2) {
  margin-top: clamp(2rem, 4vw, 3.15rem);
}

.environment-frame:nth-child(3) {
  margin-top: clamp(4rem, 8vw, 6.3rem);
}

.environment-frame:hover,
.environment-frame:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 34px 88px rgba(7, 22, 38, 0.16);
}

.environment-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.environment-frame:hover img,
.environment-frame:focus-within img {
  transform: scale(1.065);
}

.environment-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 29, 0) 42%, rgba(4, 13, 29, 0.72)),
    linear-gradient(90deg, rgba(4, 13, 29, 0.08), transparent 46%);
  pointer-events: none;
}

.environment-frame figcaption {
  position: absolute;
  left: clamp(0.85rem, 1.6vw, 1.15rem);
  right: clamp(0.85rem, 1.6vw, 1.15rem);
  bottom: clamp(0.85rem, 1.6vw, 1.15rem);
  z-index: 1;
  padding: clamp(0.85rem, 1.4vw, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 13, 29, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  font-weight: 820;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .environment-filmstrip-section .page-shell {
    width: min(var(--container-width), calc(100% - 44px));
  }

  .environment-filmstrip-section .split-heading {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .environment-filmstrip-section .split-heading > p {
    max-width: 760px;
  }

  .environment-filmstrip {
    grid-template-columns: 1fr;
  }

  .environment-signal-panel {
    min-height: auto;
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.78fr);
    align-items: end;
  }

  .environment-signal-panel .section-kicker {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .environment-filmstrip-section .page-shell {
    width: min(100% - 28px, var(--container-width));
  }

  .environment-filmstrip-section .split-heading {
    margin-bottom: 1.55rem;
  }

  .environment-filmstrip-section h2,
  .environment-filmstrip-section .section-heading h2 {
    font-size: clamp(2.4rem, 10vw, 3.45rem);
  }

  .environment-signal-panel {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.2rem;
  }

  .environment-signal-panel h3 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .environment-frames {
    grid-template-columns: 1fr;
  }

  .environment-frame,
  .environment-frame:nth-child(2),
  .environment-frame:nth-child(3) {
    min-height: 320px;
    margin-top: 0;
  }
}

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

.thank-you-page {
  min-height: 100vh;
  background: #06121f;
}

.compact-thanks {
  min-height: 56vh;
}

.compact-policy {
  min-height: 54vh;
}

.inner-hero-card br {
  display: block;
}

@media (max-width: 1100px) {
  .booking-card-grid,
  .program-family-grid,
  .path-choice-grid,
  .contact-route-grid,
  .compact-path-grid,
  .process-list,
  .process-list-wide,
  .proof-stat-grid,
  .image-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .custom-preview-layout,
  .method-orbit-layout,
  .meeting-layout,
  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-vault-section .page-shell {
    width: min(var(--container-width), calc(100% - 44px));
  }

  .proof-vault-layout {
    grid-template-columns: 1fr;
  }

  .proof-vault-stat-grid {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }

  .method-gates-head {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .method-gates-context {
    max-width: 760px;
  }

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

  .method-gates-grid article {
    min-height: 17rem;
    border-bottom: 1px solid rgba(88, 215, 230, 0.18);
  }

  .method-gates-grid article:nth-child(2n) {
    border-right: 0;
  }

  .method-gates-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .program-matrix-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .program-matrix-heading p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
    max-width: 680px;
  }

  .program-matrix-row {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
  }

  .program-matrix-number {
    grid-row: 1 / span 3;
    align-items: center;
  }

  .program-matrix-program,
  .program-matrix-outcome,
  .program-matrix-actions {
    grid-column: 2;
  }

  .program-matrix-outcome,
  .program-matrix-actions {
    border-top: 1px solid rgba(8, 24, 41, 0.09);
  }

  .program-matrix-actions {
    flex-direction: row;
    align-items: center;
  }

  .program-matrix-actions .button {
    width: auto;
  }

  .custom-preview-image {
    max-width: 460px;
  }

  .method-orbit-section .method-orbit-copy {
    max-width: 760px;
  }

  .method-orbit-stage {
    width: min(760px, 100%);
    justify-self: center;
    min-height: 560px;
  }

  .custom-runway ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.6rem;
  }

  .custom-runway ol::before {
    display: none;
  }

  .custom-runway li::after {
    display: none;
  }

  .program-focus-panel {
    grid-template-columns: 1fr;
  }

  .program-command-panel {
    grid-template-columns: 1fr;
  }

  .program-command-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 1.15rem;
    scrollbar-width: thin;
  }

  .program-command-nav > span {
    flex: 0 0 auto;
    margin: 0 0.7rem 0 0;
  }

  .program-command-nav button {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
  }

  .program-command-detail {
    padding: clamp(1.45rem, 4vw, 2.2rem);
  }

  .program-focus-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .program-focus-intro p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .split-heading,
  .form-layout,
  .booking-card-grid,
  .program-family-grid,
  .path-choice-grid,
  .contact-route-grid,
  .compact-path-grid,
  .process-list,
  .process-list-wide,
  .proof-stat-grid,
  .image-story-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-intake-meta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.85rem;
  }

  .contact-direct {
    margin-top: 0;
  }

  .contact-intake-assurance {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .contact-form-wide {
    padding: 1.1rem;
  }

  .smart-form-grid,
  .smart-inquiry-panel {
    grid-template-columns: 1fr;
  }

  .facilitator-choice-grid {
    grid-template-columns: 1fr;
  }

  .facilitator-field-group,
  .facilitator-choice-grid label,
  .consent-field {
    padding: 0.78rem;
  }

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

  .contact-form-actions .button {
    width: 100%;
  }

  .program-matrix {
    display: grid;
    gap: 0.85rem;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .program-matrix-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.15rem;
    border: 1px solid rgba(8, 24, 41, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(6, 18, 31, 0.08);
  }

  .program-matrix-row:last-child {
    border-bottom: 1px solid rgba(8, 24, 41, 0.12);
  }

  .program-matrix-cell {
    grid-column: auto;
    padding: 0;
    border-right: 0;
  }

  .program-matrix-number {
    grid-row: auto;
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }

  .program-matrix-program h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .program-matrix-outcome,
  .program-matrix-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(8, 24, 41, 0.09);
  }

  .program-matrix-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .program-matrix-actions .button {
    width: 100%;
  }

  .calendar-row {
    padding: 1rem;
  }

  .program-focus-panel,
  .program-focus-list,
  .program-focus-intro,
  .program-command-panel,
  .program-command-metrics {
    grid-template-columns: 1fr;
  }

  .method-gates-section {
    background:
      linear-gradient(90deg, rgba(3, 10, 22, 0.94), rgba(3, 10, 22, 0.84)),
      linear-gradient(180deg, rgba(3, 10, 22, 0.82), rgba(3, 10, 22, 0.96)),
      radial-gradient(circle at 74% 18%, rgba(88, 215, 230, 0.14), transparent 30rem),
      #030a16;
  }

  .method-gates-head {
    margin-bottom: 1.5rem;
  }

  .method-gates-section .method-gates-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .method-gates-context {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .method-gates-context img {
    width: 3rem;
  }

  .method-gates-grid {
    grid-template-columns: 1fr;
  }

  .method-gates-grid article,
  .method-gates-grid article:nth-child(2n),
  .method-gates-grid article:nth-last-child(-n + 2) {
    min-height: 13.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(88, 215, 230, 0.18);
  }

  .method-gates-grid article:last-child {
    border-bottom: 0;
  }

  .proof-vault-section .page-shell {
    width: min(100% - 28px, var(--container-width));
  }

  .proof-vault-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .proof-vault-evidence {
    padding: 1.1rem;
  }

  .proof-vault-evidence h3 {
    font-size: clamp(1.65rem, 7.2vw, 2.25rem);
  }

  .proof-vault-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .proof-vault-stat-grid span {
    min-height: 112px;
  }

  .program-focus-panel {
    margin-top: 1.5rem;
  }

  .program-command-panel {
    min-height: 0;
    margin-top: 1.5rem;
  }

  .program-command-nav {
    align-items: stretch;
    padding: 1rem;
  }

  .program-command-nav button {
    max-width: 260px;
  }

  .program-command-detail h3 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .program-command-metrics {
    margin-top: 0.6rem;
  }

  .program-focus-list article {
    min-height: 0;
  }

  .proof-band {
    padding: 1.15rem;
  }

  .custom-runway {
    padding: 1rem;
  }

  .custom-runway ol {
    grid-template-columns: 1fr;
  }

  .custom-runway li {
    min-height: 0;
    grid-template-columns: auto 1fr;
    column-gap: 0.8rem;
    row-gap: 0.2rem;
  }

  .custom-runway li::before {
    grid-row: span 2;
    margin-top: 0.1rem;
  }

  .custom-runway strong {
    max-width: none;
  }

  .custom-runway-actions {
    margin-top: 0;
  }

  .method-orbit-stage {
    display: grid;
    gap: 0.9rem;
    min-height: 0;
    perspective: none;
  }

  .method-orbit-rings {
    display: none;
  }

  .method-orbit-core {
    position: relative;
    inset: auto;
    width: 5.8rem;
    margin: 0 auto 0.7rem;
    transform: none;
  }

  .method-orbit-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    transform: none;
    animation: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 0.8rem;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--cyan-300);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: min(var(--container-width), calc(100% - 40px));
  margin: 0 auto;
}

.container {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
}

.stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.5fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.panel,
.card,
.card-feature,
.card-quiet,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.card,
.card-quiet {
  background: var(--paper);
}

.card-feature,
.panel,
.form-panel {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cta-band {
  padding: var(--space-section-sm) 0;
  color: var(--white);
  background: var(--navy-950);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(4, 13, 29, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition:
    background 360ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    backdrop-filter 360ms ease,
    transform 220ms ease;
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(4, 13, 29, 0.84);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.55vw, 24px);
  font-size: 0.92rem;
  font-weight: 650;
}

.mobile-nav-home {
  display: none;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  color: var(--cyan-300);
}

.site-nav a:not(.nav-cta):not(.nav-rfp)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.62);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:not(.nav-cta):not(.nav-rfp):hover::after,
.site-nav a:not(.nav-cta):not(.nav-rfp):focus-visible::after,
.site-nav a:not(.nav-cta):not(.nav-rfp)[aria-current="page"]::after {
  opacity: 0.58;
  transform: scaleX(1);
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 42px;
  height: 42px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.search-trigger:hover,
.search-trigger:focus-visible {
  color: var(--white);
  border-color: rgba(98, 227, 239, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.search-trigger-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.search-trigger-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.search-trigger-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.language-picker {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-left: 0.15rem;
  padding-left: 0.65rem;
  color: rgba(239, 248, 255, 0.66);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.language-picker:hover,
.language-picker:focus-within {
  color: rgba(255, 255, 255, 0.92);
  border-left-color: rgba(88, 215, 230, 0.24);
}

.language-picker-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language-picker-shell {
  pointer-events: none;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0 0.18rem 0 0;
}

.language-picker-icon {
  position: relative;
  width: 13px;
  height: 13px;
  display: inline-block;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.72;
}

.language-picker-icon::before,
.language-picker-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  opacity: 0.72;
  transform: translate(-50%, -50%);
}

.language-picker-icon::before {
  width: 6px;
  height: 9px;
  background: transparent;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 999px;
}

.language-picker-icon::after {
  width: 9px;
  height: 1px;
}

.language-picker-current {
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.language-picker select {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  opacity: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.language-picker select:focus {
  outline: none;
}

.language-picker select option {
  color: var(--navy-950);
  -webkit-text-fill-color: var(--navy-950);
  background: var(--white);
}

.language-picker select option:checked {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: var(--navy-800);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  color: var(--navy-950) !important;
  background: var(--cyan-300);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(88, 215, 230, 0.08);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white) !important;
  background: rgba(88, 215, 230, 0.16);
  border-color: rgba(88, 215, 230, 0.48);
  transform: translateY(-1px);
}

.nav-cta[aria-current="page"] {
  box-shadow: 0 0 0 3px rgba(98, 227, 239, 0.18);
}

.nav-rfp {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.86rem;
  color: rgba(239, 248, 255, 0.84);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-rfp:hover,
.nav-rfp:focus-visible,
.nav-rfp[aria-current="page"] {
  color: var(--cyan-300);
  background: rgba(88, 215, 230, 0.08);
  border-color: rgba(98, 227, 239, 0.35);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.site-search[hidden] {
  display: none;
}

.executive-jump-rail {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-height) + 22px) 20px 24px;
}

.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 9, 20, 0.72);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.search-modal {
  position: relative;
  width: min(100%, 780px);
  max-height: min(720px, calc(100svh - var(--header-height) - 46px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 25, 48, 0.98), rgba(4, 13, 29, 0.98)),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
}

.search-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.search-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 0.98;
}

.search-close {
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  color: rgba(239, 248, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-close:hover,
.search-close:focus-visible {
  color: var(--cyan-300);
  border-color: rgba(98, 227, 239, 0.32);
}

.training-popup[hidden] {
  display: none;
}

body.training-popup-open {
  overflow: hidden;
}

.training-popup {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 40px);
}

.training-popup-backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 22, 43, 0.86), rgba(6, 22, 43, 0.74)),
    rgba(2, 9, 20, 0.8);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.training-popup-card {
  position: relative;
  width: min(100%, 760px);
  max-height: min(720px, calc(100svh - 36px));
  overflow: auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 31, 62, 0.98), rgba(5, 17, 35, 0.98)),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.training-popup-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(88, 215, 230, 0.85), rgba(185, 139, 68, 0.65));
}

.training-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  color: rgba(239, 248, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.training-popup-close:hover,
.training-popup-close:focus-visible {
  color: var(--cyan-300);
  border-color: rgba(98, 227, 239, 0.36);
}

.training-popup-copy {
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.25rem, 4vw, 2.6rem) 1rem;
  padding-right: clamp(6.4rem, 14vw, 8rem);
}

.training-popup-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.training-popup-copy p:last-child {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(239, 248, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.training-popup-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(1.25rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.training-popup-details div {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.training-popup-details div:last-child {
  border-right: 0;
}

.training-popup-details span {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.training-popup-details strong {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.2;
}

.training-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.6rem) 0;
}

.training-popup-note {
  margin: 0;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.6rem) clamp(1.35rem, 4vw, 2.3rem);
  color: rgba(239, 248, 255, 0.66);
  font-size: 0.94rem;
}

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

.enquiry-draft-popup {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 96;
  width: min(420px, calc(100vw - 32px));
  pointer-events: none;
}

.enquiry-draft-popup-card {
  position: relative;
  width: 100%;
  display: grid;
  gap: 0.9rem;
  pointer-events: auto;
  color: #06121f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 254, 0.95)),
    #ffffff;
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(6, 18, 31, 0.16);
  backdrop-filter: blur(16px);
}

.enquiry-draft-popup-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(50, 205, 226, 0.88), rgba(5, 117, 139, 0.76));
}

.enquiry-draft-popup-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1rem 0;
}

.enquiry-draft-popup-close {
  min-height: 34px;
  padding: 0.4rem 0.65rem;
  color: rgba(6, 18, 31, 0.72);
  background: rgba(6, 18, 31, 0.04);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.enquiry-draft-popup-close:hover,
.enquiry-draft-popup-close:focus-visible {
  color: #05758b;
  border-color: rgba(5, 117, 139, 0.26);
  background: rgba(50, 205, 226, 0.08);
}

.enquiry-draft-popup-copy {
  padding: 0;
}

.enquiry-draft-popup-copy h2 {
  margin: 0;
  color: #06121f;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.16;
}

.enquiry-draft-popup-copy p:last-child {
  margin: 0.55rem 0 0;
  color: #52657a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.enquiry-draft-popup-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 1rem;
  border: 1px solid rgba(8, 24, 41, 0.1);
  background: rgba(248, 251, 253, 0.9);
  border-radius: 10px;
  overflow: hidden;
}

.enquiry-draft-popup-meta div {
  display: grid;
  gap: 0.35rem;
  min-height: 76px;
  align-content: center;
  padding: 0.8rem 0.9rem;
  border-right: 1px solid rgba(8, 24, 41, 0.08);
}

.enquiry-draft-popup-meta div:last-child {
  border-right: 0;
}

.enquiry-draft-popup-meta span {
  color: #05758b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enquiry-draft-popup-meta strong {
  color: #06121f;
  font-size: 0.95rem;
  line-height: 1.3;
}

.enquiry-draft-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
}

.enquiry-draft-popup-actions .button {
  min-height: 42px;
  padding: 0.68rem 0.92rem;
  font-size: 0.92rem;
}

.enquiry-draft-popup-actions .button-secondary {
  color: #213146;
  background: #ffffff;
  border-color: rgba(8, 24, 41, 0.14);
}

.enquiry-draft-popup-actions .button-secondary:hover,
.enquiry-draft-popup-actions .button-secondary:focus-visible {
  color: #06121f;
  background: #f1f7fa;
  border-color: rgba(5, 117, 139, 0.24);
}

.enquiry-draft-popup-later {
  color: #31465a;
  background: #ffffff;
  border: 1px solid rgba(8, 24, 41, 0.12);
}

.enquiry-draft-popup-later:hover,
.enquiry-draft-popup-later:focus-visible {
  color: #06121f;
  background: #f2f7fa;
  border-color: rgba(5, 117, 139, 0.24);
}

.search-field {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem 1.25rem 1.2rem;
}

.search-field span {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  height: 58px;
  padding: 0 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1.05rem;
  outline: none;
}

.search-field input:focus {
  border-color: rgba(98, 227, 239, 0.62);
  box-shadow: 0 0 0 3px rgba(98, 227, 239, 0.12);
}

.search-results {
  display: grid;
  gap: 1px;
  overflow: auto;
  padding: 0 1.25rem 1.25rem;
}

.search-result,
.search-empty {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  color: rgba(239, 248, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.search-result {
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  color: var(--white);
  background: rgba(88, 215, 230, 0.08);
  border-color: rgba(98, 227, 239, 0.28);
}

.search-result span,
.search-empty span {
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-result strong,
.search-empty strong {
  color: var(--white);
  font-size: 1.02rem;
}

.search-result p,
.search-empty p {
  margin: 0;
  line-height: 1.55;
}

body.search-open {
  overflow: hidden;
}

.hero {
  position: relative;
  --hero-accent: #58d7e6;
  --hero-accent-strong: #1799c4;
  --hero-deep: #071a31;
  --hero-glow: rgba(88, 215, 230, 0.25);
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 42%, color-mix(in srgb, var(--hero-accent) 28%, transparent), transparent 31%),
    radial-gradient(circle at 16% 18%, rgba(26, 71, 130, 0.42), transparent 34%),
    linear-gradient(125deg, #030a17 0%, #06162b 48%, #091f3e 100%);
  isolation: isolate;
}

.hero[data-hero-state="performance"] {
  --hero-accent: #8eeaf2;
  --hero-accent-strong: #2e79bd;
  --hero-deep: #0a2340;
  --hero-glow: rgba(142, 234, 242, 0.22);
}

.hero[data-hero-state="digital"] {
  --hero-accent: #9de8ff;
  --hero-accent-strong: #5d8dde;
  --hero-deep: #0b1838;
  --hero-glow: rgba(157, 232, 255, 0.22);
}

.hero[data-hero-state="customer"] {
  --hero-accent: #8be8d8;
  --hero-accent-strong: #0f7f8d;
  --hero-deep: #062739;
  --hero-glow: rgba(139, 232, 216, 0.2);
}

.hero[data-hero-state="academy"] {
  --hero-accent: #e5c174;
  --hero-accent-strong: #b98b44;
  --hero-deep: #17263a;
  --hero-glow: rgba(229, 193, 116, 0.2);
}

.engine-canvas,
.hero-shade,
.hero-architecture {
  position: absolute;
  inset: 0;
}

.engine-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.88;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 23, 0.98) 0%, rgba(5, 18, 38, 0.78) 47%, rgba(5, 18, 38, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 10, 23, 0.38) 0%, rgba(3, 10, 23, 0.95) 100%);
  z-index: 0;
}

.hero-architecture {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-architecture span {
  position: absolute;
  right: -8vw;
  display: block;
  width: min(52vw, 760px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hero-accent), transparent);
  opacity: 0.42;
  transform: skewY(-25deg);
  animation: heroRail 8s ease-in-out infinite;
}

.hero-architecture span:nth-child(1) {
  top: 24%;
}

.hero-architecture span:nth-child(2) {
  top: 48%;
  right: -3vw;
  animation-delay: -2.4s;
}

.hero-architecture span:nth-child(3) {
  top: 72%;
  right: 7vw;
  animation-delay: -4.8s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.eyebrow,
.section-kicker,
.role-label,
.signal-label,
.snapshot-label,
.stage-number {
  margin: 0 0 0.8rem;
  color: var(--cyan-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.2rem, 5.25vw, 5.85rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  margin: 1.45rem 0 0;
  color: rgba(236, 246, 255, 0.86);
  font-size: clamp(1.05rem, 1.42vw, 1.28rem);
  line-height: 1.62;
}

.hero-offer {
  max-width: 680px;
  margin: 1.05rem 0 0;
  padding: 0.95rem 0 0.95rem 1rem;
  color: rgba(239, 248, 255, 0.82);
  border-left: 3px solid var(--hero-accent);
  font-size: 1rem;
  line-height: 1.65;
}

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

.hero-actions-calendar {
  display: grid;
  align-items: start;
  gap: 0.72rem;
}

.hero-actions-calendar .hero-actions-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-actions-calendar .hero-actions-utility {
  display: flex;
  align-items: center;
}

.hero-program-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-color: rgba(98, 227, 239, 0.34);
  text-underline-offset: 0.24em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.hero-program-link:hover,
.hero-program-link:focus-visible {
  color: var(--cyan-300);
  text-decoration-color: currentColor;
}

.hero-command-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 720px;
  margin-top: 1.35rem;
}

.hero-command-tabs button {
  min-height: 38px;
  padding: 0.46rem 0.68rem;
  color: rgba(239, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.hero-command-tabs button:hover,
.hero-command-tabs button:focus-visible {
  color: var(--white);
  border-color: color-mix(in srgb, var(--hero-accent) 56%, transparent);
  transform: translateY(-1px);
}

.hero-command-tabs button.is-active {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--hero-accent), color-mix(in srgb, var(--hero-accent) 62%, #ffffff));
  border-color: transparent;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--hero-accent) 22%, transparent);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
  color: rgba(239, 248, 255, 0.72);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.12rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
  box-shadow: 0 14px 28px rgba(88, 215, 230, 0.1);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--navy-800);
  border-color: rgba(88, 215, 230, 0.5);
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(88, 215, 230, 0.48);
}

.hero-panel {
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-command-center {
  position: relative;
  width: min(580px, 100%);
  height: clamp(520px, 46vw, 620px);
}

.command-grid {
  position: absolute;
  inset: 5% 0 6%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--hero-glow), transparent 55%);
  background-size: 68px 68px, 68px 68px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  mask-image: radial-gradient(circle at 52% 50%, #000 0%, #000 58%, transparent 83%);
  opacity: 0.72;
}

.command-grid::after {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid color-mix(in srgb, var(--hero-accent) 36%, transparent);
  border-radius: var(--radius-lg);
  transform: skewY(-9deg);
  animation: commandScan 5.6s ease-in-out infinite;
}

.living-mark {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(470px, 88%);
  height: 350px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.32));
  animation: markFloat 6.5s ease-in-out infinite;
}

.mark-piece {
  position: absolute;
  display: block;
  height: 74px;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transform: skewY(-28deg);
}

.mark-piece-light {
  top: 28px;
  left: 12%;
  width: 72%;
  background: linear-gradient(90deg, rgba(245, 250, 255, 0.98), rgba(174, 197, 225, 0.54));
  opacity: 0.82;
}

.mark-piece-core {
  top: 146px;
  left: 0;
  width: 92%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--hero-deep) 88%, #0b3f84), var(--hero-accent-strong));
  opacity: 0.94;
}

.mark-piece-accent {
  top: 263px;
  left: 24%;
  width: 64%;
  background: linear-gradient(90deg, var(--hero-accent-strong), var(--hero-accent));
  opacity: 0.98;
}

.command-header,
.command-focus,
.command-node,
.command-metrics {
  position: absolute;
  z-index: 2;
  background: rgba(3, 12, 27, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.command-header {
  top: 0;
  left: 6%;
  width: min(320px, 78%);
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--hero-accent);
}

.command-header span,
.command-focus span,
.command-node span {
  display: block;
  margin-bottom: 0.36rem;
  color: var(--hero-accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.command-header strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.command-focus {
  right: 3%;
  bottom: 14%;
  width: min(330px, 78%);
  padding: 1.05rem 1.1rem;
}

.command-focus p {
  margin: 0;
  color: rgba(239, 248, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.command-node {
  width: 178px;
  padding: 0.82rem 0.88rem;
  animation: nodePulse 5.8s ease-in-out infinite;
}

.command-node strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  line-height: 1.18;
}

.command-node-priority {
  top: 22%;
  right: 0;
}

.command-node-pathway {
  top: 43%;
  left: 0;
  animation-delay: -1.4s;
}

.command-node-application {
  right: 9%;
  top: 55%;
  animation-delay: -2.8s;
}

.command-node-evidence {
  left: -6%;
  bottom: 20%;
  animation-delay: -4.2s;
}

.command-metrics {
  left: 9%;
  right: 9%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.command-metrics div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.command-metrics div:last-child {
  border-right: 0;
}

.command-metrics span {
  color: var(--hero-accent);
  font-size: 0.72rem;
  font-weight: 850;
}

.command-metrics strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.15;
}

@keyframes heroRail {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-2%) skewY(-25deg);
  }

  50% {
    opacity: 0.58;
    transform: translateX(2%) skewY(-25deg);
  }
}

@keyframes markFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

@keyframes commandScan {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-10px) skewY(-9deg);
  }

  50% {
    opacity: 0.62;
    transform: translateX(12px) skewY(-9deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(0);
  }

  50% {
    border-color: color-mix(in srgb, var(--hero-accent) 45%, transparent);
    transform: translateY(-4px);
  }
}

.home-page .site-header:not(.is-scrolled) {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

.home-page .site-header:not(.is-scrolled)::before,
.home-page .site-header:not(.is-scrolled)::after {
  display: none !important;
  content: none !important;
}

.home-page .site-header:not(.is-scrolled) .brand img {
  filter: none;
}

.home-page .site-header:not(.is-scrolled) .site-nav a:not(.nav-cta):not(.nav-rfp),
.home-page .site-header:not(.is-scrolled) .search-trigger {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.home-page .site-header:not(.is-scrolled) .site-nav a[aria-current="page"] {
  color: var(--cyan-300);
}

.home-page .site-header:not(.is-scrolled) .search-trigger {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.home-page .site-header:not(.is-scrolled) .nav-rfp {
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.home-page .site-header:not(.is-scrolled) .nav-cta {
  color: var(--navy-950);
  background: rgba(98, 227, 239, 0.9);
  border-color: rgba(98, 227, 239, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-reference {
  --hero-lift-y: 0px;
  --hero-scene-y: 0px;
  --hero-sweep-y: 0px;
  --hero-panel-y: 0px;
  --hero-panel-opacity: 0.96;
  --hero-rail-height: clamp(118px, 15svh, 148px);
  --hero-edge-space: clamp(18px, 3.8svh, 42px);
  min-height: 100svh;
  height: 100svh;
  align-items: stretch;
  background: #030a17;
  overflow: clip;
}

@supports not (overflow: clip) {
  .hero-reference {
    overflow: hidden;
  }
}

.hero-scene-stage,
.hero-reference-shade,
.hero-reference-sweep {
  position: absolute;
  inset: 0;
}

.hero-scene-stage {
  z-index: 0;
  overflow: hidden;
  background: #030a17;
  transform: translateY(var(--hero-scene-y));
  transform-origin: center top;
  will-change: transform;
}

.hero-scene {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-size: cover;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.025);
}

.hero-scene-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: inherit;
  background-size: cover;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.08);
  transition: opacity 1400ms ease;
  will-change: opacity, transform;
}

.hero-scene-slide.is-active {
  opacity: 1;
  animation: heroImagePanWide 8600ms ease-out both;
}

.hero-scene-slide:nth-child(2n).is-active {
  animation-name: heroImagePanReverse;
}

.hero-scene-slide:nth-child(3n).is-active {
  animation-name: heroImagePanLift;
}

@keyframes heroImagePanWide {
  from {
    transform: translate3d(-1.6%, -0.8%, 0) scale(1.09);
  }

  to {
    transform: translate3d(1.8%, 0.9%, 0) scale(1.14);
  }
}

@keyframes heroImagePanReverse {
  from {
    transform: translate3d(1.8%, -0.6%, 0) scale(1.1);
  }

  to {
    transform: translate3d(-1.4%, 1%, 0) scale(1.145);
  }
}

@keyframes heroImagePanLift {
  from {
    transform: translate3d(-0.7%, 1.2%, 0) scale(1.09);
  }

  to {
    transform: translate3d(1.1%, -1.1%, 0) scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene-slide.is-active {
    animation: none;
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 10, 23, 0.18), rgba(3, 10, 23, 0.58)),
    linear-gradient(90deg, rgba(3, 10, 23, 0.28), rgba(3, 10, 23, 0.08));
}

.hero-scene-boardroom {
  left: 0;
  width: 60%;
  background-image: url("assets/training/edunex-scene-boardroom.jpeg");
  background-position: center center;
}

.hero-scene-training {
  right: 0;
  width: 58%;
  background-image: url("assets/training/edunex-scene-workshop-room.jpeg");
  background-position: center center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bridge {
  position: absolute;
  top: -10%;
  left: 43%;
  width: 22vw;
  min-width: 280px;
  height: 122%;
  background:
    linear-gradient(90deg, rgba(8, 23, 42, 0.2), rgba(236, 246, 255, 0.14) 44%, rgba(4, 16, 31, 0.58) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(8, 23, 42, 0.72));
  clip-path: polygon(44% 0, 100% 0, 56% 100%, 0 100%);
  opacity: 0.82;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.3);
}

.hero-bridge::after {
  content: "";
  position: absolute;
  top: -4%;
  right: 18%;
  width: 3px;
  height: 112%;
  background: linear-gradient(180deg, transparent, var(--cyan-300) 18%, var(--cyan-300) 74%, transparent);
  box-shadow: 0 0 18px rgba(88, 215, 230, 0.8);
  transform: rotate(6deg);
}

.hero-reference-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.94) 0%, rgba(2, 8, 18, 0.78) 34%, rgba(2, 8, 18, 0.18) 66%, rgba(2, 8, 18, 0.6) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.25) 0%, rgba(2, 8, 18, 0.1) 48%, rgba(2, 8, 18, 0.94) 100%);
}

.hero-reference-sweep {
  z-index: 2;
  pointer-events: none;
  transform: translateY(var(--hero-sweep-y));
  will-change: transform;
}

.hero-reference-sweep::before,
.hero-reference-sweep::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: calc(var(--hero-rail-height) + var(--hero-edge-space) + clamp(18px, 4svh, 48px));
  width: 82vw;
  height: 64vh;
  border-bottom: 1px solid rgba(88, 215, 230, 0.76);
  border-left: 1px solid rgba(88, 215, 230, 0.24);
  border-radius: 0 0 0 100%;
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(88, 215, 230, 0.32));
}

.hero-reference-sweep::after {
  right: -4vw;
  bottom: calc(var(--hero-rail-height) + var(--hero-edge-space) + clamp(8px, 3svh, 34px));
  opacity: 0.18;
  transform: rotate(-5deg) translateY(22px);
}

.hero-orbit-system {
  position: absolute;
  z-index: 3;
  right: clamp(72px, 9vw, 138px);
  top: clamp(150px, 21vh, 206px);
  width: clamp(300px, 28vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.96;
}

.hero-orbit-rings,
.hero-orbit-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero-orbit-rings {
  border: 1px solid rgba(88, 215, 230, 0.34);
  box-shadow:
    0 0 84px rgba(88, 215, 230, 0.14),
    inset 0 0 80px rgba(88, 215, 230, 0.06);
  animation: heroOrbitSpin 18s linear infinite;
}

.hero-orbit-rings span:nth-child(1) {
  inset: 14%;
  border: 1px dashed rgba(255, 255, 255, 0.19);
}

.hero-orbit-rings span:nth-child(2) {
  inset: 28%;
  border: 1px solid rgba(88, 215, 230, 0.2);
}

.hero-orbit-rings span:nth-child(3) {
  inset: 43%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 46px rgba(88, 215, 230, 0.12);
}

.hero-orbit-mark {
  width: clamp(118px, 10vw, 158px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 26px 42px rgba(88, 215, 230, 0.25));
  transform: perspective(620px) rotateY(-28deg) rotateX(7deg);
  animation: heroMarkFloat 7.5s ease-in-out infinite;
}

.hero-route-panel {
  position: absolute;
  z-index: 5;
  right: clamp(56px, 7vw, 106px);
  top: clamp(424px, 54vh, 460px);
  width: min(390px, 30vw);
  padding: 1.35rem 1.55rem 1.45rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4, 15, 30, 0.91), rgba(3, 12, 26, 0.82)),
    rgba(3, 12, 26, 0.88);
  border: 1px solid rgba(88, 215, 230, 0.38);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-route-panel span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-route-panel strong {
  display: block;
  max-width: 300px;
  margin-top: 0.82rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-route-panel p {
  max-width: 330px;
  margin: 0.85rem 0 0;
  color: rgba(236, 246, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.hero-reference .hero-content {
  position: relative;
  z-index: 4;
  display: block;
  width: min(1424px, calc(100% - 88px));
  height: 100%;
  padding-top: calc(var(--header-height) + clamp(28px, 7svh, 104px));
  padding-bottom: calc(var(--hero-rail-height) + var(--hero-edge-space) + clamp(18px, 4svh, 58px));
  display: flex;
  align-items: center;
  transform: translateY(var(--hero-lift-y));
  will-change: transform;
}

.hero-reference .hero-copy {
  position: relative;
  max-width: min(760px, 54vw);
}

.hero-reference .hero-copy::before {
  content: "";
  position: absolute;
  inset: -70px -100px -64px -190px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 8, 18, 0.9) 0%, rgba(2, 8, 18, 0.68) 62%, transparent 100%);
  filter: blur(2px);
}

.hero-reference-eyebrow {
  margin: 0 0 clamp(0.75rem, 2svh, 1.45rem);
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-reference h1 {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Sora", "Segoe UI", Inter, Arial, sans-serif;
  font-size: clamp(3.35rem, min(5.45vw, 8.6svh), 5.95rem);
  font-weight: 360;
  line-height: 0.99;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hero-reference h1 span {
  display: block;
  color: var(--cyan-300);
  font-weight: 420;
  text-shadow: 0 0 24px rgba(88, 215, 230, 0.24);
}

.hero-reference-lede {
  max-width: 680px;
  margin: clamp(1rem, 2.6svh, 1.8rem) 0 0;
  color: rgba(236, 246, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
}

.hero-reference .hero-actions {
  gap: 1.15rem;
  margin-top: clamp(1.25rem, 3.6svh, 2.3rem);
}

.hero-reference .button {
  min-width: 196px;
  min-height: clamp(50px, 6svh, 58px);
  border-radius: 4px;
  font-weight: 850;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero-reference .button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, #62e3ef, #2cbdd4);
  border-color: rgba(98, 227, 239, 0.82);
}

.hero-reference .button-secondary {
  color: var(--white);
  background: rgba(2, 8, 18, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-reference-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--hero-edge-space);
  z-index: 5;
  color: var(--white);
  background: transparent;
  border-top: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(var(--hero-panel-y));
  opacity: var(--hero-panel-opacity);
  will-change: transform, opacity;
}

.hero-reference-rail::before,
.hero-reference-rail::after {
  display: none;
}

.hero-reference-rail::before {
  left: max(24px, calc((100vw - var(--container-width)) / 2));
}

.hero-reference-rail::after {
  right: max(24px, calc((100vw - var(--container-width)) / 2));
}

.hero-route-motion {
  --rail-side-space: max(24px, calc((100vw - min(1424px, calc(100vw - 88px))) / 2));
  --route-travel: calc((100vw - (var(--rail-side-space) * 2)) / 2 - 20px);
  position: absolute;
  left: var(--rail-side-space);
  right: var(--rail-side-space);
  top: -13px;
  z-index: 3;
  height: 16px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.hero-route-motion::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 215, 230, 0.48), transparent);
  opacity: 0.48;
}

.hero-route-motion::after {
  content: "";
  position: absolute;
  left: calc(var(--route-target-center, 50%) - 25px);
  top: 7px;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88, 215, 230, 0.9), transparent);
  opacity: 0;
  transform: scaleX(0.36);
  transition: left 520ms cubic-bezier(0.22, 0.72, 0.24, 1);
}

.hero-route-motion span {
  position: absolute;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan-300);
  box-shadow:
    0 0 0 4px rgba(88, 215, 230, 0.08),
    0 0 12px rgba(88, 215, 230, 0.55);
  opacity: 0.46;
  will-change: transform, opacity;
}

.hero-route-motion span:first-child {
  left: 4px;
  animation: heroSignalLeft 8.2s ease-in-out infinite;
}

.hero-route-motion span:last-child {
  right: 4px;
  animation: heroSignalRight 8.2s ease-in-out infinite;
}

.hero-route-motion.is-targeted::before {
  opacity: 0.34;
}

.hero-route-motion.is-targeted::after {
  animation: heroTargetPulse 8.2s ease-in-out infinite;
}

@keyframes heroSignalLeft {
  0%,
  18%,
  100% {
    opacity: 0.34;
    transform: translateX(0) scale(0.78);
  }

  43%,
  49% {
    opacity: 0.94;
    transform: translateX(var(--route-left-target, var(--route-travel))) scale(0.98);
  }

  54% {
    opacity: 0.86;
    transform: translateX(calc(var(--route-left-target, var(--route-travel)) - 9px)) scale(0.84);
  }

  74% {
    opacity: 0.34;
    transform: translateX(0) scale(0.78);
  }
}

@keyframes heroSignalRight {
  0%,
  18%,
  100% {
    opacity: 0.34;
    transform: translateX(0) scale(0.78);
  }

  43%,
  49% {
    opacity: 0.94;
    transform: translateX(calc(var(--route-right-target, var(--route-travel)) * -1)) scale(0.98);
  }

  54% {
    opacity: 0.86;
    transform: translateX(calc((var(--route-right-target, var(--route-travel)) - 9px) * -1)) scale(0.84);
  }

  74% {
    opacity: 0.34;
    transform: translateX(0) scale(0.78);
  }
}

@keyframes heroTargetPulse {
  0%,
  32%,
  72%,
  100% {
    opacity: 0;
    transform: scaleX(0.36);
  }

  43%,
  52% {
    opacity: 0.44;
    transform: scaleX(0.84);
  }
}

.hero-reveal-inner {
  position: relative;
  width: min(1424px, calc(100% - 88px));
  min-height: var(--hero-rail-height);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: rgba(3, 12, 26, 0.76);
  border: 1px solid rgba(88, 215, 230, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-reveal-inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-300), rgba(88, 215, 230, 0.44), var(--cyan-300));
  opacity: 0.78;
}

.hero-reveal-title {
  width: min(28vw, 360px);
  min-width: 270px;
}

.hero-reveal-title strong {
  display: block;
  max-width: 340px;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 880;
  line-height: 1.05;
  letter-spacing: 0;
}

.signal-line-kicker {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-reveal-step {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.85rem, 1.25svh, 1.22rem) clamp(1.05rem, 1.7vw, 1.55rem);
  color: rgba(236, 246, 255, 0.76);
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.hero-reveal-step:first-child {
  border-left: 0;
}

.hero-reveal-step.is-active {
  background: linear-gradient(180deg, rgba(88, 215, 230, 0.08), rgba(88, 215, 230, 0.015));
  box-shadow: inset 0 3px 0 var(--cyan-300);
}

.hero-reveal-step:hover,
.hero-reveal-step:focus-visible {
  color: var(--white);
  background: rgba(98, 227, 239, 0.055);
  border-color: rgba(98, 227, 239, 0.34);
  transform: translateY(-2px);
  outline: none;
}

.hero-reveal-step span {
  display: block;
  margin-bottom: clamp(0.28rem, 0.9svh, 0.55rem);
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.1em;
}

.hero-reveal-step strong {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, min(1.45vw, 2.35svh), 1.42rem);
  font-weight: 870;
  line-height: 1.18;
}

.hero-reveal-step em {
  display: block;
  margin-top: clamp(0.24rem, 0.7svh, 0.35rem);
  color: rgba(236, 246, 255, 0.68);
  font-style: normal;
  font-size: clamp(0.78rem, 1.45svh, 0.88rem);
  line-height: 1.35;
}

@keyframes heroOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroMarkFloat {
  0%,
  100% {
    transform: perspective(620px) rotateY(-28deg) rotateX(7deg) translateY(0);
  }

  50% {
    transform: perspective(620px) rotateY(-18deg) rotateX(5deg) translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-rings,
  .hero-orbit-mark,
  .hero-route-motion span {
    animation: none;
  }
}

@media (min-width: 741px) and (max-height: 820px) {
  .hero-reference .hero-content {
    padding-top: calc(var(--header-height) + clamp(58px, 7.5vh, 78px));
    padding-bottom: clamp(150px, 22vh, 184px);
  }

  .hero-reference h1 {
    font-size: clamp(3.45rem, 4.55vw, 4.65rem);
    line-height: 1.01;
  }

  .hero-reference-lede {
    max-width: 540px;
    margin-top: 1.35rem;
    line-height: 1.5;
  }

  .hero-reference .hero-actions {
    margin-top: 1.6rem;
  }

  .hero-reference .button {
    min-height: 52px;
  }

  .hero-orbit-system {
    top: clamp(104px, 16vh, 140px);
    width: clamp(270px, 24vw, 360px);
  }

  .hero-route-panel {
    top: clamp(340px, 49vh, 390px);
    width: min(360px, 29vw);
    padding: 1.05rem 1.2rem;
  }

  .hero-route-panel p {
    display: none;
  }

  .hero-reveal-inner {
    min-height: 118px;
  }

  .hero-reveal-title strong {
    font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  }

  .hero-reveal-step {
    padding-block: 0.75rem;
  }

  .hero-reveal-step em,
  .hero-route-panel p {
    display: none;
  }
}

.rail-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  color: var(--cyan-300);
}

.rail-icon-people::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.rail-icon-people::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 27px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.rail-icon-growth {
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.rail-icon-growth::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 7px;
  width: 22px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skew(-18deg) rotate(-8deg);
}

.rail-icon-growth::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.rail-icon-cycle {
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.rail-icon-cycle::before,
.rail-icon-cycle::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.rail-icon-cycle::before {
  right: -2px;
  top: 3px;
  transform: rotate(42deg);
}

.rail-icon-cycle::after {
  left: 0;
  bottom: 0;
  transform: rotate(222deg);
}

.rail-icon-shield {
  width: 34px;
  height: 38px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 92% 78%, 50% 100%, 8% 78%, 0 18%);
}

.rail-icon-shield::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.trust-strip {
  padding: 0;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid div {
  min-height: 152px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1.2rem;
  background: rgba(9, 31, 62, 0.82);
}

.trust-grid span,
.why-grid span,
.entry-lane-grid span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--white);
  font-size: 1.15rem;
}

.trust-grid p {
  margin: 0;
  color: rgba(239, 248, 255, 0.72);
}

.entry-section {
  position: relative;
  padding: clamp(42px, 5vw, 70px) 0;
  background:
    linear-gradient(90deg, rgba(98, 227, 239, 0.08), transparent 42%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.entry-section .section-heading {
  margin-bottom: 0;
}

.entry-layout {
  display: grid;
  gap: 1.45rem;
}

.entry-lane-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.entry-lane-grid article {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.25rem;
  background: var(--paper);
}

.entry-lane-grid span {
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.entry-lane-grid h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.3rem;
  line-height: 1.13;
}

.entry-lane-grid p {
  margin: 0;
  color: var(--muted);
}

.entry-lane-grid ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.entry-lane-grid article > a:last-child {
  align-self: end;
  color: var(--navy-950);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(15, 127, 141, 0.38);
  text-underline-offset: 0.2em;
}

.entry-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0.2rem 0 0.4rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.entry-program-list a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem;
  color: var(--navy-950);
  background: rgba(16, 46, 92, 0.06);
  font-weight: 850;
  transition: background 160ms ease;
}

.entry-program-list a:hover,
.entry-program-list a:focus-visible {
  background: var(--white);
}

.section-heading h2,
.meeting-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.65vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p,
.meeting-layout p {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.visual-environment-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 18%, rgba(88, 215, 230, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(78, 140, 255, 0.12), transparent 34rem),
    linear-gradient(135deg, #020a13 0%, #06121f 52%, #071b2b 100%);
}

.visual-environment-section::before,
.visual-environment-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.visual-environment-section::before {
  inset: -18% -10%;
  z-index: 0;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(88, 215, 230, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(88, 215, 230, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 72% 22%, rgba(88, 215, 230, 0.22), transparent 18rem);
  background-size: 112px 112px, 112px 112px, auto;
  animation: roomBackgroundDrift 18s ease-in-out infinite alternate;
}

.visual-environment-section::after {
  right: -9vw;
  bottom: -18vw;
  z-index: 0;
  width: min(48rem, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(88, 215, 230, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(88, 215, 230, 0.12), transparent 62%),
    conic-gradient(from 110deg, transparent 0 68%, rgba(88, 215, 230, 0.2), transparent 82%);
  opacity: 0.72;
  animation: roomRingDrift 14s ease-in-out infinite alternate;
}

.visual-environment-section > .page-shell {
  position: relative;
  z-index: 1;
}

.visual-environment-section .section-kicker {
  color: #58d7e6;
}

.visual-environment-section .section-heading h2 {
  color: #ffffff;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.visual-environment-section .split-heading > p {
  color: rgba(244, 249, 252, 0.82);
}

.visual-environment-section .image-story-grid figcaption {
  color: rgba(244, 249, 252, 0.9);
}

@keyframes roomBackgroundDrift {
  0% {
    background-position: 0 0, 0 0, 72% 22%;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    background-position: 54px 28px, -42px 38px, 62% 30%;
    transform: translate3d(-18px, 14px, 0) scale(1.04);
  }
}

@keyframes roomRingDrift {
  0% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.92);
  }

  100% {
    opacity: 0.78;
    transform: translate3d(-36px, -18px, 0) rotate(18deg) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-environment-section::before,
  .visual-environment-section::after {
    animation: none;
  }
}

.environment-filmstrip-section {
  color: #071626;
}

.environment-filmstrip-section .section-heading h2,
.environment-filmstrip-section #visual-title {
  color: #071626;
  text-shadow: none;
}

.environment-filmstrip-section .split-heading > p {
  color: #314762;
}

.environment-filmstrip-section .environment-signal-panel p:not(.section-kicker) {
  color: #435977;
}

.proof-band-section .section-kicker {
  color: #58d7e6;
}

.proof-band-section .section-heading h2,
.proof-band-section #proof-title {
  color: #ffffff;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.proof-band-section .section-heading p {
  color: rgba(244, 249, 252, 0.78);
}

.proof-band-section .proof-stat-grid span {
  color: rgba(244, 249, 252, 0.86);
}

.about-credibility-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #030a16;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 22, 0.94), rgba(3, 10, 22, 0.72)),
    linear-gradient(180deg, rgba(3, 10, 22, 0.58), rgba(3, 10, 22, 0.92)),
    url("assets/training/edunex-live-workshop-wide.jpeg");
  background-position:
    center,
    center,
    center 42%;
  background-repeat: no-repeat;
  background-size:
    auto,
    auto,
    cover;
  background-attachment:
    scroll,
    scroll,
    fixed;
}

.about-credibility-section .proof-band {
  border-color: rgba(88, 215, 230, 0.24);
  background: rgba(3, 10, 22, 0.62);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.about-credibility-section .proof-stat-grid span {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 16px);
  padding: var(--space-section) 0;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(8px);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section-action {
  display: flex;
  gap: 0.85rem;
  margin-top: clamp(24px, 4vw, 38px);
}

.section-action-dark .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-action-dark .button-secondary:hover,
.section-action-dark .button-secondary:focus-visible {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.home-belief-section {
  padding: clamp(96px, 12vw, 170px) 0;
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0), rgba(246, 249, 252, 0.78)),
    var(--white);
}

.home-belief-section .about-story-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.48fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.home-belief-section .about-story-layout h2 {
  max-width: 900px;
  font-size: clamp(4.2rem, 8.2vw, 8.6rem);
  line-height: 0.91;
}

.home-belief-section .advisor-copy {
  padding-bottom: 0.35rem;
}

.home-belief-section .advisor-copy p {
  font-size: clamp(1.08rem, 1.45vw, 1.36rem);
  line-height: 1.62;
}

.belief-grid,
.buyer-confidence-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.belief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.belief-grid article,
.buyer-confidence-grid article {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  background: var(--paper);
}

.belief-grid article {
  min-height: 210px;
  padding: 1.3rem;
}

.belief-grid span,
.buyer-confidence-grid span {
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.belief-grid h3,
.buyer-confidence-grid h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.12;
}

.belief-grid p,
.buyer-confidence-grid p {
  margin: 0;
  color: var(--muted);
}

.capability-priorities-section,
.engine-preview-section,
.buyer-confidence-section {
  background: var(--white);
}

.capability-priorities-section,
.buyer-confidence-section {
  padding-top: clamp(88px, 11vw, 150px);
}

.capability-priorities-section .section-heading,
.engine-preview-section .section-heading,
.buyer-confidence-section .section-heading {
  max-width: 940px;
}

.capability-priorities-section .section-heading h2,
.engine-preview-section .section-heading h2,
.buyer-confidence-section .section-heading h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 0.98;
}

.capability-priority-grid article {
  min-height: 250px;
  padding: clamp(1.35rem, 2vw, 1.7rem);
}

.capability-priority-grid dl {
  display: grid;
  gap: 0.66rem;
  margin: 0.95rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(138, 153, 172, 0.22);
}

.capability-priority-grid dl div {
  display: grid;
  gap: 0.16rem;
}

.capability-priority-grid dt {
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capability-priority-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.43;
}

.capability-map-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(138, 153, 172, 0.2);
  border: 1px solid rgba(138, 153, 172, 0.2);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.capability-map-bar span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 1rem clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(239, 248, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(10, 35, 68, 0.96), rgba(6, 22, 43, 0.98)),
    var(--navy-950);
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.35;
}

.solution-suite-grid article[id] {
  scroll-margin-top: 112px;
}

.home-engine-grid article {
  min-height: 230px;
}

.home-pathway-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(6, 22, 43, 0.97), rgba(10, 35, 68, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 120px);
}

.home-pathway-section::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 227, 239, 0.36), transparent);
  transform: translateX(calc((var(--pathway-progress, 0) - 0.5) * 16%));
  opacity: 0.72;
}

.home-pathway-section .section-heading h2 {
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  line-height: 0.98;
}

.home-pathway-steps {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-pathway-steps::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(var(--pathway-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-300), rgba(255, 255, 255, 0.82));
  box-shadow: 0 0 26px rgba(98, 227, 239, 0.46);
  transition: width 90ms linear;
}

.home-pathway-steps article {
  position: relative;
  overflow: hidden;
}

.home-pathway-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.16), transparent 46%),
    rgba(255, 255, 255, 0);
  opacity: 0;
  transition: opacity 240ms ease;
}

.home-pathway-steps article > * {
  position: relative;
  z-index: 1;
}

.home-pathway-steps article.is-active::before {
  opacity: 1;
}

.buyer-confidence-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.buyer-confidence-grid article {
  min-height: 248px;
  padding: 1.2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-grid article {
  min-height: 248px;
  padding: 1.3rem;
  background: var(--paper);
}

.entry-lane-grid article,
.belief-grid article,
.buyer-confidence-grid article,
.why-grid article,
.insight-card,
.solution-suite-grid article,
.engine-detail-grid article,
.engagement-grid article,
.course-card,
.pathway-steps article,
.scheduler-options button {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.entry-lane-grid article:hover,
.entry-lane-grid article:focus-within,
.belief-grid article:hover,
.belief-grid article:focus-within,
.buyer-confidence-grid article:hover,
.buyer-confidence-grid article:focus-within,
.why-grid article:hover,
.why-grid article:focus-within,
.insight-card:hover,
.insight-card:focus-within,
.solution-suite-grid article:hover,
.solution-suite-grid article:focus-within,
.engine-detail-grid article:hover,
.engine-detail-grid article:focus-within,
.engagement-grid article:hover,
.engagement-grid article:focus-within,
.course-card:hover,
.course-card:focus-within,
.pathway-steps article:hover,
.pathway-steps article:focus-within,
.scheduler-options button:hover,
.scheduler-options button:focus-visible {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(19, 48, 82, 0.04), var(--shadow-soft);
  transform: translateY(-1px);
}

.why-grid h3,
.resource-layout h2 {
  margin: 0.7rem 0 0.55rem;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.12;
}

.why-grid p,
.advisor-copy p,
.resource-layout p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 810px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.insight-card {
  min-height: 272px;
  padding: 1.45rem;
  background: var(--white);
}

.insight-card span {
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 1.2rem 0 0.6rem;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.12;
}

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

.operating-fit-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(98, 227, 239, 0.08), transparent 46%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.anchor-alias {
  position: absolute;
  inset: 0 auto auto 0;
}

.operating-fit-layout {
  display: grid;
  gap: 1.45rem;
}

.operating-fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.78fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.operating-fit-lead,
.operating-fit-columns article,
.adaptation-grid article {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  background: var(--white);
}

.operating-fit-lead {
  padding: 1.35rem;
}

.operating-fit-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.operating-fit-columns article {
  min-height: 292px;
  padding: 1.1rem;
}

.operating-fit-lead span,
.operating-fit-columns span {
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.operating-fit-lead h3,
.operating-fit-columns h3,
.adaptation-grid h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.12rem;
  line-height: 1.16;
}

.operating-fit-lead p,
.operating-fit-columns p,
.adaptation-grid p {
  margin: 0;
  color: var(--muted);
}

.operating-fit-columns ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.adaptation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.adaptation-grid article {
  min-height: 190px;
  padding: 1.1rem;
}

.adaptation-grid span {
  color: var(--amber-500);
  font-size: 1.15rem;
  font-weight: 850;
}

.operating-fit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  background: rgba(16, 46, 92, 0.06);
  border: 1px solid var(--line);
}

.operating-fit-footer p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.field-proof-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 22, 43, 0.97), rgba(11, 39, 72, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 96px);
}

.field-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.86fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.field-proof-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 4.9rem);
  line-height: 0.96;
}

.field-proof-copy p {
  margin: 1.25rem 0 0;
  color: rgba(239, 248, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.field-proof-signals {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.field-proof-signals div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.field-proof-signals span,
.course-proof-list span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field-proof-signals strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--white);
  font-size: 1.05rem;
}

.field-proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 14px;
}

.field-photo,
.course-proof-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-soft);
}

.field-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.field-photo-wide {
  grid-row: span 2;
}

.field-photo img,
.course-proof-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.field-photo-wide img {
  aspect-ratio: 16 / 12;
}

.field-photo:not(.field-photo-wide) img {
  aspect-ratio: 1 / 1;
}

.field-photo-portrait img {
  object-position: 52% 48%;
}

.field-photo figcaption {
  position: static;
  width: 100%;
  max-width: none;
  padding: 0.72rem 0.82rem;
  color: var(--white);
  background: rgba(6, 22, 43, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.impact-story-section {
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(86px, 10vw, 140px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 13, 29, 0.98), rgba(6, 22, 43, 0.96)),
    var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-story-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.impact-story-head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.45rem, 5.2vw, 5.35rem);
  line-height: 0.96;
}

.impact-story-head > p {
  margin: 0;
  color: rgba(239, 248, 255, 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.impact-story-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: grid-template-columns 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.impact-story-track[data-active="1"] {
  grid-template-columns: minmax(0, 1.24fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
}

.impact-story-track[data-active="2"] {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.24fr) minmax(0, 0.88fr);
}

.impact-story-track[data-active="3"] {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.88fr) minmax(0, 1.24fr);
}

.impact-story-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(250px, 0.92fr) minmax(0, 1fr);
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  cursor: pointer;
  opacity: 0.72;
  transform: translateY(8px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms ease,
    box-shadow 420ms ease;
}

.impact-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 320ms ease, box-shadow 320ms ease;
}

.impact-story-card:hover,
.impact-story-card:focus-visible,
.impact-story-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.impact-story-card:focus-visible {
  outline: 2px solid var(--cyan-300);
  outline-offset: -4px;
}

.impact-story-card.is-active {
  background:
    linear-gradient(180deg, rgba(98, 227, 239, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(98, 227, 239, 0.16);
}

.impact-story-card.is-active::after {
  border-color: rgba(98, 227, 239, 0.2);
  box-shadow: inset 0 1px 0 rgba(98, 227, 239, 0.18);
}

.impact-story-card figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.impact-story-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.impact-story-card.is-active img,
.impact-story-card:hover img,
.impact-story-card:focus-visible img {
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.055);
}

.impact-story-card:nth-child(1) img {
  object-position: 50% 42%;
}

.impact-story-card:nth-child(2) img {
  object-position: 48% 46%;
}

.impact-story-card:nth-child(3) img {
  object-position: 54% 40%;
}

.impact-story-copy {
  display: grid;
  align-content: start;
  gap: 0.92rem;
  padding: clamp(1.15rem, 2.2vw, 1.5rem);
}

.impact-story-copy > span {
  color: var(--cyan-300);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.impact-story-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.impact-story-copy dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.impact-story-copy dt {
  color: rgba(98, 227, 239, 0.86);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-story-copy dd {
  margin: 0.18rem 0 0;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.impact-story-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.impact-story-controls button {
  min-height: 38px;
  padding: 0.55rem 0.78rem;
  color: rgba(239, 248, 255, 0.7);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.impact-story-controls button:hover,
.impact-story-controls button:focus-visible,
.impact-story-controls button.active {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
  transform: translateY(-1px);
}

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

.meeting-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy-900);
  font-weight: 750;
}

select,
input {
  min-height: 50px;
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

select:focus,
input:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(88, 215, 230, 0.18);
}

.snapshot {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  background: var(--navy-900);
  border-bottom: 4px solid var(--amber-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.score-ring {
  --score: 74;
  width: 152px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 0 1.3rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--navy-900) 0 56%, transparent 57%),
    conic-gradient(var(--cyan-300) calc(var(--score) * 1%), rgba(255, 255, 255, 0.16) 0);
}

.score-ring span {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 850;
}

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

.snapshot p {
  color: rgba(239, 248, 255, 0.78);
}

.snapshot .button {
  margin-top: 0.8rem;
}

.insight-section {
  background: var(--white);
}

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

.insight-card {
  min-height: 230px;
}

.resource-section {
  padding: clamp(52px, 7vw, 90px) 0;
  background: var(--white);
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(98, 227, 239, 0.12), rgba(255, 255, 255, 0)),
    var(--paper);
}

.resource-layout h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.resource-subhead {
  margin: 0 0 0.85rem;
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 850;
}

.resource-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(13, 44, 81, 0.96), rgba(4, 15, 31, 0.98)),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.resource-card > span {
  color: var(--cyan-300);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resource-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-card li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(239, 248, 255, 0.84);
}

.resource-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--cyan-300);
}

.resource-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.meeting-section {
  padding: clamp(70px, 9vw, 120px) 0;
  color: var(--white);
  background: var(--navy-950);
}

.meeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 0.55fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.meeting-layout h2 {
  color: var(--white);
}

.meeting-layout p {
  color: rgba(239, 248, 255, 0.72);
}

.calendar-next-step-light,
.about-next-step-light {
  position: relative;
  overflow: hidden;
  color: #071626;
  background:
    radial-gradient(circle at 16% 14%, rgba(88, 215, 230, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(7, 22, 38, 0.055), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.calendar-next-step-light::before,
.about-next-step-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 22, 38, 0.025) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.4;
  pointer-events: none;
}

.calendar-next-step-light .meeting-layout,
.about-next-step-light .meeting-layout {
  position: relative;
  z-index: 1;
}

.calendar-next-step-light .section-kicker,
.about-next-step-light .section-kicker {
  color: #1495ad;
}

.calendar-next-step-light .meeting-layout h2,
.about-next-step-light .meeting-layout h2 {
  color: #071626;
}

.calendar-next-step-light .meeting-layout p,
.about-next-step-light .meeting-layout p {
  color: #304764;
}

.calendar-next-step-light .button-secondary,
.about-next-step-light .button-secondary {
  border-color: rgba(8, 24, 41, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: #071626;
}

.calendar-next-step-light .button-secondary:hover,
.calendar-next-step-light .button-secondary:focus-visible,
.about-next-step-light .button-secondary:hover,
.about-next-step-light .button-secondary:focus-visible {
  border-color: rgba(33, 184, 207, 0.58);
  background: #ffffff;
  color: #071626;
}

.calendar-collaboration-section {
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(88, 215, 230, 0.13) 0 1px, transparent 1px 12.5rem),
    radial-gradient(circle at 13% 18%, rgba(88, 215, 230, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 70%, rgba(94, 255, 190, 0.12), transparent 25rem),
    linear-gradient(135deg, #020a13 0%, #06121f 48%, #071c2b 100%);
  color: #f3fbff;
}

.calendar-collaboration-section::before {
  inset: -24% -9% auto auto;
  width: min(50rem, 62vw);
  border-color: rgba(88, 215, 230, 0.3);
  box-shadow:
    inset 0 0 0 5.2rem rgba(88, 215, 230, 0.018),
    0 0 78px rgba(88, 215, 230, 0.08);
  animation: customSupportOrbit 26s linear infinite;
}

.calendar-collaboration-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 66%, rgba(94, 255, 190, 0.11), transparent 16rem),
    radial-gradient(circle at 72% 52%, rgba(88, 215, 230, 0.18), transparent 20rem),
    linear-gradient(90deg, transparent 0 11%, rgba(88, 215, 230, 0.08) 11.08%, transparent 11.18% 32%, rgba(255, 255, 255, 0.04) 32.08%, transparent 32.16% 63%, rgba(88, 215, 230, 0.07) 63.08%, transparent 63.18% 100%);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: customSupportDrift 20s ease-in-out infinite alternate;
}

.calendar-collaboration-section .section-kicker {
  color: #b8ecf4;
}

.calendar-collaboration-section .custom-preview-layout h2 {
  color: #f8fcff;
}

.calendar-collaboration-section .custom-preview-layout p {
  color: rgba(232, 242, 249, 0.76);
}

@media (prefers-reduced-motion: reduce) {
  .calendar-collaboration-section::before,
  .calendar-collaboration-section::after {
    animation: none;
  }

  .calendar-collaboration-section::after {
    transform: none;
  }
}

.next-step-consultation-section {
  position: relative;
  overflow: hidden;
  color: #071626;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(238, 244, 248, 0.96)),
    linear-gradient(120deg, rgba(88, 215, 230, 0.12), rgba(255, 255, 255, 0) 48%),
    #f4f8fb;
}

.next-step-consultation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 22, 38, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.42;
  pointer-events: none;
}

.next-step-consultation-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.54fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.next-step-consultation-copy {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.55rem);
}

.next-step-consultation-section .section-kicker {
  color: #18a9c2;
}

.next-step-consultation-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #071626;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  font-weight: 390;
  line-height: 1;
  letter-spacing: 0;
}

.next-step-consultation-copy p:not(.section-kicker) {
  max-width: 780px;
  margin: 0;
  color: #314762;
  font-size: clamp(1rem, 1.24vw, 1.18rem);
  line-height: 1.62;
}

.next-step-actions {
  margin-top: 0.35rem;
}

.next-step-actions .button-secondary {
  color: #071626;
  background: #fff;
  border-color: rgba(7, 22, 38, 0.14);
}

.next-step-consultation-card {
  overflow: hidden;
  border: 1px solid rgba(7, 22, 38, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(7, 22, 38, 0.12);
}

.next-step-consultation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.88;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.next-step-card-body {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
}

.next-step-card-body h3 {
  margin: 0;
  color: #071626;
  font-size: clamp(1.8rem, 2.7vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.next-step-card-body p:not(.section-kicker) {
  margin: 0;
  color: #314762;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.consultation-value {
  display: grid;
  gap: 1px;
  max-width: 560px;
  margin-top: 1.45rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.consultation-value span {
  display: block;
  padding: 0.78rem 0.9rem;
  color: rgba(239, 248, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  font-weight: 850;
}

.meeting-form {
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-panel);
}

.meeting-form label {
  color: rgba(255, 255, 255, 0.86);
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.form-group legend {
  padding: 0 0.45rem;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-group .full-field {
  grid-column: 1 / -1;
}

.form-supporting {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.form-supporting summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(239, 248, 255, 0.86);
  font-weight: 850;
  cursor: pointer;
}

.form-supporting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.form-supporting-grid .full-field {
  grid-column: 1 / -1;
}

.meeting-form input,
.meeting-form select {
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
}

.meeting-form input:focus,
.meeting-form select:focus,
.meeting-form textarea:focus {
  background: rgba(255, 255, 255, 0.1);
}

.location-field small {
  color: rgba(239, 248, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

.location-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: stretch;
}

.location-button {
  min-height: 50px;
  padding: 0 0.86rem;
  color: rgba(239, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.location-button:hover,
.location-button:focus-visible {
  color: var(--cyan-300);
  background: rgba(98, 227, 239, 0.08);
  border-color: rgba(98, 227, 239, 0.32);
}

.location-button:disabled {
  cursor: default;
  opacity: 0.66;
}

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

.form-note {
  margin: 0;
  min-height: 24px;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer {
  padding: clamp(36px, 5vw, 56px) 0 32px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(6, 22, 43, 0.98), var(--color-bg-dark)),
    var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-upgraded {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(180px, 0.36fr) minmax(240px, 0.56fr);
  align-items: start;
  column-gap: clamp(24px, 5vw, 70px);
  row-gap: clamp(20px, 2.5vw, 30px);
}

.footer-hub {
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.45fr) minmax(250px, 0.58fr);
  align-items: stretch;
}

.footer-brand p,
.footer-note p {
  max-width: 360px;
  margin: 0.8rem 0 0;
}

.footer-positioning {
  max-width: 330px;
  color: rgba(239, 248, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  gap: 0.68rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--cyan-300);
  transform: translateX(2px);
}

.site-footer img {
  width: 184px;
}

.site-footer a {
  color: var(--cyan-300);
  font-weight: 800;
}

.footer-contact-links {
  display: grid;
  gap: 0.28rem;
  margin: 0.8rem 0 0.9rem;
}

.footer-contact-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-note > a[href="#top"] {
  display: inline-block;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  padding: 0.2rem 0;
}

.footer-directory div {
  display: grid;
  align-content: start;
  gap: 0.56rem;
}

.footer-directory h2 {
  margin: 0 0 0.22rem;
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-directory a {
  color: rgba(239, 248, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.25;
}

.footer-cta-panel {
  display: grid;
  align-content: start;
  gap: 0.82rem;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.2rem);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.footer-cta-panel span {
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta-panel p {
  margin: 0;
  color: rgba(239, 248, 255, 0.7);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-cta-panel .button {
  width: 100%;
  min-height: 44px;
}

.site-footer .footer-cta-panel .button-primary {
  color: var(--navy-950);
}

.site-footer .footer-cta-panel .button-primary:hover,
.site-footer .footer-cta-panel .button-primary:focus-visible {
  color: var(--white);
}

.footer-brief-link {
  justify-self: start;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(98, 227, 239, 0.34);
  text-underline-offset: 0.22em;
}

.site-footer-cinematic {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: clamp(34px, 4vw, 54px) 0 26px;
  color: rgba(239, 248, 255, 0.76);
  background:
    linear-gradient(90deg, rgba(3, 11, 20, 0.94), rgba(3, 11, 20, 0.72) 48%, rgba(3, 11, 20, 0.94)),
    linear-gradient(180deg, rgba(3, 11, 20, 0.45), rgba(3, 11, 20, 0.96)),
    url("assets/training/edunex-clean-change.jpeg") center / cover;
  background-attachment: scroll, scroll, fixed;
  border-top: 1px solid rgba(239, 248, 255, 0.1);
  isolation: isolate;
}

.site-footer-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(70, 210, 229, 0.1), transparent 28rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 96px 96px;
  pointer-events: none;
  opacity: 0.68;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
}

.footer-cinematic-layout {
  position: relative;
  min-height: 0;
  grid-template-columns: minmax(260px, 0.55fr) minmax(560px, 1.08fr) minmax(250px, 0.4fr);
  align-items: start;
  column-gap: clamp(2rem, 4.4vw, 4.6rem);
  row-gap: clamp(1.6rem, 2.6vw, 2.2rem);
}

.site-footer-cinematic .footer-brand img {
  width: clamp(150px, 13vw, 190px);
}

.site-footer-cinematic .footer-brand > p:first-of-type {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-cinematic .footer-positioning {
  max-width: 350px;
  color: rgba(239, 248, 255, 0.72);
  line-height: 1.52;
}

.site-footer-cinematic .footer-contact-links {
  margin-top: 1.15rem;
}

.site-footer-cinematic .footer-contact-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.footer-cinematic-directory {
  align-self: center;
  min-height: 160px;
  margin-bottom: 0;
  padding: clamp(1.35rem, 2vw, 1.65rem) clamp(1.35rem, 2.2vw, 2rem);
  border: 1px solid rgba(239, 248, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 18, 34, 0.74), rgba(3, 12, 24, 0.84));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.footer-cinematic-directory h2,
.footer-cinematic-panel > span {
  color: var(--cyan-300);
  letter-spacing: 0.18em;
}

.footer-cinematic-directory a {
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 820;
}

.footer-cinematic-panel {
  align-content: space-between;
  min-height: 300px;
  padding: clamp(1.35rem, 2.2vw, 1.7rem);
  border: 1px solid rgba(73, 213, 230, 0.28);
  border-radius: 8px;
  background: rgba(3, 13, 24, 0.68);
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.footer-cinematic-panel p {
  max-width: 230px;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-cinematic-panel .button {
  min-height: 50px;
  margin-top: 4rem;
  color: var(--navy-950);
}

.footer-cinematic-panel .footer-panel-credit {
  justify-self: start;
  margin-top: 1rem;
  color: rgba(239, 248, 255, 0.56);
  opacity: 0.9;
}

.footer-cinematic-panel .footer-panel-credit img {
  width: 86px;
}

.footer-cinematic-meta {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(0.2rem, 1.4vw, 0.9rem);
  padding-top: clamp(0.95rem, 1.4vw, 1.2rem);
  border-top: 1px solid rgba(239, 248, 255, 0.1);
  color: rgba(239, 248, 255, 0.46);
}

.footer-cinematic-meta::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 227, 239, 0.22), transparent);
  pointer-events: none;
}

.footer-cinematic-meta .footer-app {
  justify-self: end;
}

@media (min-width: 1280px) {
  .executive-jump-rail {
    position: fixed;
    top: 52%;
    right: clamp(14px, 2vw, 30px);
    z-index: 36;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    width: 52px;
    height: min(340px, 44vh);
    overflow: visible;
    color: rgba(239, 248, 255, 0.46);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.38;
    transform: translateY(-50%);
    transition: opacity 180ms ease, filter 180ms ease;
  }

  .executive-jump-rail:hover,
  .executive-jump-rail:focus-within {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(88, 215, 230, 0.14));
  }

  .executive-jump-rail::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(180deg, rgba(98, 227, 239, 0), rgba(98, 227, 239, 0.36), rgba(98, 227, 239, 0));
    box-shadow: 0 0 10px rgba(88, 215, 230, 0.16);
    transform: translateX(-50%);
    transition: background 180ms ease, box-shadow 180ms ease;
  }

  .executive-jump-rail:hover::before,
  .executive-jump-rail:focus-within::before {
    background: linear-gradient(180deg, rgba(98, 227, 239, 0), rgba(98, 227, 239, 0.82), rgba(98, 227, 239, 0));
    box-shadow: 0 0 18px rgba(88, 215, 230, 0.34);
  }

  .jump-rail-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .executive-jump-rail a {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-width: 52px;
    color: rgba(239, 248, 255, 0.58);
    font-size: 0.68rem;
    font-weight: 760;
    line-height: 1.1;
  }

  .jump-number {
    position: relative;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: rgba(239, 248, 255, 0.68);
    background: rgba(3, 10, 23, 0.22);
    border: 1px solid rgba(239, 248, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(3, 10, 23, 0.24);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0;
    transition: width 180ms ease, height 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .jump-label {
    position: absolute;
    right: 44px;
    top: 50%;
    min-width: 154px;
    padding: 0.58rem 0.74rem;
    color: rgba(239, 248, 255, 0.78);
    background: rgba(3, 10, 23, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transform: translate(10px, -50%);
    transition: opacity 170ms ease, transform 170ms ease, color 170ms ease, border-color 170ms ease, background 170ms ease;
    white-space: nowrap;
    backdrop-filter: blur(14px);
  }

  .jump-label::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 7px;
    height: 1px;
    background: rgba(98, 227, 239, 0.74);
    transform: translateY(-50%);
  }

  .executive-jump-rail:hover a.active .jump-label,
  .executive-jump-rail:focus-within a.active .jump-label,
  .executive-jump-rail a:hover .jump-label,
  .executive-jump-rail a:focus-visible .jump-label {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .executive-jump-rail a:hover .jump-number,
  .executive-jump-rail a:focus-visible .jump-number,
  .executive-jump-rail a.active .jump-number {
    color: var(--white);
    border-color: var(--cyan-300);
    background: rgba(7, 45, 73, 0.68);
    box-shadow:
      0 0 0 5px rgba(3, 10, 23, 0.44),
      0 0 20px rgba(88, 215, 230, 0.32);
    transform: scale(1.04);
  }

  .executive-jump-rail a.active .jump-number {
    width: 38px;
    height: 38px;
    font-size: 0.84rem;
  }

  .executive-jump-rail a:hover .jump-label,
  .executive-jump-rail a:focus-visible .jump-label,
  .executive-jump-rail a.active .jump-label {
    color: var(--white);
    background: rgba(7, 26, 50, 0.82);
    border-color: rgba(98, 227, 239, 0.52);
  }
}

.footer-meta {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-column: 1 / -1;
  gap: 1rem;
  width: 100%;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
}

.footer-meta > span {
  color: rgba(255, 255, 255, 0.44);
}

.footer-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 28px;
}

.install-button {
  min-height: 28px;
  padding: 0.36rem 0.62rem;
  color: rgba(239, 248, 255, 0.7);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.install-button:hover,
.install-button:focus-visible {
  color: var(--cyan-300);
  background: rgba(88, 215, 230, 0.07);
  border-color: rgba(98, 227, 239, 0.28);
}

.install-button[hidden],
.install-note[hidden] {
  display: none;
}

.install-note {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.35;
}

.app-install-nudge[hidden] {
  display: none;
}

.app-install-nudge {
  position: fixed;
  left: clamp(14px, 2vw, 28px);
  bottom: calc(clamp(14px, 2vw, 28px) + env(safe-area-inset-bottom));
  z-index: 82;
  width: min(430px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.1), rgba(255, 255, 255, 0)),
    rgba(6, 18, 31, 0.9);
  border: 1px solid rgba(98, 227, 239, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(2, 9, 20, 0.28);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.app-install-nudge.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.app-install-nudge-copy {
  min-width: 0;
  display: grid;
  gap: 0.24rem;
}

.app-install-nudge-copy span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.app-install-nudge-copy p,
.app-install-nudge-copy small {
  margin: 0;
  color: rgba(239, 248, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.42;
}

.app-install-nudge-copy small {
  color: rgba(98, 227, 239, 0.9);
}

.app-install-nudge-copy small[hidden] {
  display: none;
}

.app-install-nudge-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.app-install-nudge-action,
.app-install-nudge-dismiss {
  min-height: 34px;
  padding: 0.56rem 0.72rem;
  border-radius: 6px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.app-install-nudge-action {
  color: var(--navy-950);
  background: var(--cyan-300);
  border: 1px solid rgba(98, 227, 239, 0.76);
}

.app-install-nudge-dismiss {
  color: rgba(239, 248, 255, 0.66);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.app-install-nudge-action:hover,
.app-install-nudge-action:focus-visible,
.app-install-nudge-dismiss:hover,
.app-install-nudge-dismiss:focus-visible {
  transform: translateY(-1px);
}

.app-install-nudge-dismiss:hover,
.app-install-nudge-dismiss:focus-visible {
  color: var(--white);
  border-color: rgba(98, 227, 239, 0.28);
}

@media (max-width: 640px) {
  .app-install-nudge {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
  }

  .app-install-nudge-actions {
    width: 100%;
  }

  .app-install-nudge-action,
  .app-install-nudge-dismiss {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-install-nudge,
  .app-install-nudge-action,
  .app-install-nudge-dismiss {
    transition: none;
  }
}

.tuvana-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0;
  justify-self: end;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  opacity: 0.68;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.tuvana-credit span {
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tuvana-credit:hover,
.tuvana-credit:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.94;
}

.tuvana-credit img {
  width: 86px;
  height: auto;
  display: block;
}

.direct-contact-card {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.45rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.direct-contact-card span {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.direct-contact-card a {
  color: var(--white);
  font-weight: 850;
}

.inner-hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6, 22, 43, 0.98) 0%, rgba(6, 22, 43, 0.88) 58%, rgba(6, 22, 43, 0.74) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 88px),
    var(--navy-950);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 227, 239, 0.65), transparent);
}

.inner-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 64px;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.inner-hero-art {
  position: absolute;
  right: -7vw;
  top: 22%;
  width: min(54vw, 720px);
  height: 380px;
  opacity: 0.82;
  background:
    linear-gradient(90deg, rgba(236, 245, 255, 0.66), rgba(125, 162, 218, 0.2)) 0 0 / 82% 72px no-repeat,
    linear-gradient(90deg, rgba(20, 58, 110, 0.9), rgba(7, 31, 69, 0.74)) 14% 136px / 88% 72px no-repeat,
    linear-gradient(90deg, rgba(26, 167, 217, 0.8), rgba(98, 227, 239, 0.9)) 8% 264px / 72% 72px no-repeat;
  transform: skewY(-28deg);
  pointer-events: none;
}

.inner-hero-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(4, 15, 31, 0.68);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(18px);
}

.inner-hero-card span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-hero-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.14;
}

.about-local-hero {
  color: var(--navy-950);
  background:
    linear-gradient(90deg, rgba(244, 249, 252, 0.98) 0%, rgba(244, 249, 252, 0.94) 48%, rgba(244, 249, 252, 0.78) 100%),
    url("assets/training/edunex-clean-grid.png") center / cover no-repeat;
  isolation: isolate;
}

.about-local-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 43, 0.065) 1px, transparent 1px),
    linear-gradient(rgba(6, 22, 43, 0.055) 1px, transparent 1px);
  background-size: 86px 86px;
  pointer-events: none;
}

.about-local-hero::after {
  background: linear-gradient(90deg, transparent, rgba(6, 22, 43, 0.16), transparent);
}

.about-local-hero .inner-hero-art {
  display: none;
}

.about-local-layout {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.66fr);
  gap: clamp(2.4rem, 6vw, 5rem);
}

.about-local-copy {
  max-width: 830px;
}

.about-local-hero .eyebrow {
  color: #008aa4;
}

.about-local-hero h1 {
  max-width: 900px;
  color: var(--navy-950);
  font-size: clamp(2.85rem, 4.85vw, 5.25rem);
  line-height: 1;
}

.about-local-hero h1 strong {
  color: #008aa4;
  font-weight: inherit;
}

.about-local-hero .hero-lede {
  max-width: 760px;
  color: #344f64;
}

.about-local-hero .hero-actions {
  margin-top: clamp(1.25rem, 2.35vw, 1.75rem);
}

.about-local-hero .button-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(16, 46, 92, 0.18);
}

.about-local-hero .button-secondary:hover,
.about-local-hero .button-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(16, 46, 92, 0.28);
}

.about-local-panel {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(16, 46, 92, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 66px rgba(9, 32, 56, 0.14);
  backdrop-filter: blur(16px);
}

.about-local-panel > span {
  display: block;
  color: #008aa4;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-local-panel h2 {
  margin: 1.8rem 0 2rem;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  line-height: 1.12;
}

.about-sector-list {
  display: grid;
  gap: 0.85rem;
}

.about-sector-list div {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 46, 92, 0.14);
  border-radius: var(--radius-md);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.82);
}

.about-sector-list strong {
  font-size: 1rem;
  line-height: 1.2;
}

.about-sector-list span {
  color: #008aa4;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-evidence-hero {
  min-height: clamp(700px, 88svh, 820px);
  isolation: isolate;
  background:
    linear-gradient(116deg, rgba(2, 10, 20, 0.98) 0%, rgba(4, 17, 34, 0.95) 48%, rgba(5, 36, 63, 0.9) 100%),
    var(--navy-950);
}

.method-evidence-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(98, 227, 239, 0.16), transparent 25rem),
    radial-gradient(circle at 12% 78%, rgba(37, 167, 121, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
  pointer-events: none;
}

.method-evidence-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(2, 10, 20, 0.96), rgba(2, 10, 20, 0.58)),
    radial-gradient(circle at 80% 34%, rgba(98, 227, 239, 0.28), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 84px 84px;
  transform: scale(1.02);
  pointer-events: none;
}

.method-evidence-atmosphere::after {
  content: "";
  position: absolute;
  inset: 10% 8% 8% auto;
  width: min(44rem, 52vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(98, 227, 239, 0.18), transparent 62%);
  filter: blur(18px);
}

.method-evidence-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.8fr);
  gap: clamp(2.8rem, 6vw, 5.6rem);
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(28px, 4.2vw, 48px));
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

.method-evidence-copy {
  max-width: 790px;
}

.method-evidence-hero h1 {
  max-width: 840px;
  font-size: clamp(3.1rem, 5.6vw, 5.85rem);
  line-height: 0.96;
}

.method-evidence-hero h1 strong {
  color: var(--cyan-300);
  font-weight: inherit;
}

.method-evidence-hero .hero-lede {
  max-width: 680px;
  color: rgba(234, 246, 252, 0.86);
}

.method-evidence-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.method-evidence-signals span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(239, 249, 253, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 850;
}

.method-evidence-orbit {
  position: relative;
  min-height: clamp(560px, 43vw, 640px);
  color: var(--white);
}

.method-evidence-ring {
  position: absolute;
  inset: 7% 4% 13%;
  border: 1px solid rgba(98, 227, 239, 0.4);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(98, 227, 239, 0.12), transparent 28%),
    radial-gradient(circle, transparent 44%, rgba(98, 227, 239, 0.07) 45% 46%, transparent 47%);
  box-shadow:
    0 0 0 42px rgba(98, 227, 239, 0.035),
    inset 0 0 56px rgba(98, 227, 239, 0.08);
}

.method-evidence-ring::before,
.method-evidence-ring::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.method-evidence-ring::before {
  inset: 15%;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.method-evidence-ring::after {
  inset: 29%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
}

.method-evidence-core {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  display: grid;
  width: clamp(132px, 12vw, 166px);
  aspect-ratio: 1;
  place-items: center;
  padding: 1.2rem;
  border-radius: 999px;
  color: #03111f;
  text-align: center;
  background: linear-gradient(145deg, var(--cyan-300), #20bdcf);
  box-shadow:
    0 0 0 15px rgba(98, 227, 239, 0.12),
    0 24px 64px rgba(0, 9, 20, 0.32);
  transform: translate(-50%, -50%);
}

.method-evidence-core span,
.method-evidence-core strong {
  display: block;
}

.method-evidence-core span {
  align-self: end;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.method-evidence-core strong {
  align-self: start;
  font-size: clamp(1.1rem, 1.5vw, 1.38rem);
  line-height: 1.02;
}

.method-evidence-node {
  position: absolute;
  z-index: 3;
  width: min(42%, 210px);
  min-height: 118px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 16, 31, 0.82);
  box-shadow: 0 22px 56px rgba(0, 8, 20, 0.3);
  backdrop-filter: blur(16px);
}

.method-evidence-node span {
  display: block;
  margin-bottom: 0.36rem;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-evidence-node strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.1;
}

.method-evidence-node p {
  margin: 0.56rem 0 0;
  color: rgba(226, 238, 248, 0.72);
  font-size: 0.86rem;
  line-height: 1.42;
}

.method-evidence-node-before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.method-evidence-node-during {
  right: 4%;
  top: 47%;
  transform: translate(50%, -50%);
}

.method-evidence-node-after {
  left: 50%;
  bottom: 4.5rem;
  transform: translateX(-50%);
}

.method-evidence-node-next {
  left: 4%;
  top: 47%;
  transform: translate(-50%, -50%);
}

.method-evidence-proof {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: min(78%, 430px);
  padding: 0.85rem 1rem;
  border: 1px solid rgba(37, 167, 121, 0.36);
  border-radius: 8px;
  color: rgba(239, 249, 253, 0.9);
  background: rgba(37, 167, 121, 0.14);
  transform: translateX(-50%);
}

.method-evidence-proof span {
  display: block;
  margin-bottom: 0.25rem;
  color: #7ef0c9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-evidence-proof strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.3;
}

@media (prefers-reduced-motion: no-preference) {
  .method-evidence-atmosphere {
    animation: methodEvidenceAtmosphere 18s ease-in-out infinite alternate;
  }

  .method-evidence-ring {
    animation: methodEvidenceRingDrift 32s linear infinite;
  }

  .method-evidence-core {
    animation: methodEvidenceCorePulse 5.6s ease-in-out infinite;
  }
}

@keyframes methodEvidenceAtmosphere {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.055) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes methodEvidenceRingDrift {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes methodEvidenceCorePulse {
  0%,
  100% {
    box-shadow:
      0 0 0 15px rgba(98, 227, 239, 0.12),
      0 24px 64px rgba(0, 9, 20, 0.32);
  }

  50% {
    box-shadow:
      0 0 0 22px rgba(98, 227, 239, 0.08),
      0 30px 78px rgba(0, 9, 20, 0.42);
  }
}

.custom-blueprint-hero {
  --custom-blueprint-photo: url("assets/training/edunex-scene-boardroom.jpeg");
  min-height: clamp(700px, 88svh, 820px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--navy-950);
}

.custom-blueprint-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.97) 0%, rgba(4, 12, 24, 0.88) 52%, rgba(4, 12, 24, 0.76) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 96px),
    var(--custom-blueprint-photo) center / cover no-repeat;
  transform: scale(1.015);
}

.custom-blueprint-hero .inner-hero-art {
  display: none;
}

.custom-blueprint-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(28px, 4.2vw, 48px));
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

.custom-blueprint-copy {
  max-width: 790px;
}

.custom-blueprint-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  line-height: 0.96;
}

.custom-blueprint-hero .hero-lede {
  max-width: 760px;
}

.custom-blueprint-panel {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(88, 215, 230, 0.54);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 22, 43, 0.94), rgba(8, 30, 55, 0.84)),
    rgba(5, 17, 32, 0.9);
  box-shadow: 0 28px 80px rgba(0, 8, 20, 0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.custom-blueprint-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-300), rgba(185, 139, 68, 0.85), transparent);
}

.custom-blueprint-kicker {
  display: block;
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.custom-blueprint-panel h2 {
  margin: 0.85rem 0 1.35rem;
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.custom-blueprint-steps {
  display: grid;
}

.custom-blueprint-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.custom-blueprint-steps article:last-child {
  padding-bottom: 0;
}

.custom-blueprint-steps article > span {
  color: var(--cyan-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.custom-blueprint-steps h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.custom-blueprint-steps p {
  margin: 0.3rem 0 0;
  color: rgba(226, 238, 248, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

.program-hero {
  min-height: clamp(700px, 88svh, 820px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--navy-950);
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.97) 0%, rgba(4, 12, 24, 0.84) 44%, rgba(4, 12, 24, 0.68) 100%),
    url("assets/training/edunex-clean-boardroom.jpeg") center / cover no-repeat;
  transform: scale(1.015);
}

.program-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 33%, rgba(98, 227, 239, 0.13) 33% 47%, transparent 47%),
    radial-gradient(circle at 78% 20%, rgba(98, 227, 239, 0.12), transparent 26rem);
  background-size: 74px 74px, 74px 74px, auto, auto;
  pointer-events: none;
}

.program-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-top: calc(var(--header-height) + clamp(28px, 4.2vw, 48px));
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

.program-hero-copy {
  max-width: 790px;
}

.program-hero .eyebrow {
  color: var(--cyan-300);
  letter-spacing: 0.14em;
}

.program-hero h1 {
  max-width: 790px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 5.35vw, 5.75rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
}

.program-hero h1 strong {
  color: var(--cyan-300);
  font-weight: inherit;
}

.program-hero .hero-lede {
  max-width: 720px;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  color: rgba(238, 248, 252, 0.9);
  font-size: clamp(1.05rem, 1.42vw, 1.28rem);
  line-height: 1.52;
}

.program-hero .hero-actions {
  margin-top: clamp(1.5rem, 3vw, 2.1rem);
}

.program-hero .button-primary {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: var(--cyan-300);
}

.program-hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
}

.program-hero .button-primary:hover,
.program-hero .button-primary:focus-visible {
  color: var(--navy-950);
}

.program-hero .button-secondary:hover,
.program-hero .button-secondary:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(98, 227, 239, 0.38);
}

.program-hero-panel {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.08), rgba(255, 255, 255, 0)),
    rgba(4, 15, 31, 0.88);
  border: 1px solid rgba(98, 227, 239, 0.36);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(2, 8, 18, 0.3);
  backdrop-filter: blur(16px);
}

.program-hero-panel h2 {
  max-width: 340px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.program-hero-selector {
  display: grid;
  gap: 0.65rem;
}

.program-hero-selector a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 58px;
  padding: 0.8rem 1rem;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.program-hero-selector a:first-child {
  background: rgba(98, 227, 239, 0.13);
  border-color: rgba(98, 227, 239, 0.68);
}

.program-hero-selector a:hover,
.program-hero-selector a:focus-visible {
  background: rgba(98, 227, 239, 0.15);
  border-color: rgba(98, 227, 239, 0.72);
  transform: translateY(-1px);
}

.program-hero-selector strong {
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.program-hero-selector span {
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero {
  isolation: isolate;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.9) 0%, rgba(4, 17, 31, 0.82) 48%, rgba(4, 17, 31, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 17, 31, 0.18), rgba(4, 17, 31, 0.54)),
    radial-gradient(circle at 84% 16%, rgba(98, 227, 239, 0.16), transparent 30rem),
    #04111f;
  background-size: auto, auto, 115% 115%, auto;
  animation: contactHeroAtmosphere 18s ease-in-out infinite alternate;
}

.contact-hero .eyebrow {
  color: var(--cyan-300);
}

.contact-hero .hero-lede {
  max-width: 760px;
  color: rgba(232, 242, 249, 0.82);
}

.contact-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.contact-hero .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-hero .inner-hero-art {
  right: -4vw;
  top: 14%;
  width: min(52vw, 700px);
  height: 440px;
  opacity: 0.54;
  overflow: visible;
  animation: contactHeroArtDrift 15s ease-in-out infinite alternate;
  will-change: transform, opacity, background-position;
}

.contact-hero .inner-hero-art::before,
.contact-hero .inner-hero-art::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.contact-hero .inner-hero-art::before {
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(98, 227, 239, 0.28) 14% 15%, transparent 15% 48%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 49%),
    radial-gradient(circle at 78% 36%, rgba(98, 227, 239, 0.34), transparent 3.8rem);
  background-size: 220px 100%, auto;
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translateX(-18px);
  animation: contactHeroSignalSweep 11s ease-in-out infinite;
}

.contact-hero .inner-hero-art::after {
  inset: 4% 2% auto auto;
  width: min(18vw, 230px);
  height: min(18vw, 230px);
  border: 1px solid rgba(98, 227, 239, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 227, 239, 0.16), transparent 64%);
  opacity: 0.62;
  transform: translate3d(0, 0, 0) scale(0.92);
  animation: contactHeroRingPulse 9s ease-in-out infinite;
}

.contact-hero-card {
  display: grid;
  gap: 1rem;
  width: min(100%, 32rem);
  min-width: 0;
  justify-self: end;
  align-content: start;
}

.contact-hero-card strong,
.contact-hero-card a {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-hero-card strong {
  font-size: clamp(1.22rem, 1.7vw, 1.75rem);
  line-height: 1.16;
}

.contact-hero-card a {
  color: #ffffff;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.contact-hero-card p {
  margin: 0;
  color: rgba(232, 242, 249, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-hero-note {
  display: grid;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hero-note span {
  color: var(--cyan-300);
}

@keyframes contactHeroAtmosphere {
  0% {
    background-position: 0 0, 0 0, 88% 14%, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 74% 24%, 0 0;
  }
}

@keyframes contactHeroArtDrift {
  0% {
    opacity: 0.48;
    background-position: 0 0, 14% 136px, 8% 264px;
    transform: skewY(-28deg) translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0.68;
    background-position: 8% 6px, 20% 128px, 0 272px;
    transform: skewY(-28deg) translate3d(-26px, 18px, 0) scale(1.035);
  }
}

@keyframes contactHeroSignalSweep {
  0%,
  100% {
    opacity: 0.34;
    background-position: -110px 0, 78% 36%;
    transform: translate3d(-22px, 0, 0);
  }

  48% {
    opacity: 0.78;
    background-position: 110px 0, 68% 42%;
    transform: translate3d(24px, 10px, 0);
  }
}

@keyframes contactHeroRingPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) scale(0.86);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(-18px, 12px, 0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero::before,
  .contact-hero .inner-hero-art,
  .contact-hero .inner-hero-art::before,
  .contact-hero .inner-hero-art::after {
    animation: none;
  }
}

.calendar-tear-hero {
  position: relative;
  min-height: clamp(540px, 68svh, 620px);
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
  background: #020914;
  isolation: isolate;
}

.calendar-tear-hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 20%, rgba(88, 215, 230, 0.17), transparent 34rem),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: auto, 96px 96px, 96px 96px;
  pointer-events: none;
}

.calendar-tear-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 227, 239, 0.58), transparent);
}

.calendar-tear-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.98), rgba(2, 9, 20, 0.84) 42%, rgba(2, 9, 20, 0.52)),
    linear-gradient(180deg, rgba(2, 9, 20, 0.18), rgba(2, 9, 20, 0.98)),
    radial-gradient(circle at 78% 20%, rgba(88, 215, 230, 0.18), transparent 34rem),
    #020914;
  filter: saturate(0.92) contrast(1.04);
}

.calendar-tear-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.54fr);
  align-items: center;
  gap: clamp(1.8rem, 5vw, 5rem);
  padding-top: calc(var(--header-height) + clamp(28px, 4.2vw, 48px));
  padding-bottom: clamp(30px, 4.2vw, 48px);
}

.calendar-tear-copy {
  max-width: 760px;
}

.calendar-tear-copy h1 {
  max-width: 660px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 4.55vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.calendar-tear-copy h1 span {
  color: var(--cyan-300);
}

.calendar-tear-copy .hero-lede {
  max-width: 600px;
  margin-top: 1.15rem;
  color: rgba(239, 248, 255, 0.84);
  font-size: clamp(1rem, 1.26vw, 1.14rem);
  line-height: 1.66;
}

.calendar-tear-copy .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.28);
}

.calendar-tear-copy .button-secondary:hover,
.calendar-tear-copy .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(98, 227, 239, 0.5);
}

.calendar-tear-copy .hero-actions-calendar .calendar-save {
  justify-items: start;
}

.calendar-tear-copy .hero-actions-calendar .calendar-save summary {
  min-height: 42px;
  padding: 0.72rem 0.96rem 0.72rem 1rem;
  background: rgba(4, 16, 29, 0.34);
  border-color: rgba(88, 215, 230, 0.22);
  color: rgba(239, 248, 255, 0.9);
  justify-content: flex-start;
}

.calendar-tear-copy .hero-actions-calendar .calendar-save summary:hover,
.calendar-tear-copy .hero-actions-calendar .calendar-save summary:focus-visible,
.calendar-tear-copy .hero-actions-calendar .calendar-save[open] summary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(98, 227, 239, 0.5);
}

.calendar-tear-copy .hero-actions-calendar .calendar-save-menu {
  margin-top: 0.1rem;
}

.tear-calendar-stack {
  --tear-calendar-angle: -2deg;
  position: relative;
  justify-self: end;
  width: min(100%, 350px);
  min-height: clamp(340px, 30vw, 390px);
  transform: translate3d(0, 0, 0) rotate(var(--tear-calendar-angle));
  transform-origin: 68% 24%;
  will-change: transform;
}

.tear-calendar-card {
  position: relative;
  z-index: 2;
  min-height: clamp(340px, 30vw, 380px);
  padding: clamp(1.35rem, 1.95vw, 1.8rem);
  overflow: hidden;
  color: #06162b;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(224, 236, 245, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  will-change: transform;
}

.tear-calendar-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(58px, 5.4vw, 70px);
  background: linear-gradient(135deg, #58d7e6, #47c3d1);
}

.tear-calendar-card::after {
  content: "";
  position: absolute;
  inset: 18% 10% auto auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(6, 22, 43, 0.035);
  pointer-events: none;
}

.tear-calendar-card-shadow {
  position: absolute;
  inset: 22px -28px auto auto;
  z-index: 1;
  min-height: clamp(318px, 28vw, 360px);
  background: rgba(236, 245, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transform: rotate(7deg);
  will-change: transform, opacity;
}

.tear-calendar-card-shadow::before,
.tear-calendar-card-shadow::after {
  opacity: 0.28;
}

.tear-calendar-month,
.tear-calendar-day,
.tear-calendar-card h2,
.tear-calendar-card p {
  position: relative;
  z-index: 1;
}

.tear-calendar-month {
  display: block;
  color: #06162b;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.tear-calendar-day {
  display: block;
  margin-top: clamp(2.9rem, 4.3vw, 3.5rem);
  color: #06162b;
  font-size: clamp(5.9rem, 8.5vw, 7.75rem);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.08em;
  transform-origin: center;
  will-change: transform, text-shadow;
}

.tear-calendar-card h2 {
  max-width: 280px;
  margin: clamp(1rem, 1.45vw, 1.25rem) 0 0;
  color: #102138;
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
  word-break: normal;
}

.tear-calendar-card p {
  max-width: 280px;
  margin: clamp(0.8rem, 1.2vw, 1rem) 0 0;
  color: #05758b;
  font-size: clamp(0.9rem, 1.06vw, 1rem);
  font-weight: 900;
  line-height: 1.32;
}

@media (prefers-reduced-motion: no-preference) {
  .tear-calendar-stack {
    animation: calendarDateCardFloat 9.2s ease-in-out infinite;
  }

  .tear-calendar-card {
    animation: calendarDateCardTilt 9.2s ease-in-out infinite;
  }

  .tear-calendar-card-shadow {
    animation: calendarDateCardShadow 9.2s ease-in-out infinite;
  }

  .tear-calendar-day {
    animation: calendarDateDigitPulse 5.8s cubic-bezier(0.36, 0, 0.2, 1) infinite;
  }
}

@keyframes calendarDateCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--tear-calendar-angle));
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(calc(var(--tear-calendar-angle) + 0.8deg));
  }
}

@keyframes calendarDateCardTilt {
  0%,
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(0.55deg) translate3d(0, -1px, 0);
  }
}

@keyframes calendarDateCardShadow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg) scale(1);
    opacity: 0.96;
  }

  50% {
    transform: translate3d(4px, 10px, 0) rotate(8.2deg) scale(0.985);
    opacity: 0.7;
  }
}

@keyframes calendarDateDigitPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(6, 22, 43, 0);
  }

  50% {
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 12px 24px rgba(6, 22, 43, 0.12);
  }
}

.solution-suite-section,
.about-story-section,
.values-section,
.contact-expect-section,
.engine-detail-section {
  background: var(--white);
}

.solution-suite-grid,
.engine-detail-grid,
.engagement-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

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

.solution-suite-grid article,
.engine-detail-grid article,
.engagement-grid article {
  min-height: 250px;
  padding: 1.35rem;
  background: var(--paper);
}

.solution-suite-grid span,
.engine-detail-grid span {
  color: var(--amber-500);
  font-size: 1.3rem;
  font-weight: 850;
}

.solution-suite-grid h3,
.engine-detail-grid h3,
.engagement-grid h3 {
  margin: 0.8rem 0 0.6rem;
  color: var(--navy-950);
  font-size: 1.35rem;
  line-height: 1.12;
}

.solution-suite-grid p,
.engine-detail-grid p,
.engagement-grid p {
  margin: 0;
  color: var(--muted);
}

.solution-suite-grid p + p {
  margin-top: 0.62rem;
}

.solution-suite-grid p strong {
  color: var(--navy-950);
}

.engagement-section,
.method-proof-section,
.audience-proof-section {
  background: #eef3f6;
}

.engagement-layout,
.method-proof-layout,
.about-story-layout,
.contact-expect-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.76fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.about-story-layout h2,
.method-proof-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.about-story-section .advisor-copy p {
  color: var(--muted);
}

.about-field-section {
  background: var(--paper);
}

.about-field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.5fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.about-field-layout figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-field-layout img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.about-field-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.about-field-layout p:not(.section-kicker) {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.solution-visual-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 22, 43, 0.98), rgba(14, 49, 85, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 90px);
}

.solution-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.86fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.solution-visual-layout h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4.3vw, 4.4rem);
  line-height: 1;
}

.solution-visual-layout p:not(.section-kicker) {
  margin: 1.1rem 0 0;
  color: rgba(239, 248, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

.solution-visual-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.solution-visual-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-soft);
}

.solution-visual-grid figure:first-child {
  grid-row: span 2;
}

.solution-visual-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.solution-visual-grid figcaption {
  position: static;
  width: 100%;
  max-width: none;
  padding: 0.72rem 0.82rem;
  color: var(--white);
  background: rgba(6, 22, 43, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.light-trust-grid {
  color: var(--ink);
  background: var(--line);
  border: 1px solid var(--line);
}

.light-trust-grid div {
  background: var(--white);
}

.light-trust-grid strong {
  color: var(--navy-950);
}

.light-trust-grid p {
  color: var(--muted);
}

.procurement-section {
  background: var(--white);
}

.procurement-layout .section-heading {
  max-width: 860px;
}

.procurement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.procurement-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--navy-950);
  background: var(--paper);
  font-weight: 800;
}

.light-pathway-steps {
  background: var(--line);
  border: 1px solid var(--line);
}

.light-pathway-steps article {
  background: var(--white);
}

.light-pathway-steps h3 {
  color: var(--navy-950);
}

.light-pathway-steps p {
  color: var(--muted);
}

.page-intro {
  padding: calc(var(--header-height) + clamp(34px, 5vw, 64px)) 0 clamp(34px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(98, 227, 239, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.page-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.page-intro h1 {
  max-width: 860px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.page-intro .button-secondary {
  color: var(--navy-950);
  background: rgba(16, 46, 92, 0.06);
  border-color: var(--line);
}

.page-intro-aside {
  padding: 1.3rem;
  background: var(--navy-900);
  border-left: 4px solid var(--cyan-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-intro-aside span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-intro-aside strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--white);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}

.package-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 68px) 0 74px;
  color: var(--navy-950);
  background:
    linear-gradient(90deg, rgba(98, 227, 239, 0.08), rgba(255, 255, 255, 0) 38%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.package-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(6, 22, 43, 0.98);
}

.package-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.package-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.9rem, 5.5vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.package-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: #536272;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.68;
}

.package-hero .button-secondary {
  color: var(--navy-950);
  background: rgba(16, 46, 92, 0.06);
  border-color: var(--line);
}

.package-hero .button-secondary:hover,
.package-hero .button-secondary:focus-visible {
  background: var(--white);
  border-color: rgba(16, 46, 92, 0.22);
}

.package-board {
  overflow: hidden;
  border: 1px solid rgba(16, 46, 92, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.package-board-header {
  padding: 1.25rem;
  color: var(--white);
  background: var(--navy-900);
  border-left: 5px solid var(--cyan-300);
}

.package-board-header span,
.package-board-footer span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-board-header strong {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.16;
}

.package-stack {
  display: grid;
}

.package-stack a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.75rem 0.95rem;
  align-items: start;
  padding: 1rem 1.15rem;
  color: var(--navy-950);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.package-stack a:hover,
.package-stack a:focus-visible {
  color: var(--navy-950);
  background: rgba(98, 227, 239, 0.12);
  transform: translateX(4px);
}

.package-stack span {
  grid-row: span 2;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: var(--cyan-300);
  background: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.package-stack strong {
  font-size: 1rem;
  line-height: 1.2;
}

.package-stack em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.35;
}

.package-board-footer {
  padding: 1rem 1.2rem 1.15rem;
  background: rgba(16, 46, 92, 0.05);
}

.package-board-footer p {
  margin: 0.45rem 0 0;
  color: var(--navy-900);
  font-weight: 850;
}

.known-need-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

#known-need,
#shortlist,
#buyer-criteria,
#organization-fit,
#industry-fit,
#problem-path,
#capability-engine,
#field-impact,
#buyer-confidence,
#pathway-builder,
#catalog,
#course-meeting,
#meeting,
#proposal {
  scroll-margin-top: var(--header-height);
}

.known-need-layout {
  display: grid;
  gap: 1.4rem;
}

.known-need-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.known-need-grid a {
  min-height: 252px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.15rem;
  background: var(--paper);
  transition: background 160ms ease, transform 160ms ease;
}

.known-need-grid a:hover,
.known-need-grid a:focus-visible {
  background: rgba(98, 227, 239, 0.14);
  transform: translateY(-2px);
}

.known-need-grid span {
  color: var(--teal-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.known-need-grid strong {
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.18;
}

.known-need-grid em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.buyer-criteria-section {
  background: #eef3f6;
  border-bottom: 1px solid var(--line);
}

.buyer-criteria-layout {
  display: grid;
  gap: 1.4rem;
}

.buyer-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.buyer-criteria-grid article {
  min-height: 228px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.15rem;
  background: var(--white);
}

.buyer-criteria-grid span {
  color: var(--amber-500);
  font-size: 1.2rem;
  font-weight: 850;
}

.buyer-criteria-grid h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.12;
}

.buyer-criteria-grid p {
  margin: 0;
  color: var(--muted);
}

.course-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(6, 22, 43, 0.98) 0%, rgba(6, 22, 43, 0.86) 58%, rgba(6, 22, 43, 0.7) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 86px),
    var(--navy-950);
}

.course-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(98, 227, 239, 0.65), transparent);
}

.course-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.42fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 64px;
}

.course-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.course-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.course-hero-art span {
  position: absolute;
  right: -4vw;
  display: block;
  width: min(48vw, 620px);
  height: 72px;
  transform: skewY(-28deg);
  opacity: 0.8;
}

.course-hero-art span:nth-child(1) {
  top: 24%;
  background: linear-gradient(90deg, rgba(238, 245, 255, 0.7), rgba(125, 162, 218, 0.3));
}

.course-hero-art span:nth-child(2) {
  top: 44%;
  right: -10vw;
  background: rgba(18, 52, 97, 0.82);
}

.course-hero-art span:nth-child(3) {
  top: 64%;
  right: 6vw;
  background: linear-gradient(90deg, rgba(26, 167, 217, 0.75), rgba(98, 227, 239, 0.88));
}

.course-hero-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 15, 31, 0.68);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.course-hero-card strong {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.16;
}

.course-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.course-hero-stat span {
  color: var(--cyan-300);
  font-size: 4rem;
  font-weight: 850;
  line-height: 1;
}

.course-hero-stat p {
  margin: 0;
  color: rgba(239, 248, 255, 0.74);
}

.course-catalog {
  background: var(--white);
}

.course-family-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.course-family-nav a {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  color: var(--navy-900);
  border-right: 1px solid var(--line);
  font-weight: 850;
  text-align: center;
}

.course-family-nav a:last-child {
  border-right: 0;
}

.course-family-nav a:hover,
.course-family-nav a:focus-visible {
  color: var(--navy-950);
  background: rgba(98, 227, 239, 0.18);
}

.course-section {
  scroll-margin-top: calc(var(--header-height) + 78px);
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.course-section:first-of-type {
  border-top: 0;
}

.course-section-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.7fr) minmax(260px, 0.45fr);
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1.4rem;
}

.course-section-heading span,
.pathway-steps span {
  color: var(--amber-500);
  font-size: 1.45rem;
  font-weight: 850;
}

.course-section-heading h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.course-section-heading p {
  margin: 0;
  color: var(--muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.course-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--paper);
}

.course-card.featured {
  background:
    linear-gradient(180deg, rgba(98, 227, 239, 0.12), rgba(255, 255, 255, 0)),
    var(--white);
  border-top: 4px solid var(--cyan-500);
}

.course-card-top span {
  color: var(--teal-600);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-card h4,
.academy-grid h4,
.pathway-steps h3 {
  margin: 0.65rem 0 0;
  color: var(--navy-950);
  font-size: 1.28rem;
  line-height: 1.12;
}

.course-card p,
.academy-grid p,
.pathway-steps p {
  margin: 0;
  color: var(--muted);
}

.course-meta {
  display: grid;
  gap: 0.45rem;
}

.course-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.55rem;
  color: var(--navy-900);
  background: rgba(16, 46, 92, 0.08);
  font-size: 0.86rem;
  font-weight: 750;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.academy-grid article {
  min-height: 210px;
  padding: 1.25rem;
  background: var(--paper);
}

.academy-grid h4 {
  margin-top: 0;
}

.pathway-section {
  color: var(--white);
  background: var(--navy-900);
}

.pathway-layout .section-heading h2,
.pathway-layout .section-heading p {
  color: var(--white);
}

.pathway-layout .section-heading p {
  color: rgba(239, 248, 255, 0.72);
}

.pathway-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pathway-steps article {
  min-height: 230px;
  padding: 1.4rem;
  background: rgba(4, 15, 31, 0.52);
}

.pathway-steps h3 {
  color: var(--white);
}

.pathway-steps p {
  color: rgba(239, 248, 255, 0.72);
}

.home-pathway-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.course-proof-section {
  background: var(--white);
}

.package-assurance-section {
  color: var(--white);
  background: #06162b;
}

.package-assurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.package-assurance-section .section-heading {
  max-width: none;
}

.package-assurance-section h2 {
  color: var(--white);
}

.package-assurance-section .section-heading p:not(.section-kicker) {
  color: rgba(239, 248, 255, 0.72);
}

.package-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.package-assurance-grid article {
  min-height: 210px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.055);
}

.package-assurance-grid span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-assurance-grid h3 {
  margin: 0.72rem 0 0;
  color: var(--white);
}

.package-assurance-grid p {
  margin: 0.55rem 0 0;
  color: rgba(239, 248, 255, 0.72);
}

.course-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.52fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.course-proof-media {
  min-height: 420px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.course-proof-media img {
  min-height: 420px;
  aspect-ratio: 14 / 9;
}

.course-proof-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.course-proof-copy p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.course-proof-list {
  display: grid;
  gap: 1px;
  margin-top: 1.6rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.course-proof-list div {
  padding: 1rem;
  background: var(--paper);
}

.course-proof-list span {
  color: var(--teal-600);
}

.course-proof-list strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.35;
}

.delivery-section {
  background: #eef3f6;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
}

.delivery-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.delivery-layout > div > p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.delivery-table {
  border: 1px solid var(--line);
  background: var(--white);
}

.delivery-table div {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.delivery-table div:last-child {
  border-bottom: 0;
}

.delivery-table span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.delivery-table span:last-child {
  border-right: 0;
}

.delivery-table div:first-child span {
  min-height: 52px;
  color: var(--navy-950);
  background: rgba(16, 46, 92, 0.07);
  font-weight: 850;
}

.method-output-table div {
  grid-template-columns: 0.55fr 1fr 1.1fr 1.1fr;
}

.snapshot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.snapshot .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.insight-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-library-grid .insight-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
}

.insight-card a {
  margin-top: auto;
  color: var(--navy-900);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pathway-builder-section {
  background: #eef3f6;
}

.pathway-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(340px, 0.48fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.pathway-builder-layout .section-heading {
  grid-column: 1 / -1;
  max-width: 850px;
  margin-bottom: 0;
}

.pathway-builder-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 46px rgba(6, 22, 43, 0.08);
}

.pathway-builder-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy-900);
  font-weight: 750;
}

.pathway-output {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.13), rgba(255, 255, 255, 0)),
    var(--navy-900);
  border-bottom: 4px solid var(--cyan-300);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pathway-output > span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathway-output h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.1;
}

.pathway-output p {
  margin: 0;
  color: rgba(239, 248, 255, 0.76);
}

.pathway-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pathway-output-grid div {
  min-height: 110px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.pathway-output-grid span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pathway-output-grid strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--white);
  line-height: 1.18;
}

.engine-interactive-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 22, 43, 0.98), rgba(14, 49, 85, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 90px);
}

.engine-interactive-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.82fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.engine-interactive-layout .section-heading {
  margin-bottom: 0;
}

.engine-interactive-layout h2 {
  color: var(--white);
}

.engine-interactive-layout .section-heading p {
  color: rgba(239, 248, 255, 0.74);
}

.engine-console {
  display: grid;
  grid-template-columns: minmax(210px, 0.4fr) minmax(0, 0.6fr);
  gap: 1px;
  min-height: 450px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.engine-console-mark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 70%, rgba(98, 227, 239, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.engine-console-mark span {
  position: absolute;
  left: 15%;
  width: 72%;
  height: 76px;
  transform: skewY(-28deg);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.engine-console-mark span:nth-child(1) {
  top: 18%;
  background: linear-gradient(90deg, rgba(236, 245, 255, 0.88), rgba(195, 214, 242, 0.4));
}

.engine-console-mark span:nth-child(2) {
  top: 44%;
  background: linear-gradient(90deg, rgba(20, 58, 110, 0.98), rgba(33, 73, 131, 0.78));
}

.engine-console-mark span:nth-child(3) {
  top: 70%;
  background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300));
}

.engine-tabs {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.06);
}

.engine-tabs button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.engine-tabs button:last-child {
  border-right: 0;
}

.engine-tabs button.active {
  color: var(--navy-950);
  background: var(--cyan-300);
}

.engine-output {
  display: grid;
  align-content: center;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: rgba(4, 15, 31, 0.72);
}

.engine-output span {
  color: var(--amber-500);
  font-size: 1.35rem;
  font-weight: 850;
}

.engine-output h3 {
  margin: 0.85rem 0 0.75rem;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.05;
}

.engine-output p {
  margin: 0;
  color: rgba(239, 248, 255, 0.76);
}

.engine-output ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.engine-output li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--white);
  font-weight: 800;
}

.engine-output li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--cyan-300);
}

.founder-video-section,
.faq-section {
  background: #eef3f6;
}

.founder-video-layout,
.scheduler-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.76fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.founder-video-copy h2,
.scheduler-layout h2,
.faq-layout h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.founder-video-copy p:not(.section-kicker),
.scheduler-layout .section-heading p {
  color: var(--muted);
}

.video-intro-card {
  position: relative;
  display: grid;
  gap: 1rem;
}

.video-intro-card figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.video-intro-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.video-play-button {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: rgba(6, 22, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 850;
  cursor: pointer;
}

.video-play-button span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-300);
}

.video-play-button span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--navy-950);
}

.video-script-panel {
  padding: 1.2rem;
  color: var(--white);
  background: var(--navy-900);
  border-left: 4px solid var(--cyan-300);
}

.video-script-panel p {
  margin: 0;
  color: rgba(239, 248, 255, 0.78);
}

.video-script-panel a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--cyan-300);
  font-weight: 850;
}

.scheduler-section {
  background: var(--white);
}

.scheduler-layout .section-heading,
.faq-layout .section-heading {
  margin-bottom: 0;
}

.scheduler-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.scheduler-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.scheduler-options button {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.05rem;
  color: var(--navy-900);
  text-align: left;
  background: var(--white);
  border: 0;
  font-weight: 850;
  cursor: pointer;
}

.scheduler-options button.active {
  color: var(--white);
  background: var(--navy-900);
}

.scheduler-options span {
  color: var(--cyan-500);
  font-size: 1.3rem;
  font-weight: 850;
}

.scheduler-panel p {
  margin: 0;
  color: var(--muted);
}

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

.proposal-form .full-field,
.proposal-form .button,
.proposal-form .form-note {
  grid-column: 1 / -1;
}

textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  font: inherit;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.meeting-form textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

textarea:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(88, 215, 230, 0.18);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

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

.faq-list summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  color: var(--navy-950);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.buyer-faq-section .section-heading p {
  color: #53687d;
}

.buyer-faq-section .section-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-strip {
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 22, 43, 0.96), rgba(8, 39, 57, 0.9)),
    var(--navy-950);
  border: 1px solid rgba(88, 215, 230, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(4, 16, 32, 0.22);
}

.share-strip span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.share-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.share-strip p {
  max-width: 720px;
  margin: 0.55rem 0 0;
  color: rgba(232, 242, 249, 0.74);
  line-height: 1.6;
}

.share-strip-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.share-strip-actions .button {
  min-height: 48px;
  white-space: nowrap;
}

.calendar-share-strip {
  margin-top: 1rem;
}

.thanks-next-step-section {
  background: #eef3f6;
}

.thanks-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.thanks-next-grid a {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  color: var(--navy-950);
  background: var(--white);
  text-decoration: none;
}

.thanks-next-grid a:hover,
.thanks-next-grid a:focus-visible {
  background: linear-gradient(135deg, #ffffff, #e8fbff);
  transform: translateY(-1px);
}

.thanks-next-grid span {
  color: #05758b;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thanks-next-grid strong {
  max-width: 360px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.18;
}

@media (max-width: 820px) {
  .proof-vault-actions,
  .share-strip,
  .thanks-next-grid {
    grid-template-columns: 1fr;
  }

  .share-strip-actions {
    justify-content: stretch;
  }

  .share-strip-actions .button {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 86svh;
  }

  .hero-content,
  .meeting-layout,
  .pathway-builder-layout,
  .engine-interactive-layout,
  .founder-video-layout,
  .scheduler-layout,
  .faq-layout,
  .package-hero-layout,
  .course-hero-layout,
  .delivery-layout,
  .inner-hero-layout,
  .contact-intake-intro,
  .page-intro-layout,
  .engagement-layout,
  .method-proof-layout,
  .field-proof-layout,
  .operating-fit-layout,
  .package-assurance-layout,
  .course-proof-layout,
  .solution-visual-layout,
  .about-field-layout,
  .about-story-layout,
  .contact-expect-layout,
  .impact-story-head,
  .resource-layout,
  .footer-upgraded {
    grid-template-columns: 1fr;
  }

  .contact-intake-intro {
    align-items: start;
  }

  .hero-panel {
    min-height: auto;
    justify-content: start;
  }

  .hero-command-center {
    width: min(640px, 100%);
    height: 540px;
  }

  .buyer-criteria-grid,
  .belief-grid,
  .buyer-confidence-grid,
  .entry-lane-grid,
  .known-need-grid,
  .insight-grid,
  .insight-library-grid,
  .course-grid,
  .academy-grid,
  .pathway-steps,
  .operating-fit-panel,
  .operating-fit-columns,
  .adaptation-grid,
  .package-assurance-grid,
  .trust-grid,
  .solution-suite-grid,
  .impact-story-track,
  .engine-detail-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-section-heading {
    grid-template-columns: 62px 1fr;
  }

  .course-section-heading p {
    grid-column: 2;
  }

  .course-family-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .snapshot {
    position: static;
  }

  .pathway-output {
    position: static;
  }

  .engine-console {
    grid-template-columns: 1fr;
  }

  .engine-console-mark {
    min-height: 280px;
  }

  .operating-fit-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: rgba(6, 22, 43, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

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

  .mobile-nav-home {
    display: block;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .nav-rfp {
    justify-content: flex-start;
    border: 0;
    background: transparent;
    transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .search-trigger {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 0.85rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav .search-trigger-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .site-nav .language-picker {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem;
    margin-left: 0;
    color: rgba(239, 248, 255, 0.78);
    border: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav .language-picker-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: rgba(239, 248, 255, 0.78);
    font-size: inherit;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav .language-picker-shell {
    margin-left: auto;
    min-height: 0;
    padding: 0;
  }

  .site-nav .language-picker select {
    min-width: 0;
    text-align: right;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 70px;
  }

  .site-header.is-hidden {
    transform: translateY(calc(-1 * var(--header-height)));
  }

  body.search-open .site-header,
  .site-header:focus-within {
    transform: translateY(0);
  }

  .page-shell {
    width: min(100% - 28px, var(--container-width));
  }

  .section {
    padding: var(--space-section-sm) 0;
  }

  .brand img {
    width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: #06162b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

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

  .mobile-nav-home {
    display: block;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .search-trigger {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 0.85rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav .search-trigger-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .site-nav .language-picker {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem;
    margin-left: 0;
    color: rgba(239, 248, 255, 0.78);
    border: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-nav .language-picker-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: rgba(239, 248, 255, 0.78);
    font-size: inherit;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav .language-picker-shell {
    margin-left: auto;
    min-height: 0;
    padding: 0;
  }

  .site-nav .language-picker select {
    min-width: 0;
    text-align: right;
  }

  .nav-cta {
    text-align: center;
  }

  body.mobile-menu-open .hero-actions {
    visibility: hidden;
    pointer-events: none;
  }

  .site-search {
    padding: calc(var(--header-height) + 12px) 14px 18px;
  }

  .search-modal {
    max-height: calc(100svh - var(--header-height) - 30px);
  }

  .search-head {
    padding: 1rem 1rem 0;
  }

  .search-field {
    padding: 0.95rem 1rem 1rem;
  }

  .search-results {
    padding: 0 1rem 1rem;
  }

  .training-popup {
    align-items: end;
    padding: 12px;
  }

  .training-popup-card {
    max-height: calc(100svh - 24px);
  }

  .training-popup-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .training-popup-copy {
    padding: 1.35rem 1rem 0.85rem;
    padding-right: 5.9rem;
  }

  .training-popup-copy h2 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .training-popup-details {
    grid-template-columns: 1fr;
    margin: 0 1rem;
  }

  .training-popup-details div {
    min-height: auto;
    padding: 0.85rem 0.95rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .training-popup-details div:last-child {
    border-bottom: 0;
  }

  .training-popup-actions {
    display: grid;
    padding: 1rem 1rem 0;
  }

  .training-popup-note {
    padding: 0.85rem 1rem 1.15rem;
  }

  .enquiry-draft-popup {
    right: 12px;
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
  }

  .enquiry-draft-popup-card {
    gap: 0.8rem;
  }

  .enquiry-draft-popup-head {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.95rem 0.95rem 0;
  }

  .enquiry-draft-popup-copy h2 {
    font-size: 1.08rem;
  }

  .enquiry-draft-popup-meta {
    grid-template-columns: 1fr;
    margin: 0 0.95rem;
  }

  .enquiry-draft-popup-meta div {
    min-height: auto;
    padding: 0.85rem 0.95rem;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 24, 41, 0.08);
  }

  .enquiry-draft-popup-meta div:last-child {
    border-bottom: 0;
  }

  .enquiry-draft-popup-actions {
    display: grid;
    padding: 0 0.95rem 0.95rem;
  }

  .enquiry-draft-popup-actions .button {
    width: 100%;
  }

  .hero {
    min-height: 84svh;
  }

  .engine-canvas {
    opacity: 0.34;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 20, 42, 0.98) 0%, rgba(5, 20, 42, 0.92) 100%),
      linear-gradient(180deg, rgba(5, 20, 42, 0.18) 0%, rgba(5, 20, 42, 0.98) 100%);
  }

  .hero-offer {
    padding-left: 0.85rem;
    font-size: 0.96rem;
  }

  .hero-command-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-command-tabs button {
    width: 100%;
    min-height: 42px;
  }

  .buyer-criteria-grid,
  .belief-grid,
  .buyer-confidence-grid,
  .entry-lane-grid,
  .known-need-grid,
  .procurement-grid,
  .form-group,
  .form-supporting-grid,
  .operating-fit-panel,
  .operating-fit-columns,
  .adaptation-grid {
    grid-template-columns: 1fr;
  }

  .buyer-criteria-grid article,
  .belief-grid article,
  .buyer-confidence-grid article,
  .entry-lane-grid article,
  .known-need-grid a,
  .procurement-grid span,
  .operating-fit-columns article,
  .adaptation-grid article {
    min-height: auto;
  }

  .inner-hero {
    min-height: 78svh;
  }

  .page-intro {
    padding-top: calc(var(--header-height) + 34px);
  }

  .package-hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 42px;
  }

  .package-hero-layout {
    gap: 1.4rem;
  }

  .package-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.55rem);
  }

  .package-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .package-board-header,
  .package-stack a,
  .package-board-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-intro-layout {
    gap: 1.4rem;
  }

  .page-intro h1 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }

  .page-intro-aside {
    display: none;
  }

  .inner-hero-layout {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 34px;
  }

  .inner-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .program-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
  }

  .program-hero h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 10vw, 5.4rem);
  }

  .program-hero-panel {
    width: min(100%, 560px);
  }

  .contact-hero .hero-actions {
    margin-top: 1.35rem;
  }

  .inner-hero-card {
    display: none;
  }

  .inner-hero-art {
    opacity: 0.34;
    transform: translateX(34vw) skewY(-28deg);
  }

  .course-hero {
    min-height: 84svh;
  }

  .course-hero-layout {
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 34px;
  }

  .hero-content {
    gap: 26px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  .hero-panel {
    width: 100%;
  }

  .hero-command-center {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    height: auto;
    min-height: 0;
    padding-top: 238px;
  }

  .command-grid {
    inset: 0 0 auto;
    height: 222px;
    mask-image: none;
  }

  .living-mark {
    top: 116px;
    width: min(318px, 92%);
    height: 215px;
  }

  .mark-piece {
    height: 52px;
  }

  .mark-piece-light {
    top: 22px;
  }

  .mark-piece-core {
    top: 100px;
  }

  .mark-piece-accent {
    top: 178px;
  }

  .command-header,
  .command-focus,
  .command-node,
  .command-metrics {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .command-header,
  .command-focus,
  .command-metrics {
    grid-column: 1 / -1;
  }

  .command-header,
  .command-focus,
  .command-node {
    padding: 0.9rem;
  }

  .command-node {
    animation: none;
  }

  .command-metrics {
    left: auto;
    right: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .course-hero-card {
    display: none;
  }

  .course-hero-art {
    opacity: 0.34;
    transform: translateX(34vw);
  }

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

  .signal-board {
    display: none;
  }

  .engine-tabs,
  .entry-lane-grid,
  .entry-program-list,
  .insight-grid,
  .insight-library-grid,
  .course-family-nav,
  .course-grid,
  .academy-grid,
  .pathway-output-grid,
  .scheduler-options,
  .pathway-steps,
  .impact-story-track,
  .operating-fit-panel,
  .operating-fit-columns,
  .adaptation-grid,
  .package-assurance-grid,
  .trust-grid,
  .why-grid,
  .solution-suite-grid,
  .engine-detail-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .capability-map-bar,
  .footer-directory {
    grid-template-columns: 1fr;
  }

  .capability-map-bar span {
    min-height: 0;
  }

  .footer-hub {
    row-gap: 1.35rem;
  }

  .footer-cta-panel {
    width: 100%;
    min-height: 0;
  }

  .operating-fit-columns article,
  .adaptation-grid article {
    min-height: auto;
  }

  .engine-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .course-family-nav {
    position: static;
  }

  .course-section-heading {
    grid-template-columns: 1fr;
  }

  .course-section-heading p {
    grid-column: auto;
  }

  .course-card,
  .academy-grid article {
    min-height: auto;
  }

  .field-proof-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .impact-story-track,
  .impact-story-track[data-active="1"],
  .impact-story-track[data-active="2"],
  .impact-story-track[data-active="3"] {
    grid-template-columns: 1fr;
  }

  .impact-story-card {
    min-height: auto;
    opacity: 1;
    transform: none;
  }

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

  .impact-story-controls {
    justify-content: flex-start;
  }

  .solution-visual-grid {
    grid-template-columns: 1fr;
  }

  .solution-visual-grid figure:first-child {
    grid-row: auto;
  }

  .solution-visual-grid figure {
    min-height: 260px;
  }

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

  .video-intro-card figure,
  .video-intro-card img {
    min-height: 280px;
  }

  .engine-console-mark {
    min-height: 230px;
  }

  .field-photo-wide {
    grid-row: auto;
  }

  .field-photo img,
  .field-photo-wide img,
  .field-photo:not(.field-photo-wide) img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .course-proof-media {
    min-height: 280px;
  }

  .about-field-layout figure,
  .about-field-layout img {
    min-height: 280px;
  }

  .course-proof-media img {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .delivery-table,
  .delivery-table div,
  .delivery-table span {
    display: block;
  }

  .delivery-table span {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .delivery-table span:last-child {
    border-bottom: 0;
  }

  .trust-grid div,
  .belief-grid article,
  .buyer-confidence-grid article,
  .why-grid article,
  .entry-lane-grid article,
  .solution-suite-grid article,
  .engine-detail-grid article,
  .engagement-grid article,
  .pathway-steps article {
    min-height: auto;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    gap: 0.85rem;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-app {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .location-control {
    grid-template-columns: 1fr;
  }

  .tuvana-credit {
    justify-self: start;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .home-pathway-steps::after {
    width: 100%;
  }

  .impact-story-card {
    opacity: 1;
    transform: none;
  }

  .impact-story-card img,
  .impact-story-card.is-active img,
  .impact-story-card:hover img,
  .impact-story-card:focus-visible img {
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-reference {
    --hero-rail-height: clamp(124px, 17svh, 156px);
    --hero-edge-space: clamp(14px, 2.8svh, 28px);
    min-height: 100svh;
    height: 100svh;
    --hero-panel-y: 0px;
    --hero-panel-opacity: 1;
  }

  .hero-scene-boardroom {
    width: 64%;
  }

  .hero-scene-training {
    width: 64%;
  }

  .hero-bridge {
    left: 42%;
    width: 28vw;
  }

  .hero-orbit-system {
    right: -72px;
    top: 160px;
    width: min(360px, 48vw);
    opacity: 0.42;
  }

  .hero-route-panel {
    display: none;
  }

  .hero-reference .hero-content {
    width: min(var(--container-width), calc(100% - 44px));
    padding-top: calc(var(--header-height) + clamp(22px, 5svh, 58px));
    padding-bottom: calc(var(--hero-rail-height) + var(--hero-edge-space) + clamp(18px, 3svh, 42px));
  }

  .hero-reference .hero-copy {
    max-width: 720px;
  }

  .hero-reveal-inner {
    width: min(var(--container-width), calc(100% - 44px));
    min-height: var(--hero-rail-height);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .hero-reveal-title {
    width: 100%;
    min-width: 0;
  }

  .hero-reveal-title strong {
    max-width: 100%;
    font-size: clamp(1.25rem, 3vw, 1.7rem);
  }

  .hero-reveal-step {
    min-width: 230px;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-reveal-step:nth-child(1),
  .hero-reveal-step:nth-child(2) {
    border-top: 0;
  }

  .hero-reveal-step:nth-child(odd) {
    border-left: 0;
  }

  .hero-route-motion {
    display: none;
  }
}

@media (max-width: 740px) {
  .home-page .site-header:not(.is-scrolled) {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-reference {
    --hero-rail-height: clamp(104px, 14svh, 128px);
    --hero-edge-space: clamp(10px, 2svh, 18px);
    min-height: 100svh;
    height: 100svh;
    --hero-lift-y: 0px !important;
    --hero-scene-y: 0px !important;
    --hero-sweep-y: 0px !important;
    --hero-panel-y: 0px !important;
    --hero-panel-opacity: 1 !important;
  }

  .hero-scene-boardroom {
    width: 100%;
    opacity: 0.7;
    background-position: 48% center;
  }

  .hero-scene-training {
    right: -18%;
    width: 82%;
    opacity: 0.34;
    background-position: center center;
    clip-path: polygon(34% 0, 100% 0, 100% 100%, 8% 100%);
  }

  .hero-bridge {
    left: auto;
    right: -18%;
    width: 44vw;
    min-width: 170px;
    opacity: 0.45;
  }

  .hero-reference-shade {
    background:
      linear-gradient(90deg, rgba(2, 8, 18, 0.96) 0%, rgba(2, 8, 18, 0.88) 64%, rgba(2, 8, 18, 0.46) 100%),
      linear-gradient(180deg, rgba(2, 8, 18, 0.18) 0%, rgba(2, 8, 18, 0.78) 58%, rgba(2, 8, 18, 0.96) 100%);
  }

  .hero-reference-sweep::before,
  .hero-reference-sweep::after {
    right: -48vw;
    bottom: 34%;
    width: 132vw;
    height: 46vh;
  }

  .hero-orbit-system {
    right: -36vw;
    top: 132px;
    width: 74vw;
    opacity: 0.26;
  }

  .hero-reference .hero-content {
    width: min(var(--container-width), calc(100% - 28px));
    padding-top: calc(var(--header-height) + clamp(18px, 4svh, 44px));
    padding-bottom: calc(var(--hero-rail-height) + var(--hero-edge-space) + clamp(12px, 2.2svh, 26px));
  }

  .hero-reference .hero-copy {
    max-width: 100%;
  }

  .hero-reference .hero-copy::before {
    inset: -38px -20px -32px -20px;
    background: linear-gradient(90deg, rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.58));
  }

  .hero-reference h1 {
    font-size: clamp(2.52rem, min(11.2vw, 8.2svh), 4.05rem);
    line-height: 1;
  }

  .hero-reference-lede {
    margin-top: clamp(0.78rem, 1.7svh, 1.2rem);
    font-size: clamp(0.92rem, 2.6vw, 1rem);
    line-height: 1.48;
  }

  .hero-reference .hero-actions {
    gap: 0.85rem;
    margin-top: clamp(1rem, 2.2svh, 1.55rem);
  }

  .hero-reference-rail {
    position: absolute;
    bottom: var(--hero-edge-space);
    transform: none;
    opacity: 1;
    backdrop-filter: none;
    padding: 0;
  }

  .hero-reveal-inner {
    width: min(var(--container-width), calc(100% - 28px));
    min-height: var(--hero-rail-height);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0;
  }

  .hero-reveal-title {
    width: 100%;
    min-width: 0;
    padding-bottom: 0.95rem;
  }

  .hero-reveal-title strong {
    max-width: 18rem;
    font-size: 1.35rem;
    line-height: 1.08;
  }

  .signal-line-kicker {
    font-size: 0.68rem;
  }

  .hero-reveal-step {
    min-width: 0;
    min-height: calc(var(--hero-rail-height) / 2);
    padding: 0.68rem 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-reveal-step:nth-child(1),
  .hero-reveal-step:nth-child(2) {
    border-top: 0;
  }

  .hero-reveal-step:nth-child(odd) {
    border-left: 0;
  }

  .hero-reveal-step:hover,
  .hero-reveal-step:focus-visible {
    transform: none;
  }

  .hero-reveal-step span {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
  }

  .hero-reveal-step strong {
    font-size: 0.96rem;
  }

  .hero-reveal-step em {
    display: none;
  }
}

@media (max-width: 740px) and (max-height: 760px) {
  .hero-reference {
    --hero-rail-height: 96px;
    --hero-edge-space: 8px;
  }

  .hero-reference .hero-content {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: calc(var(--hero-rail-height) + 16px);
  }

  .hero-reference h1 {
    font-size: clamp(2.12rem, min(10.2vw, 7.6svh), 3.15rem);
    line-height: 1;
  }

  .hero-reference-lede {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .hero-reference .hero-actions {
    gap: 0.65rem;
    margin-top: 0.95rem;
  }

  .hero-reference .button {
    min-height: 44px;
  }

  .hero-reveal-inner {
    min-height: var(--hero-rail-height);
    padding: 0;
  }

  .hero-reveal-title {
    padding-bottom: 0.65rem;
  }

  .hero-reveal-title strong {
    font-size: 1.12rem;
  }

  .hero-reveal-step {
    min-height: calc(var(--hero-rail-height) / 2);
    padding: 0.5rem 0.65rem;
  }

  .hero-reveal-step strong {
    font-size: 0.88rem;
  }

  .hero-reveal-step em {
    display: none;
  }
}

@media (max-width: 1100px) {
  .next-step-consultation-layout {
    grid-template-columns: 1fr;
  }

  .next-step-consultation-card {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .next-step-consultation-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.45rem);
  }

  .next-step-card-body {
    padding: 1.1rem;
  }

  .next-step-actions {
    display: grid;
  }

  .next-step-actions .button {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .program-hero {
    min-height: auto;
  }

  .program-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-hero-panel {
    width: min(100%, 560px);
  }

  .calendar-tear-hero {
    min-height: auto;
  }

  .calendar-tear-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tear-calendar-stack {
    justify-self: start;
    width: min(100%, 390px);
  }

  .site-footer-cinematic {
    min-height: 0;
  }

  .footer-cinematic-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .footer-cinematic-directory,
  .footer-cinematic-panel {
    align-self: stretch;
  }

  .footer-cinematic-directory {
    margin-bottom: 0;
  }

  .footer-cinematic-panel {
    min-height: 0;
  }

  .footer-cinematic-panel .button {
    margin-top: 1rem;
  }

  .footer-cinematic-meta {
    position: relative;
  }
}

@media (max-width: 760px) {
  .calendar-tear-hero-layout {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }

  .calendar-tear-copy h1 {
    font-size: clamp(2.15rem, 10.3vw, 3.05rem);
  }

  .calendar-tear-copy .hero-lede {
    font-size: 1rem;
  }

  .calendar-tear-copy .hero-actions {
    display: grid;
  }

  .calendar-tear-copy .hero-actions-calendar .hero-actions-main,
  .calendar-tear-copy .hero-actions-calendar .hero-actions-utility {
    display: grid;
    width: 100%;
  }

  .calendar-tear-copy .hero-actions .button {
    width: 100%;
  }

  .hero-actions .calendar-save,
  .booking-actions .calendar-save,
  .single-request-actions .calendar-save {
    width: 100%;
  }

  .calendar-save summary,
  .calendar-save-menu {
    width: 100%;
    min-width: 0;
  }

  .tear-calendar-stack {
    --tear-calendar-angle: -1.2deg;
    width: calc(100% - 12px);
    min-height: 278px;
    transform: translate3d(0, 0, 0) rotate(var(--tear-calendar-angle));
  }

  .tear-calendar-card {
    min-height: 270px;
    padding: 1.2rem;
  }

  .tear-calendar-card-shadow {
    inset: 16px -10px auto auto;
    min-height: 254px;
  }

  .tear-calendar-card::before {
    height: 54px;
  }

  .tear-calendar-month {
    font-size: 0.72rem;
  }

  .tear-calendar-day {
    margin-top: 3rem;
    font-size: clamp(5rem, 25vw, 6rem);
  }

  .tear-calendar-card h2 {
    max-width: 260px;
    margin-top: 0.7rem;
    font-size: 0.98rem;
  }

  .tear-calendar-card p {
    max-width: 260px;
    margin-top: 0.65rem;
    font-size: 0.9rem;
  }

  .site-footer-cinematic {
    padding: 2rem 0 1.4rem;
    background-position: center top;
  }

  .footer-cinematic-directory {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-cinematic-panel .button {
    width: 100%;
  }

  .footer-cinematic-panel .footer-panel-credit {
    justify-self: start;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.snapshot-route {
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.snapshot-route span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snapshot-route strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
}

.snapshot-route p {
  margin: 0;
}

.program-filter-section {
  padding: clamp(32px, 4.4vw, 54px) 0 clamp(46px, 6vw, 76px);
  background:
    radial-gradient(circle at top right, rgba(98, 227, 239, 0.09), transparent 26%),
    #f2f7fa;
  border-top: 2px solid rgba(98, 227, 239, 0.85);
}

.program-filter-shell {
  display: grid;
  gap: 1.2rem;
}

.program-filter-section .section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
}

.program-filter-section .section-heading .section-kicker {
  margin: 0;
}

.program-filter-section .section-heading h2 {
  margin: 0;
}

.program-filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(6, 18, 31, 0.06);
}

.program-filter-bar label {
  display: grid;
  gap: 0.4rem;
  color: var(--navy-900);
  font-weight: 750;
}

.program-filter-bar .button {
  align-self: stretch;
  min-width: 160px;
}

.program-filter-status {
  margin: 0;
  color: #4d6175;
  font-weight: 700;
}

.program-hero + .program-family-section {
  padding-top: clamp(30px, 4vw, 48px);
}

.program-family-command {
  display: grid;
  grid-template-columns: minmax(290px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.program-family-command-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(88, 215, 230, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 22, 38, 0.98), rgba(5, 26, 45, 0.96));
  box-shadow: 0 28px 70px rgba(6, 18, 31, 0.16);
  color: #f8fbff;
}

.program-family-recommendation {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 0.75rem;
  border: 1px solid rgba(88, 215, 230, 0.38);
  border-radius: 999px;
  color: #58d7e6;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-family-command-panel h3 {
  max-width: 16rem;
  margin: 0.65rem 0 0.9rem;
  color: #f8fbff;
  font-size: clamp(1.85rem, 2.6vw, 2.8rem);
  line-height: 1.02;
}

.program-family-command-panel p {
  max-width: 25rem;
  margin: 0;
  color: rgba(232, 242, 249, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.program-family-route-list {
  display: grid;
}

.program-family-route-list span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 3.25rem;
  border-top: 1px solid rgba(232, 242, 249, 0.14);
  color: rgba(232, 242, 249, 0.86);
}

.program-family-route-list strong {
  min-width: 0;
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.2;
}

.program-family-route-list b {
  color: #58d7e6;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.program-family-list {
  display: grid;
  gap: 0.8rem;
}

.program-family-row {
  display: grid;
  grid-template-columns: 3.1rem minmax(220px, 0.86fr) minmax(150px, 0.38fr) auto;
  gap: clamp(0.9rem, 2vw, 1.45rem);
  align-items: center;
  min-width: 0;
  min-height: 6.55rem;
  padding: clamp(1rem, 1.9vw, 1.28rem);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(6, 18, 31, 0.08);
  scroll-margin-top: calc(var(--header-height) + 16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.program-family-row:hover,
.program-family-row:focus-within {
  transform: translateY(-3px);
  border-color: rgba(50, 205, 226, 0.42);
  box-shadow: 0 24px 52px rgba(6, 18, 31, 0.12);
}

.program-family-number {
  color: #05758b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.program-family-main {
  min-width: 0;
}

.program-family-main h3 {
  max-width: 18rem;
  margin: 0;
  color: #071626;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.program-family-main p {
  max-width: 24rem;
  margin: 0.45rem 0 0;
  color: #405673;
  font-size: 0.92rem;
  line-height: 1.45;
}

.program-family-fit {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.program-family-fit span {
  color: #718197;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-family-fit strong {
  color: #15263b;
  font-size: 0.9rem;
  line-height: 1.25;
}

.program-family-action {
  min-width: 7.8rem;
  color: #071626;
  background: #ffffff;
  border-color: rgba(8, 24, 41, 0.18);
  white-space: nowrap;
}

.program-family-action:hover,
.program-family-action:focus-visible {
  color: #03101f;
  background: #58d7e6;
  border-color: #58d7e6;
}

@media (max-width: 1180px) {
  .program-family-command {
    grid-template-columns: 1fr;
  }

  .program-family-command-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.68fr);
    align-items: end;
  }

  .program-family-command-panel h3,
  .program-family-command-panel p {
    max-width: 38rem;
  }
}

@media (max-width: 900px) {
  .program-family-row {
    grid-template-columns: 2.8rem minmax(0, 1fr) minmax(140px, 0.5fr);
  }

  .program-family-action {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .program-family-command-panel {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.15rem;
  }

  .program-family-command-panel h3 {
    max-width: 18rem;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .program-family-route-list span {
    min-height: 3rem;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .program-family-row {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    gap: 0.8rem;
    padding: 1.05rem;
  }

  .program-family-main h3 {
    max-width: 22rem;
    font-size: clamp(1.22rem, 6vw, 1.65rem);
  }

  .program-family-main p {
    max-width: none;
  }

  .program-family-fit {
    padding-top: 0.78rem;
    border-top: 1px solid rgba(8, 24, 41, 0.1);
  }

  .program-family-action {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.booking-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(8, 24, 41, 0.12);
  border: 1px solid rgba(8, 24, 41, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.booking-route-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.35rem;
  background: #fff;
}

.booking-route-card > span {
  color: #05758b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-route-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.22rem;
}

.booking-route-card p,
.booking-route-card small {
  margin: 0;
  color: #52657a;
}

.booking-route-card small {
  font-weight: 700;
}

.booking-route-card .button {
  width: 100%;
  margin-top: auto;
  align-self: stretch;
  min-height: 46px;
  padding-inline: 0.85rem;
  text-align: center;
}

.booking-route-card .button-secondary {
  color: #06121f;
  background: rgba(88, 215, 230, 0.18);
  border-color: rgba(5, 117, 139, 0.34);
  box-shadow: 0 10px 24px rgba(6, 22, 43, 0.08);
}

.booking-route-card .button-secondary:hover,
.booking-route-card .button-secondary:focus-visible {
  color: #06121f;
  background: var(--cyan-300);
  border-color: var(--cyan-300);
  transform: translateY(-1px);
}

.smart-brief-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.1), rgba(255, 255, 255, 0)),
    var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 26px 56px rgba(6, 18, 31, 0.16);
}

.smart-brief-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.smart-brief-head > div:first-child {
  display: grid;
  gap: 0.35rem;
}

.smart-brief-head span,
.smart-brief-grid span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.smart-brief-head strong {
  color: var(--white);
  font-size: 1.2rem;
}

.smart-brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.smart-brief-actions .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.smart-brief-actions .button-secondary:hover,
.smart-brief-actions .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(98, 227, 239, 0.34);
}

.smart-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.smart-brief-grid article {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
}

.smart-brief-grid strong {
  color: var(--white);
  line-height: 1.2;
}

.smart-brief-panel [data-brief-summary] {
  margin: 0;
  color: rgba(239, 248, 255, 0.82);
}

.contact-assurance-section {
  padding: clamp(42px, 6vw, 80px) 0;
  background:
    linear-gradient(180deg, rgba(241, 247, 250, 0.9), rgba(249, 252, 255, 0.98)),
    #f7fbfd;
}

.contact-assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(22px, 5vw, 42px);
}

.contact-assurance-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(8, 24, 41, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 18, 31, 0.06);
}

.contact-assurance-card h2,
.contact-assurance-card h3 {
  margin: 0;
  color: var(--navy-950);
}

.contact-assurance-steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-assurance-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
}

.contact-assurance-steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: var(--navy-950);
  font-weight: 900;
  border-radius: 50%;
  background: rgba(98, 227, 239, 0.22);
}

.contact-assurance-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--navy-950);
}

.contact-assurance-steps p,
.contact-assurance-side p {
  margin: 0;
  color: #4d6075;
}

.contact-assurance-links {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-assurance-links a {
  color: #05758b;
  font-weight: 800;
}

.contact-response-promise {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.1), rgba(255, 255, 255, 0)),
    var(--navy-900);
  border-radius: 8px;
}

.contact-response-promise span {
  color: var(--cyan-300);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-response-promise strong {
  color: var(--white);
}

.contact-response-promise p {
  color: rgba(239, 248, 255, 0.8);
}

.decision-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  justify-items: end;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.decision-bubble-visible .decision-bubble {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.decision-bubble-launch {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: rgba(6, 18, 31, 0.78);
  border: 1px solid rgba(98, 227, 239, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(6, 18, 31, 0.22);
  backdrop-filter: blur(14px);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.decision-bubble-launch:hover,
.decision-bubble-launch:focus-visible,
.decision-bubble.is-open .decision-bubble-launch {
  color: var(--navy-950);
  background: var(--cyan-300);
  border-color: rgba(98, 227, 239, 0.72);
}

.decision-bubble-signal {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex: 0 0 auto;
  background: #32d583;
  border-radius: 999px;
  box-shadow:
    0 0 0 6px rgba(50, 213, 131, 0.16),
    0 0 18px rgba(50, 213, 131, 0.45);
}

@media (prefers-reduced-motion: no-preference) {
  .decision-bubble-signal {
    animation: decisionBubbleSignalPulse 1.9s ease-in-out infinite;
  }
}

@keyframes decisionBubbleSignalPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 5px rgba(50, 213, 131, 0.16),
      0 0 16px rgba(50, 213, 131, 0.42);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 11px rgba(50, 213, 131, 0),
      0 0 22px rgba(50, 213, 131, 0.62);
  }
}

.decision-bubble-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(360px, calc(100vw - 36px));
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 227, 239, 0.08), rgba(255, 255, 255, 0)),
    rgba(6, 18, 31, 0.94);
  border: 1px solid rgba(98, 227, 239, 0.18);
  border-radius: 10px;
  box-shadow: 0 24px 68px rgba(2, 9, 20, 0.38);
  backdrop-filter: blur(18px);
  transform-origin: right bottom;
  animation: decisionBubbleIn 180ms ease both;
}

.decision-bubble-panel[hidden] {
  display: none;
}

.decision-bubble-close {
  justify-self: end;
  min-height: 28px;
  padding: 0.3rem 0.52rem;
  color: rgba(239, 248, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.decision-bubble-close:hover,
.decision-bubble-close:focus-visible {
  color: var(--cyan-300);
  border-color: rgba(98, 227, 239, 0.36);
}

.decision-bubble-copy {
  display: grid;
  gap: 0.3rem;
}

.decision-bubble-copy span {
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.decision-bubble-copy strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.12;
}

.decision-bubble-copy p {
  margin: 0;
  color: rgba(239, 248, 255, 0.78);
  font-size: 0.9rem;
}

.decision-bubble-field select {
  width: 100%;
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.decision-bubble-field select option {
  color: var(--navy-950);
  background: var(--white);
}

.decision-bubble-field select option:checked {
  color: var(--white);
  background: var(--navy-800);
}

.decision-bubble-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.decision-bubble-actions .button {
  min-width: 0;
  min-height: 44px;
  padding: 0.78rem 0.9rem;
}

.decision-bubble-link {
  color: var(--cyan-300);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.decision-bubble-link:hover,
.decision-bubble-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes decisionBubbleIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .program-filter-section .section-heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .program-filter-bar .button {
    min-width: 0;
  }

  .contact-assurance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .program-hero-layout {
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2.25rem;
  }

  .program-hero h1 {
    font-size: clamp(2.35rem, 11.6vw, 3.4rem);
  }

  .program-hero .hero-lede {
    font-size: 1rem;
  }

  .program-hero-panel {
    padding: 0.95rem;
  }

  .program-hero-panel h2 {
    font-size: 1.62rem;
  }

  .program-hero-selector a {
    grid-template-columns: 1fr;
    gap: 0.24rem;
    min-height: 0;
    padding: 0.68rem 0.78rem;
  }

  .program-filter-bar,
  .smart-brief-grid,
  .contact-assurance-grid {
    grid-template-columns: 1fr;
  }

  .smart-brief-head,
  .smart-brief-actions,
  .snapshot-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .decision-bubble {
    right: 14px;
    bottom: 14px;
  }

  .decision-bubble-panel {
    width: min(340px, calc(100vw - 28px));
  }

  .decision-bubble-actions {
    grid-template-columns: 1fr;
  }

  .contact-assurance-steps li {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .custom-blueprint-hero {
    min-height: auto;
  }

  .custom-blueprint-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
  }

  .custom-blueprint-copy,
  .custom-blueprint-panel {
    max-width: 760px;
  }

  .custom-blueprint-panel {
    width: min(100%, 560px);
  }
}

@media (max-width: 760px) {
  .custom-blueprint-layout {
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2.25rem;
  }

  .custom-blueprint-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 12, 24, 0.98) 0%, rgba(4, 12, 24, 0.86) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 74px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 74px),
      var(--custom-blueprint-photo) center / cover no-repeat;
  }

  .custom-blueprint-hero h1 {
    font-size: clamp(2.38rem, 10.5vw, 3.55rem);
    line-height: 1;
  }

  .custom-blueprint-hero .hero-lede {
    font-size: 1rem;
    line-height: 1.56;
  }

  .custom-blueprint-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .custom-blueprint-hero .hero-actions .button {
    width: 100%;
  }

  .custom-blueprint-panel {
    padding: 1.2rem;
  }

  .custom-blueprint-panel h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .custom-blueprint-steps article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 1100px) {
  .method-evidence-hero {
    min-height: auto;
  }

  .method-evidence-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
  }

  .method-evidence-copy {
    max-width: 780px;
  }

  .method-evidence-orbit {
    width: min(100%, 640px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .method-evidence-layout {
    gap: 1.6rem;
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2.25rem;
  }

  .method-evidence-atmosphere {
    opacity: 0.18;
  }

  .method-evidence-hero h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.45rem);
    line-height: 1;
  }

  .method-evidence-hero .hero-lede {
    font-size: 1rem;
    line-height: 1.56;
  }

  .method-evidence-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .method-evidence-hero .hero-actions .button {
    width: 100%;
  }

  .method-evidence-signals {
    display: none;
  }

  .method-evidence-orbit {
    min-height: auto;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(98, 227, 239, 0.28);
    border-radius: var(--radius-lg);
    background: rgba(4, 16, 31, 0.74);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(16px);
  }

  .method-evidence-ring {
    display: none;
  }

  .method-evidence-core {
    position: relative;
    left: auto;
    top: auto;
    width: 118px;
    justify-self: start;
    transform: none;
  }

  .method-evidence-node,
  .method-evidence-proof {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .method-evidence-node {
    padding: 0.95rem;
  }

  .method-evidence-proof {
    padding: 0.95rem;
  }
}

/* Full-screen hero fit layer */
.inner-hero,
.calendar-tear-hero,
.page-intro,
.package-hero,
.course-hero,
.program-hero,
.custom-blueprint-hero,
.method-evidence-hero,
.compact-thanks,
.compact-policy {
  min-height: var(--hero-screen-min);
}

.page-intro,
.package-hero {
  display: grid;
  align-items: center;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .program-hero-layout,
  .custom-blueprint-layout,
  .method-evidence-layout,
  .calendar-tear-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: clamp(1.4rem, 3vw, 2rem);
  }

  .program-hero-panel,
  .custom-blueprint-panel,
  .method-evidence-orbit,
  .tear-calendar-stack {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .method-evidence-orbit {
    min-height: clamp(430px, 48vw, 520px);
  }

  .method-evidence-node {
    width: min(42%, 172px);
    min-height: 104px;
    padding: 0.82rem;
  }

  .method-evidence-node p {
    font-size: 0.78rem;
  }

  .method-evidence-core {
    width: clamp(112px, 12vw, 136px);
  }
}

@media (max-width: 760px) {
  .calendar-tear-hero-layout,
  .program-hero-layout,
  .custom-blueprint-layout,
  .method-evidence-layout {
    gap: 1.1rem;
    padding-top: calc(var(--header-height) + 1.75rem);
    padding-bottom: 1.75rem;
  }

  .calendar-tear-copy h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.7rem);
  }

  .calendar-tear-copy .hero-lede {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .tear-calendar-stack {
    min-height: 214px;
  }

  .tear-calendar-card {
    min-height: 206px;
    padding: 0.95rem;
  }

  .tear-calendar-card-shadow {
    min-height: 194px;
  }

  .tear-calendar-card::before {
    height: 44px;
  }

  .tear-calendar-day {
    margin-top: 2.15rem;
    font-size: clamp(4rem, 20vw, 4.8rem);
  }

  .tear-calendar-card h2 {
    margin-top: 0.42rem;
    font-size: 0.86rem;
  }

  .tear-calendar-card p {
    margin-top: 0.32rem;
    font-size: 0.78rem;
  }

  .program-hero-panel h2 {
    font-size: 1.22rem;
  }

  .program-hero-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .program-hero-selector a {
    min-height: 56px;
    padding: 0.58rem 0.62rem;
  }

  .program-hero-selector strong {
    font-size: 0.86rem;
  }

  .program-hero-selector span {
    display: none;
  }

  .custom-blueprint-hero h1 {
    font-size: clamp(2.1rem, 10.2vw, 3.08rem);
  }

  .custom-blueprint-panel {
    padding: 0.92rem;
  }

  .custom-blueprint-panel h2 {
    margin: 0.55rem 0 0.75rem;
    font-size: clamp(1.24rem, 5.8vw, 1.72rem);
  }

  .custom-blueprint-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .custom-blueprint-steps article {
    display: block;
    padding: 0.62rem;
    background: rgba(6, 22, 43, 0.86);
    border-top: 0;
  }

  .custom-blueprint-steps article > span {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.66rem;
  }

  .custom-blueprint-steps h3 {
    font-size: 0.84rem;
  }

  .custom-blueprint-steps p {
    display: none;
  }

  .method-evidence-hero h1 {
    font-size: clamp(2.08rem, 10.4vw, 3.05rem);
  }

  .method-evidence-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0.85rem;
  }

  .method-evidence-core {
    grid-column: 1 / -1;
    width: 96px;
    margin-bottom: 0.55rem;
  }

  .method-evidence-node {
    padding: 0.72rem;
    border-radius: 0;
  }

  .method-evidence-node span {
    margin-bottom: 0.24rem;
    font-size: 0.64rem;
  }

  .method-evidence-node strong {
    font-size: 1rem;
  }

  .method-evidence-node p {
    display: none;
  }
}

@media (max-width: 760px) and (max-height: 780px) {
  .calendar-tear-hero-layout,
  .program-hero-layout,
  .custom-blueprint-layout,
  .method-evidence-layout,
  .workshop-detail-hero .inner-hero-layout {
    align-content: center;
    gap: 0.8rem;
    padding-top: calc(var(--header-height) + 0.95rem);
    padding-bottom: 0.95rem;
  }

  .calendar-tear-copy .hero-lede,
  .program-hero .hero-lede,
  .custom-blueprint-hero .hero-lede,
  .method-evidence-hero .hero-lede,
  .workshop-detail-hero .hero-lede {
    display: none;
  }

  .tear-calendar-stack,
  .program-hero-panel,
  .custom-blueprint-panel,
  .method-evidence-orbit {
    display: none;
  }

  .calendar-tear-copy h1,
  .program-hero h1,
  .custom-blueprint-hero h1,
  .method-evidence-hero h1,
  .workshop-detail-hero h1 {
    font-size: clamp(1.9rem, 9.8vw, 2.75rem);
  }

  .calendar-tear-copy .hero-actions,
  .program-hero .hero-actions,
  .custom-blueprint-hero .hero-actions,
  .method-evidence-hero .hero-actions,
  .workshop-detail-hero .hero-actions {
    margin-top: 1rem;
  }

  .calendar-tear-hero .button,
  .program-hero .button,
  .custom-blueprint-hero .button,
  .method-evidence-hero .button,
  .workshop-detail-hero .button {
    min-height: 42px;
    padding: 0.64rem 0.82rem;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .about-local-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: clamp(1.4rem, 3vw, 2rem);
  }

  .about-local-panel {
    width: min(100%, 360px);
    justify-self: end;
    padding: 1.2rem;
  }

  .about-local-panel h2 {
    margin: 1rem 0 1.25rem;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  }

  .about-sector-list div {
    min-height: 54px;
    padding: 0.75rem 0.85rem;
  }
}

@media (max-width: 760px) {
  .about-local-layout {
    gap: 1.1rem;
    padding-top: calc(var(--header-height) + 1.75rem);
    padding-bottom: 1.75rem;
  }

  .about-local-hero h1 {
    font-size: clamp(1.9rem, 8.9vw, 2.68rem);
    line-height: 1;
  }

  .about-local-hero .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .about-local-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-local-hero .hero-actions .button {
    width: 100%;
  }

  .about-local-panel {
    padding: 0.95rem;
  }

  .about-local-panel h2 {
    margin: 0.65rem 0 0.85rem;
    font-size: clamp(1.18rem, 5.6vw, 1.58rem);
  }

  .about-sector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(16, 46, 92, 0.12);
  }

  .about-sector-list div {
    min-height: 58px;
    display: grid;
    align-content: center;
    gap: 0.2rem;
    padding: 0.65rem;
    border-radius: 0;
  }

  .about-sector-list strong {
    font-size: 0.84rem;
  }

  .about-sector-list span {
    font-size: 0.62rem;
  }
}

@media (max-width: 760px) and (max-height: 780px) {
  .about-local-layout {
    gap: 0.8rem;
    padding-top: calc(var(--header-height) + 0.95rem);
    padding-bottom: 0.95rem;
  }

  .about-local-hero .hero-lede,
  .about-local-panel {
    display: none;
  }

  .about-local-hero h1 {
    font-size: clamp(1.9rem, 9.8vw, 2.75rem);
  }

  .about-local-hero .hero-actions {
    margin-top: 1rem;
  }

  .about-local-hero .button {
    min-height: 42px;
    padding: 0.64rem 0.82rem;
  }
}

/* Exact viewport hero lock */
.hero,
.hero-reference,
.inner-hero,
.calendar-tear-hero,
.page-intro,
.package-hero,
.course-hero,
.program-hero,
.custom-blueprint-hero,
.method-evidence-hero,
.compact-thanks,
.compact-policy {
  min-height: var(--hero-screen-min);
  height: var(--hero-screen-min);
  max-height: var(--hero-screen-min);
  overflow: hidden;
}
