body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 20%);
  opacity: 0.9;
  z-index: -2;
}

.site-noise,
.site-gradients {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.site-noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
}

.site-gradients {
  background:
    radial-gradient(circle at 12% 18%, rgba(186, 198, 240, 0.12), transparent 0 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.08), transparent 0 22%),
    radial-gradient(circle at 62% 88%, rgba(150, 150, 150, 0.08), transparent 0 24%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: block;
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: auto;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: var(--container);
  min-height: 4.95rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
  transition: none;
}

.site-header .brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-header .brand-mark {
  width: auto;
  height: 3.42rem;
  color: var(--mist-50);
  transform: none;
}

.header-meta,
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.header-meta {
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-meta span {
  position: relative;
}

.header-meta span + span {
  padding-left: 0.95rem;
}

.header-meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.45rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.desktop-nav {
  justify-content: flex-end;
  gap: 1.1rem;
  margin-left: auto;
  justify-self: end;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.86);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 0.55rem;
  justify-self: end;
  flex: 0 0 auto;
}

.button-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.35rem;
  padding: 0.68rem 1rem;
  font-size: 0.76rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.menu-toggle span {
  position: absolute;
  width: 0.95rem;
  height: 1px;
  background: var(--mist-50);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  gap: 0;
  width: min(31rem, calc(100vw - 2rem));
  padding: 0.45rem 1rem 1rem;
  background: rgba(7, 7, 7, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 14px 34px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -0.35rem);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.mobile-nav a {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-nav a:first-child {
  border-top: 0;
}

.mobile-nav .button {
  justify-content: center;
  margin-top: 0.5rem;
  color: var(--ink-950);
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: -2.35rem;
  padding: 6.25rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.9) 100%);
}

.hero-backdrop-video,
.footer-backdrop-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.56) 0%, rgba(5, 5, 5, 0.34) 30%, rgba(5, 5, 5, 0.08) 68%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.02) 42%, rgba(5, 5, 5, 0.42) 100%);
}

.hero-backdrop-video {
  object-fit: cover;
  object-position: 54% center;
  filter: grayscale(1) brightness(0.82) contrast(1.06);
  opacity: 0.86;
  transform: scale(1.08);
  background: transparent;
  transition: opacity 420ms ease;
}

.hero-backdrop.is-playing .hero-backdrop-video {
  opacity: 0.9;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  padding-top: 1.2rem;
}

.hero-title {
  max-width: 9.1ch;
  margin-top: 1.15rem;
  font-size: clamp(3.8rem, 7.8vw, 7.4rem);
}

.hero-summary {
  max-width: 34rem;
  margin-top: 1.45rem;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.15rem;
}

.proof-block {
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  will-change: contents;
}

.proof-label {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.66);
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 0;
  align-self: start;
  padding-top: clamp(3.9rem, 5vw, 4.4rem);
  transform: translateY(calc(var(--hero-shift, 0px) * -1));
}

.hero-stage-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.hero-stage-topline span {
  position: relative;
}

.hero-stage-topline span + span {
  padding-left: 1rem;
}

.hero-stage-topline span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.hero-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  grid-template-areas:
    "primary secondary"
    "primary tertiary";
  gap: 1rem;
  align-items: start;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.01);
  transition:
    transform 420ms var(--motion-smooth),
    border-color 280ms ease,
    box-shadow 420ms var(--motion-smooth);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition:
    transform 760ms var(--motion-smooth),
    filter 420ms ease,
    opacity 420ms ease;
}

.hero-media-primary {
  grid-area: primary;
  min-height: 28.75rem;
}

.hero-media-secondary {
  grid-area: secondary;
  aspect-ratio: 1 / 1;
}

.hero-media-tertiary {
  grid-area: tertiary;
  aspect-ratio: 1 / 1;
}

.hero-stage-kicker,
.service-topline,
.qualify-overline,
.footer-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stage-kicker {
  color: rgba(255, 255, 255, 0.56);
}

