:root {
  --fs-display: 2.5rem;
  --fs-h1: var(--fs-display);
  --fs-h2: 2rem;
  --fs-h3: 1.25rem;
  --fs-h4: 1.125rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1.0625rem;
  --fs-body-sm: 0.9375rem;
  --fs-caption: 0.8125rem;
  --fs-label: 0.75rem;
  --fs-quote-mark: 2rem;
  --fs-band: 1.25rem;
  --fs-band-lg: 1.4rem;
  --fs-stat-sm: 1.05rem;
  --fs-stat: 1.25rem;
  --fs-stat-md: 1.55rem;
  --fs-stat-lg: 1.65rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-display: 1.12;
  --lh-heading: 1.15;
  --lh-body: 1.6;
  --tracking-display: -0.03em;
  --tracking-heading: -0.02em;
  --tracking-label: 0.04em;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;
  --space-section: 3.5rem;
  --radius-hairline: 1px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --container-max-width: 75rem;
  --container-padding-desktop: 4rem;
  --container-padding-tablet: 2rem;
  --container-padding-mobile: 1.25rem;
  --shadow-sm: 0 1px 2px rgba(20, 15, 15, 0.05);
  --shadow-md: 0 4px 16px rgba(20, 15, 15, 0.08);
  --shadow-lg: 0 12px 36px rgba(20, 15, 15, 0.12);
  --shadow-card: 0 1px 2px rgba(20, 15, 15, 0.04), 0 8px 24px rgba(20, 15, 15, 0.06);
  --shadow-button: 0 8px 20px -10px rgba(20, 15, 15, 0.28);
  --shadow-button-hover: 0 14px 32px -12px rgba(20, 15, 15, 0.32);
  --shadow-sticky: 0 -8px 28px rgba(20, 15, 15, 0.16);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 700ms;
  --reveal-duration-fast: 480ms;
  --reveal-distance: 28px;
  --reveal-distance-lg: 40px;
  --stagger-step: 80ms;
  --header-height: 4.5rem;
  --sticky-cta-height: 4.25rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-header: 250;
  --z-sticky-cta: 300;
  --z-overlay: 350;
  --z-modal: 400;
  --z-toast: 500;
  --color-overlay: rgba(20, 15, 15, 0.55);
  --color-overlay-strong: rgba(20, 15, 15, 0.72);
  --color-overlay-soft: rgba(20, 15, 15, 0.22);
  --color-overlay-mid: rgba(20, 15, 15, 0.35);
  --color-chip-on-dark: rgba(255, 255, 255, 0.14);
  --color-laurel-soft: rgba(216, 191, 122, 0.78);
  --color-laurel-border: rgba(216, 191, 122, 0.28);
  --color-success-live-glow: rgba(125, 255, 163, 0.2);
  --font-secondary: var(--font-display);
}

@media (min-width: 768px) {
  :root {
  --fs-display: 3.25rem;
  --fs-h2: 2.25rem;
  --fs-h3: 1.35rem;
  --space-section: 4.5rem;
  }
}

@media (min-width: 1100px) {
  :root {
  --fs-display: 3.75rem;
  --fs-h2: 2.5rem;
  --fs-h3: 1.45rem;
  --space-section: 5.75rem;
  }
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-sticky-cta {
  padding-bottom: 0px;
}

@media (min-width: 900px) {
  body.has-sticky-cta {
  padding-bottom: 0px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-heading);
  color: inherit;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  font-size: var(--fs-body);
  max-width: 70ch;
}

a {
  color: inherit;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: var(--font-primary);
}

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

::selection {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(179, 31, 36, 0.18);
  color: var(--color-text-primary);
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
  scroll-behavior: smooth;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0px !important;
  margin: -1px !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  clip: rect(0px, 0px, 0px, 0px) !important;
  white-space-collapse: collapse !important;
  text-wrap-mode: nowrap !important;
  border-top-width: 0px !important;
  border-right-width: 0px !important;
  border-bottom-width: 0px !important;
  border-left-width: 0px !important;
  border-top-style: none !important;
  border-right-style: none !important;
  border-bottom-style: none !important;
  border-left-style: none !important;
  border-top-color: currentcolor !important;
  border-right-color: currentcolor !important;
  border-bottom-color: currentcolor !important;
  border-left-color: currentcolor !important;
  border-image-source: none !important;
  border-image-slice: 100% !important;
  border-image-width: 1 !important;
  border-image-outset: 0 !important;
  border-image-repeat: stretch !important;
}

.skip-link {
  color: var(--color-text-primary);
  background: var(--color-background);
}

.skip-link:focus, .skip-link:focus-visible {
  top: 0.75rem;
  left: 0.75rem;
  z-index: var(--z-toast);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-md);
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  position: fixed !important;
  width: auto !important;
  height: auto !important;
  margin: 0px !important;
  padding: 0.65rem 1rem !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  clip: auto !important;
  white-space-collapse: collapse !important;
  text-wrap-mode: wrap !important;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
}

