:root {
  --black: #070807;
  --black-soft: #0d0f0c;
  --white: #f7f5ef;
  --green: #7da630;
  --green-dark: #597b18;
  --gold: #faae17;
  --orange: #ff7300;
  --red: #e84c43;
  --red-bright: #ff766d;
  --nav-background: rgba(7, 8, 7, 0.92);
  --muted: #a9aaa5;
  --line: rgba(255, 255, 255, 0.14);
  --page-pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --header-height: 6.1rem;
  --max-width: 100rem;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  border-radius: 6px;
  background: #2e302b;
}

::-webkit-scrollbar-thumb:hover {
  background: #43453f;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  box-shadow: 0 0.5rem 1.8rem rgba(0, 0, 0, 0.38);
  justify-content: space-between;
  gap: 2rem;
  padding: 0.7rem var(--page-pad) 1.2rem;
  border-bottom: 0;
  background: var(--nav-background);
  backdrop-filter: blur(10px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--green), var(--gold));
  content: "";
  pointer-events: none;
}

.brand {
  display: block;
  width: clamp(8.5rem, 12vw, 10.5rem);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0.15rem;
  background: transparent;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 1.1vw, 0.85rem);
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--red);
  transition: color 180ms ease, background 200ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.22rem;
  left: 0.7rem;
  height: 2px;
  border-radius: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(232, 76, 67, 0.1);
  color: var(--red-bright);
}

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

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a.nav-contact {
  padding: 0.58rem 1.15rem;
  border: 1px solid rgba(232, 76, 67, 0.66);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 76, 67, 0.7), rgba(232, 76, 67, 0.16));
  color: var(--white);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.site-nav a.nav-contact::after {
  display: none;
}

.site-nav a.nav-contact:hover,
.site-nav a.nav-contact:focus-visible,
.site-nav a.nav-contact[aria-current="page"] {
  border-color: var(--red-bright);
  background: var(--red-bright);
  box-shadow: 0 0.45rem 1.4rem rgba(255, 118, 109, 0.2);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.9rem);
  min-width: 0;
}

.site-search {
  position: relative;
  flex: 0 0 auto;
}

.site-search__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.75rem;
  height: 2.35rem;
  padding: 0;
  border: 2.5px solid rgba(232, 76, 67, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 220ms ease;
}

.site-search__toggle svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search__toggle:hover,
.site-search__toggle:focus-visible,
.site-search.is-open .site-search__toggle {
  background: rgba(232, 76, 67, 0.1);
  border-color: var(--red-bright);
  color: var(--red-bright);
}

.site-search__backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.site-search.is-open .site-search__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.site-search__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 21;
  width: min(28rem, calc(100vw - 2 * var(--page-pad)));
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(13, 15, 12, 0.98);
  box-shadow: 0 1.25rem 2.8rem rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-search.is-open .site-search__panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

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

.site-search__field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(232, 76, 67, 0.35);
  border-radius: 0.25rem;
  background: rgba(7, 8, 7, 0.85);
}

.site-search__field:focus-within {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 1px rgba(255, 118, 109, 0.25);
}

.site-search__field svg {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search__input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  outline: none;
}

.site-search__input::placeholder {
  color: rgba(169, 170, 165, 0.75);
}

.site-search__hint {
  margin: 0.55rem 0.15rem 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.site-search__results {
  display: grid;
  gap: 0.2rem;
  max-height: min(24rem, 58vh);
  margin: 0.55rem 0 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.site-search__result {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.site-search__result:hover,
.site-search__result:focus-visible,
.site-search__result.is-active {
  border-color: rgba(232, 76, 67, 0.35);
  background: rgba(232, 76, 67, 0.1);
  outline: none;
}

.site-search__result-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-search__result-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.site-search__result-blurb {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-search__empty {
  margin: 0.7rem 0.15rem 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-search__empty a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

main {
  min-width: 0;
}

.hero,
.page-hero {
  --hero-glow: rgba(125, 166, 48, 0.1);
  position: relative;
  display: flex;
  min-height: clamp(34rem, 76vh, 54rem);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, var(--hero-glow), transparent 38%);
}

.home-hero,
.page-hero--image {
  isolation: isolate;
}

.home-hero::before,
.page-hero--image::before {
  --home-orbit-size: clamp(30rem, 58vw, 58rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: var(--home-orbit-size);
  height: var(--home-orbit-size);
  border: 1px solid rgba(125, 166, 48, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 166, 48, 0.14), rgba(125, 166, 48, 0.045) 48%, transparent 72%);
  box-shadow:
    0 0 0 clamp(3rem, 5vw, 5rem) rgba(125, 166, 48, 0.035),
    0 0 0 clamp(6rem, 10vw, 10rem) rgba(250, 174, 23, 0.025);
  content: "";
  pointer-events: none;
  transform: translate(-34.5%, -44.8%);
}

.home-hero::after,
.page-hero::after,
.profile-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--green), var(--gold));
  content: "";
  pointer-events: none;
}

.profile-hero::after {
  display: none;
}

.home-hero::after,
.page-hero--image::after {
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.home-hero .hero-grid {
  z-index: 2;
  grid-template-columns: minmax(0, min(74rem, 1.5fr)) minmax(8rem, 0.5fr);
  gap: clamp(1rem, 3vw, 4rem);
}

.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
}

.home-hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: auto;
  overflow: hidden;
  background: var(--black);
  pointer-events: none;
}

.home-hero__visual::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 78% 115% at 100% 50%,
    transparent 0%,
    rgba(7, 8, 7, 0.08) 38%,
    rgba(7, 8, 7, 0.48) 58%,
    rgba(7, 8, 7, 0.9) 76%,
    var(--black) 88%
  );
  content: "";
  pointer-events: none;
}

.home-hero {
  --hero-image-shift: 28rem;
}

.home-hero .home-hero__visual img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: auto;
  height: 100%;
  max-width: none;
  filter: blur(8px);
  object-fit: contain;
  object-position: right center;
  opacity: 0.26;
  transform: translateX(var(--hero-image-shift));
  transform-origin: right center;
}

@media (max-width: 1440px) {
  .home-hero {
    --hero-image-shift: 30rem;
  }
}

@media (max-width: 1200px) {
  .home-hero {
    --hero-image-shift: 34rem;
  }
}

@media (max-width: 1000px) {
  .home-hero {
    --hero-image-shift: 38rem;
  }
}

.home-hero__visual img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: auto;
  height: 100%;
  max-width: none;
  filter: blur(8px);
  object-fit: contain;
  object-position: right center;
  opacity: 0.26;
  transform: translateX(24%);
  transform-origin: right center;
}

.page-hero--image .home-hero__visual img {
  width: 120%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image .hero-grid {
  z-index: 2;
}

.page-hero > .home-hero__visual {
  animation: none;
}

.page-hero > .hero-grid {
  animation: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.75rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  font-size: clamp(4rem, 9.5vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead,
.page-intro {
  max-width: 46rem;
  margin-bottom: 2rem;
  color: #c7c8c3;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.hero-lead {
  max-width: 70rem;
}

.home-hero .hero-lead {
  max-width: min(70rem, 100%);
  width: 100%;
}

.text-link,
.inline-link,
.back-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link,
.inline-link {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
}

.text-link span,
.inline-link span,
.card-link span {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.inline-link:hover span,
.card-link:hover span,
.profile-card:hover .card-link span,
.profile-card:focus-visible .card-link span {
  transform: translate(0.2rem, -0.2rem);
}

.text-link:hover,
.text-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--green);
}

.section-number,
.step-detail__number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pathway-section {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 36rem) minmax(0, 62rem);
  justify-content: center;
  align-items: start;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  padding: clamp(5rem, 8vw, 9rem) var(--page-pad);
  content-visibility: auto;
  contain-intrinsic-size: auto 48rem;
}

.pathway-section > * {
  min-width: 0;
}

.pathway-copy {
  display: grid;
  gap: 1rem;
  width: min(100%, 42rem);
  max-width: 42rem;
  justify-self: end;
  padding-top: clamp(1.25rem, 3vw, 3.5rem);
}

.pathway-copy h2,
.about-band h2,
.step-detail h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.pathway-copy p {
  max-width: 35rem;
  margin-bottom: 0;
  color: #c7c8c3;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
}

.pathway-point {
  position: relative;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  background: #0c0e0b;
}

.pathway-point .section-number {
  margin-bottom: 0.8rem;
}

.pathway-point h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2.25vw, 2.15rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.pathway-point .inline-link {
  margin-top: 1.5rem;
}

.pathway-point--lead {
  padding: 0 0 clamp(2rem, 4vw, 3.5rem);
  border: 0;
  background: transparent;
}

.pathway-point--lead h2 {
  font-size: clamp(2.35rem, 3.8vw, 4.4rem);
}

.pathway-point--lead p {
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.pathway-quadrants {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--red);
  background: var(--line);
  container-type: inline-size;
}

.pathway-quadrants::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--red) calc(50% - 0.5px), var(--red) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), var(--red) calc(50% - 0.5px), var(--red) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  content: "";
  pointer-events: none;
}

.pathway-quadrants .pathway-point {
  min-width: 0;
  min-height: 0;
  padding: clamp(0.65rem, 3.2cqw, 1.35rem);
  overflow: hidden;
  border: 0;
}

.pathway-quadrants .pathway-point .section-number {
  margin-bottom: clamp(0.35rem, 1.6cqw, 0.7rem);
  font-size: clamp(0.48rem, 1.75cqw, 0.62rem);
  letter-spacing: 0.1em;
}

.pathway-quadrants .pathway-point h3 {
  margin-bottom: clamp(0.35rem, 1.6cqw, 0.7rem);
  font-size: clamp(0.92rem, 4cqw, 1.6rem);
  line-height: 0.98;
}

.pathway-quadrants .pathway-point p {
  font-size: clamp(0.58rem, 2.35cqw, 0.88rem);
  line-height: 1.28;
}

.pathway-quadrants .pathway-point .inline-link {
  margin-top: clamp(0.45rem, 1.8cqw, 0.85rem);
  font-size: clamp(0.5rem, 1.8cqw, 0.68rem);
  letter-spacing: 0.08em;
}

.pathway-quadrants .pathway-point--outcomes h3 {
  font-size: clamp(0.8rem, 3.35cqw, 1.35rem);
}

.pathway-quadrants .pathway-point--outcomes p {
  font-size: clamp(0.5rem, 2cqw, 0.78rem);
  line-height: 1.2;
}

.pathway-contact-link {
  justify-self: start;
  margin-top: 0.5rem;
}

.pathway-point--lead .inline-link:hover,
.pathway-point--lead .inline-link:focus-visible,
.pathway-point--lead .inline-link:hover span,
.pathway-point--lead .inline-link:focus-visible span,
.pathway-contact-link:hover,
.pathway-contact-link:focus-visible,
.pathway-contact-link:hover span,
.pathway-contact-link:focus-visible span {
  color: var(--red);
}

.pathway-point--operations {
  background:
    linear-gradient(135deg, rgba(125, 166, 48, 0.18) 0%, rgba(125, 166, 48, 0) 100%),
    #0c0e0b;
  box-shadow: inset 0.3rem 0 var(--green);
}