.hero-stage-title {
  max-width: 18rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-stage-copy {
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.hero-stage-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-section {
  position: relative;
  min-height: 118vh;
  margin-top: 2rem;
  background: var(--mist-100);
  color: var(--ink-950);
}

.manifesto-shell {
  height: 100%;
}

.manifesto-sticky {
  position: sticky;
  top: 6.5rem;
  display: grid;
  align-content: start;
  min-height: calc(100vh - 6.5rem);
  padding: 4.5rem 0 3rem;
}

.manifesto-text {
  max-width: 12ch;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.signal-band {
  padding: 0.8rem 0 6rem;
  background: var(--mist-100);
}

.signal-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.signal-card {
  padding: 0.2rem 0 0;
  border: 0;
  background: none;
  color: var(--ink-950);
  transition:
    transform 360ms var(--motion-smooth),
    opacity 240ms ease;
}

.signal-card:not(:first-child) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-light);
}

.signal-index {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  opacity: 0.56;
}

.signal-card p {
  max-width: 22rem;
  font-size: 1rem;
  line-height: 1.45;
}

.content-section {
  padding: 7.5rem 0;
}

.section-light {
  background: var(--mist-100);
  color: var(--ink-950);
}

.section-dark {
  background: var(--ink-950);
}

.section-light .button-dark {
  color: var(--ink-950);
  border-color: rgba(16, 16, 16, 0.18);
  background: transparent;
}

.section-light .button-dark::before {
  background: rgba(16, 16, 16, 0.08);
}

.section-intro {
  display: grid;
  gap: 1.1rem;
}

.narrow-intro {
  max-width: 64rem;
}

.sticky-intro {
  align-self: start;
  position: sticky;
  top: 7.4rem;
}

.problem-grid,
.urgency-grid,
.comparison-grid,
.industry-grid,
.testimonial-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.6rem;
}

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

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

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

.info-card,
.testimonial-card,
.edge-card,
.step-card,
.service-card,
.qualify-panel,
.editorial-card,
.contact-form,
.cta-ribbon {
  border-radius: 0;
}

.info-card,
.testimonial-card,
.edge-card {
  padding: 1.35rem 0 0;
}

.info-card,
.testimonial-card,
.qualify-panel,
.editorial-card,
.contact-form,
.cta-ribbon,
.leadership-card,
.faq-item {
  transition:
    transform 360ms var(--motion-smooth),
    border-color 280ms ease,
    box-shadow 360ms var(--motion-smooth),
    background-color 280ms ease;
}

.edge-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.info-card h3,
.edge-card h3,
.service-card h3,
.qualify-panel h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.info-card p,
.edge-card p,
.service-card p,
.testimonial-card p,
.qualify-panel li,
.contact-form label,
.editorial-card p {
  font-size: 1rem;
  line-height: 1.58;
}

.info-card {
  display: grid;
  gap: 0.75rem;
}

.info-card-light {
  background: none;
  border: 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  box-shadow: none;
}

.info-card-dark,
.testimonial-card,
.edge-card {
  background: none;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card-dark.is-featured {
  background: none;
  border-top-color: rgba(255, 255, 255, 0.36);
}

.comparison-actions {
  margin-top: 2rem;
}

#comparison .card-index {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: none;
  color: var(--mist-50);
  opacity: 1;
}

#comparison .info-card-dark,
#comparison .info-card-dark.is-featured {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.card-index {
  display: inline-block;
  width: fit-content;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  opacity: 0.62;
}

.urgency-card-icon {
  display: inline-flex;
  width: clamp(2.9rem, 5vw, 3.6rem);
  color: rgba(16, 16, 16, 0.78);
  margin-bottom: 0.2rem;
}

.urgency-card-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.urgency-grid .card-index {
  color: #0a0a0a;
  opacity: 1;
  font-weight: 900;
}

.section-light .card-index {
  background: none;
}

.section-light .edge-card {
  border-top-color: rgba(16, 16, 16, 0.12);
}

#edge .edge-grid {
  gap: 1.2rem;
  margin-top: 2.2rem;
}

#edge .section-intro {
  max-width: 48rem;
}

#edge .section-lead {
  max-width: 41rem;
  margin-top: 0.95rem;
  color: rgba(10, 10, 10, 0.68);
}