@media (min-width: 768px) {
  .container {
  padding-left: var(--container-padding-tablet);
  padding-right: var(--container-padding-tablet);
  }
}

@media (min-width: 1100px) {
  .container {
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
  }
}

.text-center p {
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 0.4rem;
  column-gap: 0.4rem;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  line-height: 1.2;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  cursor: pointer;
  transition: background-color var(--transition-base) var(--ease-premium), color var(--transition-base) var(--ease-premium), border-color var(--transition-base) var(--ease-premium), transform var(--transition-base) var(--ease-premium), box-shadow var(--transition-base) var(--ease-premium);
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0px) scale(0.98);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  padding: 0.9rem 1.55rem;
  box-shadow: var(--shadow-button);
}

.btn--primary:hover, .btn--primary:focus-visible {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-button-hover);
}

.btn--secondary {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
  padding: 0.9rem 1.55rem;
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover, .btn--secondary:focus-visible {
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--color-text-inverse);
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.55);
  border-right-color: rgba(255, 255, 255, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.55);
  border-left-color: rgba(255, 255, 255, 0.55);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: calc(-1.5px + 0.9rem) calc(-1.5px + 1.55rem);
}

.btn--ghost:hover, .btn--ghost:focus-visible {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgb(255, 255, 255);
  border-right-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
}

.btn--outline {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: calc(-1.5px + 0.85rem) calc(-1.5px + 1.4rem);
}

.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: var(--fs-caption);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  row-gap: 0.35rem;
  column-gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.chip--on-dark {
  background: var(--color-chip-on-dark);
  color: rgb(255, 255, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.14);
  border-right-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  border-left-color: rgba(255, 255, 255, 0.14);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: var(--space-2xl);
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.section-intro__title {
  margin: 0 0 var(--space-sm);
}

.section-intro__subtitle {
  margin: 0px;
  color: var(--color-text-secondary);
  font-size: var(--fs-body-lg);
}

.reason-card, .story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.reason-card {
  padding: var(--space-xl) var(--space-lg);
  height: 100%;
}

.reason-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.reason-card__title {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-h3);
}

.reason-card__text {
  margin: 0px;
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
}

.site-header {
  --header-bg-progress: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgb(12 10 10 / var(--header-bg-progress));
  color: var(--color-text-inverse);
  border-bottom: 1px solid rgb(255 255 255 / calc(0.08 * var(--header-bg-progress)));
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  gap: var(--space-md);
}

.site-header__logo-icon {
  height: 2.6rem;
  width: auto;
  object-fit: contain;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}

.site-header__phone {
  display: none;
}

@media (min-width: 768px) {
  .site-header__phone {
  display: inline-flex;
  }
}

.site-nav {
  display: none;
}

@media (min-width: 1100px) {
  .site-nav {
  display: block;
  position: static;
  max-height: none;
  visibility: visible;
  opacity: 1;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  }
}

@media (min-width: 1100px) {
  .site-nav__list {
  display: flex;
  flex-direction: row;
  row-gap: 0.25rem;
  column-gap: 0.25rem;
  padding: 0px;
  }
}

@media (min-width: 1100px) {
  .site-nav__link {
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.75rem;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-radius: var(--radius-sm);
  }
}

.site-header__menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  column-gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-radius: var(--radius-sm);
  color: rgb(255, 255, 255);
}

@media (min-width: 1100px) {
  .site-header__menu-toggle {
  display: none;
  }
}

.hero {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 5.25rem;
  padding-bottom: 1.5rem;
  color: rgb(255, 255, 255);
  background-color: var(--color-surface-dark);
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 100dvh;
  justify-content: center;
}

@media (min-width: 1100px) {
  .hero {
  padding-top: 6.25rem;
  padding-bottom: 2.5rem;
  }
}

@media (min-width: 900px) {
  .hero {
  min-height: 100dvh;
  padding-top: 5.75rem;
  padding-bottom: 2rem;
  justify-content: center;
  }
}

@media (max-height: 820px) {
  .hero {
  padding-top: 4.75rem;
  padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
  min-height: 100dvh;
  padding-top: 4.75rem;
  padding-bottom: 1.25rem;
  justify-content: flex-start;
  }
}