.pathway-point--connections {
  background:
    linear-gradient(135deg, rgba(125, 166, 48, 0.28) 0%, rgba(125, 166, 48, 0.055) 100%),
    #090b08;
}

.pathway-point--culture {
  border-color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.72) 100%),
    var(--black);
  color: var(--black);
}

.pathway-point--culture .section-number {
  color: var(--green-dark);
}

.pathway-point--culture p {
  color: #4c4e49;
}

.pathway-point--outcomes {
  border-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(250, 174, 23, 1) 0%, rgba(250, 174, 23, 0.62) 100%),
    var(--black);
  color: var(--black);
}

.pathway-point--outcomes .section-number,
.pathway-point--outcomes p,
.pathway-point--outcomes .inline-link,
.pathway-point--outcomes .inline-link span {
  color: #3e3211;
}

.wheel-column {
  width: min(100%, 68rem);
  justify-self: start;
}

.wheel-intro {
  max-width: 37rem;
  margin: 0 0 2rem auto;
  text-align: right;
}

.wheel-intro h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.wheel-intro p {
  max-width: 34rem;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.25vw, 1.08rem);
}

.wheel-frame {
  position: relative;
  width: 100%;
}

.wheel-frame::before {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 166, 48, 0.08), transparent 64%);
  content: "";
  pointer-events: none;
}

.wheel-stage {
  position: relative;
  width: 100%;
  background: transparent;
}

.wheel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  container-type: inline-size;
}

svg.wheelsvg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.seg {
  cursor: pointer;
  outline: none;
}

.seg:focus,
.seg:focus-visible {
  outline: none;
}