#industries .section-intro {
  max-width: 50rem;
}

#industries .section-lead {
  max-width: 42rem;
  margin-top: 0.95rem;
  color: rgba(10, 10, 10, 0.68);
}

#edge .edge-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 31.5rem;
  padding: 0;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 24px rgba(13, 13, 13, 0.04);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 320ms ease;
}

#edge .edge-card-media {
  margin: 0;
  width: 100%;
  height: 13rem;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  overflow: hidden;
  background: rgba(10, 10, 10, 0.05);
}

#edge .edge-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition:
    transform 420ms ease,
    filter 320ms ease,
    opacity 320ms ease;
  opacity: 0.96;
}

#edge .edge-card-body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.45rem 1.35rem 1.35rem;
}

#edge .edge-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.18));
  transform: scaleX(0.22);
  transform-origin: left center;
  opacity: 0.68;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease;
}

#edge .edge-card::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.18);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 240ms ease,
    box-shadow 240ms ease;
}

#edge .edge-card h3 {
  max-width: 16ch;
  color: var(--ink-950);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    color 240ms ease;
}

#edge .edge-card h3 + p {
  margin-top: -0.15rem;
}

#edge .edge-card p {
  color: rgba(10, 10, 10, 0.72);
  transition: color 240ms ease;
}

#edge .edge-card[data-reveal] {
  transition-delay: 0ms;
}

#edge .edge-card:nth-child(2)[data-reveal] {
  transition-delay: 60ms;
}

#edge .edge-card:nth-child(3)[data-reveal] {
  transition-delay: 120ms;
}

#edge .edge-card:nth-child(4)[data-reveal] {
  transition-delay: 180ms;
}

@media (hover: hover) {
  #edge .edge-card:hover,
  #edge .edge-card:focus-within {
    transform: translateY(-8px);
    border-color: rgba(16, 16, 16, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.18) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      0 22px 36px rgba(13, 13, 13, 0.08);
  }

  #edge .edge-card:hover .edge-card-media img,
  #edge .edge-card:focus-within .edge-card-media img {
    transform: scale(1.035);
    filter: grayscale(1) contrast(1.06) brightness(1);
    opacity: 1;
  }

  #edge .edge-card:hover::before,
  #edge .edge-card:focus-within::before {
    transform: scaleX(1);
    opacity: 1;
  }

  #edge .edge-card:hover::after,
  #edge .edge-card:focus-within::after {
    transform: translateY(-2px) scale(1.1);
    background: rgba(10, 10, 10, 0.72);
    box-shadow: 0 0 0 0.42rem rgba(10, 10, 10, 0.06);
  }

  #edge .edge-card:hover h3,
  #edge .edge-card:focus-within h3 {
    transform: translateX(0.38rem);
  }

  #edge .edge-card:hover p,
  #edge .edge-card:focus-within p {
    color: rgba(10, 10, 10, 0.84);
  }
}

@media (max-width: 720px) {
  #edge .section-lead {
    margin-top: 0.8rem;
  }

  #edge .edge-card {
    min-height: auto;
  }

  #edge .edge-card-media {
    height: 11rem;
  }
}

#industries .info-card-light {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

#industries .industry-card-icon {
  display: inline-flex;
  width: clamp(3rem, 5vw, 3.7rem);
  color: rgba(10, 10, 10, 0.82);
  margin-bottom: 0.05rem;
}

#industries .industry-card-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

#industries .info-card-light h3 {
  margin-top: 0;
}

@media (max-width: 720px) {
  #industries .section-lead {
    margin-top: 0.8rem;
  }
}

.closing-text {
  max-width: 52rem;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.closing-text-dark {
  color: rgba(10, 10, 10, 0.78);
}

.about-grid,
.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.about-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1.5rem;
  align-items: start;
}

.editorial-media {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  grid-row: span 2;
  padding-top: 1.35rem;
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  filter: none;
  transition:
    transform 760ms var(--motion-smooth),
    filter 420ms ease,
    opacity 420ms ease;
}

.editorial-media figcaption {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.52);
}

.editorial-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem 0 0;
  background: none;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip {
  align-items: center;
  gap: 0.55rem 0.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip span {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.72);
  background: none;
}