.hero__media {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: var(--color-surface-dark);
  background-image: url("/uploads/n7XU0sIJE2Mz_9_nlAnZa-hero-banner.png");
  background-repeat: no-repeat;
  transform: scale(1.02);
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}

.hero__overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(105deg, rgba(20, 15, 15, 0.92) 0%, rgba(20, 15, 15, 0.7) 48%, rgba(179, 31, 36, 0.42) 100%), linear-gradient(0deg, rgba(20, 15, 15, 0.62) 0%, rgba(0, 0, 0, 0) 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 900px) {
  .hero__content {
  justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero__content {
  justify-content: flex-start;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  }
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__layout {
  grid-template-columns: minmax(0px, 1.1fr) minmax(16rem, 0.95fr);
  gap: var(--space-xl);
  align-items: center;
  }
}

@media (min-width: 1100px) {
  .hero__layout {
  grid-template-columns: minmax(0px, 1.15fr) minmax(18rem, 0.85fr);
  gap: var(--space-3xl);
  }
}

@media (min-width: 900px) {
  .hero__layout {
  grid-template-columns: minmax(0px, 1.15fr) minmax(17rem, 0.9fr);
  gap: var(--space-2xl);
  align-items: center;
  }
}

@media (max-height: 820px) {
  .hero__layout {
  gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .hero__layout {
  gap: var(--space-md);
  }
}

.hero__title {
  margin: 0 0 var(--space-sm);
  max-width: 16ch;
}

@media (min-width: 1100px) {
  .hero__title {
  max-width: 24ch;
  }
}

@media (min-width: 900px) {
  .hero__title {
  max-width: 22ch;
  }
}

@media (max-height: 820px) {
  .hero__title {
  margin-bottom: 0.45rem;
  }
}

.hero__description {
  margin: 0 0 var(--space-md);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-body-lg);
  max-width: 36ch;
}

@media (min-width: 1100px) {
  .hero__description {
  max-width: 48ch;
  }
}

@media (min-width: 900px) {
  .hero__description {
  max-width: 42ch;
  }
}

@media (max-height: 820px) {
  .hero__description {
  margin-bottom: var(--space-sm);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

@media (max-height: 820px) {
  .hero__actions {
  margin-bottom: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .hero__actions {
  width: 100%;
  }
}

.hero__metrics-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: var(--space-sm);
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0 0 var(--space-md);
  padding: 0px;
}

@media (max-height: 820px) {
  .hero__metrics-list {
  margin-bottom: var(--space-sm);
  }
}

.hero__metric-value {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-stat-md);
  color: var(--color-laurel);
}

.hero__metric-label {
  display: block;
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.7);
}

.hero__accreditations {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.45rem;
  column-gap: 0.45rem;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  max-width: 42rem;
}

.hero__accreditation {
  padding: 0.4rem 0.65rem;
}

@media (max-width: 768px) {
  .hero__accreditation {
  padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 375px) {
  .hero__accreditation {
  min-width: 0px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(50% - 0.35rem);
  }
}

.hero__accreditation-name {
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
}

.hero__accreditation-detail {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-form {
  width: 100%;
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-xl);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.14);
  border-right-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  border-left-color: rgba(255, 255, 255, 0.14);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-color: rgba(20, 15, 15, 0.55);
  backdrop-filter: blur(10px);
}

@media (min-width: 900px) {
  .hero-form {
  padding: 1.15rem 1.2rem 1.2rem;
  }
}

@media (max-height: 820px) {
  .hero-form {
  padding: 0.85rem 0.9rem 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-form {
  padding: 0.9rem 0.9rem 1rem;
  }
}

.hero-form__kicker {
  margin: 0px 0px 0.2rem;
}

.hero-form__lead {
  margin: 0 0 var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body-sm);
}

@media (max-height: 820px) {
  .hero-form__lead {
  margin-bottom: 0.45rem;
  }
}

@media (max-width: 768px) {
  .hero-form__lead {
  display: none;
  }
}

.field {
  display: flex;
  flex-direction: column;
  row-gap: 0.35rem;
  column-gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.field__label {
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
}

.contact-form__input, .contact-form__textarea, .contact-form__select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(12, 10, 10, 0.35);
  color: rgb(255, 255, 255);
}

.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.why, .credibility, .programs, .path, .placements, .campus, .apply-path, .stories, .faq, .contact, .trust, .faculty, .outcomes {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.why {
  background: var(--color-background);
}

.credibility {
  background: var(--color-background-alt);
}

.why__grid {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
  .why__grid {
  grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 700px) {
  .why__grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  margin-bottom: 0px;
  padding-bottom: var(--space-xl);
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer__title {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-body);
  color: rgb(255, 255, 255);
}

.footer__description {
  margin: var(--space-md) 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body-sm);
}

.footer__logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.footer__contact-item {
  display: flex;
  row-gap: 0.65rem;
  column-gap: 0.65rem;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-body-sm);
}

.footer__contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.footer__links {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: var(--fs-body-sm);
}

.sticky-cta {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0px;
}

@media (min-width: 900px) {
  .sticky-cta {
  display: none;
  }
}

.sticky-cta .btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  padding: 0.9rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-family: var(--font-display);
}