.seg .band,
.seg .wedge-hover {
  transition: fill 420ms cubic-bezier(0.22, 1, 0.36, 1), fill-opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.seg .wedge-hover {
  fill: var(--red);
  fill-opacity: 0;
  pointer-events: none;
}

.seg:hover .band,
.seg:focus-visible .band,
.seg.is-active .band {
  fill: var(--red);
}

.seg:hover .wedge-hover,
.seg:focus-visible .wedge-hover,
.seg.is-active .wedge-hover {
  fill: var(--red);
  fill-opacity: 0.68;
}

.numlink {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 6.8%;
  height: auto;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: clamp(1px, 0.16vw, 2.5px) solid var(--white);
  border-radius: 50%;
  background: var(--nav-background);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: border-color 420ms cubic-bezier(0.22, 1, 0.36, 1), background 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.numlink span {
  color: var(--white);
  font-size: clamp(0.62rem, 1.45vw, 1.4rem);
  font-weight: 800;
  line-height: 1;
}

.numlink:hover,
.numlink:focus-visible,
.numlink.is-active {
  border-color: var(--red);
  background: var(--nav-background);
  outline: none;
}

.numlink:focus,
.numlink:focus-visible {
  outline: none;
}

.numlink[data-i="0"] { left: 58.18683%; top: 8.84205%; }
.numlink[data-i="1"] { left: 73.31411%; top: 15.10797%; }
.numlink[data-i="2"] { left: 84.89203%; top: 26.68589%; }
.numlink[data-i="3"] { left: 91.15795%; top: 41.81317%; }
.numlink[data-i="4"] { left: 91.15795%; top: 58.18683%; }
.numlink[data-i="5"] { left: 84.89203%; top: 73.31411%; }
.numlink[data-i="6"] { left: 73.31411%; top: 84.89203%; }
.numlink[data-i="7"] { left: 58.18683%; top: 91.15795%; }
.numlink[data-i="8"] { left: 41.81317%; top: 91.15795%; }
.numlink[data-i="9"] { left: 26.68589%; top: 84.89203%; }
.numlink[data-i="10"] { left: 15.10797%; top: 73.31411%; }
.numlink[data-i="11"] { left: 8.84205%; top: 58.18683%; }
.numlink[data-i="12"] { left: 8.84205%; top: 41.81317%; }
.numlink[data-i="13"] { left: 15.10797%; top: 26.68589%; }
.numlink[data-i="14"] { left: 26.68589%; top: 15.10797%; }
.numlink[data-i="15"] { left: 41.81317%; top: 8.84205%; }

.wheel-start-label {
  position: absolute;
  top: 3.2%;
  left: 58.18683%;
  z-index: 4;
  color: var(--gold);
  font-size: clamp(0.44rem, 1.2cqw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lab {
  position: absolute;
  z-index: 2;
  width: 7.8% !important;
  color: var(--white);
  font-size: 0.5rem !important;
  font-size: 0.78cqw !important;
  font-weight: 800;
  line-height: 1.08;
  pointer-events: none;
  text-align: center;
  text-wrap: pretty;
  transform: translate(-50%, -50%);
}

.lab[data-i="0"] { left: 55.19080%; top: 23.90411%; }
.lab[data-i="1"] { left: 64.78214%; top: 27.87697%; }
.lab[data-i="2"] { left: 72.12303%; top: 35.21786%; }
.lab[data-i="3"] { left: 76.09589%; top: 44.80920%; }
.lab[data-i="4"] { left: 76.09589%; top: 55.19080%; }
.lab[data-i="5"] { left: 72.12303%; top: 64.78214%; }
.lab[data-i="6"] { left: 64.78214%; top: 72.12303%; }
.lab[data-i="7"] { left: 55.19080%; top: 76.09589%; }
.lab[data-i="8"] { left: 44.80920%; top: 76.09589%; }
.lab[data-i="9"] { left: 35.21786%; top: 72.12303%; }
.lab[data-i="10"] { left: 27.87697%; top: 64.78214%; }
.lab[data-i="11"] { left: 23.90411%; top: 55.19080%; }
.lab[data-i="12"] { left: 23.90411%; top: 44.80920%; }
.lab[data-i="13"] { left: 27.87697%; top: 35.21786%; }
.lab[data-i="14"] { left: 35.21786%; top: 27.87697%; }
.lab[data-i="15"] { left: 44.80920%; top: 23.90411%; }

.lab[data-i="0"],
.lab[data-i="9"],
.lab[data-i="10"],
.lab[data-i="12"],
.lab[data-i="14"],
.lab[data-i="15"] {
  font-size: 0.94cqw !important;
}

.lab[data-i="2"] {
  font-size: 1.02cqw !important;
}

.lab[data-i="1"],
.lab[data-i="3"],
.lab[data-i="4"],
.lab[data-i="5"],
.lab[data-i="7"],
.lab[data-i="8"],
.lab[data-i="11"],
.lab[data-i="13"] {
  font-size: 0.76cqw !important;
}

.lab[data-i="6"] {
  font-size: 0.68cqw !important;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 22.5%;
  height: auto;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(125, 166, 48, 0.32), rgba(250, 174, 23, 0.32) 50%, rgba(125, 166, 48, 0.32)),
    var(--nav-background);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), background 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.center:hover,
.center:focus-visible {
  border-color: var(--red);
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.05);
  outline: none;
}

.center:focus,
.center:focus-visible {
  outline: none;
}

.center img {
  width: 82%;
  height: auto;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.about-band {
  display: grid;
  min-height: clamp(31rem, 66vh, 47rem);
  grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 10rem);
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.about-band__label,
.about-band__copy {
  width: 100%;
  max-width: var(--max-width);
}

.about-band__copy {
  max-width: 68rem;
}

.about-band h2 {
  max-width: 13ch;
}

.about-band p {
  max-width: 51rem;
  margin: 0;
  color: #cccdc8;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.about-band--operations {
  background:
    linear-gradient(90deg, rgba(125, 166, 48, 0.09), transparent 48%),
    var(--black-soft);
}

.about-band--connections {
  background: var(--green);
  color: #091000;
}

.about-band--connections .section-number,
.about-band--connections p {
  color: #172400;
}

.about-band--connections .section-number {
  padding-left: 1rem;
  border-left: 4px solid var(--black);
}

.about-band--culture {
  background: var(--white);
  color: #10110f;
}

.about-band--culture .section-number {
  color: var(--green-dark);
}

.about-band--culture p {
  color: #4c4e49;
}

.about-band--outcomes {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: #111009;
}

.about-band--outcomes::after {
  position: absolute;
  right: -10rem;
  bottom: -16rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  content: "";
}

.about-band--outcomes .section-number,
.about-band--outcomes p {
  color: #3e3211;
}

.about-band--outcomes .about-band__copy {
  position: relative;
  z-index: 1;
}

.inline-link--dark {
  margin-top: 2rem;
  color: var(--black);
}

.inline-link--dark span {
  color: var(--black);
}

.inline-link--dark:hover,
.inline-link--dark:focus-visible {
  color: var(--black);
}

.page-hero {
  min-height: clamp(34rem, 76vh, 54rem);
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.7rem, 8vw, 7.6rem);
}

.overview-hero {
  --hero-glow: rgba(125, 166, 48, 0.14);
}

.overview-step-nav {
  position: fixed;
  top: 50%;
  right: clamp(0.35rem, 1.1vw, 1rem);
  z-index: 16;
  display: grid;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  gap: 0.15rem;
  padding: 0.45rem 0.35rem;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background: rgba(7, 8, 7, 0.9);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  scrollbar-width: thin;
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .overview-step-nav {
    backdrop-filter: none;
  }
}

.overview-step-nav a {
  display: grid;
  width: 1.82rem;
  border: 1px solid transparent;
  border-radius: 999px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.overview-step-nav a:hover,
.overview-step-nav a:focus-visible,
.overview-step-nav a.is-active {
  border-color: var(--gold);
  background: rgba(250, 174, 23, 0.2);
  color: var(--gold);
  outline: 0;
}

.overview-page .page-hero,
.overview-page .step-detail {
  padding-right: max(var(--page-pad), 4.25rem);
}

.steps-list {
  counter-reset: steps;
}

.overview-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.step-detail {
  --step-accent: var(--green);
  --step-accent-soft: rgba(125, 166, 48, 0.1);
  position: relative;
  display: grid;
  min-height: clamp(38rem, 78vh, 57rem);
  grid-template-areas: "step-header step-content step-graphic";
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.2fr) minmax(9rem, 0.38fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  content-visibility: auto;
  contain-intrinsic-size: auto 52rem;
}

.step-detail:nth-child(even) {
  --step-accent: var(--gold);
  --step-accent-soft: rgba(250, 174, 23, 0.1);
}

.step-detail:nth-child(4n + 2) {
  background: #0c0e0a;
}

.step-detail:nth-child(4n + 3) {
  background: linear-gradient(110deg, rgba(125, 166, 48, 0.1), transparent 45%);
}

.step-detail:nth-child(4n) {
  background: linear-gradient(110deg, rgba(250, 174, 23, 0.08), transparent 45%);
}

.step-detail::after {
  position: absolute;
  top: 2rem;
  right: var(--page-pad);
  color: rgba(255, 255, 255, 0.035);
  content: attr(data-step);
  font-size: clamp(9rem, 24vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

.step-detail {
  transition: box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-detail:target,
.step-detail.is-active {
  box-shadow: inset 0.45rem 0 0 var(--gold);
}

.step-detail__header,
.step-detail__content,
.step-detail__graphic {
  position: relative;
  z-index: 1;
}

.step-detail__header {
  grid-area: step-header;
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.step-detail .step-detail__number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--step-accent);
}

.step-detail .step-detail__number::before {
  width: 2.75rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--step-accent);
  content: "";
}

.step-detail h2 {
  max-width: 16ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(1.9rem, 3.7vw, 3.5rem);
}

.step-detail__content {
  grid-area: step-content;
  max-width: 48rem;
  padding-top: 2.1rem;
}

.step-detail__content p {
  max-width: 42rem;
  color: var(--muted);
}

.step-detail__content .step-lead {
  padding-left: clamp(1rem, 1.8vw, 1.5rem);
  border-left: 3px solid var(--step-accent);
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.42;
}

@property --graphic-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.step-detail__graphic {
  --graphic-progress: 0;
  grid-area: step-graphic;
  display: grid;
  width: min(100%, 15rem);
  border: 1px solid color-mix(
    in srgb,
    var(--gold) calc(var(--graphic-progress) * 100%),
    color-mix(in srgb, var(--step-accent) 48%, transparent)
  );
  border-radius: 50%;
  aspect-ratio: 1;
  align-self: center;
  justify-self: start;
  margin-left: clamp(-6rem, -5vw, -3rem);
  place-items: center;
  background: radial-gradient(
    circle,
    color-mix(
      in srgb,
      rgba(250, 174, 23, 0.14) calc(var(--graphic-progress) * 100%),
      var(--step-accent-soft)
    ),
    transparent 72%
  );
  box-shadow:
    0 0 0 0.65rem color-mix(
      in srgb,
      rgba(250, 174, 23, 0.055) calc(var(--graphic-progress) * 100%),
      rgba(255, 255, 255, 0.015)
    ),
    0 0 3rem color-mix(
      in srgb,
      rgba(250, 174, 23, 0.12) calc(var(--graphic-progress) * 100%),
      transparent
    );
  color: color-mix(in srgb, var(--gold) calc(var(--graphic-progress) * 100%), var(--step-accent));
  transition:
    --graphic-progress 900ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 900ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 900ms cubic-bezier(0.22, 1, 0.36, 1),
    color 900ms cubic-bezier(0.22, 1, 0.36, 1),
    background 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-detail__graphic svg {
  width: 66%;
  height: 66%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.step-detail:target .step-detail__graphic,
.step-detail.is-active .step-detail__graphic {
  --graphic-progress: 1;
  border-color: var(--gold);
  background: radial-gradient(circle, rgba(250, 174, 23, 0.14), transparent 72%);
  box-shadow:
    0 0 0 0.65rem rgba(250, 174, 23, 0.055),
    0 0 3rem rgba(250, 174, 23, 0.12);
  color: var(--gold);
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--green);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top span {
  font-size: 1.25rem;
}

.page-hero--management {
  --hero-glow: rgba(125, 166, 48, 0.1);
}

.profile-grid {
  display: grid;
  width: 100%;
  max-width: var(--max-width);
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
}

.profile-card {
  --profile-accent: var(--green);
  --profile-accent-soft: rgba(125, 166, 48, 0.09);
  --profile-panel-height: clamp(24rem, 27vw, 28rem);
  position: relative;
  display: grid;
  width: 100%;
  height: auto;
  min-height: 0;
  grid-template-areas: "copy portrait";
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto;
  align-items: stretch;
  overflow: visible;
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, var(--profile-accent-soft), transparent 30%),
    rgba(12, 13, 11, 0.34);
  transform-origin: center center;
  transition:
    border-color 220ms ease,
    transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.profile-card::after {
  display: none;
}

.profile-card--gold {
  --profile-accent: var(--gold);
  --profile-accent-soft: rgba(250, 174, 23, 0.09);
}

.profile-card:hover,
.profile-card:focus-visible,
.reveal-enabled .profile-card[data-reveal].is-visible:hover,
.reveal-enabled .profile-card[data-reveal].is-visible:focus-visible {
  outline: 0;
  z-index: 4;
  border-color: var(--green);
  transform: scale(1.01);
}

.profile-card--gold:hover,
.profile-card--gold:focus-visible,
.reveal-enabled .profile-card--gold[data-reveal].is-visible:hover,
.reveal-enabled .profile-card--gold[data-reveal].is-visible:focus-visible {
  border-color: var(--gold);
}

.profile-portrait {
  position: relative;
  z-index: 1;
  grid-area: portrait;
  display: block;
  width: calc(var(--profile-panel-height) * 1200 / 1494);
  max-width: 100%;
  height: var(--profile-panel-height);
  min-height: var(--profile-panel-height);
  align-self: stretch;
  justify-self: end;
  margin: 0 0 0 clamp(-1.15rem, -2.2vw, -0.55rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.profile-portrait--dean,
.profile-portrait--jillian {
  aspect-ratio: 1200 / 1494;
}

.profile-portrait::after {
  display: none;
}

.profile-portrait > picture,
.profile-hero__portrait--photo > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.leader-card > picture {
  display: block;
  min-width: 0;
  height: 100%;
  min-height: 15rem;
}

.leader-card > picture img {
  display: block;
}

.profile-portrait__image,
.profile-hero__portrait--photo img,
.leader-card img {
  -webkit-mask-image:
    radial-gradient(
      ellipse 86% 118% at 44% 0%,
      #000 0%,
      #000 42%,
      rgba(0, 0, 0, 0.72) 52%,
      rgba(0, 0, 0, 0.4) 62%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.06) 82%,
      rgba(0, 0, 0, 0.015) 92%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      transparent 1%,
      rgba(0, 0, 0, 0.28) 6%,
      rgba(0, 0, 0, 0.72) 10%,
      #000 15%,
      #000 85%,
      rgba(0, 0, 0, 0.72) 90%,
      rgba(0, 0, 0, 0.28) 94%,
      transparent 99%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      transparent 0%,
      transparent 1%,
      rgba(0, 0, 0, 0.28) 7%,
      rgba(0, 0, 0, 0.72) 12%,
      #000 18%,
      #000 100%
    );
  -webkit-mask-composite: source-in, source-in;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-backface-visibility: hidden;
  mask-image:
    radial-gradient(
      ellipse 86% 118% at 44% 0%,
      #000 0%,
      #000 42%,
      rgba(0, 0, 0, 0.72) 52%,
      rgba(0, 0, 0, 0.4) 62%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0.06) 82%,
      rgba(0, 0, 0, 0.015) 92%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      transparent 1%,
      rgba(0, 0, 0, 0.28) 6%,
      rgba(0, 0, 0, 0.72) 10%,
      #000 15%,
      #000 85%,
      rgba(0, 0, 0, 0.72) 90%,
      rgba(0, 0, 0, 0.28) 94%,
      transparent 99%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      transparent 0%,
      transparent 1%,
      rgba(0, 0, 0, 0.28) 7%,
      rgba(0, 0, 0, 0.72) 12%,
      #000 18%,
      #000 100%
    );
  mask-mode: alpha;
  mask-composite: intersect, intersect;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.profile-portrait__image {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 400ms ease;
}

.profile-card .profile-portrait {
  overflow: visible;
}

.profile-card:hover .profile-portrait__image,
.profile-card:focus-visible .profile-portrait__image {
  filter: saturate(1.1);
  transform: translateZ(0);
}

.profile-portrait__image--dean {
  object-fit: cover;
  object-position: left center;
}

.profile-portrait__image--jillian {
  object-position: center;
}

.profile-card:hover .profile-portrait__image,
.profile-card:focus-visible .profile-portrait__image {
  opacity: 1;
}

.profile-portrait__placeholder {
  position: absolute;
  top: clamp(1rem, 1.8vw, 1.5rem);
  left: clamp(1.15rem, 2.5vw, 2rem);
  z-index: 2;
  color: var(--profile-accent);
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.profile-portrait__initials {
  position: relative;
  z-index: 1;
  color: transparent;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.72;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(1.5px, 0.18vw, 3px) var(--profile-accent);
  paint-order: stroke fill;
}

.profile-copy {
  position: relative;
  z-index: 3;
  grid-area: copy;
  display: flex;
  width: 100%;
  min-height: var(--profile-panel-height);
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.7rem, 2.5vw, 2.25rem);
  padding-right: clamp(0.75rem, 1.2vw, 1.15rem);
  border: 0;
  background: transparent;
}

.profile-card > .profile-copy {
  border-bottom: 0;
}

.card-heading,
.contact-item > span {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-copy h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.profile-copy .role {
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card:not(.profile-card--gold) .profile-copy .role {
  color: var(--green);
}

.profile-card--gold .profile-copy .role {
  color: var(--gold);
}

.profile-copy > p:last-of-type {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.profile-brief {
  display: block;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 36rem;
  margin: 0 0 1.35rem;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (min-width: 881px) {
  .profile-brief {
    width: calc(100% + clamp(1.75rem, 3.5vw, 3.25rem));
    max-width: calc(36rem + clamp(1.75rem, 3.5vw, 3.25rem));
  }
}

.profile-brief p {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  line-height: 1.65;
}

.card-link {
  margin-top: auto;
  color: var(--white);
}

@media (min-width: 1121px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    grid-template-columns: minmax(0, 1.05fr) minmax(10rem, 0.72fr);
  }

  .profile-portrait {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 1200 / 1494;
    justify-self: end;
    align-self: stretch;
    margin-left: clamp(-1.25rem, -2.4vw, -0.6rem);
  }

  .profile-portrait__image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .profile-portrait__image--dean {
    object-fit: cover;
    object-position: left center;
  }

  .profile-copy {
    padding: clamp(1.25rem, 1.7vw, 1.8rem);
    padding-right: clamp(0.65rem, 1.1vw, 1rem);
  }

  .profile-copy .card-heading {
    margin-bottom: 0.8rem;
  }

  .profile-copy h2 {
    font-size: clamp(2.15rem, 2.8vw, 3.25rem);
  }

  .profile-copy .role {
    margin-bottom: 1rem;
  }

  .profile-copy .card-link {
    font-size: 0.78rem;
  }
}

.profile-hero {
  --profile-accent: var(--green);
  --profile-accent-soft: rgba(125, 166, 48, 0.09);
  --hero-glow: rgba(125, 166, 48, 0.1);
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 36rem) minmax(0, 34rem);
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: visible;
  isolation: isolate;
  padding: clamp(2.5rem, 5vw, 4rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(240deg, var(--hero-glow), transparent 38%);
}

.profile-hero--gold {
  --profile-accent: var(--gold);
  --profile-accent-soft: rgba(250, 174, 23, 0.09);
  --hero-glow: rgba(250, 174, 23, 0.1);
}

.profile-hero__portrait {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: transparent;
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.68;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(2px, 0.22vw, 4px) var(--profile-accent);
  paint-order: stroke fill;
}

.profile-hero__portrait--photo {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin: 0 0 0 clamp(-3rem, -6vw, -1.5rem);
  overflow: visible;
  padding: 0;
  border: 0;
  justify-self: center;
}

.profile-hero__portrait--photo img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.profile-hero__portrait--photo::after {
  display: none;
}

.profile-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  justify-self: end;
  width: 100%;
  min-width: 0;
  padding: clamp(1rem, 2vw, 2rem);
  padding-right: 0;
  text-align: left;
}

.profile-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6.5vw, 6.5rem);
}

.profile-hero__copy .profile-brief {
  width: calc(100% + clamp(2rem, 5vw, 5.5rem));
  max-width: calc(52rem + clamp(2rem, 5vw, 5.5rem));
  margin-bottom: 0;
}

.profile-hero__copy .profile-brief p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.profile-hero__copy > p {
  max-width: 52rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
}

.back-link {
  align-self: flex-start;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 200ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  background: rgba(232, 76, 67, 0.1);
  color: var(--red-bright);
}

.profile-narrative {
  --profile-accent: var(--green);
  position: relative;
  z-index: 0;
  min-height: 70vh;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad) clamp(7rem, 12vw, 12rem);
  background:
    linear-gradient(120deg, rgba(125, 166, 48, 0.06), transparent 34rem),
    var(--black);
}

.profile-narrative--gold {
  --profile-accent: var(--gold);
  background:
    linear-gradient(120deg, rgba(250, 174, 23, 0.055), transparent 34rem),
    var(--black);
}

.profile-narrative__inner {
  width: min(100%, 68rem);
  margin: 0 auto;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 0;
}

.profile-narrative__inner > .section-number {
  color: var(--profile-accent);
}

.profile-narrative__copy {
  max-width: 60rem;
}

.profile-narrative__copy p {
  margin-bottom: clamp(1.35rem, 2.5vw, 2rem);
  color: #c7c8c3;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.profile-narrative__copy p:first-child {
  padding-left: clamp(1rem, 1.8vw, 1.5rem);
  border-left: 3px solid var(--profile-accent);
  color: var(--white);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.58;
}

.profile-narrative__copy p:last-child {
  margin-bottom: 0;
}

.amity-model {
  --model-green: #65b676;
  --model-green-soft: #062414;
  padding: clamp(5rem, 8vw, 8rem) var(--page-pad) clamp(3rem, 5vw, 5rem);
  background: var(--black);
}

.amity-model__header {
  width: min(100%, 76rem);
  margin: 0 auto clamp(4rem, 7vw, 7rem);
  text-align: center;
}

.model-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: #d8d8d4;
  font-size: clamp(0.65rem, 0.9vw, 0.82rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.model-kicker span {
  width: clamp(2.5rem, 5vw, 4.5rem);
  height: 2px;
  background: #d8d8d4;
}

.amity-model__header h1 {
  max-width: 16ch;
  margin-right: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: auto;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.amity-model__header p {
  max-width: 67rem;
  margin: 0 auto;
  color: #c0c1bd;
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.model-flow {
  display: grid;
  width: min(100%, 100rem);
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.3fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.model-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.8rem, 3vw, 3rem);
  border: 1px solid;
  border-radius: clamp(1.1rem, 2vw, 1.8rem);
}

.model-panel--history {
  border-color: rgba(101, 149, 216, 0.3);
  background: var(--model-blue-soft);
}

.model-panel--future {
  border-color: rgba(101, 182, 118, 0.3);
  background: var(--model-green-soft);
}

.model-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: clamp(0.58rem, 0.75vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.model-panel--history .model-panel__meta span:first-child {
  color: var(--model-blue);
}

.model-panel--future .model-panel__meta span:first-child {
  color: var(--gold);
}

.model-panel--future .model-panel__meta span:last-child {
  color: var(--model-green);
}

.model-panel h2 {
  max-width: 11ch;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: var(--model-blue);
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.model-panel--future h2 {
  align-self: flex-end;
  color: var(--model-green);
  text-align: right;
}

.model-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.3rem);
  margin-top: auto;
}

.model-card {
  min-height: clamp(12rem, 15vw, 14.5rem);
  padding: clamp(1.25rem, 2vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(4, 8, 14, 0.46);
}

.model-panel--future .model-card {
  background: rgba(3, 18, 9, 0.62);
}

.model-card__number {
  display: grid;
  width: 2.9rem;
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 0.7rem;
  aspect-ratio: 1;
  place-items: center;
  background: #4f86cf;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.model-panel--future .model-card__number {
  background: #4ba962;
}

.model-card h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.model-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  line-height: 1.48;
}

.model-bridge {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: 1rem 0;
}

.model-bridge__disc {
  display: grid;
  width: min(100%, 13rem);
  border-radius: 50%;
  aspect-ratio: 1;
  place-content: center;
  place-items: center;
  background: var(--white);
  box-shadow: 0 0 4rem rgba(255, 255, 255, 0.055);
  color: var(--black);
  text-align: center;
}

.model-bridge__disc strong {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.model-bridge__disc span {
  width: 2.2rem;
  height: 2px;
  margin: 1.2rem 0 0.8rem;
  background: rgba(7, 8, 7, 0.24);
}

.model-bridge__disc small {
  font-size: 0.76rem;
  font-weight: 800;
}

.model-bridge__note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.model-bridge__note--transfer {
  color: var(--red);
}

.model-bridge__note--means {
  color: var(--gold);
}

.model-bridge__note > span:last-child,
.model-bridge__note--means > span:first-child {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.model-bridge__note--means > span:last-child {
  font-size: inherit;
  letter-spacing: 0.14em;
}

.model-continuum {
  display: grid;
  width: min(100%, 100rem);
  min-height: 5.8rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #11141a;
  font-size: clamp(0.78rem, 1.2vw, 1.05rem);
}

.model-continuum__history {
  color: var(--model-blue);
  text-align: right;
}

.model-continuum__future {
  color: var(--model-green);
}

.model-continuum__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-continuum__brand i {
  width: clamp(2rem, 4vw, 4rem);
  height: 2px;
  background: var(--white);
}

.contact-main {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-hero {
  --hero-glow: rgba(250, 174, 23, 0.12);
}

.contact-hero .hero-copy {
  max-width: 38rem;
}

.contact-hero .page-intro {
  max-width: 32rem;
}

.contact-band {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top: 1px solid transparent;
  background:
    linear-gradient(90deg, rgba(125, 166, 48, 0.65), rgba(250, 174, 23, 0.65)) top / 100% 1px no-repeat,
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(125, 166, 48, 0.16), transparent 68%),
    radial-gradient(ellipse 60% 50% at 94% 12%, rgba(250, 174, 23, 0.13), transparent 70%),
    radial-gradient(ellipse 80% 45% at 50% 108%, rgba(125, 166, 48, 0.1), transparent 68%),
    radial-gradient(circle at 72% 62%, rgba(250, 174, 23, 0.045), transparent 28rem),
    linear-gradient(165deg, rgba(18, 22, 16, 0.95) 0%, transparent 42%),
    linear-gradient(180deg, #12150f 0%, #0e100d 42%, #0a0c09 100%);
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(125, 166, 48, 0.08), transparent 18rem),
    radial-gradient(circle at 82% 48%, rgba(250, 174, 23, 0.07), transparent 20rem),
    radial-gradient(rgba(255, 255, 255, 0.04) 0.65px, transparent 0.75px);
  background-size: auto, auto, 18px 18px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
  opacity: 0.85;
}

.contact-band::after {
  content: "";
  position: absolute;
  top: -12%;
  right: -8%;
  z-index: 0;
  width: min(52vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(250, 174, 23, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(250, 174, 23, 0.07), rgba(125, 166, 48, 0.03) 42%, transparent 68%);
  box-shadow:
    0 0 0 3.5rem rgba(250, 174, 23, 0.02),
    0 0 0 7rem rgba(125, 166, 48, 0.015);
  pointer-events: none;
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  padding: clamp(0.5rem, 1.5vw, 1rem) var(--page-pad) clamp(4.5rem, 8vw, 7.5rem);
}

.contact-grid::before {
  content: "";
  grid-column: 1 / -1;
  width: min(100%, 18rem);
  height: 1px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(90deg, transparent, rgba(125, 166, 48, 0.55), rgba(250, 174, 23, 0.55), transparent);
}

.contact-item {
  --contact-accent: rgba(255, 255, 255, 0.18);
  position: relative;
  display: flex;
  min-height: 12rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.4rem, 2.3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--contact-accent) 32%, transparent), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.045), transparent 52%),
    linear-gradient(180deg, rgba(16, 19, 14, 0.7), rgba(10, 12, 9, 0.84));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 240ms ease;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.2rem;
  height: 100%;
  background: linear-gradient(180deg, var(--contact-accent), transparent 85%);
}

.contact-item::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 1px solid color-mix(in srgb, var(--contact-accent) 70%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--contact-accent) 70%, transparent);
  opacity: 0.7;
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-item:hover,
.contact-item:focus-within {
  transform: translateY(-0.28rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1.1rem 2.2rem rgba(0, 0, 0, 0.28);
}

.contact-item:hover::after,
.contact-item:focus-within::after {
  opacity: 1;
  transform: translate(0.12rem, -0.12rem);
}

.contact-item--operations,
.contact-item--connections {
  --contact-accent: var(--green);
}

.contact-item--culture,
.contact-item--outcomes {
  --contact-accent: var(--gold);
}

.contact-item--operations {
  border-color: rgba(125, 166, 48, 0.28);
}

.contact-item--connections {
  border-color: rgba(125, 166, 48, 0.2);
}

.contact-item--culture {
  border-color: rgba(250, 174, 23, 0.2);
}

.contact-item--outcomes {
  border-color: rgba(250, 174, 23, 0.28);
}

.contact-item--operations:hover,
.contact-item--operations:focus-within,
.contact-item--connections:hover,
.contact-item--connections:focus-within {
  border-color: rgba(125, 166, 48, 0.5);
}

.contact-item--culture:hover,
.contact-item--culture:focus-within,
.contact-item--outcomes:hover,
.contact-item--outcomes:focus-within {
  border-color: rgba(250, 174, 23, 0.5);
}

.contact-item > span {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.contact-item--operations > span,
.contact-item--connections > span {
  color: #b5d07a;
}

.contact-item--culture > span,
.contact-item--outcomes > span {
  color: #f0c45a;
}

.contact-item p,
.contact-item address {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f0f1ec;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.reveal-enabled .contact-item[data-reveal]:nth-child(1) { transition-delay: 40ms; }
.reveal-enabled .contact-item[data-reveal]:nth-child(2) { transition-delay: 110ms; }
.reveal-enabled .contact-item[data-reveal]:nth-child(3) { transition-delay: 180ms; }
.reveal-enabled .contact-item[data-reveal]:nth-child(4) { transition-delay: 250ms; }

.email-link {
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: rgba(250, 174, 23, 0.4);
  text-underline-offset: 0.28em;
  transition: text-decoration-color 180ms ease, color 180ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.acknowledgement {
  display: block;
  margin-top: auto;
  padding: 1.25rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.acknowledgement p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.45;
}

.site-footer {
  padding: 1.35rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-inner .legal {
  color: var(--muted);
  text-align: right;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.reveal-enabled .profile-card[data-reveal].is-visible,
.reveal-enabled .leader-card[data-reveal].is-visible,
.reveal-enabled .start-card[data-reveal].is-visible {
  transition:
    opacity 650ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-copy > *,
.page-hero > *,
.profile-hero__copy > * {
  animation: intro 650ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-copy h1,
.page-hero h1,
.profile-hero__copy h1 {
  animation-delay: 80ms;
}

.hero-copy .hero-lead,
.page-hero .page-intro,
.profile-hero__copy > p {
  animation-delay: 150ms;
}

.hero-copy .text-link {
  animation-delay: 220ms;
}

@keyframes intro {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1440px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .model-flow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .model-bridge {
    display: grid;
    min-height: 13rem;
    grid-template-columns: minmax(0, 1fr) 11rem minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    padding: 0 clamp(1rem, 4vw, 4rem);
  }

  .model-bridge__note--transfer {
    justify-self: end;
  }

  .model-bridge__note--means {
    justify-self: start;
  }

  .model-bridge__disc {
    width: 11rem;
  }
}

@media (max-width: 1120px) {
  .pathway-section {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 7vw, 5rem);
  }

  .pathway-copy {
    width: min(100%, 52rem);
    max-width: 52rem;
    justify-self: center;
    padding-top: 0;
  }

  .wheel-column {
    width: min(100%, 60rem);
    justify-self: center;
  }

  .step-detail {
    grid-template-areas: "step-header step-content step-graphic";
    grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.2fr) minmax(7.5rem, 0.32fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .step-detail__graphic {
    width: min(100%, 11rem);
  }

  .step-detail h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(1.5rem, 3.2vw, 2.55rem);
    line-height: 1.06;
    text-wrap: pretty;
  }

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

@media (max-width: 880px) {
  :root {
    --header-height: 8.75rem;
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 0.65rem;
    padding-bottom: 1.2rem;
  }

  .brand {
    width: 8.5rem;
  }

  .site-header__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-nav {
    width: auto;
    justify-content: center;
  }

  .site-search__panel {
    right: 50%;
    transform: translate(50%, -0.4rem);
    width: min(28rem, calc(100vw - 2 * var(--page-pad)));
  }

  .site-search.is-open .site-search__panel {
    transform: translate(50%, 0);
  }

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

  .home-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    width: auto;
  }

  .home-hero__visual img {
    object-position: 86% center;
    opacity: 0.22;
    transform: translateX(38%);
  }

  .home-hero {
    --hero-image-shift: 40rem;
  }

  .home-hero .home-hero__visual img {
    width: 145%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 94% center;
    transform: translateX(var(--hero-image-shift));
  }

  .pathway-section,
  .about-band {
    grid-template-columns: 1fr;
  }

  .step-detail {
    grid-template-areas:
      "step-header"
      "step-graphic"
      "step-content";
    grid-template-columns: 1fr;
  }

  .pathway-copy,
  .step-detail__header {
    position: static;
  }

  .pathway-copy {
    max-width: 43rem;
    padding-top: 0;
  }

  .wheel-column {
    width: min(100%, 52rem);
    justify-self: center;
  }

  .about-band {
    min-height: 38rem;
    align-content: center;
    gap: 1.5rem;
  }

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

  .profile-card {
    min-height: 38rem;
  }

  .step-detail {
    min-height: 58rem;
    gap: 1rem;
    scroll-margin-top: var(--header-height);
  }

  .step-detail h2 {
    max-width: 18ch;
    font-size: clamp(1.75rem, 6vw, 3.25rem);
  }

  .step-detail__content {
    padding-top: 0;
  }

  .step-detail__graphic {
    position: static;
    width: min(32vw, 10rem);
    justify-self: end;
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .profile-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    justify-content: center;
    justify-items: stretch;
    align-items: center;
    gap: 0;
    padding: clamp(1.5rem, 4vw, 2.5rem) var(--page-pad);
  }

  .profile-hero__portrait {
    place-items: center;
    justify-self: center;
  }

  .profile-hero__portrait,
  .profile-hero__portrait--photo {
    width: 100%;
    max-width: 18rem;
    margin: 0 0 0 clamp(-2rem, -5vw, -0.75rem);
  }

  .profile-hero__copy {
    min-height: auto;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-self: center;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    padding-right: 0.35rem;
  }

  .profile-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 3.4rem);
  }

  .profile-hero__copy > p,
  .profile-hero__copy .profile-brief p {
    font-size: clamp(0.88rem, 2.6vw, 1.05rem);
  }

  .profile-hero__copy .profile-brief {
    width: calc(100% + clamp(1.25rem, 4vw, 2.75rem));
    max-width: none;
  }

  .profile-hero__copy .back-link {
    align-self: flex-start;
    margin-bottom: 1rem;
  }

  .profile-hero__portrait--photo {
    margin-left: clamp(-2rem, -5vw, -0.75rem);
  }

}

@media (max-width: 600px) {
  :root {
    --header-height: 8rem;
  }

  .site-header {
    position: relative;
  }

  .brand {
    width: 7.5rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .site-nav a.nav-contact {
    padding: 0.45rem 0.85rem;
  }

  .home-hero {
    --hero-image-shift: 34rem;
  }

  .home-hero .home-hero__visual img,
  .home-hero__visual img {
    width: 165%;
    object-fit: cover;
    object-position: 96% center;
    transform: translateX(var(--hero-image-shift));
  }

  .hero,
  .page-hero {
    min-height: 34rem;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .page-hero h1,
  .profile-hero__copy h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .amity-model {
    padding-top: 4rem;
  }

  .amity-model__header {
    margin-bottom: 3.5rem;
  }

  .model-card-grid {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: auto;
  }

  .model-panel--future h2 {
    align-self: flex-start;
    text-align: left;
  }

  .model-bridge {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 1rem 0;
  }

  .model-bridge__note--transfer,
  .model-bridge__note--means {
    align-self: center;
  }

  .model-continuum {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .model-continuum__history,
  .model-continuum__future {
    text-align: center;
  }

  .model-continuum__brand {
    justify-content: center;
  }

  .pathway-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .wheel-intro {
    text-align: left;
  }

  .wheel-intro p {
    margin-left: 0;
  }

  .numlink span {
    font-size: clamp(0.5rem, 2.6vw, 0.8rem);
  }

  .about-band {
    min-height: 34rem;
  }

  .step-detail {
    min-height: 52rem;
  }

  .step-detail::after {
    top: 1.5rem;
  }

  .profile-card {
    width: 100%;
    height: auto;
    min-height: auto;
    grid-template-areas: "copy portrait";
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    grid-template-rows: auto;
  }

  .profile-card::after {
    display: none;
  }

  .profile-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    grid-area: portrait;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 1200 / 1494;
    justify-self: end;
    margin: 0 0 0 -0.7rem;
    overflow: hidden;
    transform: none;
  }

  .profile-portrait__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .profile-portrait__image--dean,
  .profile-portrait__image--jillian {
    object-fit: cover;
    object-position: center top;
  }

  .profile-copy {
    grid-area: copy;
    width: 100%;
    min-height: 0;
  }

  .profile-brief {
    max-width: none;
  }

  .profile-hero__portrait,
  .profile-hero__portrait--photo {
    width: 100%;
  }

  .profile-hero__copy {
    min-height: auto;
    text-align: left;
    align-items: flex-start;
  }

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

  .acknowledgement {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner .legal {
    text-align: left;
  }
}

.hero-catchcry {
  max-width: 16ch;
  width: auto;
  font-size: clamp(2.7rem, 5.6vw, 5.6rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

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

.hero-actions .button {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem clamp(1.3rem, 1.6vw, 1.9rem);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.button--primary {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--red-bright);
  background: var(--red-bright);
  box-shadow: 0 0.45rem 1.4rem rgba(255, 118, 109, 0.24);
  transform: translateY(-1px);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.button--dark {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

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

.cred-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: clamp(1.4rem, 2.5vw, 2.1rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: var(--black-soft);
  list-style: none;
}

.cred-strip li {
  padding: 0.35rem clamp(1rem, 2.4vw, 2.25rem);
  color: #c7c8c3;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.cred-strip li + li {
  border-left: 1px solid var(--line);
}

@media (min-width: 881px) {
  .cred-strip {
    flex-wrap: nowrap;
  }

  .cred-strip li {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem clamp(0.5rem, 1.2vw, 1.6rem);
    font-size: clamp(0.58rem, 0.78vw, 0.78rem);
  }
}

.home-section {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
  content-visibility: auto;
  contain-intrinsic-size: auto 40rem;
}

.home-section > * {
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.home-section--full {
  width: 100%;
  max-width: none;
  padding-top: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  content-visibility: visible;
}

.home-section--band,
.home-section--glow-green,
.home-section--glow-gold {
  position: relative;
}

.home-section--band > *,
.home-section--glow-green > *,
.home-section--glow-gold > * {
  position: relative;
  z-index: 1;
}

.home-section--band::before,
.home-section--glow-green::before,
.home-section--glow-gold::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-top: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.home-section--band::before {
  background: var(--black-soft);
}

.home-section--glow-green::before {
  background:
    radial-gradient(circle at 8% 4%, rgba(125, 166, 48, 0.1), transparent 34rem),
    var(--black-soft);
}

.home-section--glow-gold::before {
  background:
    radial-gradient(circle at 92% 6%, rgba(250, 174, 23, 0.08), transparent 34rem),
    var(--black-soft);
}

.home-section__header {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-section__header .section-number {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-section__header .section-number::before {
  width: 2.75rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.home-section__header h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-section__header p {
  max-width: 46rem;
  margin: 0;
  color: #c7c8c3;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.problem-band {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(232, 76, 67, 0.07), transparent 45%),
    var(--black-soft);
  content-visibility: auto;
  contain-intrinsic-size: auto 36rem;
}

.problem-band__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.problem-band .section-number {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(232, 76, 67, 0.55);
  border-radius: 999px;
  color: var(--red);
  margin-bottom: 2rem;
}

.problem-band h2 {
  max-width: 21ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.problem-band h2 em {
  color: var(--red);
  font-style: normal;
}

.problem-band__lead {
  max-width: 46rem;
  margin-bottom: 0;
  color: #c7c8c3;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
}

.problem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: clamp(1.8rem, 3vw, 2.6rem) 0;
}

.problem-chips span {
  padding: 0.55rem 1.1rem;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--muted);
  font-size: clamp(0.62rem, 0.85vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-band__resolution {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 58rem;
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.3rem, 2.2vw, 1.8rem);
  border: 1px solid rgba(125, 166, 48, 0.55);
  background: rgba(125, 166, 48, 0.09);
}

.problem-band__resolution > span {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
}

.problem-band__resolution p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.start-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line);
  background: #0c0e0b;
  transform-origin: center center;
  transition:
    border-color 220ms ease,
    transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.start-card:hover,
.start-card:focus-visible,
.reveal-enabled .start-card[data-reveal].is-visible:hover,
.reveal-enabled .start-card[data-reveal].is-visible:focus-visible {
  z-index: 4;
  border-color: var(--green);
  transform: scale(1.01);
}

.start-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.start-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}

.start-card .inline-link {
  margin-top: auto;
}

.stage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.stage-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid var(--line);
  background: #0c0e0b;
}

.stage-card::after {
  position: absolute;
  top: -1.2rem;
  right: 0.4rem;
  color: rgba(255, 255, 255, 0.045);
  content: attr(data-stage);
  font-size: clamp(4.5rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.stage-card > * {
  position: relative;
  z-index: 1;
}

.stage-card--one {
  box-shadow: inset 0.3rem 0 var(--green);
}

.stage-card--two {
  box-shadow: inset 0.3rem 0 var(--gold);
}

.stage-card--three {
  box-shadow: inset 0.3rem 0 var(--orange);
}

.stage-card--four {
  box-shadow: inset 0.3rem 0 var(--red);
}

.stage-card .section-number {
  margin-bottom: 0.7rem;
}

.stage-card h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.stage-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  line-height: 1.5;
}

.deliverables-grid {
  counter-reset: deliverable;
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
  justify-self: center;
}

.deliverables-grid li {
  counter-increment: deliverable;
  position: relative;
  padding: clamp(1.4rem, 2.2vw, 1.9rem) clamp(1.2rem, 1.8vw, 1.6rem);
  overflow: hidden;
  background: #0c0e0b;
  color: var(--white);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.deliverables-grid li::before {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  content: counter(deliverable, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transition: color 220ms ease;
}

.deliverables-grid li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.deliverables-grid li:hover,
.deliverables-grid li:focus-within,
.deliverables-grid--interactive li:has(.deliverable-tile.is-open) {
  background:
    linear-gradient(145deg, rgba(250, 174, 23, 0.14), rgba(125, 166, 48, 0.05)),
    #121410;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(250, 174, 23, 0.35);
}

.deliverables-grid li:hover::before,
.deliverables-grid li:focus-within::before,
.deliverables-grid--interactive li:has(.deliverable-tile.is-open)::before {
  color: var(--green);
}

.deliverables-grid li:hover::after,
.deliverables-grid li:focus-within::after,
.deliverables-grid--interactive li:has(.deliverable-tile.is-open)::after {
  transform: scaleX(1);
}

.home-section:has(.deliverables-grid--interactive) {
  position: relative;
  z-index: 5;
}

.deliverables-grid--interactive {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.home-section:has(.deliverables-grid--interactive) .deliverables-note {
  position: relative;
  z-index: 0;
}

.deliverables-grid--interactive li {
  position: relative;
  z-index: 1;
  padding: 0;
  overflow: visible;
}

.deliverables-grid--interactive li:hover,
.deliverables-grid--interactive li:focus-within,
.deliverables-grid--interactive li:has(.deliverable-tile.is-open) {
  z-index: 8;
}

.deliverable-tile {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.deliverables-grid--interactive li::before {
  position: absolute;
  top: clamp(1.4rem, 2.2vw, 1.9rem);
  left: clamp(1.2rem, 1.8vw, 1.6rem);
  z-index: 1;
  margin: 0;
  pointer-events: none;
}

.deliverables-grid--interactive .deliverable-tile {
  display: block;
  box-sizing: border-box;
  min-height: 100%;
  padding:
    calc(clamp(1.4rem, 2.2vw, 1.9rem) + 1.65rem)
    clamp(1.2rem, 1.8vw, 1.6rem)
    clamp(1.4rem, 2.2vw, 1.9rem);
}

.deliverable-tile__title {
  display: block;
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  transition: color 220ms ease;
}

.deliverables-grid li:hover .deliverable-tile__title,
.deliverables-grid li:focus-within .deliverable-tile__title,
.deliverables-grid--interactive li:has(.deliverable-tile.is-open) .deliverable-tile__title {
  color: var(--gold);
}

.deliverable-tile__panel {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    grid-template-rows 320ms ease,
    opacity 220ms ease,
    margin 320ms ease;
}

.deliverable-tile__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.deliverable-tile__preview {
  display: block;
  padding: 1rem clamp(1.1rem, 1.6vw, 1.4rem) 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.deliverable-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 clamp(1.1rem, 1.6vw, 1.4rem) 1rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.deliverables-grid--interactive li:hover .deliverable-tile__panel,
.deliverables-grid--interactive li:focus-within .deliverable-tile__panel,
.deliverable-tile:focus-visible .deliverable-tile__panel,
.deliverable-tile.is-open .deliverable-tile__panel {
  grid-template-rows: 1fr;
  margin:
    0
    calc(-1 * clamp(1.2rem, 1.8vw, 1.6rem))
    calc(-1 * clamp(1.4rem, 2.2vw, 1.9rem));
  opacity: 1;
  pointer-events: auto;
}

.deliverable-body h2 {
  margin: 2.6rem 0 0.9rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.035em;
}

.deliverable-body h2:first-child {
  margin-top: 0;
}

.deliverables-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.2rem, 2vw, 1.75rem);
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.95rem);
}

.deliverables-note::before {
  width: 2.4rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
  content: "";
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  margin-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.service-pillar {
  grid-column: span 2;
}

.service-pillar:nth-child(4),
.service-pillar:nth-child(5) {
  grid-column: span 3;
}

.service-pillar {
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 2.5vw, 2.1rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(125, 166, 48, 0.09), transparent 42%),
    #0c0e0b;
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-pillar:hover {
  border-color: var(--green);
  transform: translateY(-0.3rem);
}

.service-pillar:nth-child(2n):hover {
  border-color: var(--gold);
}

.service-pillar__icon {
  display: grid;
  width: 3rem;
  margin-bottom: 1.3rem;
  border: 1px solid rgba(125, 166, 48, 0.5);
  border-radius: 50%;
  aspect-ratio: 1;
  place-items: center;
  background: rgba(125, 166, 48, 0.1);
  color: var(--green);
}

.service-pillar:nth-child(2n) .service-pillar__icon {
  border-color: rgba(250, 174, 23, 0.5);
  background: rgba(250, 174, 23, 0.1);
  color: var(--gold);
}

.service-pillar__icon svg {
  width: 55%;
  height: 55%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.service-pillar h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.05vw, 0.98rem);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.why-card {
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  border-top: 3px solid var(--green);
  background: #0c0e0b;
}

.why-card:nth-child(2) {
  border-top-color: var(--gold);
}

.why-card:nth-child(3) {
  border-top-color: var(--orange);
}

.why-card:nth-child(4) {
  border-top-color: var(--red);
}

.why-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.95rem);
  line-height: 1.55;
}

.audience-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.audience-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  background: #0c0e0b;
  color: #c7c8c3;
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  font-weight: 700;
}

.audience-list li::before {
  margin-right: 0.7rem;
  color: var(--green);
  content: "●";
  font-size: 0.6em;
  vertical-align: 0.2em;
}

.audience-note {
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  border: 1px solid rgba(250, 174, 23, 0.4);
  background: rgba(250, 174, 23, 0.06);
}

.audience-note h3 {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.audience-note p {
  margin-bottom: 0.9rem;
  color: #c7c8c3;
  font-size: clamp(0.86rem, 1.05vw, 0.98rem);
  line-height: 1.6;
}

.audience-note p:last-child {
  margin-bottom: 0;
}

.leader-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.leader-card {
  display: grid;
  overflow: visible;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  border: 1px solid var(--line);
  background: #0c0e0b;
  transform-origin: center center;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.leader-card:hover,
.leader-card:focus-visible,
.reveal-enabled .leader-card[data-reveal].is-visible:hover,
.reveal-enabled .leader-card[data-reveal].is-visible:focus-visible {
  z-index: 4;
  border-color: var(--green);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(125, 166, 48, 0.25);
  transform: scale(1.01);
}

.leader-card--gold:hover,
.leader-card--gold:focus-visible,
.reveal-enabled .leader-card--gold[data-reveal].is-visible:hover,
.reveal-enabled .leader-card--gold[data-reveal].is-visible:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 1.1rem 2.6rem rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(250, 174, 23, 0.25);
}

.leader-card__portrait {
  overflow: visible;
}

.leader-card img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  object-position: center top;
  transition: filter 400ms ease;
}

.leader-card:hover img,
.leader-card:focus-visible img {
  filter: saturate(1.12);
  transform: translateZ(0);
}

.leader-card__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  background: #0c0e0b;
}

.leader-card__copy h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
}

.leader-card__copy .role {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-card--gold .leader-card__copy .role {
  color: var(--gold);
}

.leader-card__copy p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.05vw, 0.98rem);
  line-height: 1.6;
}

.leader-card__copy .card-link {
  margin-top: auto;
}

.invite-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad);
  background: var(--gold);
  color: #111009;
  content-visibility: auto;
  contain-intrinsic-size: auto 28rem;
}

.invite-band::before {
  position: absolute;
  right: -9rem;
  bottom: -15rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(0, 0, 0, 0.26);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.invite-band::after {
  position: absolute;
  right: -3rem;
  bottom: -20rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.invite-band__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.invite-band .section-number {
  color: #5b4a19;
}

.invite-band h2 {
  max-width: 22ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.invite-band p {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: #3e3211;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.invite-band .invite-band__small {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: #5b4a19;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.value-flow {
  display: grid;
  width: min(100%, 46rem);
  margin: 0 auto;
  gap: 0;
  justify-items: center;
}

.value-flow__item {
  width: 100%;
  padding: clamp(1.2rem, 2vw, 1.7rem) clamp(1.4rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  background: #0c0e0b;
  text-align: center;
  transition:
    border-color 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease,
    color 420ms ease;
}

.value-flow__item h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  letter-spacing: -0.035em;
  transition: color 420ms ease;
}

.value-flow__item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.95rem);
}

.value-flow__arrow {
  padding: 0.5rem 0;
  color: rgba(250, 174, 23, 0.35);
  font-size: 1.4rem;
  line-height: 1;
  transition: color 420ms ease, transform 420ms ease;
}

.value-flow__item.is-lit {
  border-color: rgba(250, 174, 23, 0.55);
  border-left-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(250, 174, 23, 0.12), rgba(250, 174, 23, 0.03)),
    #0c0e0b;
  box-shadow: 0 0.6rem 1.8rem rgba(250, 174, 23, 0.08);
}

.value-flow__item.is-lit h3 {
  color: var(--gold);
}

.value-flow__arrow.is-lit {
  color: var(--gold);
  transform: translateY(0.15rem);
}

.engage-steps {
  counter-reset: engage;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.engage-step {
  counter-increment: engage;
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  border: 1px solid var(--line);
  background: #0c0e0b;
}

.engage-step::before {
  display: grid;
  width: 2.6rem;
  margin-bottom: 1.2rem;
  border-radius: 0.6rem;
  aspect-ratio: 1;
  place-items: center;
  background: var(--green);
  color: var(--black);
  content: counter(engage, decimal-leading-zero);
  font-size: 0.85rem;
  font-weight: 800;
}

.engage-step:nth-child(2)::before {
  background: var(--gold);
}

.engage-step:nth-child(3)::before {
  background: var(--orange);
}

.engage-step:nth-child(4)::before {
  background: var(--red);
  color: var(--white);
}

.engage-step h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.engage-step p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 1vw, 0.95rem);
  line-height: 1.55;
}

.boundaries-note {
  width: min(100%, 62rem);
  margin: 0 auto;
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  border: 1px solid rgba(125, 166, 48, 0.45);
  background: rgba(125, 166, 48, 0.07);
}

.boundaries-note h3 {
  margin-bottom: 0.9rem;
  color: var(--green);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.boundaries-note p {
  margin: 0;
  color: #c7c8c3;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.65;
}

.contact-form-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(3.75rem, 7vw, 6.75rem) var(--page-pad) clamp(2.25rem, 4vw, 3.25rem);
  background: transparent;
}

.contact-form-section > * {
  width: min(100%, 62rem);
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section > h2 {
  position: relative;
  margin-bottom: 0.95rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-form-section > p {
  max-width: 46rem;
  margin-bottom: 2.6rem;
  color: #c7c8c3;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.enquiry-form {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.55rem;
  padding: clamp(1.65rem, 3.2vw, 2.65rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1.5rem 3.25rem rgba(0, 0, 0, 0.28);
  color: #1a1c18;
}

.enquiry-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

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

.form-field label {
  color: #5c5e58;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 28, 24, 0.16);
  border-radius: 0.35rem;
  background: #f7f5ef;
  color: #121410;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field select {
  appearance: none;
  background-color: #f7f5ef;
  background-image: linear-gradient(45deg, transparent 50%, #6a6c66 50%), linear-gradient(135deg, #6a6c66 50%, transparent 50%);
  background-position: calc(100% - 1.3rem) 50%, calc(100% - 0.95rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.35rem 0.35rem;
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(26, 28, 24, 0.28);
  background: #fff;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(125, 166, 48, 0.75);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(125, 166, 48, 0.14);
  outline: 0;
}

.form-consent a {
  color: #6d8f24;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.form-actions .button--primary {
  min-width: 11rem;
  box-shadow: 0 0.55rem 1.4rem rgba(232, 76, 67, 0.22);
}

.form-consent {
  display: flex;
  gap: 0.85rem;
  grid-column: 1 / -1;
  align-items: flex-start;
}

.form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
  accent-color: var(--green);
}

.form-consent label {
  color: #4f514c;
  font-size: 0.84rem;
  line-height: 1.55;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.4rem;
}

.form-privacy-note {
  grid-column: 1 / -1;
  margin: 0.4rem 0 0;
  color: #5c5e58;
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-privacy-note a {
  color: #6d8f24;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.framework-teaser__wheel {
  width: min(100%, 56rem);
  margin: 0 auto;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
}

.case-study-grid article {
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  border: 1px solid var(--line);
  background: #0c0e0b;
}

.case-study-grid h3 {
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study-grid p {
  margin: 0;
  color: #c7c8c3;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  line-height: 1.6;
}

.case-study-note {
  margin-top: clamp(1.2rem, 2vw, 1.75rem);
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid rgba(125, 166, 48, 0.45);
  background: rgba(125, 166, 48, 0.07);
}

.case-study-note p {
  margin: 0;
  color: #c7c8c3;
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  line-height: 1.6;
}

@media (max-width: 880px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
}

.footer-acknowledgement {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.footer-acknowledgement p {
  max-width: 62rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-transform: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 0.25em;
  transition: color 180ms ease;
}

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

.privacy-body {
  width: 100%;
  margin: 0;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
}

.privacy-body > * {
  width: min(100%, 56rem);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.privacy-body h2 {
  margin: 2.6rem 0 0.9rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.035em;
}

.privacy-body h2:first-child {
  margin-top: 0;
}

.privacy-body p,
.privacy-body li {
  color: #c7c8c3;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.privacy-body ul {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

@media (max-width: 1120px) {
  .why-grid,
  .engage-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-pillar,
  .service-pillar:nth-child(4),
  .service-pillar:nth-child(5) {
    grid-column: auto;
  }

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

@media (max-width: 880px) {
  .start-grid,
  .leader-preview {
    grid-template-columns: 1fr;
  }

  .cred-strip li {
    width: 100%;
    padding: 0.5rem 0;
    text-align: left;
  }

  .cred-strip li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .stage-list,
  .why-grid,
  .engage-steps,
  .deliverables-grid,
  .service-pillars {
    grid-template-columns: 1fr;
  }

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

  .hero-actions .button {
    width: 100%;
  }
}

.model-info {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--page-pad) clamp(4.5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 42% at 10% 8%, rgba(125, 166, 48, 0.12), transparent 70%),
    radial-gradient(ellipse 55% 48% at 90% 6%, rgba(250, 174, 23, 0.1), transparent 72%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(125, 166, 48, 0.06), transparent 70%),
    var(--black-soft);
}

.model-info__shell {
  position: relative;
  overflow: hidden;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.25rem, 3vw, 2.75rem) clamp(1.6rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid rgba(250, 174, 23, 0.55);
  background:
    radial-gradient(circle at 50% 38%, rgba(250, 174, 23, 0.09), transparent 24rem),
    radial-gradient(circle at 12% 85%, rgba(125, 166, 48, 0.07), transparent 18rem),
    radial-gradient(circle at 88% 85%, rgba(125, 166, 48, 0.07), transparent 18rem),
    linear-gradient(180deg, rgba(18, 21, 15, 0.98), rgba(9, 11, 8, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1.6rem 3.4rem rgba(0, 0, 0, 0.34);
}

.model-info__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(250, 174, 23, 0.55) 0 1.7px, transparent 1.9px),
    radial-gradient(circle, rgba(125, 166, 48, 0.42) 0 1.3px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 0.95px, transparent 1.15px);
  background-size: 18px 18px, 13px 13px, 9px 9px;
  background-position: 0 0, 6px 8px, 3px 4px;
  /* Single horizontal crest traveling top → bottom; endpoints off-canvas for a clean loop */
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.12) 36%,
    rgba(0, 0, 0, 0.55) 44%,
    #000 50%,
    rgba(0, 0, 0, 0.55) 56%,
    rgba(0, 0, 0, 0.12) 64%,
    transparent 72%,
    transparent 100%
  );
  mask-size: 100% 280vh;
  mask-repeat: no-repeat;
  mask-position: 0 -155vh;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 28%,
    rgba(0, 0, 0, 0.12) 36%,
    rgba(0, 0, 0, 0.55) 44%,
    #000 50%,
    rgba(0, 0, 0, 0.55) 56%,
    rgba(0, 0, 0, 0.12) 64%,
    transparent 72%,
    transparent 100%
  );
  -webkit-mask-size: 100% 280vh;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 -155vh;
  opacity: 0.38;
  pointer-events: none;
  animation: model-info-field-wave 3.8s linear infinite;
}

.model-info__shell::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.model-info__header,
.model-info__flow,
.model-info__rail,
.model-info__footer,
.model-info__note {
  position: relative;
  z-index: 1;
}

.model-info__header {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}

.model-info__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.model-info__header h2 {
  max-width: 28ch;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.model-info__header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.model-info__header-ornament span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #6e706a;
  animation: model-info-dot-pulse 2s ease-in-out infinite;
}

.model-info__header-ornament span:nth-child(1) { animation-delay: 0s; }
.model-info__header-ornament span:nth-child(2) { background: #9a9b96; width: 0.5rem; height: 0.5rem; animation-delay: 0.12s; }
.model-info__header-ornament span:nth-child(3) { background: #b8a04a; width: 0.58rem; height: 0.58rem; animation-delay: 0.24s; }
.model-info__header-ornament span:nth-child(4) {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--gold);
  box-shadow: 0 0 0.7rem rgba(250, 174, 23, 0.35);
  animation-delay: 0.36s;
}
.model-info__header-ornament span:nth-child(5) { background: #9ab85a; width: 0.58rem; height: 0.58rem; animation-delay: 0.48s; }
.model-info__header-ornament span:nth-child(6) { background: #8aaa48; width: 0.5rem; height: 0.5rem; animation-delay: 0.6s; }
.model-info__header-ornament span:nth-child(7) { background: var(--green); animation-delay: 0.72s; }

.model-info__flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(5.25rem, 0.52fr)
    minmax(10rem, 0.9fr)
    minmax(5.25rem, 0.52fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(0.35rem, 1vw, 0.7rem);
}

.model-info-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 13, 10, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0.65rem 1.4rem rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, transform 280ms ease;
}

.model-info-panel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.model-info-panel__head {
  padding: 1.05rem 1.1rem 0.95rem;
  text-align: center;
}

.model-info-panel--source .model-info-panel__head {
  background:
    linear-gradient(180deg, #30332e, #1c1e1a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 0 rgba(154, 155, 150, 0.55);
}

.model-info-panel--outcome .model-info-panel__head {
  background:
    linear-gradient(180deg, rgba(125, 166, 48, 0.42), rgba(74, 104, 20, 0.32));
  border-bottom: 1px solid rgba(125, 166, 48, 0.3);
  box-shadow: inset 0 3px 0 rgba(125, 166, 48, 0.85);
}

.model-info-panel__head h3 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-size: clamp(0.8rem, 1.15vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.model-info-panel__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-info-panel--outcome .model-info-panel__head p {
  color: rgba(201, 220, 150, 0.9);
}

.model-info-panel__list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 1.25rem 1.1rem 1.4rem;
  list-style: none;
}

.model-info-panel__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  color: #ecece7;
  font-size: clamp(0.9rem, 1.12vw, 1.04rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.model-info-panel__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.model-info-panel--outcome .model-info-panel__list li {
  display: block;
}

.model-info-panel__link:hover,
.model-info-panel__link:focus-visible {
  color: var(--gold);
  outline: 0;
}

.model-info-panel--outcome .model-info-panel__link:hover,
.model-info-panel--outcome .model-info-panel__link:focus-visible {
  color: #d4e8a0;
}

.model-info-panel__icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 50%;
  color: currentColor;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 68%),
    rgba(10, 12, 9, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: model-info-icon-breathe 2.8s ease-in-out infinite;
}

.model-info-panel__list li:nth-child(2) .model-info-panel__icon { animation-delay: 0.2s; }
.model-info-panel__list li:nth-child(3) .model-info-panel__icon { animation-delay: 0.4s; }
.model-info-panel__list li:nth-child(4) .model-info-panel__icon { animation-delay: 0.6s; }

.model-info-panel--source .model-info-panel__icon {
  color: #c4c5bf;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 70%),
    #171914;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.model-info-panel--outcome .model-info-panel__icon {
  color: var(--green);
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 166, 48, 0.16), transparent 70%),
    #12160e;
  box-shadow: inset 0 0 0 1px rgba(125, 166, 48, 0.35);
}

.model-info-doticon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.model-info-doticon svg [fill="none"] {
  fill: none;
}

.model-info-panel__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.model-info-bridge {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 11rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
}

.model-info-bridge__wave {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  width: auto;
  height: 3.6rem;
  max-width: none;
  overflow: visible;
  pointer-events: none;
  transform: translateY(-50%);
}

.model-info-bridge__wave--dots {
  --bridge-wave-period: 14rem;
  mask-image: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0,
    rgba(0, 0, 0, 0.62) calc(var(--bridge-wave-period) * 0.2),
    rgba(0, 0, 0, 0.88) calc(var(--bridge-wave-period) * 0.38),
    #000 calc(var(--bridge-wave-period) * 0.5),
    rgba(0, 0, 0, 0.88) calc(var(--bridge-wave-period) * 0.62),
    rgba(0, 0, 0, 0.62) calc(var(--bridge-wave-period) * 0.8),
    rgba(0, 0, 0, 0.62) var(--bridge-wave-period)
  );
  mask-size: auto 100%;
  mask-repeat: repeat;
  mask-position: 0 0;
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0,
    rgba(0, 0, 0, 0.62) calc(var(--bridge-wave-period) * 0.2),
    rgba(0, 0, 0, 0.88) calc(var(--bridge-wave-period) * 0.38),
    #000 calc(var(--bridge-wave-period) * 0.5),
    rgba(0, 0, 0, 0.88) calc(var(--bridge-wave-period) * 0.62),
    rgba(0, 0, 0, 0.62) calc(var(--bridge-wave-period) * 0.8),
    rgba(0, 0, 0, 0.62) var(--bridge-wave-period)
  );
  -webkit-mask-size: auto 100%;
  -webkit-mask-repeat: repeat;
  -webkit-mask-position: 0 0;
  animation: model-info-bridge-glow 2.8s linear infinite;
}

.model-info-bridge__dotpath {
  fill: rgba(196, 197, 191, 0.95);
}

.model-info-bridge--in .model-info-bridge__wave--dots {
  filter:
    drop-shadow(0 0 0.35rem rgba(250, 174, 23, 0.55))
    drop-shadow(0 0 0.85rem rgba(250, 174, 23, 0.28));
}

.model-info-bridge--out .model-info-bridge__dotpath {
  fill: rgba(168, 210, 90, 0.98);
}

.model-info-bridge--out {
  z-index: 0;
}

.model-info-bridge--out .model-info-bridge__wave {
  transform: translate(-0.85rem, -50%);
}

.model-info-bridge--out .model-info-bridge__wave--dots {
  filter:
    drop-shadow(0 0 0.35rem rgba(125, 166, 48, 0.65))
    drop-shadow(0 0 0.85rem rgba(125, 166, 48, 0.32));
  animation-delay: 0.35s;
}

.model-info-bridge__chip {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  max-width: 9.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.model-info-bridge--out .model-info-bridge__chip {
  color: #c9dc96;
}

.model-info-bridge__glyph {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 68%),
    #0c0e0b;
  box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.28);
  color: #c4c5bf;
  animation: model-info-glyph-pulse 2.2s ease-in-out infinite;
}

.model-info-bridge--out .model-info-bridge__glyph {
  border-color: rgba(125, 166, 48, 0.4);
  color: var(--green);
  animation-delay: 0.4s;
}

.model-info-bridge__glyph svg {
  width: 1.45rem;
  height: 1.45rem;
}

.model-info-hub {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
}

.model-info-hub__ring {
  position: relative;
  display: grid;
  width: clamp(11.5rem, 18vw, 14.5rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 46%, rgba(250, 174, 23, 0.22) 47% 49%, transparent 50%),
    radial-gradient(circle, transparent 58%, rgba(125, 166, 48, 0.2) 59% 60.5%, transparent 61.5%),
    radial-gradient(circle, transparent 70%, rgba(250, 174, 23, 0.14) 71% 72%, transparent 73%);
  animation: model-info-hub-glow 2.4s ease-in-out infinite;
}

.model-info-hub__ring--dots::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 12%, var(--gold) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 74% 22%, var(--gold) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 88% 45%, var(--gold) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 80% 72%, var(--gold) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 50% 88%, var(--gold) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 20% 72%, var(--gold) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 12% 45%, var(--gold) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 26% 22%, var(--gold) 0 0.16rem, transparent 0.18rem),
    radial-gradient(circle at 50% 28%, #7da630 0 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 68% 38%, #7da630 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 68% 62%, #7da630 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 50% 72%, #7da630 0 0.14rem, transparent 0.16rem),
    radial-gradient(circle at 32% 62%, #7da630 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle at 32% 38%, #7da630 0 0.12rem, transparent 0.14rem),
    radial-gradient(circle, #0d100c 0 58%, transparent 59%);
  box-shadow:
    0 0 0 0.2rem rgba(255, 255, 255, 0.05),
    0 0 2rem rgba(250, 174, 23, 0.22),
    0 0.55rem 1.3rem rgba(0, 0, 0, 0.35);
  animation: model-info-hub-spin 18s linear infinite;
}

.model-info-hub__core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68%;
  height: 68%;
  padding: 0.55rem;
  border-radius: 50%;
  background: rgba(7, 8, 7, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.model-info-hub__logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 8.5rem;
  object-fit: contain;
}

.model-info__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 34rem);
  margin: clamp(1.5rem, 3vw, 2.2rem) auto clamp(1.1rem, 2vw, 1.55rem);
}

.model-info__rail span {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #6e706a;
  animation: model-info-dot-pulse 1.8s ease-in-out infinite;
}

.model-info__rail span:nth-child(1) { animation-delay: 0s; }
.model-info__rail span:nth-child(2) { background: #8f918a; width: 0.62rem; height: 0.62rem; animation-delay: 0.1s; }
.model-info__rail span:nth-child(3) { background: #a3a49e; width: 0.7rem; height: 0.7rem; animation-delay: 0.2s; }
.model-info__rail span:nth-child(4) { background: #b8a04a; width: 0.78rem; height: 0.78rem; animation-delay: 0.3s; }
.model-info__rail span:nth-child(5) {
  width: 1rem;
  height: 1rem;
  background: var(--gold);
  box-shadow: 0 0 0.75rem rgba(250, 174, 23, 0.35);
  animation-delay: 0.4s;
}
.model-info__rail span:nth-child(6) { background: #9ab85a; width: 0.78rem; height: 0.78rem; animation-delay: 0.5s; }
.model-info__rail span:nth-child(7) { background: #8aaa48; width: 0.7rem; height: 0.7rem; animation-delay: 0.6s; }
.model-info__rail span:nth-child(8) { background: #7da630; width: 0.62rem; height: 0.62rem; animation-delay: 0.7s; }
.model-info__rail span:nth-child(9) { background: var(--green); width: 0.55rem; height: 0.55rem; animation-delay: 0.8s; }

.model-info__rail span + span::before {
  display: none;
}

.model-info__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0.35rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%);
}

.model-info__footer li {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.35rem 1rem 0.55rem;
  text-align: center;
}

.model-info__footer li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.model-info__footer-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 10, 7, 0.75);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.model-info__footer li:nth-child(1) .model-info__footer-icon { color: #b0b1ab; }
.model-info__footer li:nth-child(2) .model-info__footer-icon { color: var(--gold); }
.model-info__footer li:nth-child(3) .model-info__footer-icon { color: var(--green); }

.model-info__footer-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.model-info__footer-icon svg [fill="none"] {
  fill: none;
}

.model-info__footer p {
  margin: 0;
  max-width: 18ch;
  color: #d8d9d4;
  font-size: clamp(0.8rem, 1.08vw, 0.95rem);
  font-weight: 600;
  line-height: 1.4;
}

.model-info__note {
  margin-top: clamp(1.75rem, 3.2vw, 2.5rem);
  padding: clamp(1.4rem, 2.6vw, 1.9rem) clamp(1.1rem, 2.5vw, 2rem);
  border: 1px solid rgba(250, 174, 23, 0.18);
  border-left: 3px solid var(--gold);
  background:
    linear-gradient(110deg, rgba(250, 174, 23, 0.07), transparent 42%),
    rgba(8, 10, 7, 0.55);
  text-align: left;
}

.model-info__note h3 {
  max-width: 32ch;
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.model-info__note p {
  max-width: 62ch;
  margin: 0;
  color: #c7c8c3;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.6;
}

.model-info-hub__tagline {
  max-width: 18ch;
  margin: 0;
  color: #e0e1dc;
  font-size: clamp(0.74rem, 1.05vw, 0.9rem);
  font-weight: 600;
  line-height: 1.4;
}

@keyframes model-info-hub-glow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 0.4rem rgba(250, 174, 23, 0.15));
    transform: scale(1);
  }
  50% {
    filter: brightness(1.22) drop-shadow(0 0 1.6rem rgba(250, 174, 23, 0.65));
    transform: scale(1.07);
  }
}

@keyframes model-info-hub-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes model-info-bridge-glow {
  0% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
  100% {
    mask-position: var(--bridge-wave-period) 0;
    -webkit-mask-position: var(--bridge-wave-period) 0;
  }
}

@keyframes model-info-dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1.35); }
}

@keyframes model-info-glyph-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.28);
  }
  50% {
    transform: scale(1.12);
    box-shadow:
      0 0.35rem 0.9rem rgba(0, 0, 0, 0.28),
      0 0 1.1rem rgba(250, 174, 23, 0.35);
  }
}

@keyframes model-info-icon-breathe {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes model-info-field-wave {
  0% {
    mask-position: 0 -155vh;
    -webkit-mask-position: 0 -155vh;
  }
  100% {
    mask-position: 0 -40vh;
    -webkit-mask-position: 0 -40vh;
  }
}

.model-expand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.model-expand {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  background: #0c0e0b;
}

.model-expand:nth-child(even) {
  border-top-color: var(--gold);
}

.model-expand__path {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-expand h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  letter-spacing: -0.04em;
}

.model-expand p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.65;
}

.model-expand p:last-child {
  margin-bottom: 0;
}

.model-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.faq-section {
  width: 100%;
  padding: clamp(3.5rem, 6.5vw, 6.5rem) var(--page-pad) clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 40% at 12% 0%, rgba(125, 166, 48, 0.08), transparent 70%),
    radial-gradient(ellipse 45% 40% at 90% 20%, rgba(250, 174, 23, 0.06), transparent 72%),
    var(--black-soft);
}

.faq-quadrants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: start;
}

.faq-quadrant {
  min-width: 0;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1rem, 1.8vw, 1.35rem) clamp(1.25rem, 2.2vw, 1.75rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
    rgba(10, 12, 9, 0.55);
}

.faq-quadrant__head {
  margin-bottom: 0.85rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-quadrant h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.faq-quadrant .faq-list {
  width: 100%;
  margin: 0;
}

.faq-list,
.faq-cta {
  width: min(100%, 52rem);
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-quadrant .faq-item:first-child {
  border-top: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.05rem 2.25rem 1.05rem 0;
  color: var(--white);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 1.05rem;
  right: 0;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--gold);
  outline: 0;
}

.faq-item p {
  margin: 0 0 1.15rem;
  max-width: none;
  color: #c7c8c3;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.65;
}

.faq-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.faq-cta p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

@media (max-width: 1100px) {
  .model-info__flow {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
    gap: 0.9rem;
  }

  .faq-quadrants {
    grid-template-columns: 1fr;
  }

  .model-info-bridge {
    min-height: 5rem;
  }

  .model-info-bridge__wave {
    inset: 18% 8%;
  }

  .model-info-bridge__chip {
    max-width: none;
    grid-auto-flow: column;
    align-items: center;
    gap: 0.65rem;
  }

  .model-info-hub__tagline {
    max-width: 28ch;
  }
}

@media (max-width: 880px) {
  .model-info__footer {
    grid-template-columns: 1fr;
  }

  .model-info__footer li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .model-expand-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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