.trust-strip span + span::before {
  content: "/";
  margin-right: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

.framework-shell {
  display: grid;
  gap: 2.5rem;
}

.framework-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.framework-label-group {
  display: grid;
  align-content: start;
  gap: 0.15rem;
  padding-top: 1.15rem;
}

.framework-section-index,
.framework-section-label,
.framework-service-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.framework-section-index {
  color: rgba(255, 255, 255, 0.8);
}

.framework-section-label,
.framework-service-label {
  color: rgba(255, 255, 255, 0.46);
}

.framework-heading-block {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
  padding-top: 1rem;
  justify-items: start;
}

.framework-title {
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.framework-intro-copy {
  max-width: 38rem;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.framework-services {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.framework-index {
  position: sticky;
  top: 7.4rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding-top: 0.25rem;
}

.framework-index-link {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.36);
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.framework-index-link:hover,
.framework-index-link:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.framework-index-link.is-active {
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(0.2rem);
  filter: none;
}

.framework-cards {
  display: grid;
  gap: 1.65rem;
}

.framework-service-card {
  display: grid;
  gap: 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  scroll-margin-top: 7.5rem;
}

.framework-service-media {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.framework-service-media img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  transition:
    transform 500ms ease,
    filter 360ms ease,
    opacity 360ms ease;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
  opacity: 0.76;
}

.framework-service-card.is-active .framework-service-media img,
.framework-service-card:hover .framework-service-media img {
  transform: scale(1.015);
  filter: saturate(1) contrast(1.02) brightness(0.98);
  opacity: 1;
}

.framework-service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.72fr);
  gap: 1.5rem 2rem;
  padding: 1.35rem 0 0;
}

.framework-service-main {
  display: grid;
  gap: 0.9rem;
}

.framework-service-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: rgba(255, 255, 255, 0.68);
  transition: color 240ms ease;
}

.framework-service-step {
  display: inline-block;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 300;
  font-size: 0.4em;
  line-height: 1;
  vertical-align: top;
  margin-top: 0.08em;
}

.framework-service-card.is-active .framework-service-title,
.framework-service-card:hover .framework-service-title {
  color: rgba(255, 255, 255, 0.98);
}

.framework-service-copy {
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.66);
  transition: color 240ms ease;
}

.framework-service-card.is-active .framework-service-copy,
.framework-service-card:hover .framework-service-copy {
  color: rgba(255, 255, 255, 0.78);
}

.framework-service-side {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.framework-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.framework-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-grid,
.edge-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.125rem;
  margin-top: 2.6rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  --service-image-scale: 1;
  --service-image-position: 50% 50%;
  height: 100%;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.14) 100%);
  border: 1px solid rgba(12, 12, 12, 0.12);
  box-shadow: none;
  overflow: hidden;
}

.service-card:nth-child(1) {
  --service-image-scale: 1.06;
  --service-image-position: 60% 50%;
}

.service-card:nth-child(2) {
  --service-image-scale: 1.06;
  --service-image-position: 50% 46%;
}

.service-card:nth-child(3) {
  --service-image-scale: 1.06;
  --service-image-position: 52% 40%;
}

.service-media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 439 / 533;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink-950);
  border-bottom: 1px solid rgba(12, 12, 12, 0.12);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.18) 100%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--service-image-position);
  transform: scale(var(--service-image-scale));
  filter: none;
  transition:
    transform 420ms ease,
    filter 320ms ease;
}

.service-card:hover .service-media img {
  transform: scale(calc(var(--service-image-scale) + 0.03));
  filter: none;
}

.service-copy {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(12, 12, 12, 0.08);
}

.service-topline {
  color: rgba(10, 10, 10, 0.54);
}

.service-copy h3 {
  max-width: none;
  font-size: clamp(1.95rem, 2.4vw, 2.7rem);
  color: var(--ink-950);
}

.service-subhead {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.28;
  color: rgba(10, 10, 10, 0.84);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.3rem 1.3rem 1.35rem;
  background: none;
}

.service-summary {
  color: rgba(10, 10, 10, 0.74);
}