.faq details p {
  margin: 0.75rem 0px 0px;
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
}

.contact {
  background: var(--color-surface-dark);
  color: rgb(255, 255, 255);
}

.contact__title {
  margin: 0 0 var(--space-md);
  max-width: 22ch;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.logo-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  will-change: transform;
  transform: translate3d(0px, 0px, 0px);
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
  width: 100%;
  justify-content: center;
  will-change: auto;
  transform: none !important;
  }
}

.logo-track__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: max-content;
  row-gap: 3.25rem;
  column-gap: 3.25rem;
  padding-inline-end: 3.25rem;
}

@media (min-width: 960px) {
  .logo-track__group {
  row-gap: 3.75rem;
  column-gap: 3.75rem;
  padding-inline-end: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track__group {
  flex-wrap: wrap;
  justify-content: center;
  padding-inline-end: 0px;
  row-gap: 1.5rem;
  column-gap: 2.5rem;
  width: auto;
  }
}

.logo-track img {
  display: block;
  height: 3.75rem;
  width: auto;
  max-width: 11rem;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(1) contrast(0.92);
  opacity: 0.88;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}

@media (min-width: 960px) {
  .logo-track img {
  height: 4.25rem;
  max-width: 12.5rem;
  }
}

@media (max-width: 640px) {
  .logo-track img {
  height: 3.1rem;
  max-width: 9rem;
  }
}

.hero__copy {
  min-width: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-form__helper {
  margin: 0.45rem 0px 0px;
}

.hero__aside {
  min-width: 0px;
  width: 100%;
  max-width: 28rem;
}

@media (min-width: 900px) {
  .hero__aside {
  max-width: none;
  justify-self: end;
  width: 100%;
  }
}

@media (max-width: 768px) {
  .hero__aside {
  max-width: none;
  }
}

.hero__metrics {
  width: 100%;
  max-width: 42rem;
  margin: 0px;
  padding-top: var(--space-md);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(216, 191, 122, 0.28);
}

@media (max-height: 820px) {
  .hero__metrics {
  padding-top: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .hero__metrics {
  padding-top: 0.5rem;
  }
}

.credibility__viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  padding-block: var(--space-md);
  mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 6%, rgb(0, 0, 0) 94%, transparent);
}

.programs__tab {
  display: block;
  width: 100%;
  margin: 0px;
  padding: 0.55rem 0.75rem;
  text-align: left;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.48);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition-behavior: normal, normal, normal, normal;
  transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
  transition-timing-function: ease, ease, ease, ease;
  transition-delay: 0s, 0s, 0s, 0s;
  transition-property: color, background-color, border-color, box-shadow;
}

@media (min-width: 960px) {
  .programs__tab {
  padding: 0.65rem 0.9rem;
  }
}

.programs__tabs {
  display: flex;
  flex-direction: column;
  row-gap: 0.15rem;
  column-gap: 0.15rem;
  margin: 0px;
  padding: 0px;
  will-change: transform;
  position: relative;
}

@media (min-width: 960px) {
  .programs__tabs {
  row-gap: 0.2rem;
  column-gap: 0.2rem;
  width: 100%;
  transition-behavior: normal;
  transition-duration: 0.42s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
  transition-property: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .programs__tabs {
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
  }
}

.programs__tabs-viewport {
  position: relative;
  width: 100%;
  overflow-x: visible;
  overflow-y: visible;
}

@media (min-width: 960px) {
  .programs__tabs-viewport {
  display: block;
  height: calc(100vh - var(--header-height, 4.5rem) - 2rem);
  max-height: calc(100vh - var(--header-height, 4.5rem) - 2rem);
  overflow-x: hidden;
  overflow-y: hidden;
  mask-image: linear-gradient(transparent 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent 100%);
  }
}

.programs__panel-kicker {
  margin: 0px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-kicker-on-dark);
  line-height: 1.2;
}

.programs__panel-title {
  margin: 0px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.25rem + 0.7vw, 2rem);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
}

.programs__panel-description {
  margin: 0px;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--fs-body);
  line-height: 1.55;
  max-width: 38ch;
}

.programs__panel-link {
  margin: 0px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body-sm);
  color: var(--color-primary);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.programs__panel-link--on-dark {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.28);
  padding-bottom: 0.1rem;
}

.programs__panel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  margin-top: 0.35rem;
}

.programs__panel {
  display: none;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.75rem;
  column-gap: 0.75rem;
  margin: 0px;
  padding: var(--space-xl) var(--space-lg);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.035);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-radius: var(--radius-xl);
  box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 0px inset, rgba(0, 0, 0, 0.22) 0px 18px 40px;
}

@media (min-width: 960px) {
  .programs__panel {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  transition-behavior: normal;
  transition-duration: 0.16s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
  display: flex !important;
  }
}

.programs__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 960px) {
  .programs__layout {
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0px, 1.35fr);
  gap: var(--space-2xl);
  width: 100%;
  align-items: center;
  }
}

.programs__pin {
  position: relative;
}

@media (min-width: 960px) {
  .programs__pin {
  position: sticky;
  top: calc(var(--header-height, 4.5rem) + 1rem);
  min-height: calc(100vh - var(--header-height, 4.5rem) - 2rem);
  display: flex;
  align-items: center;
  }
}

.programs__track {
  min-height: 0px;
}

@media (min-width: 960px) {
  .programs__track {
  height: calc(var(--programs-step, min(70vh, 40rem)) * var(--programs-count, 3));
  }
}

.programs__explorer {
  margin-top: var(--space-xl);
}

.programs__footnote-label {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: rgb(255, 255, 255);
  line-height: 1.3;
}

.programs__footnote-text {
  margin: var(--space-sm) 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-caption);
  line-height: 1.5;
  max-width: 62ch;
}