.service-card ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding-left: 0;
  margin-top: 0.1rem;
}

.service-card li {
  position: relative;
  padding: 0 0 0 0.95rem;
  border-top: 0;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.86);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 1px;
  background: rgba(10, 10, 10, 0.42);
}

.service-best-for,
.consequence,
.contact-note {
  color: rgba(10, 10, 10, 0.64);
}

.service-best-for {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 12, 12, 0.08);
}

.section-light .service-cta.button-dark {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: var(--ink-950);
  color: var(--mist-50);
  border-color: var(--ink-950);
}

.section-light .service-cta.button-dark::before {
  background: rgba(255, 255, 255, 0.08);
}

.cta-ribbon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
  padding: 1.5rem 0 0;
  background: none;
  border: 0;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
}

.cta-ribbon h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink-950);
}

.cta-ribbon .section-kicker {
  margin-bottom: 0.8rem;
}

.ticker-section {
  overflow: hidden;
  padding: 1rem 0;
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-marquee {
  display: flex;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  will-change: transform;
  animation: ticker 48s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.ticker-item::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.comparison-grid {
  margin-top: 2.4rem;
}

.comparison-grid-compact {
  margin-top: 2rem;
}

.edge-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.leadership-shell {
  display: grid;
  gap: 2.6rem;
}

.leadership-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 44rem;
}

.leadership-heading {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  padding-top: 0;
}

.leadership-stack {
  display: grid;
  gap: 1.8rem;
}

.leadership-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.34fr) minmax(0, 0.42fr) minmax(15rem, 0.24fr);
  gap: 1.5rem;
  align-items: start;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.leadership-portrait {
  margin: 0;
}

.leadership-portrait img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.94);
  transition:
    transform 760ms var(--motion-smooth),
    filter 420ms ease,
    opacity 420ms ease;
}

.leadership-portrait-aj img {
  object-position: 50% 18%;
}

.leadership-portrait-shihab img {
  object-position: 50% 22%;
}

.leadership-card-copy,
.leadership-card-side {
  display: grid;
}

.leadership-card-copy {
  gap: 0.8rem;
  align-content: start;
}

.leadership-card-side {
  gap: 0.9rem;
  align-content: start;
  padding-top: 0.15rem;
}

.leadership-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.leadership-card-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.leadership-card-role {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.leadership-card-body,
.leadership-card-note {
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.68);
}

.leadership-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.leadership-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-card {
  display: grid;
  gap: 1.2rem;
}

.testimonial-card p {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.42;
  letter-spacing: -0.03em;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.qualify-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.qualify-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

#contact .section-intro {
  align-content: start;
}

#contact .section-kicker {
  align-self: start;
  width: fit-content;
}

.qualify-panel {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  align-content: start;
  padding: 1.35rem 1.35rem 1.4rem;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 24px rgba(13, 13, 13, 0.04);
  position: relative;
  overflow: hidden;
}

#qualify .qualify-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.18));
  transform: scaleX(0.22);
  transform-origin: left center;
  opacity: 0.68;
}

#qualify .qualify-panel::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.18);
}

#qualify .qualify-overline {
  width: fit-content;
  margin-bottom: 0.1rem;
}

#qualify .qualify-panel h3 {
  margin-top: 0;
}

#qualify .qualify-panel .hero-actions-row {
  margin-top: 1rem;
  align-self: end;
}

.qualify-panel ul {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 220ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer p {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  padding-bottom: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  padding: 1.35rem 1.35rem 1.4rem;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 24px rgba(13, 13, 13, 0.04);
  position: relative;
  overflow: hidden;
}

#contact .contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.18));
  transform: scaleX(0.22);
  transform-origin: left center;
  opacity: 0.68;
}

#contact .contact-form::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  right: 1.35rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.18);
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--ink-950);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.16);
  border-radius: 0;
  background: transparent;
  padding: 0.95rem 0;
  color: var(--ink-950);
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(16, 16, 16, 0.42);
  background: transparent;
}

.contact-success {
  display: none;
  gap: 0.85rem;
  align-content: center;
  min-height: 25rem;
  padding: 0.6rem 0;
}