.programs__footnote {
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.04);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.programs--stage {
  position: relative;
  background: radial-gradient(120% 80% at 12% 0%, rgba(179, 31, 36, 0.2) 0%, transparent 55%),
    radial-gradient(90% 70% at 100% 30%, rgba(216, 191, 122, 0.07) 0%, transparent 50%),
    var(--color-surface-dark);
  color: rgb(255, 255, 255);
  overflow-x: clip;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.page-root {
  overflow-x: clip;
  max-width: 100%;
}

html, body {
  overflow-x: clip;
  max-width: 100%;
}

.logo-track, .logo-track__group, .programs__tabs, .programs__tabs-viewport, .hero__layout, .hero__content {
  max-width: 100%;
}

.track-ladder .section-intro {
  max-width: 42rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.track-ladder .section-kicker {
  color: var(--color-primary, #b31f24);
}

.track-ladder .section-intro__title {
  color: var(--color-text-primary, #121212);
}

.track-ladder .section-intro__subtitle {
  color: var(--color-text-secondary, #3d3a3a);
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 18px 40px rgba(20, 15, 15, 0.12));
}

.track-card--featured .track-card__accent {
  background: linear-gradient(90deg, var(--color-primary-deep, #7a1418), var(--color-primary, #b31f24), var(--color-laurel, #d8bf7a));
  background-image: linear-gradient(90deg, rgb(122, 20, 24), rgb(179, 31, 36), rgb(216, 191, 122));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  height: 3.5px;
}

.track-card--featured .track-card__price {
  background: color-mix(in srgb, var(--color-primary, #b31f24) 8%, #fff);
  border-color: color-mix(in srgb, var(--color-primary, #b31f24) 18%, #e6ddda);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: color-mix(in srgb, rgb(179, 31, 36) 8%, rgb(255, 255, 255));
  border-top-color: color-mix(in srgb, rgb(179, 31, 36) 18%, rgb(230, 221, 218));
  border-right-color: color-mix(in srgb, rgb(179, 31, 36) 18%, rgb(230, 221, 218));
  border-bottom-color: color-mix(in srgb, rgb(179, 31, 36) 18%, rgb(230, 221, 218));
  border-left-color: color-mix(in srgb, rgb(179, 31, 36) 18%, rgb(230, 221, 218));
}

.track-card__includes li {
  position: relative;
  display: grid;
  grid-template-columns: 1.1rem minmax(0px, 1fr);
  column-gap: 0.55rem;
  align-items: start;
  margin: 0px;
  color: rgb(61, 58, 58);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.track-card__includes strong {
  color: rgb(18, 18, 18);
  font-weight: 600;
}

.track-card__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 2.75rem;
}

.track-card__link:hover, .track-card__link:focus-visible {
  color: rgb(179, 31, 36);
}

.track-ladder__notes .chip-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
  margin: 0px;
  padding: 0px;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
}

.track-ladder__notes .chip {
  border-radius: var(--radius-full, 9999px);
  background: var(--color-background-alt, #f3ebe8);
  border: 1px solid var(--color-border, #e6ddda);
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(243, 235, 232);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(230, 221, 218);
  border-right-color: rgb(230, 221, 218);
  border-bottom-color: rgb(230, 221, 218);
  border-left-color: rgb(230, 221, 218);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(18, 18, 18);
  font-size: 0.8125rem;
  font-weight: 600;
}

.track-ladder__notes-text a {
  color: rgb(179, 31, 36);
  font-weight: 600;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.track-ladder__notes-text a:hover, .track-ladder__notes-text a:focus-visible {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

@media (min-width: 900px) {
  .track-card--featured:hover {
  transform: translateY(-10px);
  }
}

.track-ladder__promise-dot, .track-card__accent {
  font-size: 0px;
  line-height: 0;
  color: transparent;
  overflow-x: hidden;
  overflow-y: hidden;
  text-indent: -9999px;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.track-card--featured .track-card__title {
  color: rgb(122, 20, 24);
}

.track-ladder__notes-text a:hover {
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.programs--stage .section-kicker {
  color: var(--color-kicker-on-dark);
}

.programs--stage .section-intro__title {
  color: rgb(255, 255, 255);
}

.programs--stage .section-intro__subtitle {
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 960px) {
  .programs__tabs.is-offsetting-instant {
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
  }
}

.programs__tab:hover {
  color: rgba(255, 255, 255, 0.88);
}

.programs__tab:focus-visible {
  outline: 2px solid var(--color-kicker-on-dark);
  outline-offset: 2px;
}

.programs__tab.is-active {
  color: rgb(255, 255, 255);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  border-left-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.programs__tab.is-active .programs__tab-index {
  color: var(--color-kicker-on-dark, #ffb4b6);
}

.programs__tab.is-active .programs__tab-label {
  font-weight: var(--fw-bold);
}

.programs__tab.is-active .programs__tab-hint {
  color: rgba(255, 255, 255, 0.68);
}

.programs__tab.is-active .programs__tab-detail {
  max-height: 22rem;
  opacity: 1;
  margin-top: 0.85rem;
}

.programs__tab-includes li {
  position: relative;
  margin: 0px;
  padding: 0.4rem 0px 0.4rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  line-height: 1.35;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.programs__tab-includes li:last-child {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  padding-bottom: 0px;
}

.programs__tab-includes li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.7rem;
  width: 0.35rem;
  height: 0.35rem;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--color-primary, #b31f24);
  box-shadow: rgba(179, 31, 36, 0.22) 0px 0px 0px 3px;
}

.programs__panel.is-active {
  display: flex;
}

@media (min-width: 960px) {
  .programs__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  }
}

.programs__panel[hidden] {
  display: none !important;
}

@media (min-width: 960px) {
  .programs__panel[hidden] {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex !important;
  }
}

.programs__panel-media::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(20, 15, 15, 0.12) 0%, rgba(20, 15, 15, 0.28) 40%, rgba(20, 15, 15, 0.88) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
  z-index: 1;
}

.programs__panel-link--on-dark:hover {
  color: rgb(255, 255, 255);
  border-bottom-color: var(--color-kicker-on-dark, #ffb4b6);
}

.programs__stage, .programs__panels {
  position: relative;
  min-height: 0px;
}

@media (min-width: 960px) {
  .programs__stage, .programs__panels {
  min-height: 20rem;
  }
}

.programs__panel-meta {
  margin: 0.15rem 0px 0px;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--fs-body-sm);
  line-height: 1.45;
  max-width: 40ch;
}

.programs__panel-meta strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--fw-semibold);
}

.programs__panel-link--on-dark:hover, .programs__panel-link--on-dark:focus-visible {
  color: rgb(255, 255, 255);
  border-bottom-color: var(--color-kicker-on-dark);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

@media (prefers-reduced-motion: reduce) {
  .programs__tab, .programs__panel {
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
  }
}

@media (min-width: 960px) {
  .programs__panel.is-active[hidden] {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  display: flex !important;
  }
}

body.has-sticky-cta, .has-sticky-cta, .page-root.has-sticky-cta {
  padding-bottom: 0px;
}

@media (min-width: 900px) {
  body.has-sticky-cta, .has-sticky-cta, .page-root.has-sticky-cta {
  padding-bottom: 0px;
  }
}

body.has-sticky-cta .footer, .has-sticky-cta .footer, .page-root.has-sticky-cta .footer {
  padding-bottom: calc(var(--space-xl) + var(--sticky-cta-height) + var(--safe-bottom) + 0.5rem);
}

@media (min-width: 900px) {
  body.has-sticky-cta .footer, .has-sticky-cta .footer, .page-root.has-sticky-cta .footer {
  padding-bottom: var(--space-xl);
  }
}

.page-root, .page-root.has-sticky-cta, body.has-sticky-cta, .has-sticky-cta {
  padding-bottom: 0px;
}

@media (min-width: 900px) {
  .page-root, .page-root.has-sticky-cta, body.has-sticky-cta, .has-sticky-cta {
  padding-bottom: 0px;
  }
}

body.has-sticky-cta .footer, .page-root.has-sticky-cta .footer, .has-sticky-cta .footer {
  padding-bottom: calc(var(--space-xl) + var(--sticky-cta-height) + var(--safe-bottom) + 0.5rem);
}

@media (min-width: 900px) {
  body.has-sticky-cta .footer, .page-root.has-sticky-cta .footer, .has-sticky-cta .footer {
  padding-bottom: var(--space-xl);
  }
}

.hero .field {
  margin-bottom: 0.55rem;
  row-gap: 0.25rem;
  column-gap: 0.25rem;
}

@media (max-height: 820px) {
  .hero .field {
  margin-bottom: 0.4rem;
  }
}

.hero .contact-form__row {
  row-gap: 0.55rem;
  column-gap: 0.55rem;
}

.hero .contact-form__input, .hero .contact-form__select, .hero .contact-form__textarea {
  padding: 0.65rem 0.8rem;
}

@media (max-height: 820px) {
  .hero .contact-form__input, .hero .contact-form__select, .hero .contact-form__textarea {
  padding: 0.55rem 0.7rem;
  }
}

.hero .contact-form__textarea {
  min-height: 4.25rem;
  max-height: 5.5rem;
  resize: vertical;
}

@media (max-height: 820px) {
  .hero .contact-form__textarea {
  min-height: 3.5rem;
  max-height: 4.25rem;
  }
}

@media (max-width: 768px) {
  .hero .contact-form__textarea {
  min-height: 3.75rem;
  max-height: 4.5rem;
  }
}

.hero .contact-form__submit {
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .hero__actions .btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  }
}

@media (max-width: 375px) {
  .hero__actions .btn {
  width: 100%;
  }
}

.apply-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md, 1rem);
  max-width: 52rem;
  margin: 0 auto var(--space-2xl, 2.5rem);
}

@media (min-width: 720px) {
  .apply-facts {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg, 1.25rem);
  }
}

.apply-fact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm, 0.75rem);
  padding: var(--space-lg, 1.25rem) var(--space-xl, 1.5rem);
  border: 1px solid var(--color-border, #e6ddda);
  border-radius: var(--radius-lg, 1rem);
  background: var(--color-surface, #ffffff);
  box-shadow: var(--shadow-card, 0 8px 24px rgba(20, 15, 15, 0.04));
  text-align: left;
}

.apply-fact__label {
  margin: 0px;
  color: var(--color-primary, #b31f24);
  font-size: var(--fs-label, 0.75rem);
  font-weight: var(--fw-bold, 700);
  letter-spacing: var(--tracking-label, 0.08em);
  text-transform: uppercase;
}

.apply-fact__value {
  margin: 0px;
  color: var(--color-text-primary, #121212);
  font-family: var(--font-display, "Bricolage Grotesque", system-ui, sans-serif);
  font-size: var(--fs-h3, 1.25rem);
  font-weight: var(--fw-bold, 700);
  line-height: 1.25;
}

.apply-fact__points {
  margin: 0px;
  padding: 0px;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 0.45rem;
  column-gap: 0.45rem;
}

.apply-fact__points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-text-secondary, #3d3a3a);
  font-size: var(--fs-body-sm, 0.9375rem);
  line-height: 1.45;
}

.apply-fact__points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0px;
  width: 0.4rem;
  height: 0.4rem;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background: var(--color-primary, #b31f24);
}

.apply-fact__chips {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
  margin-top: 0.15rem;
}

.apply-fact__chips .chip {
  background: var(--color-primary-10, rgba(179, 31, 36, 0.1));
  color: var(--color-primary-deep, #7a1418);
  border: 1px solid var(--color-primary-20, rgba(179, 31, 36, 0.2));
}

.reason-card__list {
  margin: 0px;
  padding: 0px;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 0.4rem;
  column-gap: 0.4rem;
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
}

.reason-card__list li {
  position: relative;
  padding-left: 1.05em;
  line-height: 1.35;
  margin: 0px;
}

.reason-card__list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.55em;
  width: 0.35em;
  height: 0.35em;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--color-primary);
}

.phone-strip {
  margin-top: var(--space-xl);
}

.phone-strip__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--space-lg);
  margin: 0px;
  padding: 0 var(--space-md) var(--space-sm);
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-md);
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .phone-strip__track {
  justify-content: center;
  padding-inline-start: 0px;
  padding-inline-end: 0px;
  overflow-x: visible;
  scroll-snap-type: none;
  }
}

@media (min-width: 1100px) {
  .phone-strip__track {
  gap: var(--space-xl);
  }
}

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

.phone-strip__track::-webkit-scrollbar {
  display: none;
}

.phone-card {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: min(78vw, 15.5rem);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .phone-card {
  width: 15rem;
  scroll-snap-align: unset;
  }
}

@media (min-width: 1100px) {
  .phone-card {
  width: 16.5rem;
  }
}

.phone-card__play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0px;
  padding: 0px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--color-surface-dark);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base) var(--ease-premium),
    box-shadow var(--transition-base) var(--ease-premium);
}

.phone-card__play:hover, .phone-card__play:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@media (prefers-reduced-motion: reduce) {
  .phone-card__play:hover, .phone-card__play:focus-visible {
  transform: none;
  }
}

.phone-card__play:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.phone-card__play:disabled {
  cursor: not-allowed;
  opacity: 0.92;
}

.phone-card__play:disabled:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

.phone-card__play:hover .phone-card__play-icon, .phone-card__play:focus-visible .phone-card__play-icon {
  transform: scale(1.06);
  background: var(--color-primary-hover);
}

.phone-card__play-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.15rem;
  display: none;
}

.phone-card__meta {
  display: flex;
  flex-direction: column;
  row-gap: 0.15rem;
  column-gap: 0.15rem;
  padding-inline-start: 0.15rem;
  padding-inline-end: 0.15rem;
}

.phone-card__name {
  margin: 0px;
  font-family: var(--font-display);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.3;
}

.phone-card__role {
  margin: 0px;
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.phone-strip__cta {
  margin-top: var(--space-xl);
  margin-bottom: 0px;
}

.video-lightbox {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: var(--z-modal, 1200);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: var(--space-md);
}

.video-lightbox[hidden] {
  display: none !important;
}

.video-lightbox__backdrop {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: var(--color-overlay-strong);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 0px;
  cursor: pointer;
}

.video-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: min(100%, 0.5625 * min(85vh, 720px));
  max-width: 100%;
}

.video-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: grid;
  align-items: center;
  justify-items: center;
}

.video-lightbox__close:hover, .video-lightbox__close:focus-visible {
  background: var(--color-background-alt);
}

.video-lightbox__close:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.video-lightbox__frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(85vh, 720px);
  border-radius: var(--radius-lg);
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--color-chrome);
  box-shadow: var(--shadow-lg, 0 16px 48px var(--color-overlay-mid));
}

.video-lightbox__frame video, .video-lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(0, 0, 0);
}

.video-lightbox__caption {
  margin: 0px;
  color: var(--color-text-inverse);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  text-align: center;
  text-wrap-mode: initial;
  text-wrap-style: balance;
}

body.is-video-lightbox-open, .page-root.is-video-lightbox-open {
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .phone-card__play, .phone-card__play-icon {
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
  }
}

.phone-card__play-icon::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-width: 0.42rem;
  border-right-width: 0px;
  border-bottom-width: 0.42rem;
  border-left-width: 0.72rem;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: currentcolor;
  margin-left: 0.12rem;
}

.phone-card__play::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(
    to top,
    var(--color-overlay-mid),
    transparent 45%
  );
  pointer-events: none;
}

.placements__roles {
  justify-content: center;
  max-width: 44rem;
  margin-inline-start: auto;
  margin-inline-end: auto;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  padding: 0px;
}

.placements__train-intro {
  margin-bottom: var(--space-xl);
}

.placements__train-intro .section-intro__title {
  margin-bottom: 0px;
}

.logo-track img:hover {
  opacity: 1;
  filter: none;
}

.logo-track--static .logo-track__group {
  flex-wrap: wrap;
  justify-content: center;
  padding-inline-end: 0px;
  row-gap: 1.75rem;
  column-gap: 3rem;
  width: auto;
}

@media (prefers-reduced-motion: reduce) {
  .logo-track__group + .logo-track__group {
  display: none;
  }
}