.contact-success strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.94;
  color: var(--ink-950);
}

.contact-success p {
  max-width: 28rem;
  color: rgba(10, 10, 10, 0.66);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form.is-submitted {
  align-content: center;
}

.contact-form.is-submitted > :not(.contact-success) {
  display: none;
}

.contact-form.is-submitted .contact-success {
  display: grid;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 2.6rem;
  background: var(--ink-950);
}

.footer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 100%);
}

.footer-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.56) 0%, rgba(5, 5, 5, 0.34) 30%, rgba(5, 5, 5, 0.08) 68%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.02) 42%, rgba(5, 5, 5, 0.42) 100%);
}

.footer-backdrop-video {
  object-fit: cover;
  object-position: 50% center;
  filter: none;
  opacity: 0.84;
  transform: scale(1.08);
  background: transparent;
  transition: opacity 420ms ease;
}

.footer-backdrop.is-playing .footer-backdrop-video {
  opacity: 0.9;
}

.hero-backdrop-video::-webkit-media-controls,
.hero-backdrop-video::-webkit-media-controls-enclosure,
.hero-backdrop-video::-webkit-media-controls-panel,
.hero-backdrop-video::-webkit-media-controls-start-playback-button,
.footer-backdrop-video::-webkit-media-controls,
.footer-backdrop-video::-webkit-media-controls-enclosure,
.footer-backdrop-video::-webkit-media-controls-panel,
.footer-backdrop-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.footer-cta {
  display: grid;
  gap: 1rem;
  padding: 2.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-copy {
  display: grid;
  gap: 0.9rem;
}

.button-footer {
  min-height: 2.15rem;
  padding: 0.6rem 0.98rem;
  font-size: 0.76rem;
  white-space: nowrap;
  flex: 0 0 auto;
  align-self: start;
}

.footer-cta h2 {
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) max-content max-content;
  align-items: start;
  gap: 2.4rem;
  padding-top: 0.9rem;
}

.footer-brand-link {
  width: fit-content;
}

.footer-brand-mark {
  width: 14.4rem;
}

.footer-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.42);
}

.footer-column {
  justify-self: end;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.footer-column .footer-links {
  padding-left: 0.82rem;
}

.footer-links a,
.footer-links span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a,
.footer-legal-trigger {
  position: relative;
  width: fit-content;
  text-decoration: none;
}

.footer-links a::after,
.footer-legal-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-legal-trigger:hover::after,
.footer-legal-trigger:focus-visible::after {
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.footer-bottom-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.footer-legal-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
}

.footer-group-note {
  text-align: right;
  color: rgba(255, 255, 255, 0.56);
}

.footer-modal {
  width: min(34rem, calc(100vw - 2rem));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mist-50);
}

.footer-modal::backdrop {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(12px);
}

.footer-modal-panel {
  position: relative;
  display: grid;
  gap: 0.95rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.96) 0%, rgba(7, 7, 7, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.42);
}

.footer-modal-close {
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
}

.footer-modal-kicker {
  width: fit-content;
  min-height: 2rem;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-modal h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.footer-modal p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

@media (hover: hover) {
  .hero-media:hover,
  .hero-media:focus-within {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  }

  .hero-media:hover img,
  .hero-media:focus-within img {
    transform: scale(1.03);
    filter: none;
  }

  .signal-card:hover,
  .signal-card:focus-within,
  .info-card:hover,
  .info-card:focus-within,
  .testimonial-card:hover,
  .testimonial-card:focus-within,
  .qualify-panel:hover,
  .qualify-panel:focus-within,
  .editorial-card:hover,
  .editorial-card:focus-within,
  .contact-form:hover,
  .contact-form:focus-within,
  .cta-ribbon:hover,
  .cta-ribbon:focus-within,
  .leadership-card:hover,
  .leadership-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within {
    transform: translateY(-4px);
  }

  .section-light .info-card:hover,
  .section-light .info-card:focus-within,
  .qualify-panel:hover,
  .qualify-panel:focus-within,
  .contact-form:hover,
  .contact-form:focus-within,
  .cta-ribbon:hover,
  .cta-ribbon:focus-within {
    border-top-color: rgba(16, 16, 16, 0.22);
    box-shadow: 0 16px 30px rgba(13, 13, 13, 0.06);
  }

  .section-dark .info-card:hover,
  .section-dark .info-card:focus-within,
  .testimonial-card:hover,
  .testimonial-card:focus-within,
  .editorial-card:hover,
  .editorial-card:focus-within,
  .leadership-card:hover,
  .leadership-card:focus-within,
  .faq-item:hover,
  .faq-item:focus-within {
    border-top-color: rgba(255, 255, 255, 0.22);
  }

  .editorial-media:hover img,
  .editorial-media:focus-within img {
    transform: scale(1.028);
    filter: none;
  }

  .leadership-card:hover .leadership-portrait img,
  .leadership-card:focus-within .leadership-portrait img {
    transform: scale(1.028);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes driftY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes driftX {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

@media (max-width: 1180px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .mobile-nav {
    width: min(31rem, calc(100vw - 1.5rem));
  }

  .hero-shell,
  .about-grid,
  .faq-shell,
  .qualify-grid,
  .contact-grid,
  .footer-grid,
  .leadership-intro,
  .framework-intro,
  .framework-services,
  .framework-service-content {
    grid-template-columns: 1fr;
  }

  .hero-media-primary {
    min-height: 25rem;
  }

  .hero-media-secondary,
  .hero-media-tertiary {
    aspect-ratio: 1 / 1;
  }

  .signal-card:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .about-column {
    grid-template-columns: 1fr;
  }

  .editorial-media {
    grid-row: auto;
    max-width: 24rem;
  }

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

  .service-grid,
  .urgency-grid,
  .comparison-grid,
  .testimonial-grid,
  .signal-shell,
  .edge-grid {
    grid-template-columns: 1fr;
  }

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

  .leadership-portrait {
    max-width: 24rem;
  }

  .framework-index {
    position: static;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    padding-top: 0;
  }

  .cta-ribbon,
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    justify-self: start;
  }

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

  .footer-group-note {
    text-align: left;
  }

  .button-footer {
    align-self: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
  }

  .manifesto-section {
    min-height: 120vh;
  }

  .hero-section {
    margin-top: -2.7rem;
    padding-top: 5.8rem;
  }

  .hero-backdrop-video {
    transform: scale(1.14);
  }

  .hero-backdrop.is-playing .hero-backdrop-video {
    opacity: 0.8;
  }

  .footer-backdrop-video {
    transform: scale(1.14);
  }

  .footer-backdrop.is-playing .footer-backdrop-video {
    opacity: 0.8;
  }

  .hero-copy {
    padding-top: 0.55rem;
  }

  .hero-title {
    max-width: 8.1ch;
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    width: var(--container);
    min-height: 4.1rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .brand-link {
    min-width: 0;
  }

  .site-header .brand-mark {
    height: 2.52rem;
    transform: none;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .site-header .header-actions > .button-header {
    display: none;
  }

  .mobile-nav {
    width: var(--container);
    padding-left: 0;
    padding-right: 0;
  }

  .hero-proof,
  .problem-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    transform: none;
    padding-top: 1.2rem;
  }

  .framework-index {
    grid-template-columns: 1fr;
  }

  .leadership-card-name {
    font-size: clamp(2.3rem, 10vw, 3.35rem);
  }

  .leadership-card-role {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
  }

  .framework-index-link {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .hero-media-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "primary"
      "secondary"
      "tertiary";
  }

  .hero-media-primary {
    min-height: 19rem;
  }

  .hero-media-secondary,
  .hero-media-tertiary {
    min-height: 15rem;
  }

  .manifesto-sticky {
    top: 5.7rem;
    padding: 4.25rem 0;
  }

  .content-section {
    padding: 5.5rem 0;
  }

  .framework-title {
    font-size: clamp(2.7rem, 15vw, 4.3rem);
  }

  .framework-service-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .signal-card {
    padding-left: 0;
  }

  .problem-grid,
  .industry-grid,
  .edge-grid {
    grid-template-columns: 1fr;
  }
}
