@font-face {
  font-family: "Manrope";
  src: url("/public/fonts/ai-native/manrope-wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05070a;
  --bg-2: #090c10;
  --ink: #f7f7f2;
  --muted: rgba(247, 247, 242, 0.66);
  --dim: rgba(247, 247, 242, 0.34);
  --line: rgba(126, 207, 242, 0.18);
  --line-strong: rgba(126, 207, 242, 0.38);
  --hot: #78cff0;
  --hot-soft: rgba(120, 207, 240, 0.12);
  --cta: #72cef4;
  --cta-glow: rgba(114, 206, 244, 0.3);
  --button-bg: #2b64ee;
  --button-bg-hover: #3276f4;
  --button-border: rgba(117, 188, 255, 0.68);
  --button-radius: 2px;
  --button-ink: #f6fbff;
  --role-accent: #35e6b1;
  --role-soft: rgba(53, 230, 177, 0.12);
  --role-glow: rgba(53, 230, 177, 0.42);
  --font-mono: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-brand-lockup: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-body: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-display: "Manrope", "Source Code Pro", system-ui, sans-serif;
  --font-hero: "Manrope", "Source Code Pro", system-ui, sans-serif;
  --font-accent: "Manrope", "Source Code Pro", system-ui, sans-serif;
  --font-readable: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-icon: "Material Symbols Sharp";
  --mono: var(--font-mono);
  --display: var(--font-display);
  --hero-display: var(--font-hero);
  --body-copy: var(--font-body);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 76px;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-copy);
  font-feature-settings: "kern" 1, "liga" 1;
}

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

[hidden] {
  display: none !important;
}

.copy-edit-toolbar {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2147482900;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(560px, calc(100vw - 36px));
  padding: 8px;
  border: 1px solid rgba(53, 230, 177, 0.58);
  border-radius: 8px;
  background: rgba(4, 10, 12, 0.94);
  color: #f7f7f2;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  font-family: var(--mono);
}

.copy-edit-toolbar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(53, 230, 177, 0.62);
  border-radius: 6px;
  background: rgba(53, 230, 177, 0.14);
  color: #f7f7f2;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-edit-toolbar button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.copy-edit-toolbar span {
  max-width: 240px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 11px;
  line-height: 1.25;
}

.copy-edit-toolbar span.is-error {
  color: #ffbd66;
}

.copy-edit-mode .copy-edit-target {
  -webkit-user-select: text !important;
  user-select: text !important;
  pointer-events: auto !important;
  caret-color: rgba(53, 230, 177, 0.95);
  cursor: text;
  outline: 1px dashed rgba(53, 230, 177, 0.62);
  outline-offset: 3px;
}

.copy-edit-mode .copy-edit-target:empty,
.copy-edit-mode .copy-edit-target[data-copy-empty-anchor] {
  display: inline-block;
  min-width: 1.25ch;
  min-height: 1em;
}

.copy-edit-mode .copy-edit-target:empty::before {
  content: "\00a0";
}

.copy-edit-mode .copy-edit-target:focus {
  outline: 2px solid rgba(53, 230, 177, 0.95);
  background: rgba(53, 230, 177, 0.08);
}

body.copy-edit-mode :where(a, button, summary, [role="button"], [data-audience-choice], [data-domain-filter], .outcome-sphere, .schedule-tile, .door-card, .audience-tab) {
  -webkit-user-drag: none;
}

body.copy-edit-mode :where(a, button, summary, [role="button"], [data-audience-choice], [data-domain-filter], .outcome-sphere, .schedule-tile, .door-card, .audience-tab):not(.section-rail__sortable-item):not(.section-rail__drag-handle),
body.copy-edit-mode :where(a, button, summary, [role="button"], [data-audience-choice], [data-domain-filter], .outcome-sphere, .schedule-tile, .door-card, .audience-tab):not(.section-rail__sortable-item):not(.section-rail__drag-handle):hover,
body.copy-edit-mode :where(a, button, summary, [role="button"], [data-audience-choice], [data-domain-filter], .outcome-sphere, .schedule-tile, .door-card, .audience-tab):not(.section-rail__sortable-item):not(.section-rail__drag-handle):focus {
  cursor: text !important;
  transform: none !important;
}

body.copy-edit-mode .section-rail a.section-rail__sortable-item,
body.copy-edit-mode .section-rail a.section-rail__sortable-item:not(.copy-edit-target) {
  cursor: grab !important;
}

body.copy-edit-mode .section-rail__drag-handle {
  cursor: grab !important;
}

.wire-cloud-root {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  --wire-cloud-fade-y: 120vh;
  --wire-cloud-fade-end-y: 120vh;
  --wire-cloud-fade-band: 132px;
  --wire-cloud-base-opacity: 0.72;
  --wire-cloud-section-opacity: 1;
  --wire-cloud-offset-x: 0px;
  --wire-cloud-offset-y: 0px;
  --wire-cloud-scale: 1;
  --wire-cloud-rotate: 0deg;
  --wire-cloud-origin-x: center;
  --wire-cloud-origin-y: center;
  --wire-cloud-clip-left: 0px;
  opacity: calc(var(--wire-cloud-base-opacity) * var(--wire-cloud-section-opacity));
  transform: translate3d(var(--wire-cloud-offset-x), var(--wire-cloud-offset-y), 0) scale(var(--wire-cloud-scale)) rotate(var(--wire-cloud-rotate));
  transform-origin: var(--wire-cloud-origin-x) var(--wire-cloud-origin-y);
  filter: saturate(1.18) brightness(1.12);
  clip-path: inset(0 0 0 var(--wire-cloud-clip-left));
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(var(--wire-cloud-fade-y) - var(--wire-cloud-fade-band)),
    rgba(0, 0, 0, 0) var(--wire-cloud-fade-y),
    rgba(0, 0, 0, 0) var(--wire-cloud-fade-end-y),
    #000 calc(var(--wire-cloud-fade-end-y) + var(--wire-cloud-fade-band)),
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(var(--wire-cloud-fade-y) - var(--wire-cloud-fade-band)),
    rgba(0, 0, 0, 0) var(--wire-cloud-fade-y),
    rgba(0, 0, 0, 0) var(--wire-cloud-fade-end-y),
    #000 calc(var(--wire-cloud-fade-end-y) + var(--wire-cloud-fade-band)),
    #000 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition:
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.2, 0, 0.12, 1),
    filter 260ms ease,
    clip-path 360ms ease,
    visibility 0s linear 260ms;
  will-change: opacity, transform, clip-path;
}

body.is-wire-cloud-suppressed .wire-cloud-root {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.is-wire-cloud-case-muted .wire-cloud-root {
  --wire-cloud-section-opacity: 0.22;
  --wire-cloud-offset-x: -12vw;
  --wire-cloud-scale: 0.88;
}

body.is-wire-cloud-case-open .wire-cloud-root {
  --wire-cloud-section-opacity: 0.92;
  --wire-cloud-offset-x: 0px;
  --wire-cloud-scale: 1;
}

body.is-wire-cloud-pricing-compact .wire-cloud-root {
  --wire-cloud-section-opacity: 0.54;
  --wire-cloud-offset-x: clamp(420px, 58vw, 820px);
  --wire-cloud-scale: 0.64;
  filter: saturate(0.94) brightness(0.76) contrast(1.06);
}

body.is-wire-cloud-schedule-compact .wire-cloud-root {
  --wire-cloud-section-opacity: 0.46;
  --wire-cloud-offset-x: clamp(120px, 15vw, 260px);
  --wire-cloud-offset-y: clamp(-80px, -5vh, -38px);
  --wire-cloud-scale: 0.56;
  --wire-cloud-rotate: 86deg;
  --wire-cloud-origin-x: 78%;
  --wire-cloud-origin-y: 52%;
  filter: saturate(0.92) brightness(0.68) contrast(1.08);
}

body.is-wire-cloud-final-cta .wire-cloud-root {
  --wire-cloud-section-opacity: 1.34;
  --wire-cloud-offset-x: 0px;
  --wire-cloud-offset-y: clamp(-82px, -6.4vh, -42px);
  --wire-cloud-scale: 1.78;
  --wire-cloud-rotate: 0deg;
  --wire-cloud-origin-x: 50%;
  --wire-cloud-origin-y: 48%;
  filter: saturate(1.28) brightness(1.08) contrast(1.1);
}

@media (max-width: 760px) {
  body.is-wire-cloud-pricing-compact .wire-cloud-root {
    --wire-cloud-section-opacity: 0.28;
    --wire-cloud-offset-x: 58vw;
    --wire-cloud-scale: 0.58;
    filter: saturate(0.82) brightness(0.62) contrast(1.04);
  }

  body.is-wire-cloud-schedule-compact .wire-cloud-root {
    --wire-cloud-section-opacity: 0.12;
    --wire-cloud-offset-x: 62vw;
    --wire-cloud-offset-y: -4vh;
    --wire-cloud-scale: 0.5;
    --wire-cloud-rotate: 0deg;
    filter: saturate(0.72) brightness(0.54) contrast(1.02);
  }

  body.is-wire-cloud-final-cta .wire-cloud-root {
    --wire-cloud-section-opacity: 1.2;
    --wire-cloud-offset-x: 0px;
    --wire-cloud-offset-y: -5.4vh;
    --wire-cloud-scale: 1.38;
    filter: saturate(1.2) brightness(1.04) contrast(1.08);
  }
}

.wire-cloud-root .wire-sphere-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.wire-cloud-root,
.wire-cloud-root * {
  pointer-events: none !important;
}

.wire-cloud-root .wire-sphere-field canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

.site-main {
  position: relative;
  z-index: auto;
}

body[data-visual="firefly"] {
  --bg: #f6f6f1;
  --bg-2: #fbfbf7;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --dim: rgba(17, 17, 17, 0.34);
  --line: rgba(17, 17, 17, 0.14);
  --line-strong: rgba(17, 17, 17, 0.34);
  --hot: #111111;
  --hot-soft: rgba(17, 17, 17, 0.08);
  --cta: #72cef4;
  --cta-glow: rgba(114, 206, 244, 0.3);
}

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 92px;
}

body.is-rewriting::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent, var(--role-soft), transparent),
    radial-gradient(circle at 50% 20%, var(--role-glow), transparent 28rem);
  animation: rewriteFlash 760ms ease both;
}

body.is-rewriting h1,
body.is-rewriting .hero-secondary,
body.is-rewriting [data-role-text],
body.is-rewriting [data-role-html],
body.is-rewriting [data-role-title-line],
body.is-rewriting [data-role-route-title],
body.is-rewriting [data-role-route-body],
body.is-rewriting [data-role-route-output],
body.is-rewriting [data-role-program-title],
body.is-rewriting [data-role-program-schedule],
body.is-rewriting [data-role-program-intro],
body.is-rewriting [data-role-program-body],
body.is-rewriting [data-role-program-artifact],
body.is-rewriting .outcome-panel,
body.is-rewriting .route-card,
body.is-rewriting .program-week-card,
body.is-rewriting .schedule-tile.is-role-highlight {
  animation: textRewrite 760ms steps(2, end) both;
}

.rewrite-mode h1,
.rewrite-mode .hero-secondary {
  animation: textRewrite 760ms steps(2, end) both;
}

@keyframes rewriteFlash {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  34% {
    opacity: 0.85;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(24px);
  }
}

@keyframes textRewrite {
  0% {
    opacity: 0.42;
    filter: blur(5px) saturate(1.8);
    transform: translate3d(-8px, 0, 0);
    text-shadow: 14px 0 var(--role-accent), -10px 0 rgba(255, 255, 255, 0.16);
  }
  30% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(5px, -1px, 0);
    text-shadow: -10px 0 var(--role-accent);
  }
  56% {
    opacity: 0.72;
    filter: contrast(1.4);
    transform: translate3d(-2px, 1px, 0);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: none;
    text-shadow: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  min-height: 54px;
  padding: 7px clamp(18px, 2.4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.7vw, 24px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.58);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

body[data-visual="firefly"] .site-header {
  background: rgba(251, 251, 247, 0.72);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  font-weight: 700;
}

.site-brand img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 0 10px rgba(247, 247, 242, 0.16));
}

.audience-tabs {
  display: flex;
  align-items: stretch;
  gap: 5px;
  flex: 0 1 clamp(310px, 26vw, 460px);
  min-width: 0;
  font-family: var(--mono);
}

.audience-tab {
  appearance: none;
  min-width: 0;
  min-height: 36px;
  flex: 1 1 0;
  border: 1px solid color-mix(in srgb, var(--role-accent), transparent 72%);
  border-radius: 0;
  padding: 6px 10px;
  background: rgba(247, 247, 242, 0.026);
  color: rgba(247, 247, 242, 0.62);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.audience-tab span,
.audience-tab b {
  display: block;
  font-family: var(--mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: none;
}

.audience-tab span {
  color: color-mix(in srgb, var(--role-accent), var(--ink) 34%);
  font-size: clamp(9px, 0.58vw, 10.5px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.audience-tab b {
  margin-top: 4px;
  color: rgba(247, 247, 242, 0.66);
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.audience-tab:hover,
.audience-tab:focus-visible,
.audience-tab.is-active {
  border-color: var(--role-accent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--role-accent), transparent 88%), rgba(247, 247, 242, 0.025));
  color: rgba(247, 247, 242, 0.78);
  box-shadow: 0 0 16px color-mix(in srgb, var(--role-accent), transparent 90%);
}

.audience-tab:hover b,
.audience-tab:focus-visible b,
.audience-tab.is-active b {
  color: rgba(247, 247, 242, 0.88);
}

body.is-role-auto-previewing .audience-tab.is-active,
body.is-role-auto-previewing .door-card.is-active,
body.is-role-auto-previewing .outcome-sphere.is-active {
  animation: role-preview-pulse 820ms ease both;
}

@keyframes role-preview-pulse {
  0% {
    box-shadow: 0 0 0 rgba(53, 230, 177, 0);
  }
  45% {
    box-shadow: 0 0 0 1px var(--role-accent), 0 0 30px color-mix(in srgb, var(--role-accent), transparent 76%);
  }
  100% {
    box-shadow: 0 0 16px color-mix(in srgb, var(--role-accent), transparent 90%);
  }
}

body[data-visual="firefly"] .site-brand img {
  background: transparent;
  filter: brightness(0);
  opacity: 0.9;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.header-enroll {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1vw, 16px);
  min-width: max-content;
  font-family: var(--mono);
  line-height: 1;
}

.header-enroll__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-enroll__status i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(230, 0, 18, 0.34);
}

.header-enroll__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 clamp(16px, 1.35vw, 24px);
  border: 1px solid var(--button-border);
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  box-shadow: 0 10px 30px rgba(43, 100, 238, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-enroll__cta:hover,
.header-enroll__cta:focus-visible {
  transform: translateY(-1px);
  background: var(--button-bg-hover);
  box-shadow: 0 16px 48px rgba(50, 118, 244, 0.3);
  outline: none;
}

.top-nav > a,
.nav-dropdown > button {
  position: relative;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.top-nav > a::after,
.nav-dropdown > button::after {
  content: "|";
  margin: 0 clamp(8px, 1vw, 18px);
  color: var(--dim);
}

.top-nav > a:hover,
.top-nav > a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible,
.nav-dropdown:focus-within > button {
  color: var(--ink);
  outline: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  inset: -18px -34px -18px -26px;
}

.nav-dropdown > button {
  padding: 0;
}

.nav-dropdown > button::before {
  content: none;
  display: none;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: max-content;
  min-width: 260px;
  padding: 10px 0;
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 10, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.section-kicker--alumni {
  color: var(--button-bg);
}

body[data-visual="firefly"] .nav-dropdown__panel {
  background: rgba(251, 251, 247, 0.96);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.12);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__panel a,
.nav-dropdown__panel span {
  display: block;
  padding: 11px 14px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.section-rail {
  position: fixed;
  top: 50%;
  right: clamp(12px, 1.45vw, 26px);
  z-index: 34;
  width: clamp(112px, 8.2vw, 152px);
  max-height: calc(100svh - 108px);
  padding: 10px 7px 10px 11px;
  overflow: auto;
  border: 1px solid rgba(126, 207, 242, 0.12);
  border-right: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg-2), transparent 48%), color-mix(in srgb, var(--bg), transparent 76%));
  box-shadow: -16px 0 46px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(16px, -50%);
  backdrop-filter: blur(10px);
  transition: width 180ms ease, opacity 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

body.show-section-rail .section-rail {
  opacity: 0.72;
  pointer-events: auto;
  transform: translate(0, -50%);
}

body.show-section-rail .section-rail:hover,
body.show-section-rail .section-rail:focus-within {
  opacity: 0.94;
}

body[data-visual="firefly"] .section-rail {
  background:
    linear-gradient(90deg, rgba(251, 251, 247, 0.58), rgba(251, 251, 247, 0.26));
  box-shadow: -14px 0 42px rgba(17, 17, 17, 0.045);
}

.section-rail a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 9px;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: clamp(9px, 0.66vw, 11px);
  line-height: 1;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: lowercase;
  transition: color 160ms ease, opacity 160ms ease;
}

body.copy-edit-mode .section-rail {
  width: clamp(168px, 13.5vw, 216px);
  opacity: 0.96;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.section-rail a.section-rail__sortable-item {
  grid-template-columns: 16px minmax(0, 1fr) 9px;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.section-rail__drag-handle {
  display: inline-flex;
  width: 16px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: var(--hot);
  cursor: grab;
  font-size: 12px;
  line-height: 1;
  opacity: 0.88;
  user-select: none;
  -webkit-user-select: none;
}

.section-rail a.is-rail-dragging {
  cursor: grabbing;
  opacity: 0.36;
}

.section-rail a.is-rail-drop-before,
.section-rail a.is-rail-drop-after {
  color: var(--role-accent);
}

.section-rail a.is-rail-drop-before::before,
.section-rail a.is-rail-drop-after::after {
  content: "";
  grid-column: 1 / -1;
  height: 2px;
  background: var(--role-accent);
  box-shadow: 0 0 18px var(--role-glow);
}

.section-rail a + a {
  margin-top: clamp(5px, 1.1vh, 11px);
}

.section-rail a:hover,
.section-rail a:focus-visible,
.section-rail a.is-active {
  color: var(--hot);
}

.section-rail i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.6;
  box-shadow: 0 0 0 rgba(120, 207, 240, 0);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.section-rail a.is-active i {
  width: 10px;
  height: 10px;
  opacity: 1;
  transform: translateX(1px);
  box-shadow: 0 0 28px var(--hot);
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus-visible {
  color: var(--ink);
  background: rgba(120, 207, 240, 0.1);
  outline: none;
}

.nav-dropdown__panel .is-current {
  color: var(--hot);
}

.hero-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, var(--hot-soft), transparent 31%),
    radial-gradient(circle at 12% 18%, rgba(247, 247, 242, 0.045), transparent 22%),
    radial-gradient(circle at 38% 72%, rgba(120, 207, 240, 0.055), transparent 34%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

body[data-visual="firefly"] .hero-shell {
  min-height: 245svh;
  overflow: visible;
  background:
    radial-gradient(circle at 68% 18%, rgba(17, 17, 17, 0.05), transparent 28%),
    radial-gradient(circle at 78% 56%, rgba(17, 17, 17, 0.035), transparent 38%),
    linear-gradient(180deg, #fbfbf7 0%, #f6f6f1 52%, #eeeeea 100%);
}

body[data-visual="firefly"] .hero-shell::before {
  background:
    linear-gradient(90deg, rgba(251, 251, 247, 0.9) 0%, rgba(251, 251, 247, 0.62) 34%, rgba(251, 251, 247, 0.08) 68%, rgba(251, 251, 247, 0.3) 100%);
}

body[data-visual="firefly"] .hero-shell::after {
  background:
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.014) 0 1px, transparent 1px 5px);
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.88) 0%, rgba(5, 7, 10, 0.58) 38%, rgba(5, 7, 10, 0.08) 70%, rgba(5, 7, 10, 0.3) 100%);
  z-index: 1;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.018) 0 1px, transparent 1px 5px);
  background-size: 100% 5px;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(360px, 0.9fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "copy stage"
    "facts facts";
  align-items: center;
  gap: clamp(0px, 2vw, 34px);
  padding: clamp(18px, 3vh, 34px) clamp(10px, 2vw, 36px) clamp(16px, 3vh, 30px) clamp(24px, 5.6vw, 88px);
}

body[data-visual="firefly"] .hero {
  position: sticky;
  top: 0;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 4;
  width: min(92vw, 1580px);
  max-width: none;
  padding-top: clamp(12px, 3vh, 34px);
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 clamp(6px, 1.1vh, 12px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(14px, 1.45vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  margin: 0;
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--hero-display);
  font-size: clamp(94px, 12vw, 218px);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title-fallback [data-role-title-line] {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body[data-visual="firefly"] h1 {
  color: rgba(35, 43, 46, 0.92);
  max-width: 15ch;
  font-size: clamp(82px, 9.2vw, 176px);
}

.hero-title-stack {
  position: relative;
  width: min(92vw, 1580px);
  max-width: none;
}

.hero-title-media {
  display: none;
  width: 100%;
  height: clamp(280px, 33vw, 540px);
  touch-action: none;
}

.has-kinetic-title .hero-title-media {
  display: block;
}

.has-kinetic-title:not(.kinetic-title-ready) .hero-title-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: auto;
}

#kinetic-title-svg {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  overflow: visible;
}

#kinetic-title-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.has-kinetic-title.kinetic-title-ready .hero-title-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

body[data-audience] .hero-title-media {
  display: none;
}

body[data-audience].has-kinetic-title.kinetic-title-ready .hero-title-fallback {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  white-space: normal;
  clip: auto;
  clip-path: none;
}

body[data-audience] h1 {
  width: min(100%, 1020px);
  max-width: min(72vw, 1020px);
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: 0.88;
  min-height: 2.64em;
}

@media (min-width: 761px) {
  body[data-audience] .hero-copy {
    display: grid;
    grid-template-rows: auto clamp(236px, 25.8vw, 316px) auto auto auto;
    align-content: start;
  }

  body[data-audience] .hero-title-stack {
    min-height: clamp(236px, 25.8vw, 316px);
    display: flex;
    align-items: flex-start;
  }

  body[data-audience] .hero-secondary {
    min-height: 0;
  }

  body[data-audience] .door-switch {
    align-self: start;
  }
}

.h1-long {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0.04em 0;
  color: var(--ink);
}

.hero-secondary {
  margin: clamp(12px, 2.1vh, 24px) 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(15px, 1.25vw, 21px);
  line-height: 1.36;
  font-weight: 500;
}

.hero-focus-intro {
  max-width: min(100%, 62ch);
  margin: clamp(14px, 2vh, 22px) 0 0;
  color: var(--muted);
  font-family: var(--mono);
}

.hero-focus-label,
.hero-focus-through {
  margin: 0;
  color: rgba(247, 247, 242, 0.82);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.door-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1020px);
  margin-top: clamp(18px, 3vh, 34px);
}

.hero-focus-intro + .door-switch {
  margin-top: clamp(8px, 1.4vh, 14px);
}

.door-card {
  appearance: none;
  min-height: 136px;
  border: 1px solid color-mix(in srgb, var(--line), var(--role-accent) 16%);
  border-radius: 0;
  padding: clamp(14px, 1.4vw, 18px);
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.052), rgba(247, 247, 242, 0.026));
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0.026);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.door-card span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.door-card > span,
.door-card > b {
  white-space: nowrap;
}

.door-card > span span,
.door-card > b span {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.door-card b {
  display: block;
  position: relative;
  margin-top: clamp(26px, 3.2vw, 40px);
  padding-left: 1.02em;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.door-card > b::before {
  content: "\e7fd";
  display: inline-block;
  position: absolute;
  left: 0.02em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.86em;
  height: 1em;
  color: color-mix(in srgb, var(--role-accent), #f7f7f2 28%);
  font-family: var(--font-icon);
  font-size: 0.86em;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  -webkit-font-smoothing: antialiased;
  opacity: 0.9;
}

.door-card:hover,
.door-card:focus-visible,
.door-card.is-active {
  border-color: var(--role-accent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--role-accent), transparent 90%), rgba(247, 247, 242, 0.04));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--role-accent), transparent 64%), 0 20px 70px var(--role-soft);
  outline: none;
}

.door-card:hover,
.door-card:focus-visible {
  transform: none;
}

.hero-cta,
.record-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 clamp(24px, 2.3vw, 34px);
  border: 1px solid var(--button-border);
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.045em;
  box-shadow: 0 14px 42px rgba(43, 100, 238, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.hero-cta:hover,
.hero-cta:focus-visible,
.record-cta:hover,
.record-cta:focus-visible {
  transform: translateY(-1px);
  background: var(--button-bg-hover);
  box-shadow: 0 18px 56px rgba(50, 118, 244, 0.3);
}

.agent-company {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(162px, 18vh, 234px) clamp(20px, 5.6vw, 88px) clamp(60px, 7vh, 88px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, var(--hot-soft), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(114, 206, 244, 0.11), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--ink);
}

.agent-company::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(72px, 9vw, 138px) clamp(72px, 9vw, 138px);
  opacity: 0.42;
}

.agent-company::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% 38%;
  width: 54vw;
  height: 54vw;
  min-width: 520px;
  min-height: 520px;
  pointer-events: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  opacity: 0.16;
}

.agent-company__grid {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 4.2vw, 68px);
}

.agent-company__body {
  align-self: center;
  max-width: 600px;
  padding-right: clamp(128px, 9.5vw, 172px);
  padding-bottom: 0;
}

.agent-company__body p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-readable);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: 0;
}

.agent-company__intro {
  color: rgba(247, 247, 242, 0.72) !important;
}

.agent-company__list {
  display: grid;
  gap: clamp(7px, 1vh, 11px);
  margin: clamp(14px, 1.8vh, 20px) 0 0;
  padding: 0;
  list-style: none;
  color: rgba(247, 247, 242, 0.78);
  font-family: var(--font-readable);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.26;
  font-weight: 550;
  letter-spacing: 0;
}

.agent-company__list li {
  position: relative;
  padding-left: 1.05em;
}

.agent-company__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--role-accent);
}

.agent-stats {
  margin: clamp(24px, 3.6vh, 42px) 0 0;
  padding: clamp(18px, 2.4vh, 26px) 0 0;
  border-top: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
}

.agent-stat {
  min-width: 0;
}

.agent-stat dt {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(30px, 2.75vw, 48px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
}

.agent-stat dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.record-cta {
  gap: 12px;
  margin-top: clamp(32px, 5vh, 58px);
}

.agent-company .record-cta {
  min-height: 42px;
  margin-top: clamp(24px, 3.4vh, 36px);
  padding: 0 clamp(18px, 1.7vw, 26px);
  font-size: 12px;
}

.section-cta-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.6vw, 34px);
  margin-top: clamp(24px, 4vh, 46px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.section-cta-strip p {
  max-width: 74ch;
  margin: 0 auto 0 0;
  color: color-mix(in srgb, var(--ink), var(--muted) 44%);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.5;
  font-weight: 700;
}

.section-cta-strip a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 clamp(18px, 1.9vw, 28px);
  border: 1px solid var(--button-border);
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-ink);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  box-shadow: 0 14px 42px var(--cta-glow);
}

.section-cta-strip > a:only-child {
  min-width: auto;
}

.section-cta-strip a:hover,
.section-cta-strip a:focus-visible {
  background: var(--button-bg-hover);
  transform: translateY(-1px);
}

.section-cta-strip--light {
  color: #111111;
}

.section-cta-strip--light p {
  color: rgba(17, 17, 17, 0.58);
}

.route-block {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vh, 86px) clamp(20px, 5.6vw, 88px) clamp(64px, 8vh, 96px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, var(--hot-soft), transparent 26%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--ink);
}

.route-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(82px, 8vw, 132px) clamp(82px, 8vw, 132px);
  opacity: 0.34;
}

.route-block::after {
  content: "";
  position: absolute;
  inset: auto -9% -58% 42%;
  width: 62vw;
  height: 62vw;
  min-width: 720px;
  min-height: 720px;
  pointer-events: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  opacity: 0.12;
}

.route-shell {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
}

@media (min-width: 1341px) {
  .route-block {
    padding-right: clamp(96px, 7vw, 150px);
  }

  .route-shell {
    width: min(100%, calc(100vw - clamp(150px, 12vw, 230px)));
    max-width: 1500px;
    margin-left: clamp(34px, 4vw, 92px);
    margin-right: auto;
  }
}

.route-head {
  max-width: 820px;
}

.route-head h2 {
  margin: 0;
}

.route-head h2 span {
  color: var(--button-bg);
}

.route-head p {
  max-width: 680px;
  margin: clamp(18px, 2.7vh, 30px) 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.46;
  font-weight: 500;
  letter-spacing: 0;
}

.route-track {
  --route-progress: 0;
  position: relative;
  margin-top: clamp(34px, 5vh, 58px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  background: rgba(247, 247, 242, 0.025);
}

body[data-visual="firefly"] .route-track {
  background: rgba(255, 255, 255, 0.46);
}

.route-card {
  position: relative;
  min-height: clamp(270px, 21vw, 340px);
  padding: clamp(24px, 2.3vw, 34px) clamp(16px, 1.55vw, 24px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  cursor: grab;
  touch-action: manipulation;
  user-select: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

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

.route-card::after {
  content: none;
  position: absolute;
  z-index: 4;
  top: clamp(48px, 4.7vw, 70px);
  right: -12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--button-bg);
  font-family: var(--mono);
  font-size: 17px;
  line-height: 1;
}

.route-card:last-child::after {
  content: none;
}

.route-card.is-active {
  background: var(--hot-soft);
}

.route-card.is-active {
  border-color: var(--button-border);
  transform: translateY(-3px);
}

.route-card:active {
  cursor: grabbing;
}

.route-card[draggable="true"]:focus-visible {
  outline: 2px solid var(--button-bg);
  outline-offset: -2px;
}

.route-card.is-dragging {
  cursor: grabbing;
  opacity: 0.7;
  transform: translateY(-6px) scale(0.98);
}

.route-card.is-drop-target {
  background: color-mix(in srgb, var(--button-bg), transparent 86%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--button-bg), transparent 42%);
}

.route-track.is-route-dragging .route-card {
  cursor: grabbing;
}

.route-card__num {
  width: clamp(42px, 3.5vw, 56px);
  height: clamp(42px, 3.5vw, 56px);
  margin-top: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(43, 100, 238, 0.42);
  border-radius: 50%;
  color: var(--button-bg);
  font-family: var(--mono);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1;
  font-weight: 800;
  background: rgba(43, 100, 238, 0.04);
}

.route-card h3 {
  margin: clamp(16px, 1.9vw, 24px) 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(17px, 1.05vw, 21px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.route-card p {
  margin: clamp(14px, 1.5vw, 20px) 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.5;
  font-weight: 500;
}

.route-card > span {
  margin-top: auto;
  padding-top: clamp(16px, 1.8vw, 26px);
  color: var(--button-bg);
  font-family: var(--mono);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-card--goal {
  background: #05070a;
  color: #f7f7f2;
}

.route-card--goal.is-active {
  background: #05070a;
}

.route-card--goal h3 {
  color: #f7f7f2;
}

.route-card--goal p {
  color: rgba(247, 247, 242, 0.66);
}

.program-details {
  margin-top: clamp(22px, 3.4vh, 38px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program-details summary {
  width: max-content;
  min-height: 42px;
  margin-inline: auto;
  padding: 0 clamp(22px, 2.2vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: var(--button-radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(120, 207, 240, 0.095), rgba(120, 207, 240, 0.035));
  box-shadow: 0 0 0 1px rgba(120, 207, 240, 0.04), 0 18px 54px rgba(120, 207, 240, 0.075);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.program-details summary:hover,
.program-details summary:focus-visible {
  border-color: var(--hot);
  background: linear-gradient(180deg, rgba(120, 207, 240, 0.16), rgba(120, 207, 240, 0.055));
  box-shadow: 0 0 0 1px rgba(120, 207, 240, 0.08), 0 22px 70px rgba(120, 207, 240, 0.13);
  outline: none;
}

.program-details[open] summary {
  color: var(--hot);
  border-color: var(--hot);
}

.program-week-list {
  width: 100%;
  margin-top: clamp(18px, 3vh, 30px);
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
}

.program-week-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.08fr) minmax(280px, 0.9fr);
  border: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.026);
  color: var(--ink);
}

.program-week-card > div {
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px);
}

.program-week-card > div + div {
  border-left: 1px solid var(--line);
}

.program-week-card__meta,
.program-week-card__label,
.program-week-card__artifact {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-week-card__meta,
.program-week-card__artifact {
  color: var(--button-bg-hover);
}

.program-week-card__label {
  color: var(--dim);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.program-week-card h3 {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.program-week-card p:not(.program-week-card__meta):not(.program-week-card__label):not(.program-week-card__artifact),
.program-week-card li {
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(13px, 0.94vw, 16px);
  line-height: 1.48;
  font-weight: 500;
}

.program-week-card__schedule {
  margin-top: clamp(16px, 2vw, 24px);
  color: var(--dim) !important;
  letter-spacing: 0.08em;
}

.program-week-card__intro > p:last-child {
  margin-top: clamp(22px, 3vw, 38px);
}

.program-week-card__inside > p:nth-child(2) {
  margin: 0;
}

.program-week-card__artifact {
  width: max-content;
  max-width: 100%;
  margin-top: clamp(18px, 2.4vw, 28px);
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  background: rgba(43, 100, 238, 0.08);
}

.program-week-card__outputs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-week-card__outputs li {
  position: relative;
  padding-left: 24px;
}

.program-week-card__outputs li + li {
  margin-top: 12px;
}

.program-week-card__outputs li::before {
  content: "↳";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--button-bg-hover);
}

.outcomes-block {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vh, 82px) clamp(20px, 5.6vw, 88px) clamp(58px, 7.4vh, 92px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 48%, var(--hot-soft), transparent 28%),
    radial-gradient(circle at 74% 22%, rgba(43, 100, 238, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--ink);
}

.outcomes-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.014) 0 1px, transparent 1px 5px);
  background-size: clamp(76px, 8vw, 124px) clamp(76px, 8vw, 124px), clamp(76px, 8vw, 124px) clamp(76px, 8vw, 124px), 100% 5px;
  opacity: 0.58;
}

.outcomes-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.outcomes-head {
  max-width: 860px;
  margin-bottom: clamp(24px, 3.8vh, 42px);
}

.outcomes-head h2 {
  margin: 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.outcome-sphere-map {
  position: relative;
  min-height: clamp(390px, 36vw, 560px);
}

.outcome-sphere-map::before {
  content: "";
  position: absolute;
  inset: -2% -5% 0 -8%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  opacity: 0.26;
}

.outcome-sphere {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(120, 207, 240, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(247, 247, 242, 0.12), transparent 18%),
    radial-gradient(circle at 54% 58%, rgba(120, 207, 240, 0.13), transparent 52%),
    rgba(247, 247, 242, 0.025);
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(10px, 0.86vw, 13px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: auto;
  box-shadow: inset 0 0 46px rgba(120, 207, 240, 0.06);
  transition: transform 680ms cubic-bezier(0.19, 1, 0.22, 1), border-color 420ms ease, color 420ms ease, box-shadow 520ms ease, background 520ms ease;
}

.outcome-sphere:hover,
.outcome-sphere:focus-visible {
  color: var(--ink);
  border-color: var(--role-accent);
  outline: none;
  box-shadow: 0 0 34px var(--role-glow), inset 0 0 60px rgba(120, 207, 240, 0.12);
}

.outcome-sphere:nth-child(1) {
  width: clamp(210px, 18vw, 300px);
  height: clamp(210px, 18vw, 300px);
  left: -8%;
  top: 16%;
  z-index: 1;
}

.outcome-sphere:nth-child(2) {
  width: clamp(205px, 18vw, 300px);
  height: clamp(205px, 18vw, 300px);
  left: 43%;
  top: -2%;
  z-index: 2;
}

.outcome-sphere:nth-child(3) {
  width: clamp(220px, 19vw, 315px);
  height: clamp(220px, 19vw, 315px);
  left: 28%;
  top: 42%;
  z-index: 3;
}

.outcome-sphere:nth-child(4) {
  width: clamp(105px, 9vw, 142px);
  height: clamp(105px, 9vw, 142px);
  left: 72%;
  top: 36%;
}

.outcome-sphere.is-active {
  z-index: 10;
  color: var(--ink);
  border-color: var(--hot);
  background:
    radial-gradient(circle at 32% 24%, rgba(247, 247, 242, 0.2), transparent 18%),
    radial-gradient(circle at 52% 56%, rgba(120, 207, 240, 0.24), transparent 56%),
    rgba(120, 207, 240, 0.07);
  box-shadow: 0 0 34px rgba(120, 207, 240, 0.16), inset 0 0 60px rgba(120, 207, 240, 0.12);
  transform: translateY(-1px) scale(1.012);
}

.outcome-panel {
  min-height: clamp(250px, 22vw, 330px);
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid var(--line-strong);
  background: rgba(247, 247, 242, 0.025);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outcome-panel__role {
  margin: 0 0 clamp(28px, 4vw, 54px);
  color: var(--hot);
  font-family: var(--mono);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome-panel h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.outcome-panel__copy {
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(13px, 0.94vw, 16px);
  line-height: 1.5;
  font-weight: 600;
}

.outcome-output-list {
  display: grid;
  gap: 8px;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.outcome-output-list b {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid var(--role-accent);
  background: color-mix(in srgb, var(--role-accent), transparent 90%);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(12px, 0.85vw, 15px);
  line-height: 1.35;
  font-weight: 800;
}

.outcomes-head h2 span {
  color: var(--role-accent);
}

@media (max-width: 1600px) {
  .site-header {
    min-height: 52px;
    padding: 8px clamp(16px, 2.2vw, 32px);
    gap: 12px;
  }

  .site-brand {
    font-size: 12px;
  }

  .site-brand img {
    width: 24px;
    height: 24px;
  }

  .top-nav {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .top-nav > a::after,
  .nav-dropdown > button::after {
    margin: 0 clamp(6px, 0.6vw, 10px);
  }

  .header-enroll {
    gap: 12px;
  }

  .header-enroll__status {
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.13em;
  }

  .header-enroll__status i {
    width: 8px;
    height: 8px;
  }

  .header-enroll__cta {
    min-height: 34px;
    padding: 0 16px;
    font-size: 10px;
  }

  .section-rail {
    right: 8px;
    width: 40px;
    padding: 9px 7px;
    overflow: hidden;
    border-color: rgba(126, 207, 242, 0.08);
    background: rgba(5, 7, 10, 0.08);
    box-shadow: none;
    backdrop-filter: blur(6px);
  }

  body.show-section-rail .section-rail {
    opacity: 0.58;
  }

  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    width: 132px;
    opacity: 0.92;
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.46));
    box-shadow: -14px 0 34px rgba(0, 0, 0, 0.12);
  }

  body[data-visual="firefly"].show-section-rail .section-rail {
    background: rgba(251, 251, 247, 0.16);
    box-shadow: none;
  }

  body[data-visual="firefly"].show-section-rail .section-rail:hover,
  body[data-visual="firefly"].show-section-rail .section-rail:focus-within {
    background:
      linear-gradient(90deg, rgba(251, 251, 247, 0.74), rgba(251, 251, 247, 0.5));
    box-shadow: -12px 0 34px rgba(17, 17, 17, 0.055);
  }

  .section-rail a {
    grid-template-columns: minmax(0, 1fr) 10px;
    gap: 4px;
    min-height: 30px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .section-rail span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(8px);
    transition: max-width 180ms ease, opacity 160ms ease, transform 180ms ease;
  }

  .section-rail:hover span,
  .section-rail:focus-within span {
    max-width: 96px;
    opacity: 1;
    transform: translateX(0);
  }

  .section-rail a + a {
    margin-top: clamp(5px, 0.95vh, 9px);
  }

  .section-rail i {
    justify-self: end;
    width: 7px;
    height: 7px;
  }

  .section-rail a.is-active i {
    width: 11px;
    height: 11px;
  }

  .hero {
    padding-top: clamp(78px, 8vh, 96px);
    padding-left: clamp(24px, 4.8vw, 66px);
    padding-right: clamp(18px, 2.4vw, 30px);
  }

  .eyebrow {
    margin-bottom: clamp(18px, 3vh, 32px);
    font-size: clamp(15px, 1.45vw, 24px);
  }

  .hero-title-media {
    height: clamp(330px, 32vw, 440px);
  }

  .hero-secondary {
    margin-top: clamp(20px, 3vh, 34px);
    font-size: clamp(16px, 1.35vw, 22px);
  }

  .hero-cta,
  .record-cta {
    min-height: 48px;
    padding: 0 clamp(22px, 2vw, 30px);
    font-size: 13px;
  }

  .program-facts {
    margin-top: clamp(18px, 3vh, 28px);
    padding-top: clamp(14px, 2.2vh, 22px);
    gap: clamp(18px, 2.6vw, 38px);
  }

  .fact-row dd {
    font-size: clamp(15px, 1.45vw, 20px);
  }

  .agent-company {
    min-height: auto;
    padding-top: clamp(138px, 16.8vh, 186px);
    padding-bottom: clamp(50px, 6.2vh, 70px);
  }

  .agent-company__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
    align-items: center;
    gap: clamp(28px, 3.4vw, 48px);
  }

  .agent-company__body {
    max-width: 540px;
    padding-bottom: 0;
  }

  .agent-company__body p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.4;
  }

  .record-cta {
    gap: 10px;
  }

  .route-block {
    padding-top: clamp(48px, 6vh, 68px);
    padding-bottom: clamp(54px, 7vh, 76px);
  }

  .route-head h2 {
    font-size: clamp(42px, 4.8vw, 68px);
  }

  .route-head p {
    font-size: clamp(15px, 1.08vw, 18px);
  }

  .route-track {
    margin-top: clamp(28px, 4.2vh, 44px);
  }

  .route-card {
    min-height: 286px;
    padding: 24px 16px;
  }

  .route-card h3 {
    font-size: clamp(17px, 1.05vw, 20px);
    white-space: normal;
  }

  .route-card p {
    font-size: clamp(13px, 0.92vw, 15px);
    line-height: 1.5;
  }

  .program-week-card {
    grid-template-columns: minmax(210px, 0.68fr) minmax(300px, 1fr) minmax(250px, 0.86fr);
  }

  .program-week-card > div {
    padding: 22px 18px;
  }

  .program-week-card h3 {
    font-size: clamp(20px, 1.9vw, 28px);
  }

  .outcomes-block {
    padding-top: clamp(46px, 6vh, 68px);
    padding-bottom: clamp(52px, 6.8vh, 76px);
  }

  .outcomes-shell {
    max-width: 940px;
    margin-left: clamp(60px, 5.6vw, 88px);
    margin-right: auto;
  }

  .outcomes-head h2 {
    font-size: clamp(32px, 3.3vw, 48px);
  }

  .outcomes-grid {
    grid-template-columns: minmax(390px, 0.82fr) minmax(330px, 0.7fr);
    gap: clamp(28px, 4vw, 52px);
  }

  .outcome-sphere-map {
    min-height: clamp(330px, 32vw, 430px);
  }

  .outcome-panel h3 {
    font-size: clamp(30px, 3vw, 44px);
  }
}

@media (min-width: 761px) and (max-width: 1340px) {
  .schedule-shell {
    max-width: 980px;
    margin-left: clamp(44px, 5.6vw, 74px);
    margin-right: auto;
    padding-right: 132px;
  }

  .route-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: visible;
  }

}

.schedule-block {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5.8vh, 66px) clamp(20px, 5.6vw, 88px) clamp(52px, 6.5vh, 76px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 18%, var(--hot-soft), transparent 24%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--ink);
}

.schedule-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: clamp(74px, 8vw, 124px) clamp(74px, 8vw, 124px);
  opacity: 0.36;
}

.schedule-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.016) 0 1px, transparent 1px 5px);
  opacity: 0.16;
}

.schedule-shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  padding-right: clamp(120px, 9vw, 160px);
  margin: 0 auto;
}

.schedule-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(22px, 3.4vw, 46px);
  margin-bottom: clamp(22px, 3.2vh, 34px);
}

.section-kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.route-head .section-kicker {
  max-width: none;
}

.schedule-header h2 {
  margin: 0;
}

.schedule-header p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.42;
  font-weight: 500;
}

.schedule-header .schedule-role-note {
  max-width: 70ch;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--role-accent);
  color: color-mix(in srgb, var(--role-accent), var(--ink) 26%);
  font-size: clamp(11px, 0.84vw, 13px);
  line-height: 1.45;
  font-weight: 700;
}

.schedule-tools {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  max-width: 440px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.schedule-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.legend-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: var(--dot);
  box-shadow: 0 0 18px color-mix(in srgb, var(--dot), transparent 55%);
}

.legend-dot.lecture {
  --dot: #64b5d9;
}

.legend-dot.workshop {
  --dot: #2fd1b3;
}

.legend-dot.guest {
  --dot: #c86be8;
}

.legend-dot.demo {
  --dot: #ff656b;
}

.legend-dot.office {
  --dot: transparent;
  border: 1px dashed var(--muted);
  box-shadow: none;
}

.sprint-calendar {
  display: grid;
  grid-template-columns: minmax(76px, 0.58fr) repeat(7, minmax(58px, 1fr));
  gap: 5px;
  align-items: stretch;
  width: min(100%, 66vw);
  max-width: 900px;
}

.schedule-note {
  width: min(100%, 66vw);
  max-width: 900px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(120, 207, 240, 0.18);
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(11px, 0.84vw, 13px);
  line-height: 1.45;
  font-weight: 600;
}

.schedule-spacer,
.schedule-day,
.schedule-week,
.schedule-empty,
.schedule-tile {
  min-width: 0;
}

.schedule-day {
  min-height: 22px;
  display: grid;
  place-items: center;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-week {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 50px;
  padding-right: 10px;
  font-family: var(--mono);
}

.schedule-week strong {
  color: var(--hot);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.schedule-week span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.schedule-empty,
.schedule-tile {
  position: relative;
  min-height: 50px;
  border-radius: 4px;
  font-family: var(--mono);
}

.schedule-empty {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  background: rgba(247, 247, 242, 0.045);
  color: var(--dim);
  font-size: 18px;
  font-weight: 700;
}

.schedule-empty.is-out {
  opacity: 0.26;
  background: transparent;
}

.schedule-tile {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  padding: 8px 6px 7px;
  color: #f8fbff;
  cursor: crosshair;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.schedule-tile:hover,
.schedule-tile:focus-visible {
  z-index: 12;
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

.schedule-tile.lecture {
  background: #64b5d9;
  box-shadow: 0 0 20px rgba(100, 181, 217, 0.18);
}

.schedule-tile.workshop {
  border: 2px solid rgba(47, 209, 179, 0.56);
  background: rgba(47, 209, 179, 0.25);
  box-shadow: 0 0 18px rgba(47, 209, 179, 0.14);
}

.schedule-tile.guest {
  background: rgba(200, 107, 232, 0.28);
  box-shadow: 0 0 20px rgba(200, 107, 232, 0.13);
}

.schedule-tile.office {
  border: 1px dashed rgba(247, 247, 242, 0.3);
  background: rgba(247, 247, 242, 0.035);
  color: var(--muted);
}

.schedule-tile.demo {
  background: rgba(255, 101, 107, 0.26);
  box-shadow: 0 0 22px rgba(255, 101, 107, 0.22), 0 0 58px rgba(255, 101, 107, 0.08);
}

.schedule-tile.is-role-highlight {
  z-index: 3;
  border-color: var(--tile-role-accent, var(--role-accent));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--tile-role-accent, var(--role-accent)), transparent 16%),
    0 0 28px color-mix(in srgb, var(--tile-role-accent, var(--role-accent)), transparent 62%);
}

.schedule-tile.is-role-highlight::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid color-mix(in srgb, var(--tile-role-accent, var(--role-accent)), transparent 22%);
  border-radius: 7px;
  pointer-events: none;
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--tile-role-accent, var(--role-accent)), transparent 88%);
}

.schedule-tile .date-num {
  color: currentColor;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.tile-code {
  color: currentColor;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.tile-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  width: min(320px, 34vw);
  min-width: 260px;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--bg-2), #000 18%);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  text-align: left;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.tooltip-left .tile-tooltip {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.schedule-tile:hover .tile-tooltip,
.schedule-tile:focus-visible .tile-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.schedule-tile.tooltip-left:hover .tile-tooltip,
.schedule-tile.tooltip-left:focus-visible .tile-tooltip {
  transform: translate(0, 0);
}

.tile-tooltip strong,
.tile-tooltip small,
.tile-tooltip span {
  display: block;
}

.tile-tooltip strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.tile-tooltip small {
  margin-top: 8px;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.tile-tooltip span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.tile-tooltip .tile-role-reason {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--role-accent), transparent 74%);
  color: var(--role-accent);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .schedule-shell {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .schedule-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .schedule-legend {
    justify-content: flex-start;
  }

  .schedule-tools {
    justify-items: start;
  }

  .sprint-calendar {
    min-width: 760px;
  }

  .schedule-note {
    min-width: 760px;
  }
}

.speakers-block {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(54px, 8vh, 92px) clamp(20px, 5.2vw, 76px) clamp(56px, 8vh, 96px);
  border-top: 1px solid rgba(126, 207, 242, 0.18);
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 230, 177, 0.09), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(120, 207, 240, 0.08), transparent 34%),
    linear-gradient(180deg, #090a12 0%, #05070a 100%);
  color: var(--ink);
}

.speakers-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.075) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.018) 0 1px, transparent 1px 5px);
  background-size: clamp(70px, 7vw, 118px) clamp(70px, 7vw, 118px), clamp(70px, 7vw, 118px) clamp(70px, 7vw, 118px), 100% 5px;
  opacity: 0.72;
}

.speakers-shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-right: clamp(92px, 8vw, 142px);
}

.speakers-title {
  margin: clamp(14px, 2vh, 22px) 0 clamp(20px, 3.2vh, 32px);
}

.speakers-leads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.speaker-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(126, 207, 242, 0.18);
  background:
    radial-gradient(circle at 92% 24%, rgba(120, 207, 240, 0.08), transparent 8rem),
    rgba(247, 247, 242, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.speaker-photo {
  width: 88px;
  aspect-ratio: 1;
  display: block;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  background: rgba(247, 247, 242, 0.12);
  filter: grayscale(1) contrast(1.06);
}

.speaker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
  --speaker-domain-accent: var(--role-accent);
}

.speaker-tags[data-speaker-domain="product-enga"] {
  --speaker-domain-accent: #64b5d9;
}

.speaker-tags[data-speaker-domain="sales-marketing"] {
  --speaker-domain-accent: #35e6b1;
}

.speaker-tags[data-speaker-domain="ops-hr-finance"] {
  --speaker-domain-accent: #ffbd66;
}

.speaker-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid color-mix(in srgb, var(--speaker-domain-accent), transparent 54%);
  background: color-mix(in srgb, var(--speaker-domain-accent), transparent 88%);
  color: var(--speaker-domain-accent);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-body h3 {
  margin: -2px 0 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.speaker-role,
.speaker-topic,
.speaker-links,
.guest-speakers__label,
.guest-speakers__intro,
.speaker-body p {
  font-family: var(--mono);
}

.speaker-role {
  margin: 8px 0 0;
  color: rgba(120, 207, 240, 0.88);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-topic {
  margin: 5px 0 0;
  color: rgba(247, 247, 242, 0.36);
  font-size: clamp(10px, 0.68vw, 11px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.speaker-card > .speaker-bio {
  margin: clamp(12px, 1.8vh, 18px) 0 0;
  color: rgba(247, 247, 242, 0.7);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.42;
  font-weight: 500;
}

.speaker-layer {
  margin-top: clamp(30px, 4.6vh, 44px);
}

.speaker-layer + .speaker-layer {
  margin-top: clamp(42px, 6.4vh, 72px);
  padding-top: clamp(26px, 4vh, 46px);
  border-top: 1px solid rgba(126, 207, 242, 0.16);
}

.speaker-layer__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  margin-bottom: clamp(20px, 3vh, 32px);
}

.guest-speakers__label {
  margin-bottom: 12px;
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}

.guest-grid .speaker-card {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 13px;
}

.guest-grid .speaker-photo {
  width: 72px;
}

.speaker-more {
  margin-top: clamp(22px, 3.4vh, 34px);
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.speaker-more summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.speaker-more summary::-webkit-details-marker {
  display: none;
}

.speaker-more summary span {
  color: rgba(17, 17, 17, 0.26);
  font-size: 22px;
}

.speaker-more[open] summary span {
  transform: rotate(45deg);
}

#speakers .speaker-more {
  border-top-color: rgba(247, 247, 242, 0.16);
  border-bottom-color: rgba(247, 247, 242, 0.16);
}

#speakers .speaker-more summary {
  color: rgba(247, 247, 242, 0.68);
}

#speakers .speaker-more summary span {
  color: rgba(247, 247, 242, 0.42);
}

.speaker-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 18px;
}

.speaker-mini-grid--recordings {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(18px, 2.4vh, 26px);
}

.speaker-more--recordings {
  margin-top: 0;
}

.speaker-mini-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(247, 247, 242, 0.14);
  background: rgba(247, 247, 242, 0.045);
}

.speaker-mini-photo {
  width: 58px;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 999px;
  filter: grayscale(1) contrast(1.04);
  background: rgba(247, 247, 242, 0.08);
}

.speaker-mini-body {
  min-width: 0;
}

.speaker-mini-body h3 {
  margin: 0 0 6px;
  color: rgba(247, 247, 242, 0.92);
  font-family: var(--mono);
  font-size: clamp(15px, 1.12vw, 19px);
  line-height: 1.12;
  font-weight: 900;
}

.speaker-mini-body p {
  margin: 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.speaker-mini-grid--curators {
  margin-top: 18px;
}

@media (max-width: 1600px) and (min-width: 1121px) {
  .speakers-block {
    padding-top: clamp(32px, 4.8vh, 48px);
    padding-bottom: clamp(38px, 5.8vh, 56px);
  }

  .speakers-shell {
    max-width: 960px;
  }

  .speakers-title {
    font-size: clamp(30px, 3.4vw, 44px);
  }

  .speakers-leads {
    gap: 28px;
  }

  .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 28px;
  }
}

.testimonials-block {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vh, 72px) clamp(20px, 5.6vw, 88px) clamp(50px, 7vh, 80px);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(120, 207, 240, 0.08), transparent 24%),
    linear-gradient(180deg, #f3f2ec 0%, #f7f7f3 100%);
  color: #111111;
}

.testimonials-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px);
  background-size: clamp(70px, 7vw, 118px) clamp(70px, 7vw, 118px);
  opacity: 0.34;
}

.testimonials-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-disclaimer {
  margin: 0 0 clamp(14px, 2vh, 22px);
  color: rgba(17, 17, 17, 0.34);
  font-family: var(--mono);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonials-title {
  margin: 0 0 clamp(38px, 5.8vh, 68px);
}

.testimonials-title span {
  display: block;
  color: #111111;
}

.testimonials-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-bottom: clamp(32px, 5vh, 52px);
}

.testimonial-featured-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(55, 140, 190, 0.18);
  border-radius: 4px;
  background: rgba(120, 207, 240, 0.035);
}

.testimonial-quote-icon {
  color: rgba(55, 140, 190, 0.24);
  margin-bottom: clamp(18px, 3vh, 28px);
}

.testimonial-featured-text {
  max-width: 34ch;
  margin: 0 0 clamp(22px, 3vh, 32px);
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--mono);
  font-size: clamp(15px, 1.08vw, 19px);
  font-style: italic;
  line-height: 1.62;
  font-weight: 650;
}

.testimonial-featured-author {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  gap: 8px;
}

.testimonial-featured-name {
  color: #111111;
  font-family: var(--mono);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.2;
  font-weight: 800;
}

.testimonial-featured-role {
  color: rgba(17, 17, 17, 0.44);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.35;
  font-weight: 500;
}

.testimonial-full {
  margin-top: auto;
  padding-top: clamp(18px, 3vh, 28px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.testimonial-full summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 14px;
  color: #111111;
  font-family: var(--mono);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.testimonial-full summary::-webkit-details-marker {
  display: none;
}

.testimonial-full summary span {
  color: rgba(43, 100, 238, 0.72);
  font-size: 18px;
}

.testimonial-full[open] summary span {
  transform: rotate(45deg);
}

.testimonial-full > div {
  max-width: 100%;
  padding-top: 8px;
}

.testimonial-full p {
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--mono);
  font-size: clamp(13px, 0.98vw, 16px);
  line-height: 1.62;
  font-weight: 500;
}

.testimonials-quotes {
  display: flex;
  flex-direction: column;
}

.testimonial-quote-line {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(15px, 2.2vh, 22px) 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  transition: border-color 160ms ease;
}

.testimonial-quote-line:last-child {
  border-bottom: 0;
}

.testimonial-quote-line:hover {
  border-bottom-color: rgba(43, 141, 214, 0.2);
}

.testimonial-quote-text {
  flex: 1 1 auto;
  color: rgba(17, 17, 17, 0.66);
  font-family: var(--mono);
  font-size: clamp(15px, 1.08vw, 19px);
  font-style: italic;
  line-height: 1.55;
  font-weight: 500;
}

.testimonial-quote-author {
  flex: 0 0 auto;
  max-width: 38ch;
  color: rgba(17, 17, 17, 0.38);
  font-family: var(--mono);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.35;
  font-weight: 500;
  white-space: nowrap;
}

.alumni-block {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vh, 92px) clamp(20px, 5.6vw, 88px) clamp(64px, 8vh, 98px);
  border-top: 1px solid rgba(43, 100, 238, 0.8);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 0, 0, 0.07), transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(43, 100, 238, 0.13), transparent 35%),
    linear-gradient(180deg, #000000, #030406);
  color: #f4fbff;
}

.alumni-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(120, 207, 240, 0.04) 0 1px, transparent 1px 5px);
  opacity: 0.44;
}

.alumni-shell {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.alumni-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.8vw, 20px);
  margin-bottom: clamp(22px, 3.2vh, 36px);
}

.section-kicker--alumni,
.alumni-proof-note {
  margin: 0;
}

.section-kicker--alumni {
  color: #72cef4;
  font-family: var(--mono);
  font-size: clamp(12px, 0.82vw, 15px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alumni-proof-note {
  max-width: min(760px, 100%);
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: rgba(120, 207, 240, 0.78);
  font-family: var(--mono);
  text-align: left;
}

.alumni-proof-note strong {
  color: #f4fbff;
  font-size: clamp(50px, 4.6vw, 68px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.alumni-proof-note span {
  max-width: 42ch;
  color: rgba(244, 251, 255, 0.68);
  font-size: clamp(12px, 0.84vw, 14px);
  line-height: 1.38;
  font-weight: 500;
}

.alumni-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(120, 207, 240, 0.64);
  background: rgba(120, 207, 240, 0.045);
  box-shadow: inset 0 0 0 1px rgba(120, 207, 240, 0.06), 0 28px 86px rgba(0, 0, 0, 0.54);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.alumni-track {
  display: flex;
  width: max-content;
  animation: alumni-marquee 34s linear infinite;
  will-change: transform;
}

.alumni-marquee:hover .alumni-track {
  animation-play-state: paused;
}

.alumni-set {
  display: flex;
  align-items: center;
  gap: clamp(38px, 5.2vw, 86px);
  flex: 0 0 auto;
  padding: clamp(22px, 3.2vw, 42px) clamp(18px, 3.6vw, 56px);
}

.alumni-logo {
  --logo-width: clamp(54px, 5vw, 86px);
  --logo-height: clamp(36px, 3.7vw, 54px);
  --logo-hover-filter: saturate(1.08) contrast(1.04) drop-shadow(0 0 10px rgba(120, 207, 240, 0.34));
  --logo-active-bg: rgba(244, 251, 255, 0.03);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--logo-width);
  min-width: var(--logo-width);
  height: var(--logo-height);
  color: #f4fbff;
  line-height: 1;
  white-space: normal;
}

.alumni-logo::before {
  content: none;
  display: none;
}

.alumni-logo img,
.alumni-logo__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transform: translate3d(0, 0, 0);
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.alumni-logo:hover img,
.alumni-logo:hover .alumni-logo__image,
.alumni-logo.is-logo-near img,
.alumni-logo.is-logo-near .alumni-logo__image,
.alumni-logo.is-scroll-active img,
.alumni-logo.is-scroll-active .alumni-logo__image {
  filter: var(--logo-hover-filter, saturate(1.08) contrast(1.04) drop-shadow(0 0 10px rgba(120, 207, 240, 0.34)));
  opacity: 1;
  transform: translate3d(0, -1px, 0);
}

.alumni-logo:hover::before,
.alumni-logo.is-logo-near::before,
.alumni-logo.is-scroll-active::before {
  opacity: 0;
}

.alumni-logo strong {
  display: none;
}

.alumni-logo--mts,
.alumni-logo--vk {
  --logo-width: clamp(46px, 3.7vw, 62px);
  --logo-height: clamp(42px, 3.7vw, 62px);
}

.alumni-logo--vk {
  --logo-hover-filter: saturate(1.08) contrast(1.05) drop-shadow(0 0 12px rgba(0, 119, 255, 0.36));
}

.alumni-logo--mts {
  --logo-hover-filter: saturate(1.04) contrast(1.04) brightness(1.02) drop-shadow(0 0 12px rgba(255, 0, 50, 0.28));
}

.alumni-logo--sber {
  --logo-width: clamp(148px, 12vw, 190px);
  --logo-height: clamp(26px, 3vw, 38px);
  --logo-hover-filter: saturate(1.1) brightness(1.1) contrast(1.06) drop-shadow(0 0 12px rgba(95, 205, 72, 0.28));
}

.alumni-logo--yandex {
  --logo-width: clamp(132px, 9.8vw, 174px);
  --logo-height: clamp(34px, 3.2vw, 46px);
  --logo-hover-filter: drop-shadow(0 0 12px rgba(252, 63, 29, 0.36));
}

.alumni-logo--avito {
  --logo-width: clamp(128px, 9.6vw, 166px);
  --logo-height: clamp(34px, 3.2vw, 46px);
  --logo-hover-filter: saturate(1.06) contrast(1.04) drop-shadow(0 0 12px rgba(0, 170, 255, 0.32));
}

.alumni-logo--moex {
  --logo-width: clamp(112px, 8.4vw, 148px);
  --logo-height: clamp(34px, 3.2vw, 44px);
  --logo-hover-filter: brightness(1.08) contrast(1.06) drop-shadow(0 0 12px rgba(120, 207, 240, 0.32));
}

.alumni-logo--alfa-capital {
  --logo-width: clamp(148px, 11.6vw, 190px);
  --logo-height: clamp(30px, 3vw, 42px);
  --logo-hover-filter: drop-shadow(0 0 12px rgba(230, 30, 20, 0.34));
}

.alumni-logo--semrush {
  --logo-width: clamp(142px, 10.8vw, 176px);
  --logo-height: clamp(34px, 3.6vw, 48px);
  --logo-hover-filter: drop-shadow(0 0 12px rgba(255, 100, 46, 0.34));
}

.alumni-logo--nebius {
  --logo-width: clamp(132px, 10vw, 174px);
  --logo-height: clamp(28px, 2.6vw, 38px);
  --logo-hover-filter: drop-shadow(0 0 12px rgba(244, 251, 255, 0.28));
}

.alumni-logo--tutu {
  --logo-width: clamp(108px, 8.5vw, 138px);
  --logo-height: clamp(38px, 3.8vw, 52px);
  --logo-hover-filter: saturate(1.08) contrast(1.05) drop-shadow(0 0 12px rgba(120, 207, 240, 0.34));
}

.alumni-logo--mts img,
.alumni-logo--mts .alumni-logo__image,
.alumni-logo--nebius img,
.alumni-logo--nebius .alumni-logo__image,
.alumni-logo--semrush img,
.alumni-logo--semrush .alumni-logo__image {
  opacity: 0.76;
}

@keyframes alumni-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.support-depth-block {
  position: relative;
  z-index: 3;
  overflow: hidden;
  scroll-margin-top: 76px;
  padding: clamp(56px, 8vh, 106px) clamp(20px, 5.6vw, 88px);
  border-top: 1px solid rgba(126, 207, 242, 0.22);
  background:
    radial-gradient(circle at 17% 12%, rgba(53, 230, 177, 0.18), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(120, 207, 240, 0.12), transparent 30%),
    linear-gradient(180deg, #05070a 0%, #0a1012 54%, #071013 100%);
  color: #f7f7f2;
}

.support-depth-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.025) 0 1px, transparent 1px 5px);
  background-size:
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    100% 5px;
  opacity: 0.48;
}

.support-depth-shell {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  margin: 0 auto;
  padding-right: clamp(76px, 7vw, 116px);
}

.support-depth-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(420px, 0.9fr);
  gap: clamp(18px, 3.4vw, 46px);
  align-items: start;
}

.support-depth-head h2 {
  max-width: 18ch;
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.support-depth-head > p:last-child {
  max-width: 56ch;
  margin: 0;
  color: rgba(247, 247, 242, 0.66);
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.62;
  font-weight: 500;
}

.depth-layer-card p:not(.depth-layer-card__label) {
  max-width: 48ch;
  margin: clamp(18px, 2.6vw, 30px) 0 0;
  color: rgba(247, 247, 242, 0.62);
  font-family: var(--mono);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.6;
  font-weight: 500;
}

.adaptive-lab-block,
.case-library-block {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vh, 106px) clamp(20px, 5.6vw, 88px);
  border-top: 1px solid rgba(126, 207, 242, 0.2);
  background:
    radial-gradient(circle at 76% 16%, var(--role-soft), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(120, 207, 240, 0.1), transparent 28%),
    linear-gradient(180deg, #071013 0%, #05070a 100%);
  color: var(--ink);
}

.case-library-block {
  background:
    radial-gradient(circle at 22% 18%, rgba(120, 207, 240, 0.12), transparent 28%),
    radial-gradient(circle at 86% 70%, var(--role-soft), transparent 30%),
    linear-gradient(180deg, #05070a 0%, #071013 100%);
}

.adaptive-lab-block::before,
.case-library-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.02) 0 1px, transparent 1px 5px);
  background-size:
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    100% 5px;
  opacity: 0.68;
}

.adaptive-lab-shell,
.case-library-shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-right: clamp(92px, 8vw, 142px);
}

.adaptive-lab-head,
.case-library-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(420px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
}

.case-library-head h2 {
  margin: 0;
}

.adaptive-lab-head p:last-child,
.case-library-head p:last-child {
  max-width: 58ch;
  margin: 0;
  color: rgba(247, 247, 242, 0.66);
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.62;
  font-weight: 600;
}

.case-stories-panel {
  margin-top: clamp(34px, 5.4vh, 64px);
  border: 1px solid rgba(126, 207, 242, 0.24);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.052), rgba(247, 247, 242, 0.018)),
    rgba(5, 7, 10, 0.64);
  box-shadow: inset 0 1px 0 rgba(247, 247, 242, 0.08);
}

.case-filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(18px, 2vw, 26px);
  border-bottom: 1px solid rgba(126, 207, 242, 0.16);
}

.case-filter-group {
  min-width: 0;
}

.case-library-block .case-filter-group[aria-label="Домены"] {
  display: none;
}

.case-filter-group p {
  margin: 0 0 10px;
  color: rgba(247, 247, 242, 0.48);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-filter-button {
  appearance: none;
  border: 1px solid rgba(126, 207, 242, 0.22);
  border-radius: 4px;
  background: rgba(247, 247, 242, 0.035);
  color: rgba(247, 247, 242, 0.72);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 9px 10px;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.case-filter-button:hover,
.case-filter-button:focus-visible {
  border-color: rgba(126, 207, 242, 0.54);
  outline: none;
}

.case-filter-button[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--role-accent) 72%, #f7f7f2 28%);
  background: color-mix(in srgb, var(--role-accent) 28%, transparent);
  color: #f7f7f2;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(126, 207, 242, 0.14);
}

.case-story-card {
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.7)),
    #05070a;
  color: #f7f7f2;
}

.case-story-card[hidden] {
  display: none;
}

.case-story-card summary {
  display: grid;
  min-height: clamp(258px, 18vw, 324px);
  list-style: none;
  padding: clamp(20px, 2.1vw, 28px);
  cursor: pointer;
}

.case-story-card summary::-webkit-details-marker {
  display: none;
}

.case-story-card summary:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--role-accent) 72%, #f7f7f2 28%);
  outline-offset: -2px;
}

.case-person-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.case-person-copy b,
.case-person-copy small,
.case-role-pill,
.case-tech,
.case-story-open {
  display: block;
  font-family: var(--mono);
}

.case-person-copy b {
  color: #f7f7f2;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
}

.case-person-copy small {
  color: rgba(247, 247, 242, 0.5);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
}

.case-role-pill {
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--role-accent) 68%, #f7f7f2 32%);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0;
  text-transform: uppercase;
}

.case-tech {
  align-self: end;
  margin-top: clamp(28px, 3vw, 44px);
  color: rgba(247, 247, 242, 0.42);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.case-story-card summary strong {
  display: block;
  align-self: end;
  max-width: 13ch;
  margin-top: 16px;
  color: #f7f7f2;
  font-family: var(--font-readable);
  font-size: clamp(27px, 2.2vw, 40px);
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}

.case-story-open {
  align-self: end;
  justify-self: start;
  margin-top: clamp(22px, 2.2vw, 32px);
  border-bottom: 1px solid rgba(126, 207, 242, 0.42);
  color: rgba(247, 247, 242, 0.66);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-story-card[open] {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--role-accent) 12%, rgba(5, 7, 10, 0.88) 88%), rgba(5, 7, 10, 0.84)),
    #05070a;
}

.case-story-detail {
  border-top: 1px solid rgba(126, 207, 242, 0.14);
  padding: 0 clamp(20px, 2.1vw, 28px) clamp(22px, 2.2vw, 30px);
}

.case-story-detail dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.case-story-detail dl > div {
  display: grid;
  grid-template-columns: minmax(76px, 0.28fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(126, 207, 242, 0.1);
}

.case-story-detail dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.case-story-detail dt,
.case-story-detail dd {
  margin: 0;
  font-family: var(--mono);
}

.case-story-detail dt {
  color: var(--role-accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-story-detail dd {
  color: rgba(247, 247, 242, 0.66);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.58;
  font-weight: 500;
}

.case-filter-empty {
  margin: 0;
  padding: 22px clamp(18px, 2vw, 26px);
  border-top: 1px solid rgba(126, 207, 242, 0.14);
  color: rgba(247, 247, 242, 0.56);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.case-more-toggle {
  appearance: none;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: clamp(18px, 2.6vh, 28px) auto 0;
  padding: 6px 0 0;
  border: 0;
  border-top: 1px solid rgba(120, 207, 240, 0.42);
  border-radius: 0;
  background: transparent;
  color: #78cff0;
  font-family: var(--mono);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  cursor: pointer;
}

.case-more-toggle:hover,
.case-more-toggle:focus-visible {
  color: var(--button-bg);
  border-top-color: color-mix(in srgb, var(--button-bg) 72%, transparent);
}

.case-more-toggle:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--button-bg) 72%, transparent);
  outline-offset: 5px;
}

.case-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
}

.case-story-card {
  border-bottom: 1px solid rgba(126, 207, 242, 0.18);
  background:
    linear-gradient(90deg, rgba(126, 207, 242, 0.045), transparent 34%),
    rgba(5, 7, 10, 0.58);
}

.case-story-card:last-child {
  border-bottom: 0;
}

.case-story-card summary {
  display: grid;
  grid-template-columns:
    minmax(28px, 0.1fr)
    minmax(170px, 0.62fr)
    minmax(300px, 1.34fr)
    minmax(190px, 0.72fr)
    92px
    minmax(120px, 0.36fr)
    minmax(136px, max-content);
  min-height: auto;
  align-items: center;
  gap: clamp(12px, 1.25vw, 20px);
  padding: clamp(16px, 1.7vw, 22px) clamp(18px, 2.1vw, 28px);
}

.case-file-id,
.case-row-label,
.case-row-effect small,
.case-row-effect b {
  display: block;
  font-family: var(--mono);
}

.case-row-brief {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.case-row-label,
.case-row-effect small {
  color: rgba(247, 247, 242, 0.42);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-story-card summary strong {
  max-width: none;
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(18px, 1.34vw, 25px);
  line-height: 1.14;
  font-weight: 700;
}

.case-row-effect {
  display: grid;
  gap: 7px;
  align-self: start;
}

.case-row-effect-value {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.case-row-effect-icon {
  width: clamp(15px, 1vw, 18px);
  height: clamp(15px, 1vw, 18px);
  color: color-mix(in srgb, var(--role-accent) 78%, #f7f7f2 22%);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--role-accent) 42%, transparent));
  opacity: 0.9;
}

.case-row-effect b {
  color: #f7f7f2;
  font-family: var(--font-readable);
  font-size: clamp(18px, 1.24vw, 23px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.case-story-card summary .case-role-pill {
  box-sizing: border-box;
  width: 92px;
  text-align: left;
}

.case-tech {
  align-self: auto;
  margin-top: 0;
  max-width: 18ch;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  font-weight: 500;
}

.case-story-open {
  display: inline-flex;
  box-sizing: border-box;
  width: 96px;
  min-height: 32px;
  align-self: auto;
  justify-self: end;
  align-items: center;
  justify-content: center;
  gap: 8px;
  place-items: center;
  padding: 8px 10px;
  margin-top: 0;
  border: 1px solid rgba(126, 207, 242, 0.32);
  border-radius: 6px;
  background: rgba(126, 207, 242, 0.04);
  color: color-mix(in srgb, var(--role-accent) 78%, #f7f7f2 22%);
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  text-decoration: none;
  white-space: nowrap;
}

.case-story-open::after {
  content: "+";
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.case-story-card[open] {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--role-accent) 15%, transparent), transparent 42%),
    rgba(5, 7, 10, 0.78);
}

.case-story-card[open] .case-story-open {
  border-color: color-mix(in srgb, var(--role-accent) 58%, rgba(126, 207, 242, 0.26) 42%);
  background: color-mix(in srgb, var(--role-accent) 10%, transparent);
  color: var(--role-accent);
  font-size: 0;
  letter-spacing: 0;
}

.case-story-card[open] .case-story-open::before {
  content: "свернуть";
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: lowercase;
}

.case-story-card[open] .case-story-open::after {
  content: "−";
  font-size: 13px;
}

.case-story-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 4.2vw, 58px);
  padding: 0 clamp(18px, 2.1vw, 28px) clamp(20px, 2.1vw, 28px);
  border-top: 1px solid rgba(126, 207, 242, 0.12);
}

.case-story-visual {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  min-width: 0;
  overflow: hidden;
  align-self: start;
  margin-top: clamp(4px, 0.8vw, 10px);
  border: 1px solid color-mix(in srgb, var(--case-card-accent) 38%, rgba(247, 247, 242, 0.28));
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 244, 244, 0.94), rgba(218, 226, 226, 0.84)),
    rgba(226, 232, 232, 0.88);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #1d2026;
}

.case-story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 22, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 26, 0.04) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(16, 22, 26, 0.025) 0 1px, transparent 1px 5px);
  background-size: 42px 42px, 42px 42px, 100% 5px;
  opacity: 0.74;
}

.case-story-visual::after {
  content: "";
  position: absolute;
  inset: -44% auto auto -34%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--case-card-accent-soft), transparent 62%);
  pointer-events: none;
}

.case-story-visual > * {
  position: relative;
  z-index: 1;
}

.case-story-visual .case-blueprint-visual {
  min-height: clamp(190px, 14vw, 238px);
  padding: clamp(10px, 1.2vw, 16px);
}

.case-story-visual .case-blueprint-visual svg {
  max-width: 320px;
}

.case-story-visual .case-blueprint-visual text {
  font-size: 12px;
}

.case-story-detail dl {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 4px;
}

.case-blueprint-card--onboarding {
  --case-card-accent: #8eef42;
  --case-card-accent-soft: rgba(142, 239, 66, 0.18);
}

.case-blueprint-card--services {
  --case-card-accent: #39bdf2;
  --case-card-accent-soft: rgba(57, 189, 242, 0.18);
}

.case-blueprint-card--infra {
  --case-card-accent: #b77cff;
  --case-card-accent-soft: rgba(183, 124, 255, 0.18);
}

.case-blueprint-card--outbound {
  --case-card-accent: #ffb84d;
  --case-card-accent-soft: rgba(255, 184, 77, 0.18);
}

.case-blueprint-card--figaro {
  --case-card-accent: #2de3c7;
  --case-card-accent-soft: rgba(45, 227, 199, 0.18);
}

.case-company-link {
  width: max-content;
  max-width: 100%;
  color: rgba(0, 112, 150, 0.9);
  border-bottom: 1px solid rgba(0, 112, 150, 0.34);
  font-family: var(--mono);
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.15;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.case-company-link:hover,
.case-company-link:focus-visible {
  color: #007096;
  border-bottom-color: currentColor;
}

.case-blueprint-visual {
  display: grid;
  min-height: clamp(194px, 17vw, 246px);
  place-items: center;
  padding: 8px clamp(18px, 2vw, 26px) 0;
  color: #1d2026;
}

.case-blueprint-visual svg {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  overflow: visible;
}

.case-blueprint-visual text {
  fill: color-mix(in srgb, var(--case-card-accent) 72%, #1d2026 28%);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.case-orbit,
.case-branch-lines path,
.case-circuit,
.case-growth-line,
.case-growth-shadow,
.case-growth-axis path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-orbit {
  stroke: color-mix(in srgb, var(--case-card-accent) 54%, #1d2026 46%);
  stroke-width: 2.4;
  opacity: 0.56;
}

.case-orbit--wide {
  stroke-dasharray: 8 13;
  opacity: 0.24;
}

.case-orbit--thin {
  stroke-width: 2;
}

.case-node--center circle {
  fill: var(--case-card-accent-soft);
}

.case-node--center path {
  fill: none;
  stroke: #1d2026;
  stroke-linecap: round;
  stroke-width: 6;
}

.case-branch-lines path,
.case-circuit {
  stroke: color-mix(in srgb, var(--case-card-accent) 62%, #1d2026 38%);
  stroke-width: 2.3;
  opacity: 0.55;
}

.case-mini-nodes circle,
.case-growth-nodes circle {
  fill: color-mix(in srgb, var(--case-card-accent) 78%, #1d2026 22%);
}

.case-service-core rect {
  fill: rgba(255, 255, 255, 0.34);
  stroke: color-mix(in srgb, var(--case-card-accent) 76%, #1d2026 24%);
  stroke-width: 2;
}

.case-service-core text {
  fill: #1d2026;
  font-size: 24px;
}

.case-service-grid rect {
  fill: rgba(255, 255, 255, 0.2);
  stroke: color-mix(in srgb, var(--case-card-accent) 56%, #1d2026 44%);
  stroke-width: 1.8;
}

.case-growth-line {
  stroke: color-mix(in srgb, var(--case-card-accent) 72%, #1d2026 28%);
  stroke-width: 4;
}

.case-growth-shadow {
  stroke: rgba(29, 32, 38, 0.16);
  stroke-width: 2;
  stroke-dasharray: 8 12;
}

.case-growth-seed circle {
  fill: rgba(29, 32, 38, 0.2);
  stroke: rgba(29, 32, 38, 0.4);
  stroke-width: 2;
}

.case-growth-axis path {
  stroke: rgba(29, 32, 38, 0.2);
  stroke-width: 1.8;
}

.case-growth-axis text {
  fill: rgba(29, 32, 38, 0.5);
  font-size: 12px;
}

.case-library-block--archive {
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 207, 242, 0.09), transparent 24%),
    linear-gradient(180deg, #071013 0%, #05070a 100%);
}

.case-library-block--archive .case-library-head {
  display: block;
  max-width: 980px;
}

.case-library-block--archive .case-library-head .section-kicker {
  margin: 0 0 18px;
  color: var(--button-bg);
}

.case-library-block--archive .case-library-head h2 {
  max-width: 10.8ch;
  color: var(--ink);
  font-size: 108px;
  line-height: 0.9;
  text-transform: lowercase;
}

.case-library-block--archive .case-library-head h2 span {
  display: block;
  color: var(--button-bg);
}

@media (min-width: 1341px) {
  .case-library-block--archive {
    padding-right: clamp(96px, 7vw, 150px);
  }

  .case-library-block--archive .case-library-shell {
    width: min(100%, calc(100vw - clamp(150px, 12vw, 230px)));
    max-width: 1500px;
    margin-left: clamp(34px, 4vw, 92px);
    margin-right: auto;
  }
}

.case-library-block--archive .case-stories-panel {
  margin-top: clamp(28px, 4.8vh, 54px);
}

@media (max-width: 1120px) {
  .case-library-block--archive .case-library-head h2 {
    max-width: 11.5ch;
    font-size: 76px;
  }
}

@media (max-width: 768px) {
  .case-library-block--archive .case-library-shell {
    padding-right: 0;
  }

  .case-library-block--archive .case-library-head .section-kicker {
    margin-bottom: 14px;
  }

  .case-library-block--archive .case-library-head h2 {
    max-width: 9.8ch;
    font-size: 44px;
    line-height: 0.96;
  }
}

.pricing-block {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 7vh, 82px) clamp(20px, 5.6vw, 88px) clamp(58px, 8vh, 94px);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 76% 22%, rgba(43, 100, 238, 0.07), transparent 26%),
    linear-gradient(180deg, #f4f3ed 0%, #fbfbf7 100%);
  color: #111111;
}

.pricing-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.018) 0 1px, transparent 1px 5px);
  background-size: clamp(72px, 7vw, 112px) clamp(72px, 7vw, 112px), clamp(72px, 7vw, 112px) clamp(72px, 7vw, 112px), 100% 5px;
  opacity: 0.7;
}

.faq-block {
  position: relative;
  z-index: 3;
  padding: clamp(42px, 5.5vh, 72px) clamp(20px, 5.6vw, 88px) clamp(52px, 7vh, 86px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  background: #f9f9f7;
  color: #181616;
}

.faq-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  column-gap: clamp(24px, 5vw, 88px);
  row-gap: 0;
  counter-reset: faqCategory;
}

.faq-module {
  grid-column: 1;
  margin: 0;
}

.faq-title {
  grid-column: 1;
  margin: 8px 0 0;
  color: rgba(24, 22, 22, 0.82);
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: lowercase;
}

.faq-title.visually-hidden {
  margin: -1px;
}

.faq-category {
  grid-column: 2;
  max-width: min(100%, 960px);
  counter-increment: faqCategory;
}

.faq-category + .faq-category {
  margin-top: clamp(34px, 4.2vw, 56px);
}

.faq-category > summary,
.faq-items details > summary {
  list-style: none;
  cursor: pointer;
}

.faq-category > summary::-webkit-details-marker,
.faq-items details > summary::-webkit-details-marker {
  display: none;
}

.faq-category > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  color: rgba(24, 22, 22, 0.72);
  font-family: var(--mono);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: lowercase;
}

.faq-category > summary::before {
  content: none;
}

.faq-category > summary span {
  color: rgba(24, 22, 22, 0.22);
  font-size: 20px;
  line-height: 1;
  transition: transform 160ms ease;
}

.faq-category[open] > summary span {
  transform: rotate(45deg);
}

.faq-items {
  display: grid;
  max-width: 920px;
  padding: 0 0 14px clamp(24px, 3.2vw, 54px);
}

.faq-items details {
  border-top: 1px dashed rgba(24, 22, 22, 0.1);
}

.faq-items details[open] + details {
  margin-top: clamp(14px, 1.5vw, 22px);
}

.faq-items details > summary {
  padding: 16px 0;
  color: rgba(24, 22, 22, 0.86);
  font-family: var(--font-readable);
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.35;
  font-weight: 500;
}

.faq-items p {
  max-width: 920px;
  margin: 0;
  padding: 0 0 24px;
  color: rgba(24, 22, 22, 0.62);
  font-family: var(--font-readable);
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.58;
  font-weight: 400;
}

.faq-question-link {
  grid-column: 2;
  max-width: min(100%, 960px);
  margin-top: clamp(16px, 2vw, 24px);
  padding-left: 0;
}

.faq-question-link a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: rgba(24, 22, 22, 0.54);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: lowercase;
}

.faq-question-link a::before {
  content: none;
}

.faq-question-link a:hover,
.faq-question-link a:focus-visible {
  color: #2f66f2;
  outline: none;
}

.aim-footer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: clamp(360px, 46vh, 540px);
  padding: clamp(58px, 8vh, 96px) clamp(22px, 5.6vw, 88px) clamp(36px, 5vh, 58px);
  background: #000;
  color: #fff;
}

.aim-footer__ghost {
  position: absolute;
  left: 9vw;
  right: -8vw;
  bottom: 20%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: clamp(92px, 18vw, 250px);
  line-height: 0.75;
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.aim-footer__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.48fr) minmax(240px, 0.65fr);
  gap: clamp(34px, 6vw, 96px);
  max-width: 1240px;
  margin: 0 auto;
}

.aim-footer__brand {
  font-family: var(--display);
  font-size: clamp(42px, 5.3vw, 80px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.aim-footer__group p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aim-footer__group a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.aim-footer__group a:hover,
.aim-footer__group a:focus-visible {
  color: #fff;
}

.aim-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-top: clamp(80px, 14vh, 150px);
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.44em;
}

.final-cta-block {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(72px, 10vh, 126px) clamp(20px, 5.6vw, 88px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--role-soft), transparent 38%), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(120, 207, 240, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 13, 17, 0.56), rgba(5, 7, 10, 0.52));
  color: var(--ink);
  text-align: center;
}

.final-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.014) 0 1px, transparent 1px 5px);
  background-size: clamp(74px, 8vw, 124px) clamp(74px, 8vw, 124px), clamp(74px, 8vw, 124px) clamp(74px, 8vw, 124px), 100% 5px;
  opacity: 0.5;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.final-cta-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(-34px, -4vw, -18px) clamp(-48px, -5vw, -20px);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(2, 5, 8, 0.58) 0 18%, rgba(2, 5, 8, 0.34) 46%, rgba(2, 5, 8, 0) 74%);
  filter: blur(1px);
}

.final-cta-shell h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--hero-display);
  font-size: clamp(46px, 6.3vw, 104px);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(247, 247, 242, 0.08);
}

.final-cta-shell h2 span {
  display: block;
}

.final-cta-shell h2 span:last-child {
  color: var(--role-accent);
  text-shadow: 0 0 34px var(--role-glow);
}

.final-cta-shell p:not(.final-cta-kicker) {
  max-width: 660px;
  margin: clamp(18px, 2.6vh, 30px) auto 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.55;
  font-weight: 650;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.78);
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  margin-top: clamp(30px, 4.5vh, 54px);
  padding: 0 clamp(28px, 3vw, 46px);
  border: 1px solid var(--button-border);
  border-radius: var(--button-radius);
  background: var(--button-bg);
  color: var(--button-ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 18px 56px var(--cta-glow);
}

.final-cta-button:hover,
.final-cta-button:focus-visible {
  background: var(--button-bg-hover);
  transform: translateY(-1px);
}

.assistant-toggle,
.assistant-drawer {
  position: fixed;
  right: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
}

.assistant-toggle {
  bottom: 18px;
  z-index: 2147483100;
  min-height: 44px;
  padding: 0 16px;
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.07), transparent),
    rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px -32px #000;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.assistant-toggle:hover,
.assistant-toggle:focus-visible,
.assistant-toggle[aria-expanded="true"] {
  color: var(--role-accent);
  border-color: var(--role-accent);
  transform: translateY(-1px);
}

.assistant-drawer {
  bottom: 74px;
  z-index: 2147483099;
  width: min(420px, calc(100vw - 36px));
  max-height: calc(100svh - 120px);
  overflow: auto;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 0%, var(--role-soft), transparent 18rem),
    repeating-linear-gradient(180deg, rgba(247, 247, 242, 0.04) 0 1px, transparent 1px 6px),
    rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 80px -44px #000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.assistant-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--role-accent), transparent 70%), transparent 36%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.08), transparent 28%);
  opacity: 0.22;
}

.assistant-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.assistant-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--role-accent), transparent 72%);
}

.assistant-head span {
  color: var(--role-accent);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: 0 0 18px color-mix(in srgb, var(--role-accent), transparent 48%);
  text-transform: uppercase;
}

.assistant-head button,
.assistant-controls button,
.assistant-controls input {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
}

.assistant-head button,
.assistant-controls button {
  min-height: 34px;
  padding: 0 10px;
  background: rgba(247, 247, 242, 0.045);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.assistant-head button:hover,
.assistant-head button:focus-visible,
.assistant-controls button:hover,
.assistant-controls button:focus-visible {
  color: var(--role-accent);
  border-color: var(--role-accent);
  background: rgba(255, 255, 255, 0.07);
}

.assistant-drawer p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
}

.assistant-human-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  margin: 0 0 14px;
  border: 1px solid color-mix(in srgb, var(--role-accent), transparent 54%);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: color-mix(in srgb, var(--role-accent), transparent 90%);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.assistant-human-link span {
  color: var(--role-accent);
  white-space: nowrap;
}

.assistant-human-link:hover,
.assistant-human-link:focus-visible {
  border-color: var(--role-accent);
  outline: none;
  background: color-mix(in srgb, var(--role-accent), transparent 84%);
}

.assistant-controls {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 8px;
}

.assistant-controls input {
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.assistant-controls input:focus {
  border-color: var(--role-accent);
}

.assistant-controls [data-assistant-mic][aria-pressed="true"] {
  color: var(--role-accent);
  border-color: var(--role-accent);
  background: color-mix(in srgb, var(--role-accent), transparent 86%);
}

.assistant-controls button:disabled {
  color: color-mix(in srgb, var(--muted), transparent 45%);
  border-color: rgba(247, 247, 242, 0.1);
  background: rgba(247, 247, 242, 0.02);
  cursor: not-allowed;
}

.pricing-shell {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  padding-right: clamp(92px, 8vw, 142px);
  margin: 0 auto;
}

.pricing-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: clamp(24px, 3.6vh, 42px);
}

.pricing-head h2 {
  margin: 0;
}

.pricing-head > p:not(.section-kicker) {
  max-width: 62ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--mono);
  font-size: clamp(13px, 0.96vw, 16px);
  line-height: 1.6;
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  max-width: 1080px;
}

.pricing-card {
  min-height: clamp(250px, 17vw, 304px);
  padding: clamp(22px, 2.15vw, 32px);
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(251, 251, 247, 0.62);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #111111;
}

.pricing-card--primary {
  border-color: rgba(17, 17, 17, 0.2);
}

.pricing-card--team {
  border-color: rgba(17, 17, 17, 0.22);
  background:
    linear-gradient(135deg, rgba(53, 230, 177, 0.09), transparent 44%),
    rgba(239, 240, 236, 0.78);
}

.pricing-card__label {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: rgba(17, 17, 17, 0.42);
  font-family: var(--mono);
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.pricing-card__price {
  color: #111111;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-card--primary .pricing-card__price {
  color: #111111;
}

.pricing-card__price--discount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(10px, 1.2vw, 18px);
}

.pricing-card__price--discount .pricing-card__old-price,
.pricing-card__price--discount .pricing-card__current-price {
  display: inline-block;
  margin-left: 0;
  font-family: var(--display);
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-card__price--discount .pricing-card__old-price {
  color: rgba(17, 17, 17, 0.36);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 700;
  text-decoration-line: line-through;
  text-decoration-thickness: 0.08em;
  text-decoration-color: rgba(17, 17, 17, 0.42);
}

.pricing-card__price--discount .pricing-card__current-price {
  color: #111111;
  font-size: inherit;
  font-weight: 800;
}

.pricing-card__deadline {
  margin: clamp(8px, 1vw, 12px) 0 0;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pricing-card__price span {
  display: inline-block;
  margin-left: 8px;
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--mono);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  vertical-align: baseline;
}

.pricing-card__copy {
  max-width: min(100%, 56ch);
  margin: clamp(16px, 2vw, 24px) 0 clamp(28px, 3.2vw, 44px);
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--mono);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  white-space: normal;
}

.pricing-card__microcopy {
  max-width: 46ch;
  margin: -18px 0 clamp(28px, 3.2vw, 44px);
  color: rgba(17, 17, 17, 0.46);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.45;
  font-weight: 500;
}

.pricing-card__cta,
.pricing-card__secondary {
  min-width: clamp(224px, 16vw, 286px);
  min-height: 48px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--button-radius);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.pricing-card__cta {
  padding: 0 clamp(20px, 1.8vw, 28px);
  border: 1px solid var(--button-border);
  background: var(--button-bg);
  color: var(--button-ink);
  box-shadow: 0 16px 46px rgba(43, 100, 238, 0.18);
}

.pricing-card__secondary {
  appearance: none;
  padding: 0 clamp(20px, 1.8vw, 28px);
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(251, 251, 247, 0.48);
  color: #111111;
}

.pricing-card__cta:hover,
.pricing-card__cta:focus-visible {
  background: var(--button-bg-hover);
  outline: none;
}

.pricing-card__secondary:hover,
.pricing-card__secondary:focus-visible {
  border-color: rgba(17, 17, 17, 0.34);
  outline: none;
}

@media (max-width: 1600px) and (min-width: 761px) {
  .case-story-card summary {
    grid-template-columns:
      34px
      minmax(150px, 0.72fr)
      minmax(230px, 1.08fr)
      minmax(170px, 0.72fr)
      92px
      minmax(132px, max-content);
    row-gap: 11px;
  }

  .case-person-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .case-row-brief {
    grid-column: 3;
    grid-row: 1;
  }

  .case-row-effect {
    grid-column: 4;
    grid-row: 1 / span 2;
  }

  .case-story-card summary .case-role-pill {
    grid-column: 5;
    grid-row: 1 / span 2;
  }

  .case-tech {
    grid-column: 2 / 4;
    grid-row: 2;
    max-width: none;
  }

  .case-story-open {
    grid-column: 6;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

@media (max-width: 1120px) {
  .support-depth-shell,
  .adaptive-lab-shell,
  .case-library-shell {
    padding-right: 120px;
  }

  .support-depth-head,
  .adaptive-lab-head,
  .case-library-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .support-depth-head h2 {
    max-width: 18ch;
  }

  .case-blueprint-visual svg {
    max-width: 440px;
  }

  .case-filter-bar {
    grid-template-columns: 1fr;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
  }

  }

@media (max-width: 900px) {
  .support-depth-shell,
  .adaptive-lab-shell,
  .case-library-shell {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  section[id],
  footer[id] {
    scroll-margin-top: 64px;
  }

  .support-depth-block,
  .adaptive-lab-block,
  .case-library-block {
    padding: 42px 18px 54px;
  }

  .case-filter-bar {
    padding: 16px;
  }

  .case-filter-options {
    gap: 5px;
  }

  .case-filter-button {
    font-size: 10px;
    padding: 8px 8px;
  }

  .case-story-grid {
    grid-template-columns: 1fr;
  }

  .case-story-card summary {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    align-items: start;
    gap: 12px;
    padding: 16px;
  }

  .case-role-pill {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }

  .case-story-card summary .case-role-pill {
    width: auto;
  }

  .case-person-copy,
  .case-row-brief,
  .case-tech {
    grid-column: 1 / -1;
  }

  .case-story-open {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .case-row-effect {
    grid-column: 1 / -1;
  }

  .case-row-effect-value {
    gap: 7px;
  }

  .case-row-effect-icon {
    width: 17px;
    height: 17px;
  }

  .case-story-card summary strong {
    max-width: none;
    font-size: clamp(20px, 6.4vw, 28px);
  }

  .case-story-detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px 18px;
  }

  .case-detail-person,
  .case-story-visual,
  .case-story-detail dl {
    grid-column: 1;
    grid-row: auto;
  }

  .case-story-visual {
    margin-top: 0;
  }

  .case-story-visual .case-blueprint-visual {
    min-height: 184px;
    padding: 12px;
  }

  .case-blueprint-visual {
    min-height: 184px;
    padding-inline: 14px;
  }

  .case-story-detail dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .support-depth-head,
  .adaptive-lab-head,
  .case-library-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-depth-head h2 {
    max-width: 17ch;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.02;
  }

  .support-depth-head > p:last-child {
    font-size: 13px;
  }

}

.kinetic-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
  touch-action: none;
  isolation: isolate;
}

.kinetic-stage::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vh, 40px) 0 clamp(80px, 12vh, 132px);
  z-index: -1;
  border-top: 1px solid rgba(244, 240, 234, 0.12);
  border-bottom: 1px solid rgba(244, 240, 234, 0.1);
  background:
    radial-gradient(circle at 66% 46%, var(--hot-soft), transparent 38%),
    radial-gradient(circle at 70% 52%, rgba(255, 143, 34, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(244, 240, 234, 0.035), rgba(244, 240, 234, 0.01));
  box-shadow: inset 0 0 0 1px rgba(255, 80, 100, 0.06), 0 0 72px rgba(94, 8, 8, 0.24);
}

body[data-visual="firefly"] .kinetic-stage::before {
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 64% 34%, rgba(120, 207, 240, 0.07), transparent 28%),
    radial-gradient(circle at 76% 62%, rgba(247, 247, 242, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  box-shadow: none;
}

#kinetic-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.program-facts {
  grid-area: facts;
  position: relative;
  z-index: 4;
  margin: 0;
  padding: clamp(12px, 1.8vh, 18px) clamp(14px, 2vw, 28px);
  border: 1px solid rgba(126, 207, 242, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.76), rgba(5, 7, 10, 0.58));
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(247, 247, 242, 0.045);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(220px, 1fr) minmax(150px, 0.72fr);
  gap: 12px;
  min-height: 58px;
}

body[data-visual="firefly"] .program-facts {
  border-color: rgba(17, 17, 17, 0.14);
  background:
    linear-gradient(180deg, rgba(251, 251, 247, 0.86), rgba(251, 251, 247, 0.68));
  box-shadow: 0 -10px 30px rgba(17, 17, 17, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.fact-row {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.fact-row dt {
  color: rgba(247, 247, 242, 0.46);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.fact-row dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(15px, 1.3vw, 21px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(5, 7, 10, 0.52);
}

.fact-row--date-range dd {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 1.3vw, 18px);
  white-space: nowrap;
}

.fact-row--date-range span {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
}

.fact-row--date-range small {
  color: rgba(247, 247, 242, 0.46);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  font-weight: 700;
}

.fact-row--date-range i {
  color: rgba(247, 247, 242, 0.34);
  font-style: normal;
  font-weight: 500;
}

body[data-visual="firefly"] .fact-row dt {
  color: rgba(17, 17, 17, 0.44);
}

body[data-visual="firefly"] .fact-row dd {
  text-shadow: none;
}

body[data-visual="firefly"] .fact-row--date-range small {
  color: rgba(17, 17, 17, 0.46);
}

body[data-visual="firefly"] .fact-row--date-range i {
  color: rgba(17, 17, 17, 0.34);
}

@media (max-width: 1120px) {
  .site-header {
    gap: 14px;
  }

  .site-brand span {
    display: none;
  }

  .top-nav {
    display: none;
  }

  .header-enroll {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-enroll__status {
    min-width: 0;
    max-width: calc(100vw - 220px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-enroll__cta {
    min-height: 34px;
    padding: 0 15px;
    font-size: 10px;
  }

  .section-rail {
    right: 8px;
    width: 132px;
    padding: 12px 8px 12px 12px;
  }

  .section-rail a {
    min-height: 34px;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .section-rail a + a {
    margin-top: 10px;
  }

  .section-rail a.is-active i {
    width: 12px;
    height: 12px;
  }

  .section-rail i {
    width: 7px;
    height: 7px;
  }

  .section-rail span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-main {
    padding-right: 26px;
  }

  .program-facts {
    grid-template-columns: 1fr;
    padding-right: 122px;
  }

  .fact-row--date-range dd {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .agent-company__body,
  .route-shell,
  .outcomes-shell,
  .schedule-shell,
  .speakers-shell,
  .testimonials-shell,
  .alumni-shell,
  .adaptive-lab-shell,
  .case-library-shell,
  .pricing-shell {
    padding-right: 120px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "copy"
      "stage"
      "facts";
    align-content: start;
  }

  .hero-copy {
    width: min(94vw, 1180px);
    padding-top: 8px;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(78px, 14vw, 156px);
  }

  .hero-title-media {
    height: clamp(250px, 36vw, 350px);
  }

  .hero-secondary {
    margin-top: 16px;
  }

  .hero-cta,
  .record-cta {
    min-height: 46px;
    padding: 0 22px;
    font-size: 13px;
  }

  .kinetic-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: none;
  }

  .program-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    padding: 14px 16px;
  }

  .agent-company {
    min-height: auto;
    padding-top: clamp(126px, 16.2vh, 168px);
    padding-bottom: clamp(46px, 6vh, 64px);
  }

  .agent-company__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.74fr);
    align-items: center;
    gap: clamp(24px, 3vw, 34px);
  }

  .agent-company__body {
    max-width: 430px;
    padding-right: 98px;
    padding-bottom: 0;
  }

  .agent-company__body p {
    font-size: clamp(14px, 1.36vw, 16px);
    line-height: 1.42;
  }

  .agent-stats {
    margin-top: 20px;
    padding-top: 16px;
    gap: 16px;
  }

  .agent-stat dt {
    font-size: clamp(30px, 3.3vw, 40px);
  }

  .record-cta {
    min-height: 42px;
    margin-top: 24px;
    padding: 0 20px;
  }

  .route-block {
    padding-top: clamp(44px, 5.8vh, 60px);
    padding-bottom: clamp(48px, 6.5vh, 68px);
  }

  .route-head h2 {
    font-size: clamp(38px, 6.2vw, 58px);
  }

  .route-head p {
    max-width: 560px;
    font-size: clamp(14px, 1.7vw, 17px);
  }

  .route-track {
    margin-top: clamp(34px, 5vh, 54px);
  }

  .route-card {
    min-height: 280px;
  }

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

  .program-week-card > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .outcomes-block {
    padding-top: clamp(42px, 5.8vh, 60px);
    padding-bottom: clamp(48px, 6.5vh, 68px);
  }

  .outcomes-grid {
    grid-template-columns: minmax(350px, 0.86fr) minmax(300px, 0.74fr);
    gap: 28px;
  }

  .outcome-sphere-map {
    min-height: 350px;
  }

  .speakers-shell,
  .testimonials-shell {
    max-width: 900px;
  }

  .speakers-title {
    font-size: clamp(30px, 4vw, 42px);
  }

  .speakers-leads,
  .guest-grid {
    gap: 26px;
  }

  .testimonial-featured-text {
    font-size: clamp(17px, 1.55vw, 22px);
  }

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

  .alumni-block {
    padding-top: clamp(38px, 5vh, 58px);
    padding-bottom: clamp(42px, 6vh, 66px);
  }

  .pricing-block {
    padding-top: clamp(42px, 5.6vh, 62px);
    padding-bottom: clamp(48px, 6.4vh, 72px);
  }

  .pricing-shell {
    max-width: 980px;
  }

  .pricing-card {
    min-height: 300px;
    padding: clamp(22px, 2.4vw, 28px);
  }

  .pricing-card__label {
    margin-bottom: clamp(18px, 2.6vw, 26px);
  }

  .pricing-card__price {
    font-size: clamp(40px, 4.4vw, 54px);
  }

  .pricing-card__copy {
    margin-top: clamp(18px, 2.5vw, 26px);
    font-size: clamp(14px, 1.25vw, 16px);
  }

  .alumni-set {
    gap: clamp(28px, 4vw, 52px);
  }

  .alumni-logo {
    font-size: clamp(19px, 2.4vw, 24px);
  }
}

@media (max-width: 900px) {
  .agent-company__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .agent-company__body {
    max-width: 620px;
  }

  .route-track {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 760px) {
  body {
    overflow-y: auto;
  }

  .header-enroll__status i {
    display: none;
  }

  .section-rail {
    display: none;
  }

  .site-main,
  .program-facts,
  .agent-company__body,
  .route-shell,
  .outcomes-shell,
  .schedule-shell,
  .speakers-shell,
  .testimonials-shell,
  .alumni-shell,
  .adaptive-lab-shell,
  .case-library-shell,
  .pricing-shell {
    padding-right: 0;
  }

  h1 {
    max-width: 11.8ch;
    font-size: clamp(52px, 17vw, 82px);
    line-height: 0.88;
  }

  .hero-title-media {
    height: clamp(230px, 70vw, 330px);
  }

  .kinetic-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    transform: none;
  }

  .kinetic-stage::before {
    inset: 2% 0 4%;
  }

  .fact-row {
    grid-template-columns: 118px 1fr;
    align-items: baseline;
  }

  .fact-row dt {
    font-size: 10px;
  }

  .fact-row dd {
    font-size: 14px;
  }

  .agent-company {
    padding: 42px 18px 58px;
  }

  .agent-company__body p {
    font-size: 18px;
    line-height: 1.28;
  }

  .agent-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 26px;
  }

  .agent-stat dt {
    font-size: clamp(42px, 16vw, 64px);
  }

  .agent-stat dd {
    max-width: 28ch;
    font-size: 12px;
  }

  .record-cta {
    width: 100%;
    gap: 14px;
  }

  .section-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .section-cta-strip a {
    width: 100%;
  }

  .route-block {
    padding: 42px 18px 54px;
  }

  .route-head h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .route-head p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .route-track {
    margin-top: 30px;
  }

  .route-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .route-card h3 {
    font-size: 24px;
    white-space: normal;
  }

  .route-card p {
    font-size: 15px;
  }

  .program-details summary {
    width: 100%;
    justify-content: center;
  }

  .program-week-card > div {
    padding: 22px 18px;
  }

  .program-week-card h3 {
    font-size: 24px;
  }

  .outcomes-block {
    padding: 42px 18px 54px;
  }

  .outcomes-head h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .outcome-sphere-map {
    min-height: 300px;
  }

  .outcome-panel {
    min-height: 210px;
    padding: 24px 20px;
  }

  .outcome-panel h3 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .speakers-block,
  .testimonials-block {
    padding: 36px 18px 48px;
  }

  .speakers-title {
    font-size: clamp(32px, 10vw, 42px);
  }

  .speakers-leads,
  .guest-grid {
    grid-template-columns: 1fr;
  }

  .speaker-card,
  .guest-grid .speaker-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .speaker-photo,
  .guest-grid .speaker-photo {
    width: 72px;
  }

  .speaker-mini-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .speaker-mini-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .speaker-mini-photo {
    width: 52px;
  }

  .speaker-mini-body h3 {
    font-size: 15px;
  }

  .speaker-mini-body p {
    font-size: 11px;
  }

  .testimonial-featured-card {
    padding: 28px 20px;
  }

  .testimonials-featured {
    grid-template-columns: 1fr;
  }

  .testimonial-featured-text {
    max-width: none;
    font-size: 16px;
    line-height: 1.65;
  }

  .testimonial-quote-line {
    flex-direction: column;
    gap: 6px;
  }

  .testimonial-quote-author {
    max-width: none;
    white-space: normal;
  }

  .alumni-block {
    padding: 48px 18px 58px;
  }

  .alumni-head {
    display: block;
    margin-bottom: 30px;
  }

  .alumni-title {
    font-size: 12px;
    line-height: 1.2;
  }

  .alumni-proof-note {
    max-width: 100%;
    width: 100%;
    margin-top: 16px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    text-align: left;
  }

  .alumni-proof-note strong {
    font-size: 48px;
  }

  .alumni-proof-note span {
    max-width: 220px;
    font-size: 12px;
    line-height: 1.35;
  }

  .alumni-logo {
    font-size: clamp(17px, 6.4vw, 22px);
  }

  .alumni-marquee {
    overflow: visible;
    border-block-color: rgba(120, 207, 240, 0.26);
    background: rgba(120, 207, 240, 0.032);
    box-shadow: inset 0 1px 0 rgba(244, 251, 255, 0.035), 0 22px 64px rgba(0, 0, 0, 0.42);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .alumni-track {
    width: 100%;
    display: block;
    animation: none;
    transform: none;
  }

  .alumni-set {
    width: 100%;
    padding: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 28px 22px;
  }

  .alumni-set[aria-hidden="true"] {
    display: none;
  }

  .alumni-logo,
  .alumni-logo--mts,
  .alumni-logo--vk,
  .alumni-logo--sber,
  .alumni-logo--yandex,
  .alumni-logo--avito,
  .alumni-logo--moex,
  .alumni-logo--alfa-capital,
  .alumni-logo--semrush,
  .alumni-logo--nebius,
  .alumni-logo--tutu {
    width: 100%;
    min-width: 0;
    height: clamp(42px, 12vw, 54px);
  }

  .alumni-logo img,
  .alumni-logo__image {
    width: var(--mobile-logo-width, 100%);
    height: 100%;
    object-fit: contain;
  }

  .alumni-logo--sber {
    --mobile-logo-width: 92%;
  }

  .alumni-logo--yandex {
    --mobile-logo-width: 82%;
  }

  .alumni-logo--avito {
    --mobile-logo-width: 88%;
  }

  .alumni-logo--nebius {
    --mobile-logo-width: 92%;
  }

  .alumni-logo--moex {
    --mobile-logo-width: 76%;
  }

  .alumni-logo--alfa-capital {
    --mobile-logo-width: 108%;
  }

  .alumni-logo--semrush {
    --mobile-logo-width: 108%;
  }

  .alumni-logo--tutu {
    --mobile-logo-width: 76%;
  }

  .alumni-logo--mts,
  .alumni-logo--vk {
    --mobile-logo-width: 48px;
  }

  #alumni .alumni-logo img,
  #alumni .alumni-logo__image {
    opacity: 0.96;
    filter: brightness(0) invert(1) saturate(0) contrast(1.16) drop-shadow(0 0 11px rgba(244, 251, 255, 0.28));
  }

  #alumni .alumni-logo.is-scroll-active img,
  #alumni .alumni-logo.is-scroll-active .alumni-logo__image {
    opacity: 1;
    filter: var(--logo-hover-filter, saturate(1.08) contrast(1.04) drop-shadow(0 0 10px rgba(120, 207, 240, 0.34)));
  }

  #alumni .alumni-logo--mts img,
  #alumni .alumni-logo--mts .alumni-logo__image,
  #alumni .alumni-logo--moex img,
  #alumni .alumni-logo--moex .alumni-logo__image {
    opacity: 0.96;
    filter: grayscale(1) brightness(1.42) contrast(1.08) drop-shadow(0 0 11px rgba(244, 251, 255, 0.24));
  }

  #alumni .alumni-logo--mts.is-scroll-active img,
  #alumni .alumni-logo--mts.is-scroll-active .alumni-logo__image,
  #alumni .alumni-logo--moex.is-scroll-active img,
  #alumni .alumni-logo--moex.is-scroll-active .alumni-logo__image {
    opacity: 1;
    filter: var(--logo-hover-filter, saturate(1.08) contrast(1.04) drop-shadow(0 0 10px rgba(120, 207, 240, 0.34)));
  }

  .alumni-set .alumni-logo:last-child {
    grid-column: 2;
  }

  .pricing-block {
    padding: 36px 18px 48px;
  }

  .pricing-head {
    display: block;
  }

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

  .pricing-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .pricing-card__label {
    margin-bottom: 28px;
    font-size: 12px;
  }

  .pricing-card__price {
    font-size: clamp(44px, 13vw, 64px);
  }

  .pricing-card__copy {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .pricing-card__microcopy {
    margin: -2px 0 28px;
  }

  .pricing-card__cta,
  .pricing-card__secondary {
    width: 100%;
    margin-top: 0;
  }
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--cta) !important;
  outline-offset: 3px;
}

@media (max-width: 1340px) {
  .section-rail {
    display: block;
    right: 6px;
    width: 38px;
    padding: 8px 6px;
  }

  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    width: 124px;
  }

  .section-rail a {
    gap: 4px;
    min-height: 30px;
  }

  .section-rail a.is-active i {
    width: 11px;
    height: 11px;
  }

  .top-nav {
    display: none;
  }

  .site-main,
  .program-facts,
  .agent-company__body,
  .route-shell,
  .outcomes-shell,
  .schedule-shell,
  .speakers-shell,
  .testimonials-shell,
  .alumni-shell,
  .adaptive-lab-shell,
  .case-library-shell,
  .pricing-shell {
    padding-right: 0;
  }

  .schedule-shell {
    width: min(100%, 960px);
    max-width: calc(100vw - 96px);
    margin-left: auto;
    margin-right: auto;
  }

  .sprint-calendar {
    width: min(100%, 820px);
    max-width: 820px;
  }

  .schedule-note {
    width: min(100%, 820px);
    max-width: 820px;
  }
}

@media (max-width: 900px) {
  .section-rail {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .hero-cta,
  .hero-route-link,
  .door-card,
  .record-cta,
  .pricing-card__cta,
  .pricing-card__secondary,
  .header-enroll__cta {
    transition: none;
  }

  .adaptive-kinetic-lab::after {
    animation: none;
  }

  body.is-role-auto-previewing .audience-tab.is-active,
  body.is-role-auto-previewing .door-card.is-active,
  body.is-role-auto-previewing .outcome-sphere.is-active {
    animation: none;
  }
}

@media (max-width: 1600px) {
  .audience-tabs {
    flex-basis: clamp(280px, 24vw, 380px);
  }

  .audience-tab {
    min-height: 34px;
    padding-inline: 7px;
  }
}

@media (max-width: 1120px) {
  .audience-tabs {
    flex: 1 1 min(420px, 48vw);
    max-width: 460px;
  }
}

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

  .audience-tabs {
    flex: 1 0 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .audience-tabs::-webkit-scrollbar {
    display: none;
  }

  body[data-audience] h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .fact-row dd {
    overflow-wrap: anywhere;
  }

  .program-facts {
    max-width: calc(100vw - 36px);
  }

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

  .fact-row dt,
  .fact-row dd {
    min-width: 0;
    box-sizing: border-box;
  }

  .schedule-header .schedule-role-note {
    padding-left: 10px;
  }

  .faq-block {
    padding: 38px 18px 48px;
  }

  .faq-shell {
    display: block;
  }

  .faq-title {
    margin: -1px;
  }

  .faq-category > summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 15px 0;
  }

  .faq-items {
    padding: 0 0 12px 22px;
  }

  .faq-question-link {
    margin-top: 14px;
    padding-left: 0;
  }

  .aim-footer {
    min-height: 420px;
    padding: 48px 18px 32px;
  }

  .aim-footer__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aim-footer__ghost {
    left: 16px;
    bottom: 28%;
    font-size: clamp(76px, 28vw, 120px);
  }

  .aim-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
    line-height: 1.4;
  }

  .final-cta-block {
    padding: 72px 18px;
  }

  .final-cta-shell h2 {
    font-size: clamp(44px, 15vw, 64px);
    line-height: 0.92;
  }

  .final-cta-button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .assistant-toggle {
    right: 12px;
    bottom: 12px;
    z-index: 2147483100;
    min-height: 42px;
    padding: 0 14px;
  }

  .assistant-drawer {
    right: 10px;
    bottom: 66px;
    z-index: 2147483099;
    width: calc(100vw - 20px);
    max-height: calc(100svh - 92px);
    border-radius: 12px;
    padding: 14px;
  }

  .assistant-controls {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .assistant-controls input {
    grid-column: 1 / -1;
  }

  .assistant-controls [data-assistant-mic],
  .assistant-controls [data-assistant-voice],
  .assistant-controls [data-assistant-pause],
  .assistant-controls [data-assistant-stop] {
    min-width: 0;
  }
}

/* Header visibility hotfix: keep the real site menu readable on 13" desktop widths. */
.site-header {
  --header-ink: #f7f7f2;
  --header-muted: rgba(247, 247, 242, 0.78);
  --header-dim: rgba(247, 247, 242, 0.42);
  z-index: 120;
  min-height: 54px;
  background: rgba(5, 7, 10, 0.86);
  color: var(--header-ink);
  border-bottom-color: rgba(126, 207, 242, 0.2);
}

body[data-visual="firefly"] .site-header {
  --header-ink: #111111;
  --header-muted: rgba(17, 17, 17, 0.72);
  --header-dim: rgba(17, 17, 17, 0.34);
  background: rgba(251, 251, 247, 0.9);
}

.site-header .site-brand,
.site-header .top-nav,
.site-header .header-enroll,
.site-header .header-enroll__status,
.site-header .top-nav > a,
.site-header .nav-dropdown > button {
  color: var(--header-muted);
  opacity: 1;
  visibility: visible;
}

.site-header .site-brand,
.site-header .header-enroll__status {
  color: var(--header-ink);
}

.site-header .site-brand img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(247, 247, 242, 0.18));
}

body[data-visual="firefly"] .site-header .site-brand img {
  filter: brightness(0);
}

.site-header .top-nav {
  display: flex !important;
  flex: 1 1 auto;
  justify-content: center;
  font-size: clamp(9px, 0.62vw, 11px);
  letter-spacing: 0.08em;
}

.site-header .top-nav > a::after,
.site-header .nav-dropdown > button::after {
  margin: 0 clamp(6px, 0.74vw, 12px);
  color: var(--header-dim);
}

.site-header .top-nav > a:hover,
.site-header .top-nav > a:focus-visible,
.site-header .nav-dropdown > button:hover,
.site-header .nav-dropdown > button:focus-visible,
.site-header .nav-dropdown:focus-within > button {
  color: var(--header-ink);
}

@media (max-width: 1280px) {
  .site-header {
    padding-inline: clamp(12px, 1.5vw, 20px);
    gap: 10px;
  }

  .site-header .site-brand span {
    display: inline;
    font-size: 11px;
  }

  .site-header .header-enroll__status {
    font-size: 0;
    gap: 0;
  }

  .site-header .header-enroll__status i {
    display: block;
  }

  .site-header .header-enroll__cta {
    min-height: 34px;
    padding-inline: 14px;
    font-size: 10px;
  }
}

@media (max-width: 980px) {
  .site-header .site-brand span {
    display: none;
  }

  .site-header .top-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header .top-nav::-webkit-scrollbar {
    display: none;
  }
}

.program-facts .fact-row {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.program-facts .fact-row dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.program-facts .fact-row dd {
  grid-column: 1;
}

/* Restore a controlled stretched headline feel without reintroducing the blank kinetic-canvas regression. */
@media (min-width: 761px) {
  body[data-audience] .hero-title-fallback [data-role-title-line] {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    transform-origin: left center;
    transform: scaleX(1.035);
  }

  body[data-audience] .hero-title-fallback [data-role-title-line="1"] {
    transform: scaleX(1.065);
  }

  body[data-audience] .hero-title-fallback [data-role-title-line="2"] {
    transform: scaleX(1.025);
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  body[data-audience] .hero-title-fallback [data-role-title-line] {
    transform: scaleX(1.018);
  }

  body[data-audience] .hero-title-fallback [data-role-title-line="1"] {
    transform: scaleX(1.032);
  }
}

@media (min-width: 761px) and (max-height: 960px) {
  body[data-audience] .hero {
    align-content: start;
    padding-top: clamp(70px, 8vh, 88px);
    padding-bottom: 12px;
    gap: 12px;
  }

  body[data-audience] .hero-copy {
    grid-template-rows: auto clamp(204px, 21vw, 256px) auto auto auto;
    padding-top: 0;
  }

  body[data-audience] .hero-title-stack {
    min-height: clamp(204px, 21vw, 256px);
  }

  body[data-audience] h1 {
    max-width: min(69vw, 980px);
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.86;
    min-height: 2.58em;
  }

  body[data-audience] .hero-secondary {
    max-width: 36ch;
    margin-top: 12px;
    min-height: 3.9em;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.3;
  }

  body[data-audience] .hero-focus-intro {
    margin-top: 10px;
  }

  body[data-audience] .door-switch {
    margin-top: 10px;
  }

  body[data-audience] .door-card {
    min-height: 108px;
    padding: 12px 14px;
  }

  body[data-audience] .door-card b {
    margin-top: 16px;
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.18;
  }

}

/* Hero fit pass: keep the full header on desktop, but reclaim first-screen space on phones and short laptop viewports. */
@media (min-width: 761px) and (max-height: 760px) {
  .hero {
    align-content: start;
    padding-top: 74px;
    padding-bottom: 12px;
    gap: 14px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: clamp(12px, 1.18vw, 16px);
    line-height: 1.12;
  }

  body[data-audience] h1 {
    font-size: clamp(54px, 6.55vw, 92px);
    line-height: 0.86;
  }

  .hero-secondary {
    margin-top: 12px;
    max-width: 37ch;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.3;
  }

  .door-switch {
    margin-top: 10px;
  }

  .door-card {
    min-height: 104px;
    padding: 12px 14px;
  }

  .door-card b {
    margin-top: 18px;
    font-size: clamp(13px, 1.05vw, 15px);
    line-height: 1.18;
  }

  .program-facts {
    grid-template-columns: 1fr;
    padding: 9px 16px;
    gap: 10px;
  }

  .fact-row--date-range dd {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .program-facts .fact-row dd {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.18;
  }
}

@media (max-width: 760px) {

  .site-header .top-nav {
    display: none !important;
  }

  .audience-tabs {
    padding-top: 0;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 22px;
    gap: 12px;
  }

  body[data-audience] .hero-copy {
    display: grid;
    grid-template-rows: auto clamp(140px, 38vw, 158px) auto auto auto;
    align-content: start;
  }

  body[data-audience] .hero-title-stack {
    min-height: clamp(140px, 38vw, 158px);
    display: flex;
    align-items: flex-start;
  }

  .door-card span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .fact-row--date-range dd {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    white-space: normal;
  }

  .fact-row--date-range i {
    display: none;
  }

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

  }

@media (max-width: 380px), (max-width: 760px) and (max-height: 700px) {
  .hero {
    padding-top: 92px;
    padding-bottom: 18px;
    gap: 10px;
  }

  body[data-audience] h1 {
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 0.92;
    min-height: 2.76em;
  }

  body[data-audience] .hero-copy {
    grid-template-rows: auto clamp(104px, 27vw, 124px) auto auto auto;
  }

  body[data-audience] .hero-title-stack {
    min-height: clamp(104px, 27vw, 124px);
  }

  .hero-secondary {
    margin-top: 12px;
    line-height: 1.28;
  }

  .hero-focus-intro {
    margin-top: 8px;
  }

  .door-switch {
    margin-top: 8px;
  }

  .door-card {
    min-height: 108px;
    padding: 11px;
  }

  .door-card b {
    margin-top: 13px;
  }

  .program-facts {
    padding: 9px 10px;
  }
}

.adaptive-kinetic-lab {
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-height: clamp(620px, 72vh, 880px);
  padding: 0;
  border-top: 1px solid rgba(126, 207, 242, 0.22);
  border-bottom: 1px solid rgba(126, 207, 242, 0.18);
  background: #05070a;
  color: #f7f7f2;
  cursor: crosshair;
}

.adaptive-kinetic-lab::before {
  display: none;
}

.adaptive-kinetic-lab::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: clamp(42px, 8vw, 160px);
  top: clamp(90px, 17vh, 170px);
  width: clamp(34px, 3.1vw, 54px);
  height: clamp(34px, 3.1vw, 54px);
  border: 1px solid rgba(126, 207, 242, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 207, 242, 0.62) 0 12%, transparent 13%),
    radial-gradient(circle, rgba(126, 207, 242, 0.07), transparent 62%);
  box-shadow: none;
  opacity: 0.34;
  pointer-events: none;
  animation: none;
}

.adaptive-kinetic-lab:hover::after,
.adaptive-kinetic-lab:active::after {
  opacity: 0.56;
  transform: scale(1.02);
}

@keyframes adaptive-tap-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(126, 207, 242, 0.22), 0 0 34px rgba(126, 207, 242, 0.24);
    transform: scale(1);
  }
  52% {
    box-shadow: 0 0 0 18px rgba(126, 207, 242, 0), 0 0 46px rgba(126, 207, 242, 0.34);
    transform: scale(1.08);
  }
}

.adaptive-kinetic-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

#adaptive-kinetic-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

.adaptive-kinetic-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(46px, 6vh, 78px) clamp(28px, 4.6vw, 86px) clamp(172px, 22vh, 242px);
  pointer-events: none;
}

.adaptive-kinetic-title-stack {
  position: relative;
  width: min(96vw, 1820px);
  max-width: none;
}

.adaptive-kinetic-title-media {
  display: none;
  width: 100%;
  height: clamp(300px, 32vw, 560px);
  touch-action: none;
}

.adaptive-kinetic-lab.has-kinetic-title .adaptive-kinetic-title-media {
  display: block;
}

.adaptive-kinetic-lab.has-kinetic-title:not(.kinetic-title-ready) .adaptive-kinetic-title-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

#adaptive-kinetic-title-svg,
#adaptive-kinetic-title-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  overflow: visible;
}

.adaptive-kinetic-title-fallback {
  margin: 0;
  max-width: none;
  color: #f7f7f2;
  font-family: var(--hero-display);
  font-size: clamp(64px, 6.85vw, 154px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  text-shadow:
    0 0 1px rgba(247, 247, 242, 0.88),
    0 0 10px rgba(247, 247, 242, 0.18),
    0 0 24px rgba(126, 207, 242, 0.12);
}

.adaptive-kinetic-title-fallback .h1-long {
  display: block;
}

.adaptive-kinetic-lab.has-kinetic-title.kinetic-title-ready .adaptive-kinetic-title-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

@media (min-width: 1680px) {
  .adaptive-kinetic-title-fallback {
    font-size: clamp(120px, 7.8vw, 178px);
  }
}

@media (max-width: 760px) {
  .adaptive-kinetic-lab {
    min-height: 560px;
    cursor: default;
  }

  .adaptive-kinetic-copy {
    padding: 38px 18px 190px;
  }

  .adaptive-kinetic-title-media {
    height: clamp(220px, 58vw, 300px);
  }

  .adaptive-kinetic-title-fallback {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.94;
    white-space: normal;
    text-shadow:
      0 0 1px rgba(247, 247, 242, 0.88),
      0 0 8px rgba(247, 247, 242, 0.16);
  }
}

@media (max-width: 1120px) {
  .speaker-layer__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 900px) {
  .speakers-leads,
  .guest-grid {
    grid-template-columns: 1fr;
  }

  }

@media (max-width: 760px) {
  .speakers-block {
    padding: 44px 18px 58px;
  }

  .speakers-title {
    font-size: clamp(34px, 11vw, 54px);
  }

  .speaker-layer + .speaker-layer {
    margin-top: 36px;
    padding-top: 30px;
  }

  .speaker-card,
  .guest-grid .speaker-card {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 16px;
  }

  .speaker-photo,
  .guest-grid .speaker-photo {
    width: 76px;
  }

  }

/* Mobile readability repair: keep the main site nav visible and stop the hero from becoming a clipped horizontal desktop layout. */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  section[id],
  footer[id] {
    scroll-margin-top: 148px;
  }

  .site-header {
    display: grid;
    align-items: center;
  }

  .site-brand {
    grid-area: brand;
  }

  .site-brand span {
    display: inline;
    max-width: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
  }

  .header-enroll {
    grid-area: enroll;
    justify-content: end;
  }

  .header-enroll__status {
    display: none;
  }

  .header-enroll__cta {
    padding: 0 12px;
    white-space: nowrap;
  }

  .audience-tabs {
    grid-area: audience;
    order: initial;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    min-width: 0;
  }

  .audience-tab {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    flex: initial;
    flex-basis: auto;
    overflow: hidden;
  }

  .audience-tab span {
    font-size: 8.5px;
    letter-spacing: 0.035em;
  }

  .audience-tab b {
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .site-header .top-nav,
  .top-nav {
    grid-area: nav;
    display: flex !important;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: calc(100vw - 20px);
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav > a,
  .nav-dropdown > button {
    min-height: 28px;
    flex: 0 0 auto;
    font-size: 9px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .nav-dropdown {
    flex: 0 0 auto;
  }

  .nav-dropdown__panel {
    left: 0;
    right: auto;
    max-width: calc(100vw - 20px);
  }

  .hero-shell,
  .hero {
    min-height: auto;
    overflow: visible;
  }

  body[data-audience] .hero-copy {
    display: block;
    width: 100%;
  }

  body[data-audience] .hero-title-stack {
    min-height: 0;
    display: block;
  }

  .eyebrow {
    width: 100%;
    white-space: normal;
  }

  .hero-title-fallback span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-focus-label,
  .hero-focus-through {
    font-size: 11px;
    line-height: 1.16;
  }

  .door-switch {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
    overflow: visible;
    box-sizing: border-box;
  }

  .door-card {
    width: 100%;
    box-sizing: border-box;
  }

  .door-card span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .program-facts {
    width: 100%;
    overflow: hidden;
  }

  .program-facts .fact-row {
    grid-template-columns: minmax(74px, auto) minmax(0, 1fr);
    column-gap: 12px;
  }

  .program-facts .fact-row dd {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .fact-row--date-range dd {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 10px;
  }

  .copy-edit-toolbar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    max-width: none;
    flex-wrap: wrap;
    gap: 6px;
  }

  .copy-edit-toolbar button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 10px;
  }

  .copy-edit-toolbar span {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* Final mobile hero pass: compact the fixed header and keep the protagonist choice visible without turning the first screen into a menu stack. */
@media (max-width: 760px) {
  .wire-cloud-root {
    --wire-cloud-base-opacity: 0.54;
    filter: saturate(1.05) brightness(0.96);
  }

  body.is-wire-cloud-case-muted .wire-cloud-root {
    --wire-cloud-section-opacity: 0.16;
    --wire-cloud-offset-x: -24vw;
    --wire-cloud-scale: 0.82;
  }

  body.is-wire-cloud-case-open .wire-cloud-root {
    --wire-cloud-section-opacity: 0.86;
  }

  .site-brand img {
    width: 22px;
    height: 22px;
  }

  .site-brand span {
    display: none;
  }

  .header-enroll__cta {
    letter-spacing: 0.02em;
  }

  .audience-tabs {
    gap: 4px;
  }

  .audience-tab {
    min-height: 32px;
    padding: 4px 5px;
  }

  .audience-tab span {
    font-size: 8px;
    letter-spacing: 0.03em;
  }

  .audience-tab b {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1;
  }

  .site-header .top-nav,
  .top-nav {
    min-height: 23px;
    padding: 0;
  }

  .top-nav > a,
  .nav-dropdown > button {
    min-height: 23px;
    font-size: 8.2px;
    letter-spacing: 0.035em;
  }

  .top-nav > a::after,
  .nav-dropdown > button::after {
    margin-inline: 5px;
  }

  body.copy-edit-mode .section-rail {
    display: block;
    right: 6px;
    width: min(172px, calc(100vw - 18px));
    max-height: calc(100svh - 188px);
    padding: 9px 7px;
    overflow: auto;
    opacity: 0.96;
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.88), rgba(5, 7, 10, 0.62));
    box-shadow: -14px 0 34px rgba(0, 0, 0, 0.16);
  }

  body.copy-edit-mode .section-rail span {
    max-width: 112px;
    opacity: 1;
    transform: translateX(0);
  }

  body.copy-edit-mode .section-rail a.section-rail__sortable-item {
    grid-template-columns: 16px minmax(0, 1fr) 10px;
  }

  body.copy-edit-mode .section-rail__drag-handle {
    width: 16px;
    height: 24px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero-secondary {
    margin-top: 16px;
  }

  .hero-focus-intro {
    margin-top: 9px;
  }

  .hero-focus-label,
  .hero-focus-through {
    font-size: 10px;
    line-height: 1.16;
  }

  .door-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 8px;
  }

  .door-card {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--role-accent), transparent 94%), rgba(5, 7, 10, 0.68));
    box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0.035);
  }

  .door-card span {
    font-size: 7.2px;
    line-height: 1.15;
    letter-spacing: 0.055em;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .door-card b {
    white-space: normal;
  }

  .program-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    gap: 7px 10px;
    background: rgba(5, 7, 10, 0.42);
  }

  .program-facts .fact-row {
    display: block;
    min-width: 0;
  }

  .program-facts .fact-row--date-range {
    grid-column: 1 / -1;
  }

  .fact-row--date-range dd {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .fact-row--date-range small {
    margin-right: 4px;
    font-size: 8px;
  }

  .agent-company {
    padding: 34px 16px 46px;
  }

  .agent-company__body p {
    font-size: 16px;
    line-height: 1.36;
  }

  .agent-stats {
    gap: 14px;
    margin-top: 22px;
  }

  .agent-stat dt {
    font-size: clamp(36px, 11vw, 48px);
  }

  .outcomes-block {
    overflow: hidden;
    padding: 36px 14px 46px;
  }

  .outcomes-shell {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .outcomes-head {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .outcomes-head h2 {
    font-size: clamp(30px, 9.4vw, 40px);
    line-height: 1;
  }

  .outcomes-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .outcome-sphere-map {
    width: 100%;
    min-height: 292px;
    overflow: hidden;
  }

  .outcome-sphere-map::before {
    inset: 1% -6% 4% -8%;
  }

  .outcome-sphere:nth-child(1) {
    width: 168px;
    height: 168px;
    left: -7%;
    top: 16%;
  }

  .outcome-sphere:nth-child(2) {
    width: 158px;
    height: 158px;
    left: 52%;
    top: 0;
  }

  .outcome-sphere:nth-child(3) {
    width: 166px;
    height: 166px;
    left: 32%;
    top: 47%;
  }

  .outcome-sphere.is-active {
    transform: translateY(-1px) scale(1.008);
  }

  .outcome-panel {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
    padding: 20px 16px;
  }

  .outcome-panel__role {
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .outcome-panel h3 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .outcome-panel__copy {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .outcome-output-list b {
    font-size: 11.5px;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }
}

body.copy-edit-mode .section-rail a .section-rail__drag-handle {
  display: inline-flex !important;
  flex: 0 0 16px;
  width: 16px !important;
  min-width: 16px;
  max-width: 16px !important;
  height: 22px;
  opacity: 0.88 !important;
  overflow: visible;
  transform: none !important;
}

body.copy-edit-mode .section-rail a.section-rail__sortable-item {
  grid-template-columns: 16px minmax(0, 1fr) 10px !important;
}

body.copy-edit-mode .section-rail span:not(.section-rail__drag-handle) {
  max-width: none !important;
  width: auto !important;
  opacity: 1 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: none !important;
}

@media (max-width: 380px) {
  .hero {
    padding-top: 116px;
  }

  body[data-audience] h1,
  .hero-title-fallback {
    font-size: clamp(30px, 9.25vw, 35px);
    line-height: 1.02;
  }

  .hero-secondary {
    font-size: 12.5px;
  }

  .door-card {
    min-height: 62px;
    padding: 7px 6px;
  }

  .door-card b {
    font-size: 9px;
  }

  .program-facts .fact-row dd {
    font-size: 11px;
  }
}

/* Final hero focus layout: the focus flag belongs to the switcher without taking width from the cards. */
.hero-focus-layout {
  width: min(100%, 1320px);
  margin-top: clamp(18px, 2.6vh, 30px);
}

.hero-focus-layout .door-switch {
  width: 100%;
  margin-top: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-focus-intro {
  width: min(100%, 520px);
  margin: 0 0 0 auto;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--role-accent);
  text-align: left;
  background: transparent;
}

.hero-focus-label {
  margin: 0;
  color: #f7f7f2;
  font-family: var(--mono);
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

@media (max-width: 1120px) {
  .hero-focus-intro {
    width: min(100%, 440px);
  }

  .hero-focus-label {
    font-size: 22px;
  }

  }

@media (max-width: 760px) {
  .hero-focus-layout {
    margin-top: 14px;
  }

  .hero-focus-layout .door-switch {
    margin-top: 8px;
  }

  .hero-focus-intro {
    padding-left: 12px;
  }

  .hero-focus-label {
    font-size: 18px;
    line-height: 1.08;
  }

  }

@media (max-width: 380px) {
  .hero-focus-label {
    font-size: 17px;
  }

  }

/* Adaptive-lab support index: ordered metadata, not decorative tags. */
#adaptive-lab .adaptive-lab-tag-cloud-card {
  position: absolute;
  right: clamp(178px, 13vw, 260px);
  bottom: clamp(34px, 5.4vh, 66px);
  left: clamp(28px, 5.6vw, 96px);
  z-index: 3;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

#adaptive-lab .adaptive-lab-tag-cloud {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: min(1180px, 100%);
  margin-left: auto;
  border-top: 1px solid rgba(126, 207, 242, 0.28);
  border-left: 1px solid rgba(126, 207, 242, 0.22);
  background: rgba(5, 7, 10, 0.42);
  counter-reset: adaptiveLabTag;
}

#adaptive-lab .adaptive-lab-tag-cloud span {
  counter-increment: adaptiveLabTag;
  display: grid;
  grid-template-columns: 3ch minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1vw, 14px);
  position: relative;
  width: auto;
  max-width: none;
  min-height: clamp(42px, 4.8vh, 56px);
  padding: 11px clamp(12px, 1.25vw, 18px);
  border-right: 1px solid rgba(126, 207, 242, 0.22);
  border-bottom: 1px solid rgba(126, 207, 242, 0.2);
  background: transparent;
  color: rgba(247, 247, 242, 0.64);
  font-family: var(--mono);
  font-size: clamp(10.5px, 0.74vw, 13px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
  text-shadow: none;
  white-space: normal;
  overflow-wrap: normal;
  opacity: 1;
  pointer-events: auto;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

#adaptive-lab .adaptive-lab-tag-cloud span::before {
  content: counter(adaptiveLabTag, decimal-leading-zero);
  margin: 0;
  color: rgba(126, 207, 242, 0.52);
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

#adaptive-lab .adaptive-lab-tag-cloud span:hover {
  border-color: rgba(126, 207, 242, 0.34);
  background: rgba(126, 207, 242, 0.045);
  color: rgba(247, 247, 242, 0.86);
}

@media (max-width: 760px) {
  #adaptive-lab .adaptive-lab-tag-cloud-card {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }

  #adaptive-lab .adaptive-lab-tag-cloud {
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    background: rgba(5, 7, 10, 0.56);
  }

  .adaptive-kinetic-lab::after {
    right: 22px;
    top: 84px;
    width: 42px;
    height: 42px;
  }

  #adaptive-lab .adaptive-lab-tag-cloud span {
    position: relative;
    grid-template-columns: 2.6ch minmax(0, 1fr);
    max-width: none;
    min-height: 40px;
    padding: 9px 10px;
    color: rgba(247, 247, 242, 0.66);
    font-size: 10.5px;
    line-height: 1.16;
    white-space: normal;
    text-align: left;
    transform: none;
  }

  #adaptive-lab .adaptive-lab-tag-cloud span::before {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  #adaptive-lab .adaptive-lab-tag-cloud span {
    font-size: 10px;
  }
}

.case-story-card:not([open]) .case-story-detail {
  display: none;
}

.case-story-card[open] .case-story-detail {
  display: grid;
}

/* Emergency correction: focus copy is a right-side flag for the switcher, never a layout column. */
.hero-focus-layout {
  position: relative !important;
  display: block !important;
  width: min(100%, 1320px) !important;
  margin-top: clamp(26px, 4vh, 42px) !important;
}

.hero-focus-layout .door-switch {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  margin-top: 0 !important;
}

.hero-focus-intro {
  position: absolute !important;
  right: 0 !important;
  top: -172px !important;
  z-index: 5 !important;
  width: min(56vw, 760px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 12px 18px 13px 44px !important;
  display: block !important;
  border-left: 0 !important;
  border-right: 2px solid var(--role-accent) !important;
  background: linear-gradient(90deg, transparent 0%, rgba(5, 7, 10, 0.72) 28%, rgba(5, 7, 10, 0.9) 100%) !important;
  text-align: right !important;
  pointer-events: none;
}

.hero-focus-label {
  margin: 0 !important;
  color: rgba(247, 247, 242, 0.94) !important;
  font-family: var(--mono) !important;
  font-size: clamp(27px, 1.9vw, 36px) !important;
  line-height: 1.06 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: lowercase !important;
}

@media (min-width: 761px) {
  body[data-audience] .hero-secondary {
    min-height: clamp(75px, 5.55vw, 114px) !important;
  }
}

@media (max-width: 760px) {
  body[data-audience] .hero-title-stack,
  body[data-audience] h1 {
    min-height: 3.12em !important;
  }

  .hero-focus-layout {
    margin-top: 14px !important;
  }

  .hero-focus-intro {
    position: static !important;
    border-right: 2px solid var(--role-accent) !important;
    background: linear-gradient(90deg, transparent 0%, rgba(5, 7, 10, 0.72) 24%, rgba(5, 7, 10, 0.9) 100%) !important;
  }

  .hero-focus-label {
    font-size: clamp(24px, 6.6vw, 29px) !important;
    line-height: 1.06 !important;
  }

  }

@media (max-width: 360px) {
  body[data-audience] .hero-secondary {
    min-height: 67px !important;
  }
}

/* Hero caption alignment: keep the left lead and right focus flag optically level. */
@media (min-width: 761px) {
  body[data-audience] .hero-secondary {
    margin-top: clamp(20px, 2.6vh, 26px) !important;
  }

  .hero-focus-intro {
    top: -116px !important;
  }
}

@media (min-width: 1601px) and (max-height: 960px) {
  .hero-focus-intro {
    top: -144px !important;
  }

  }

/* AI Native curators: compact list without cards */
#speakers .speaker-mini-grid--curators {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px) clamp(22px, 3vw, 42px);
  margin-top: clamp(16px, 2.4vh, 24px);
  padding: 0;
}

#speakers .speaker-mini-grid--curators .speaker-mini-card {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

#speakers .speaker-mini-grid--curators .speaker-mini-photo {
  width: 44px;
}

#speakers .speaker-mini-grid--curators .speaker-mini-body h3 {
  margin-bottom: 3px;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.05;
}

#speakers .speaker-mini-grid--curators .speaker-mini-body p {
  color: rgba(247, 247, 242, 0.62);
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1.22;
}

@media (max-width: 760px) {
  #speakers .speaker-mini-grid--curators {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #speakers .speaker-mini-grid--curators .speaker-mini-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  #speakers .speaker-mini-grid--curators .speaker-mini-photo {
    width: 40px;
  }
}

/* Reference speaker transfer: ain03-v2-editorial spk-* typography and density */
#speakers .speakers-leads {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

#speakers .speaker-layer--guests {
  margin-top: 0;
  margin-bottom: 48px;
  padding-top: 0;
  border-top: 0;
}

#speakers .speaker-layer--guests + .guest-speakers {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

#speakers .speaker-layer--guests .speaker-layer__head {
  display: block;
}

#speakers .guest-speakers__label {
  margin: 0 0 8px;
  color: rgba(247, 247, 242, 0.58);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#speakers .speaker-layer--guests .guest-grid {
  display: grid;
}

#speakers .speakers-leads .speaker-card,
#speakers .speaker-layer--guests .speaker-card {
  display: grid;
  grid-template-columns: var(--speaker-card-photo-size, 72px) minmax(0, 1fr);
  grid-template-areas:
    "photo body"
    "bio bio"
    "topic topic";
  column-gap: 14px;
  row-gap: 0;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--mono);
}

#speakers .speakers-leads .speaker-body,
#speakers .speaker-layer--guests .speaker-body {
  grid-area: body;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  row-gap: 0;
}

#speakers .speakers-leads .speaker-tags,
#speakers .speaker-layer--guests .speaker-tags {
  display: none;
}

#speakers .speakers-leads .speaker-photo,
#speakers .speaker-layer--guests .speaker-photo {
  grid-area: photo;
  width: var(--speaker-card-photo-size, 72px);
  height: var(--speaker-card-photo-size, 72px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 3px;
  object-fit: cover;
  object-position: center 20%;
  background: rgba(247, 247, 242, 0.08);
  filter: brightness(0.95);
}

#speakers .speakers-leads .speaker-card:hover .speaker-photo,
#speakers .speaker-layer--guests .speaker-card:hover .speaker-photo {
  filter: brightness(1.08);
  transform: scale(1.02);
}

#speakers .speakers-leads .speaker-body h3,
#speakers .speaker-layer--guests .speaker-body h3 {
  grid-column: 1;
  min-width: 0;
  color: #f7f7f2;
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#speakers .speakers-leads .speaker-role,
#speakers .speaker-layer--guests .speaker-role {
  grid-column: 1;
  min-width: 0;
  color: #64b5d9;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#speakers .speakers-leads .speaker-topic,
#speakers .speaker-layer--guests .speaker-topic {
  grid-column: 1;
  grid-area: topic;
}

#speakers .speakers-leads .speaker-card > .speaker-bio,
#speakers .speaker-layer--guests .speaker-card > .speaker-bio {
  grid-area: bio;
  margin: 10px 0 0;
  color: rgba(247, 247, 242, 0.7);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  #speakers .speakers-leads {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  #speakers .speaker-layer--guests .guest-grid > .speaker-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Agent-company optical alignment: match left title height to the right CTA. */
@media (min-width: 1024px) {
  #agent-company .agent-company__grid {
    align-items: start;
  }

  #agent-company .agent-company__body {
    align-self: end;
  }
}

@media (min-width: 1600px) {
  #agent-company .agent-company__body {
    transform: translateY(-20px);
  }
}

/* Speakers recordings/curators spacing cleanup */
#speakers .speaker-more--recordings {
  margin-top: clamp(14px, 2vh, 22px);
  border-top: 0;
}

#speakers .speaker-more--recordings summary {
  min-height: 42px;
}

#speakers .curator-team {
  margin-top: clamp(46px, 6.2vh, 78px);
}

/* Speakers mini-card alignment guard */
#speakers .speaker-mini-card {
  align-items: start;
}

#speakers .speaker-mini-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-width: 0;
  padding-top: 1px;
}

#speakers .speaker-mini-body h3,
#speakers .speaker-mini-body p,
#speakers .speaker-mini-body .speaker-links,
#speakers .speaker-mini-body .speaker-links a {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#speakers .speaker-mini-body h3 {
  margin-bottom: 5px;
}

#speakers .speaker-mini-grid--curators .speaker-mini-body h3 {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.12;
}

#speakers .speaker-mini-grid--curators .speaker-mini-body p {
  font-size: 11px;
  line-height: 1.35;
}

/* Global breathing room pass */
.agent-company,
.route-block,
.outcomes-block,
.schedule-block,
.speakers-block,
.testimonials-block,
.alumni-block,
.support-depth-block,
.adaptive-lab-block,
.case-library-block,
.pricing-block,
.faq-block {
  padding-top: clamp(88px, 11vh, 148px);
  padding-bottom: clamp(92px, 12vh, 156px);
}

.final-cta-block {
  padding-top: clamp(120px, 16vh, 190px);
  padding-bottom: clamp(120px, 16vh, 190px);
}

.section-cta-strip {
  margin-top: clamp(40px, 6vh, 72px);
  margin-bottom: clamp(10px, 2vh, 24px);
}

.program-details {
  margin-top: clamp(42px, 6vh, 74px);
}

.program-details + .section-cta-strip {
  margin-top: clamp(52px, 7vh, 86px);
}

.speakers-leads,
.testimonials-featured,
.pricing-grid,
.outcomes-grid,
.support-depth-grid,
.case-story-grid,
.artifact-grid {
  margin-top: clamp(34px, 5vh, 64px);
}

#speakers .speaker-layer--guests,
#speakers .guest-speakers,
#speakers .curator-team {
  margin-top: clamp(58px, 8vh, 96px);
}

@media (max-width: 768px) {
  .agent-company,
  .route-block,
  .outcomes-block,
  .schedule-block,
  .speakers-block,
  .testimonials-block,
  .alumni-block,
  .support-depth-block,
  .adaptive-lab-block,
  .case-library-block,
  .pricing-block,
  .faq-block {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .final-cta-block {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  .section-cta-strip,
  .program-details + .section-cta-strip {
    margin-top: 42px;
  }
}

#speakers .curator-team + .section-cta-strip {
  justify-content: center;
  margin-top: clamp(52px, 7vh, 92px);
  margin-bottom: clamp(58px, 8vh, 104px);
}

#speakers .curator-team + .section-cta-strip > a:only-child {
  min-width: clamp(220px, 16vw, 300px);
  min-height: clamp(58px, 6.8vh, 72px);
  padding: 0 clamp(28px, 3vw, 46px);
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: 0.035em;
  box-shadow: 0 22px 62px rgba(43, 100, 238, 0.32);
}

/* Section CTA moments: wide centered button with a deliberate pause around it */
#speakers .curator-team + .section-cta-strip,
#route .section-cta-strip,
#outcomes .section-cta-strip,
#support-depth .section-cta-strip,
#case-library .section-cta-strip,
#schedule .section-cta-strip {
  justify-content: center;
  margin-top: clamp(86px, 12vh, 150px);
  margin-bottom: clamp(92px, 13vh, 164px);
}

#speakers .curator-team + .section-cta-strip > a:only-child,
#route .section-cta-strip > a:only-child,
#outcomes .section-cta-strip > a:only-child,
#support-depth .section-cta-strip > a:only-child,
#case-library .section-cta-strip > a:only-child,
#schedule .section-cta-strip > a:only-child {
  width: min(100%, clamp(420px, 44vw, 640px));
  min-width: 0;
  min-height: clamp(68px, 8vh, 82px);
  padding: 0 clamp(34px, 4vw, 72px);
  border-color: color-mix(in srgb, var(--role-accent), transparent 38%);
  background: color-mix(in srgb, var(--role-accent), transparent 90%);
  color: var(--role-accent);
  font-size: clamp(16px, 1.25vw, 24px);
  letter-spacing: 0.04em;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--role-accent), transparent 86%),
    0 26px 72px color-mix(in srgb, var(--role-accent), transparent 86%);
}

#speakers .curator-team + .section-cta-strip > a:only-child:hover,
#speakers .curator-team + .section-cta-strip > a:only-child:focus-visible,
#route .section-cta-strip > a:only-child:hover,
#route .section-cta-strip > a:only-child:focus-visible,
#outcomes .section-cta-strip > a:only-child:hover,
#outcomes .section-cta-strip > a:only-child:focus-visible,
#support-depth .section-cta-strip > a:only-child:hover,
#support-depth .section-cta-strip > a:only-child:focus-visible,
#case-library .section-cta-strip > a:only-child:hover,
#case-library .section-cta-strip > a:only-child:focus-visible,
#schedule .section-cta-strip > a:only-child:hover,
#schedule .section-cta-strip > a:only-child:focus-visible {
  background: color-mix(in srgb, var(--role-accent), transparent 84%);
  color: var(--ink);
}

@media (max-width: 760px) {
  #speakers .curator-team + .section-cta-strip,
  #route .section-cta-strip,
  #outcomes .section-cta-strip,
  #support-depth .section-cta-strip,
  #case-library .section-cta-strip,
  #schedule .section-cta-strip {
    margin-top: 58px;
    margin-bottom: 70px;
  }

  #speakers .curator-team + .section-cta-strip > a:only-child,
  #route .section-cta-strip > a:only-child,
  #outcomes .section-cta-strip > a:only-child,
  #support-depth .section-cta-strip > a:only-child,
  #case-library .section-cta-strip > a:only-child,
  #schedule .section-cta-strip > a:only-child {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* Outcomes typography: keep Cyrillic descenders from visually colliding */
#outcomes .outcomes-grid,
#outcomes .outcome-panel,
#outcomes .outcome-panel > *,
#outcomes .outcome-output-list,
#outcomes .outcome-output-list b {
  min-width: 0;
  max-width: 100%;
}

#outcomes .outcome-panel {
  box-sizing: border-box;
}

#outcomes .outcome-panel h3 {
  max-width: 100%;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  padding-bottom: 0.04em;
  overflow-wrap: anywhere;
  word-break: normal;
}

#outcomes .outcome-output-list b {
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (min-width: 1180px) {
  #outcomes .outcomes-shell {
    max-width: min(1320px, calc(100vw - clamp(220px, 18vw, 300px)));
  }

  #outcomes .outcomes-grid {
    grid-template-columns: minmax(420px, 0.82fr) minmax(460px, 0.76fr);
    gap: clamp(40px, 4.8vw, 82px);
  }
}

/* Testimonials: reference layout, one featured quote + compact expandable rows */
#testimonials .testimonials-shell {
  max-width: min(1180px, calc(100vw - 64px));
}

#testimonials .testimonials-featured {
  margin-top: clamp(34px, 5vh, 58px);
  margin-bottom: 0;
}

#testimonials .testimonial-featured-card {
  min-width: 0;
  border-radius: 4px;
}

#testimonials .testimonial-featured-card:first-child .testimonial-quote-icon {
  width: clamp(36px, 3.2vw, 54px);
  height: clamp(36px, 3.2vw, 54px);
  margin-bottom: clamp(34px, 5vh, 58px);
  color: rgba(55, 140, 190, 0.24);
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
  margin-bottom: clamp(28px, 4vh, 42px);
}

#testimonials .testimonial-featured-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.7fr);
  column-gap: clamp(36px, 6vw, 96px);
  row-gap: 16px;
  padding: clamp(28px, 4.2vh, 44px) 0;
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  background: transparent;
}

#testimonials .testimonial-featured-card:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

#testimonials .testimonial-featured-card:not(:first-child) .testimonial-quote-icon {
  display: none;
}

#testimonials .testimonial-featured-card:not(:first-child) .testimonial-featured-text {
  grid-column: 1;
  max-width: 46ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.62;
  font-weight: 500;
}

#testimonials .testimonial-featured-card:not(:first-child) .testimonial-featured-author {
  grid-column: 2;
  min-height: 0;
  align-self: start;
  padding-top: 0.18em;
}

#testimonials .testimonial-featured-card:not(:first-child) .testimonial-full {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 0;
  border-top: 0;
}

#testimonials .testimonial-full summary {
  margin-top: 0;
}

#testimonials .testimonial-full[open] div {
  max-width: 82ch;
}

@media (max-width: 900px) {
  #testimonials .testimonials-shell {
    max-width: min(100%, calc(100vw - 36px));
  }

  #testimonials .testimonial-featured-card:not(:first-child) {
    display: block;
    padding: 30px 0;
  }

  #testimonials .testimonial-featured-card:not(:first-child) .testimonial-featured-text {
    max-width: none;
    margin-bottom: 20px;
  }
}

/* Testimonials source transfer from ain03-v2-editorial#results */
#testimonials .results-compact {
  max-width: 1120px;
  margin: 0 auto;
}

#testimonials .testimonials-featured {
  display: block;
  margin: 0 0 24px;
}

#testimonials .testimonial-quote-icon,
#testimonials .testimonial-featured-card:first-child .testimonial-quote-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: rgba(55, 140, 190, 0.25);
}

#testimonials .testimonial-featured-author,
#testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
  min-height: 0;
  gap: 6px;
}

#testimonials .testimonials-quotes {
  display: flex;
  flex-direction: column;
}

#testimonials .testimonial-quote-line,
#testimonials .testimonial-featured-card:not(:first-child) {
  display: grid;
  gap: 4px clamp(20px, 4vw, 56px);
  align-items: start;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: transparent;
}

#testimonials .testimonial-quote-line:hover {
  border-bottom-color: rgba(55, 140, 190, 0.2);
}

#testimonials .testimonial-quote-line {
  cursor: pointer;
}

#testimonials .testimonial-quote-line:has(.testimonial-full[open]) {
  cursor: default;
}

#testimonials .testimonial-quote-author {
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#testimonials .testimonial-quote-line:has(.testimonial-full[open]) .testimonial-quote-author {
  display: block;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

#testimonials .testimonial-full:not([open]) .testimonial-open-media {
  display: none;
}

#testimonials .testimonial-open-profile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}

#testimonials .testimonial-open-profile--media-only {
  align-self: start;
}

#testimonials .testimonial-open-avatar,
#testimonials .testimonial-open-photo {
  display: grid;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  place-items: center;
  background: rgba(120, 207, 240, 0.08);
  color: rgba(17, 17, 17, 0.76);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

#testimonials .testimonial-company-logo {
  min-height: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

#testimonials .testimonial-company-logo {
  width: auto;
  max-width: 150px;
  height: 34px;
  padding: 0;
  object-fit: contain;
}

#testimonials .testimonial-company-logo--nebius {
  max-width: 148px;
  height: 34px;
}

#testimonials .testimonial-full--line {
  grid-column: 1 / -1;
  display: block;
  padding-top: 0;
  border-top: 0;
}

#testimonials .testimonial-full--line summary {
  display: inline-flex;
  width: fit-content;
  color: rgba(43, 100, 238, 0.74);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

#testimonials .testimonial-full--line > div {
  display: grid;
  width: 100%;
  max-width: none;
}

#testimonials .testimonial-full.testimonial-full--line[open] > div {
  width: 100%;
  max-width: none;
}

#testimonials .testimonial-full--line > div > p {
  grid-column: 1;
  max-width: 82ch;
}

#testimonials .testimonial-full--line .testimonial-open-profile {
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: start;
}

#testimonials .testimonial-full--line:not([open]) .testimonial-open-media {
  display: none;
}

#testimonials .testimonial-featured-role {
  overflow-wrap: anywhere;
}

#testimonials .testimonial-full summary {
  gap: 7px;
  padding: 0 0 3px;
  border-bottom: 0;
  opacity: 0.9;
}

#testimonials .testimonial-full summary span {
  color: rgba(43, 100, 238, 0.68);
  font-size: 13px;
  line-height: 1;
}

#testimonials .testimonial-full > div {
  max-width: 76ch;
  padding-top: 12px;
}

#testimonials .testimonial-full p {
  margin-bottom: 10px;
  font-size: clamp(14px, 1.06vw, 19px);
  line-height: 1.68;
}

#testimonials .testimonial-featured-card:first-child .testimonial-full p {
  font-size: clamp(15px, 1.16vw, 21px);
  line-height: 1.66;
}

#testimonials .testimonial-quote-meta {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: start;
}

#testimonials .testimonial-visible-company-list {
  display: flex;
  min-width: 0;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#testimonials .testimonial-featured-card:first-child .testimonial-visible-company-list {
  margin-top: 12px;
}

#testimonials .testimonial-full {
  margin-top: clamp(6px, 1vh, 10px);
  padding-top: clamp(4px, 0.8vh, 8px);
}

#testimonials .testimonial-full summary {
  min-height: 22px;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

#testimonials .testimonial-full--line summary {
  text-transform: lowercase;
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
  grid-row: 1;
}

#testimonials .testimonial-featured-card:first-child {
  flex-direction: column;
}

#testimonials .testimonial-featured-card:first-child .testimonial-quote-icon {
  order: 1;
}

@media (max-width: 760px) {
  #testimonials .results-compact {
    max-width: 100%;
  }

  #testimonials .testimonials-disclaimer {
    max-width: 28ch;
    margin-bottom: 12px;
  }

  #testimonials .testimonials-title {
    max-width: 9.8ch;
    margin-bottom: 32px;
    font-size: 44px;
    line-height: 0.96;
  }

  #testimonials .testimonial-featured-card:first-child,
  #testimonials .testimonial-featured-card {
    padding: 22px 18px;
  }

  #testimonials .testimonial-quote-line,
  #testimonials .testimonial-featured-card:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-text {
    order: 1;
  }

  #testimonials .testimonial-quote-line > .testimonial-full--line {
    order: 2;
    margin-top: -2px;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-meta {
    order: 3;
    gap: 6px;
  }

  #testimonials .testimonial-quote-author {
    white-space: normal;
  }

  #testimonials .testimonial-quote-line {
    cursor: default;
  }

  #testimonials .testimonial-open-profile {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 12px;
  }

  #testimonials .testimonial-open-avatar,
  #testimonials .testimonial-open-photo {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
    font-size: 15px;
  }

  #testimonials .testimonial-full--line,
  #testimonials .testimonial-full--line > div {
    display: flex;
    flex-direction: column;
  }

  #testimonials .testimonial-full--line .testimonial-open-profile {
    order: 2;
    margin: 8px 0 14px;
  }

  #testimonials .testimonial-full--line > div > p {
    order: 1;
  }

  #testimonials .testimonial-company-logo,
  #testimonials .testimonial-company-logo--nebius {
    max-width: 148px;
    height: 34px;
  }
}

/* Testimonials alignment/typography cleanup: one reading axis, fewer type modes */

#testimonials .testimonial-featured-card:first-child,
#testimonials .testimonial-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--testimonial-meta);
  column-gap: clamp(20px, 3.8vw, 54px);
  row-gap: 8px;
  padding: clamp(18px, 2.4vw, 30px) 0 clamp(20px, 2.6vw, 32px);
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  background: transparent;
}

#testimonials .testimonial-featured-card:first-child::before {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  width: 100%;
  height: 1px;
  background: rgba(55, 140, 190, 0.18);
  transform: translateY(calc(clamp(18px, 2.4vw, 30px) * -1));
}

#testimonials .testimonial-quote-icon,
#testimonials .testimonial-featured-card:first-child .testimonial-quote-icon {
  display: none;
}

#testimonials .testimonial-featured-text,
#testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
  grid-column: 1;
  grid-row: 1;
  max-width: 72ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--mono);
  font-size: clamp(15px, 1.1vw, 19px);
  font-style: normal;
  line-height: 1.62;
  font-weight: 560;
}

#testimonials .testimonial-quote-line,
#testimonials .testimonial-featured-card:not(:first-child) {
  grid-template-columns: minmax(0, 1fr) var(--testimonial-meta);
  column-gap: clamp(20px, 3.8vw, 54px);
  row-gap: 3px;
  padding: clamp(17px, 2.3vh, 24px) 0;
}

#testimonials .testimonial-quote-line > .testimonial-quote-text {
  grid-column: 1;
  grid-row: 1;
}

#testimonials .testimonial-quote-line > .testimonial-full--line {
  grid-column: 1;
  grid-row: 2;
}

#testimonials .testimonial-quote-line > .testimonial-full--line[open] {
  grid-column: 1 / -1;
}

#testimonials .testimonial-quote-line > .testimonial-quote-meta {
  grid-column: 2;
  grid-row: 1 / span 2;
}

#testimonials .testimonial-featured-role,
#testimonials .testimonial-quote-author {
  color: rgba(17, 17, 17, 0.46);
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.42;
  font-weight: 650;
}

#testimonials .testimonial-full summary,
#testimonials .testimonial-full--line summary {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

#testimonials .testimonial-company-chip,
#testimonials .testimonial-full summary span {
  font-weight: 650;
}

@media (max-width: 900px) {
  #testimonials .testimonial-featured-card:first-child,
  #testimonials .testimonial-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
    padding: 20px 0 22px;
  }

  #testimonials .testimonial-quote-icon,
  #testimonials .testimonial-featured-card:first-child .testimonial-quote-icon {
    display: none;
  }

  #testimonials .testimonial-featured-text,
  #testimonials .testimonial-featured-card:first-child .testimonial-featured-text,
  #testimonials .testimonial-featured-card:first-child .testimonial-full,
  #testimonials .testimonial-featured-card:first-child .testimonial-featured-author,
  #testimonials .testimonial-featured-card:first-child > .testimonial-visible-company-list {
    grid-column: 1;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
    grid-row: 3;
    margin-top: 6px;
  }

  #testimonials .testimonial-featured-card:first-child > .testimonial-visible-company-list {
    grid-row: 4;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-text,
  #testimonials .testimonial-quote-line > .testimonial-full--line,
  #testimonials .testimonial-quote-line > .testimonial-full--line[open],
  #testimonials .testimonial-quote-line > .testimonial-quote-meta {
    grid-column: 1;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-meta {
    grid-row: 3;
    gap: 6px;
  }

  #testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
    grid-row: 3;
  }

  }

/* Testimonials readability recovery: keep the alignment, restore hierarchy. */
#testimonials .results-compact {
  --testimonial-pad: clamp(22px, 3vw, 36px);
}

#testimonials .testimonial-featured-card:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0;
  padding: var(--testimonial-pad);
  border: 1px solid rgba(55, 140, 190, 0.18);
  border-radius: 4px;
  background: rgba(120, 207, 240, 0.035);
}

#testimonials .testimonial-featured-card:first-child::before {
  content: none;
}

#testimonials .testimonial-featured-card:first-child > .testimonial-quote-icon {
  display: block;
  order: 1;
  margin: 0 0 clamp(14px, 2vh, 22px);
  color: rgba(55, 140, 190, 0.24);
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
  grid-column: 1;
  grid-row: auto;
  order: 2;
  margin: 0 0 clamp(20px, 3vh, 30px);
  color: rgba(17, 17, 17, 0.7);
  font-family: var(--font-readable);
  font-style: normal;
  font-weight: 460;
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
  grid-column: 1;
  grid-row: auto;
  order: 3;
  min-height: 0;
  margin-top: 0;
}

#testimonials .testimonial-featured-card:first-child > .testimonial-visible-company-list {
  grid-column: 1;
  grid-row: auto;
  order: 4;
  margin-top: clamp(12px, 1.8vh, 18px);
}

#testimonials .testimonial-featured-card:first-child .testimonial-full {
  grid-column: 1;
  grid-row: auto;
  order: 5;
  margin-top: clamp(14px, 2vh, 22px);
  padding-top: clamp(12px, 2vh, 18px);
}

#testimonials .testimonial-quote-line {
  padding-inline: var(--testimonial-pad);
}

#testimonials .testimonial-quote-text {
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--font-readable);
  font-style: normal;
  font-weight: 440;
}

#testimonials .testimonial-full p,
#testimonials .testimonial-featured-card:first-child .testimonial-full p {
  font-size: clamp(15px, 1.02vw, 18px);
}

#testimonials .testimonial-featured-name {
  font-family: var(--display);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.15;
  font-weight: 760;
}

#testimonials .testimonial-featured-role {
  color: rgba(17, 17, 17, 0.48);
  font-family: var(--display);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.35;
  font-weight: 520;
}

#testimonials .testimonial-quote-author {
  color: rgba(17, 17, 17, 0.45);
  font-family: var(--mono);
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.36;
  font-weight: 560;
}

@media (max-width: 900px) {
  #testimonials .results-compact {
    --testimonial-pad: 18px;
  }

  #testimonials .testimonial-featured-card:first-child {
    padding: var(--testimonial-pad);
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-author,
  #testimonials .testimonial-featured-card:first-child > .testimonial-visible-company-list {
    grid-row: auto;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
    font-size: clamp(16px, 4.5vw, 18px);
    line-height: 1.56;
  }

  }

/* Testimonial identity cleanup: company/logos live in the always-visible meta, not again inside expanded text. */
#testimonials .testimonial-open-profile--media-only {
  display: inline-block;
  max-width: max-content;
}

/* Testimonial identity correction: keep full author context visible and separate long reviews clearly. */

#testimonials .testimonial-quote-line {
  padding-block: clamp(28px, 4.2vh, 48px);
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) {
  padding-bottom: clamp(38px, 5.8vh, 68px);
}

#testimonials .testimonial-quote-author,
#testimonials .testimonial-quote-line:has(.testimonial-full[open]) .testimonial-quote-author {
  display: block;
  max-width: none;
  overflow: visible;
  white-space: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

#testimonials .testimonial-quote-line > .testimonial-quote-meta,
#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
}

@media (max-width: 900px) {
  #testimonials .testimonial-quote-line,
  #testimonials .testimonial-featured-card:not(:first-child) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 10px;
    padding-block: 28px;
  }

  #testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) {
    padding-bottom: 34px;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-text {
    grid-column: 1;
    grid-row: 1;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-meta,
  #testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
    display: grid;
    grid-column: 1;
    gap: 8px;
  }

  #testimonials .testimonial-quote-line > .testimonial-full--line,
  #testimonials .testimonial-quote-line > .testimonial-full--line[open] {
    grid-column: 1;
  }

  }

/* Testimonials quote recovery: quotes should read like quotes, not heavy data rows. */
#testimonials .testimonial-featured-card:first-child .testimonial-featured-text,
#testimonials .testimonial-quote-text {
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-readable);
  font-style: italic;
  font-weight: 410;
  letter-spacing: 0;
  text-wrap: pretty;
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
  max-width: 70ch;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.62;
}

#testimonials .testimonial-full p,
#testimonials .testimonial-featured-card:first-child .testimonial-full p {
  color: rgba(17, 17, 17, 0.68);
  font-family: var(--font-readable);
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

#testimonials .testimonial-full summary,
#testimonials .testimonial-full--line summary {
  margin-top: clamp(8px, 1.2vh, 12px);
  margin-bottom: clamp(8px, 1.2vh, 12px);
  color: rgba(43, 100, 238, 0.72);
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 520;
  letter-spacing: 0.015em;
  text-transform: lowercase;
}

#testimonials .testimonial-full summary span,
#testimonials .testimonial-company-chip {
  font-weight: 520;
}

#testimonials .testimonial-quote-line > .testimonial-quote-meta,
#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
  align-self: start;
}

@media (max-width: 900px) {
  #testimonials .testimonial-featured-card:first-child .testimonial-featured-text,
  #testimonials .testimonial-quote-text {
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.62;
  }

  #testimonials .testimonial-full p,
  #testimonials .testimonial-featured-card:first-child .testimonial-full p {
    font-size: 15px;
    line-height: 1.68;
  }

  #testimonials .testimonial-full summary,
  #testimonials .testimonial-full--line summary {
    margin-top: 8px;
    margin-bottom: 10px;
  }
}

/* Testimonials row balance: keep compact logos near author names and reveal portraits in open rows. */
#testimonials .testimonial-quote-line {
  row-gap: clamp(4px, 0.8vh, 10px);
  align-content: start;
}

#testimonials .testimonial-quote-line > .testimonial-quote-meta,
#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
  gap: clamp(4px, 0.7vh, 8px);
}

#testimonials .testimonial-visible-company-list {
  margin-top: clamp(4px, 0.7vh, 7px);
}

#testimonials .testimonial-visible-company-list .testimonial-company-logo,
#testimonials .testimonial-visible-company-list .testimonial-company-logo--nebius {
  width: auto;
  max-width: 118px;
  height: 22px;
  opacity: 0.76;
  filter: grayscale(0.18) saturate(0.86) contrast(0.96);
}

#testimonials .testimonial-visible-company-list .testimonial-company-logo--nebius {
  max-width: 112px;
  height: 20px;
  opacity: 0.72;
}

#testimonials .testimonial-visible-company-list img[alt="Альфа-Капитал"] {
  max-width: 126px;
  height: 22px;
  opacity: 0.82;
}

#testimonials .testimonial-full--line {
  margin-top: 0;
  align-self: start;
}

#testimonials .testimonial-full--line summary {
  min-height: 30px;
  margin-top: 2px;
  margin-bottom: clamp(10px, 1.5vh, 16px);
}

#testimonials .testimonial-full--line > div {
  grid-template-columns: minmax(0, 1fr) minmax(126px, 180px);
  gap: 0 clamp(22px, 3.6vw, 48px);
  padding-top: clamp(14px, 2vh, 24px);
}

#testimonials .testimonial-full--line .testimonial-open-profile {
  margin-top: 0;
}

#testimonials .testimonial-full--line:not([open]) .testimonial-open-profile {
  display: none;
}

#testimonials .testimonial-open-photo,
#testimonials .testimonial-open-avatar {
  width: clamp(104px, 10.8vw, 146px);
  height: clamp(104px, 10.8vw, 146px);
  border-radius: 4px;
  filter: grayscale(0.12) saturate(0.88) contrast(1.05);
}

#testimonials .testimonial-full--line > div > p,
#testimonials .testimonial-quote-text {
  max-width: 74ch;
}

/* Featured testimonial: keep the portrait tied to the author identity block. */
#testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
  display: grid;
  grid-template-columns: clamp(50px, 4.2vw, 60px) minmax(0, 1fr);
  gap: 4px clamp(12px, 1.5vw, 18px);
  align-items: start;
  max-width: 74ch;
}

#testimonials .testimonial-featured-avatar {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: clamp(50px, 4.2vw, 60px);
  height: clamp(50px, 4.2vw, 60px);
  border: 1px solid rgba(55, 140, 190, 0.24);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.92) contrast(1.04);
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-name,
#testimonials .testimonial-featured-card:first-child .testimonial-featured-role {
  grid-column: 2;
  min-width: 0;
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-name {
  align-self: end;
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-role {
  align-self: start;
}

@media (max-width: 900px) {
  #testimonials .testimonial-quote-line {
    min-height: auto;
    row-gap: 6px;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 3px 11px;
  }

  #testimonials .testimonial-featured-avatar {
    width: 46px;
    height: 46px;
  }

  #testimonials .testimonial-quote-line > .testimonial-full--line,
  #testimonials .testimonial-quote-line > .testimonial-full--line[open] {
    grid-row: 2;
  }

  #testimonials .testimonial-quote-line > .testimonial-quote-meta,
  #testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
    grid-row: 3;
  }

  #testimonials .testimonial-visible-company-list {
    margin-top: 4px;
  }

  #testimonials .testimonial-visible-company-list .testimonial-company-logo,
  #testimonials .testimonial-visible-company-list .testimonial-company-logo--nebius {
    max-width: 106px;
    height: 20px;
  }

  #testimonials .testimonial-visible-company-list .testimonial-company-logo--nebius {
    max-width: 98px;
    height: 18px;
  }

  #testimonials .testimonial-visible-company-list img[alt="Альфа-Капитал"] {
    max-width: 112px;
    height: 20px;
  }

  #testimonials .testimonial-full--line summary {
    min-height: 44px;
    margin-top: 0;
    margin-bottom: 8px;
    align-items: center;
  }

  #testimonials .testimonial-full--line > div {
    display: flex;
    flex-direction: column;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding-top: 8px;
  }

  #testimonials .testimonial-full--line .testimonial-open-profile {
    grid-column: 1;
    grid-row: 1;
  }

  #testimonials .testimonial-open-photo,
  #testimonials .testimonial-open-avatar {
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
  }

  #testimonials .testimonial-quote-line:has(.testimonial-full--line[open] .testimonial-open-identity) > .testimonial-quote-meta {
    display: none;
  }
}

/* Testimonials open portraits: compact round avatars next to the author identity. */
#testimonials .testimonial-featured-card:first-child .testimonial-full .testimonial-open-profile {
  display: none;
}

#testimonials .testimonial-full--line .testimonial-open-profile {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, 1fr);
  width: min(100%, 360px);
  max-width: 360px;
  gap: 10px;
  align-items: start;
  justify-items: start;
  margin: 0;
}

#testimonials .testimonial-full--line .testimonial-open-photo,
#testimonials .testimonial-full--line .testimonial-open-avatar {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(55, 140, 190, 0.22);
  border-radius: 50%;
  place-items: center;
  object-fit: cover;
  background: rgba(120, 207, 240, 0.08);
  color: rgba(17, 17, 17, 0.7);
  font-size: 13px;
  line-height: 1;
  filter: grayscale(0.08) saturate(0.92) contrast(1.04);
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open] .testimonial-open-profile) > .testimonial-quote-meta {
  display: none;
}

@media (min-width: 901px) {
  #testimonials .testimonial-full--line .testimonial-open-profile {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  #testimonials .testimonial-full--line .testimonial-open-profile {
    display: flex;
    width: min(100%, 318px);
    gap: 10px;
    align-items: flex-start;
    order: -1;
    margin: 0 0 2px;
  }

  #testimonials .testimonial-full--line .testimonial-open-photo,
  #testimonials .testimonial-full--line .testimonial-open-avatar {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 12px;
  }
}

/* Testimonials table rhythm: keep every row on one reading axis. */
#testimonials .results-compact {
  --testimonial-meta: minmax(230px, 280px);
}

#testimonials .testimonial-quote-line {
  min-height: clamp(152px, 19vh, 202px);
  column-gap: clamp(34px, 5vw, 76px);
}

#testimonials .testimonial-quote-text {
  max-width: none;
  font-size: clamp(15px, 0.98vw, 17px);
  line-height: 1.46;
  text-wrap: initial;
}

#testimonials .testimonial-quote-author {
  text-wrap: initial;
}

@media (min-width: 901px) {
  #testimonials .testimonials-quotes > .testimonial-quote-line .testimonial-quote-author {
    white-space: normal;
  }

  #testimonials .testimonial-featured-card:first-child,
  #testimonials .testimonials-quotes > .testimonial-quote-line {
    grid-template-columns: minmax(0, 1fr) var(--testimonial-meta);
  }

  #testimonials .testimonial-featured-card:first-child > .testimonial-quote-icon {
    display: none;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
    grid-column: 1;
    grid-row: 1;
    order: initial;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-full {
    grid-column: 1;
    grid-row: 2;
    order: initial;
  }

  #testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
    grid-column: 2;
    grid-row: 1;
    order: initial;
  }

  #testimonials .testimonial-featured-card:first-child > .testimonial-visible-company-list {
    grid-column: 2;
    grid-row: 2;
    order: initial;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line > .testimonial-quote-text {
    grid-column: 1;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line > .testimonial-full--line {
    grid-column: 1;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line > .testimonial-full--line[open] {
    grid-column: 1 / -1;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line > .testimonial-quote-meta,
  #testimonials .testimonials-quotes > .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line .testimonial-full--line > div {
    grid-template-columns: minmax(0, 1fr) var(--testimonial-meta);
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line .testimonial-full--line > div > p {
    grid-column: 1;
  }

  #testimonials .testimonials-quotes > .testimonial-quote-line .testimonial-full--line .testimonial-open-profile {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  #testimonials .results-compact {
    --testimonial-meta: minmax(0, 1fr);
  }

  #testimonials .testimonial-quote-text {
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.5;
  }
}

/* Compact support block */
#support-depth .support-depth-shell--compact {
  max-width: 980px;
  padding-right: 0;
}

#support-depth .support-depth-head--compact {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
}

#support-depth .support-compact-stack {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
  margin-top: clamp(24px, 4vh, 46px);
}

#support-depth .support-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 14px);
}

#support-depth .support-tag-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 4.5vw, 56px);
  padding: 0 clamp(14px, 1.7vw, 22px);
  border: 1px solid rgba(126, 207, 242, 0.38);
  background: rgba(126, 207, 242, 0.07);
  color: rgba(247, 247, 242, 0.78);
  font-family: var(--mono);
  font-size: clamp(15px, 1.28vw, 20px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  #support-depth .support-depth-head--compact {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #support-depth .support-depth-head--compact h2 {
    max-width: 12ch;
    font-size: clamp(30px, 9vw, 42px);
  }

  #support-depth .support-tag-cloud {
    gap: 10px;
  }

  #support-depth .support-tag-cloud span {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 15px;
  }
}

/* Compact support block tightening pass */
#support-depth.support-depth-block {
  padding-top: clamp(54px, 7vh, 84px);
  padding-bottom: clamp(58px, 7.5vh, 92px);
}

#support-depth .support-depth-head--compact h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

#support-depth .support-compact-stack {
  gap: clamp(12px, 1.8vw, 18px);
  margin-top: clamp(18px, 3vh, 30px);
}

#support-depth .support-tag-cloud span {
  min-height: clamp(36px, 3.6vw, 46px);
  padding: 0 clamp(11px, 1.3vw, 16px);
  font-size: clamp(13px, 1vw, 16px);
}

#support-depth .section-cta-strip {
  margin-top: clamp(86px, 12vh, 150px);
  margin-bottom: clamp(92px, 13vh, 164px);
}

@media (max-width: 760px) {
  #support-depth.support-depth-block {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  #support-depth .support-depth-head--compact h2 {
    max-width: 13ch;
    font-size: clamp(24px, 7.2vw, 32px);
  }

  #support-depth .support-tag-cloud span {
    min-height: 40px;
    font-size: 13px;
  }
}

/* Screenshot-reference support cards */
#support-depth .support-depth-shell--compact {
  max-width: min(1560px, calc(100vw - clamp(40px, 5vw, 96px)));
}

#support-depth .support-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(24px, 4vh, 42px);
  border: 1px solid rgba(126, 207, 242, 0.22);
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.06), rgba(247, 247, 242, 0.015)),
    rgba(10, 15, 17, 0.5);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

#support-depth .support-benefit-card {
  min-height: clamp(430px, 37vw, 540px);
  padding: clamp(24px, 2.7vw, 40px);
  border-right: 1px solid rgba(126, 207, 242, 0.15);
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.04), rgba(247, 247, 242, 0.01)),
    rgba(12, 17, 20, 0.34);
  color: #f7f7f2;
}

#support-depth .support-benefit-card:last-child {
  border-right: 0;
}

#support-depth .support-benefit-art {
  display: grid;
  place-items: center;
  height: clamp(180px, 17vw, 250px);
  margin-bottom: clamp(34px, 5vw, 82px);
}

#support-depth .support-benefit-art svg {
  width: min(100%, 330px);
  height: 100%;
  overflow: visible;
}

#support-depth .support-benefit-card h3 {
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(21px, 1.55vw, 30px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

#support-depth .support-benefit-card p {
  max-width: 30ch;
  margin: clamp(22px, 3vw, 40px) 0 0;
  color: rgba(247, 247, 242, 0.58);
  font-family: var(--mono);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0;
}

#support-depth .peer-nodes polygon,
#support-depth .peer-nodes line {
  fill: none;
  stroke: #8eea2a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 17 14;
  filter: drop-shadow(0 0 7px rgba(142, 234, 42, 0.8));
}

#support-depth .peer-nodes text {
  fill: #8eea2a;
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  text-anchor: middle;
  filter: drop-shadow(0 0 6px rgba(142, 234, 42, 0.7));
  animation: supportPeerTextGlow 3.6s ease-in-out infinite;
}

#support-depth .peer-nodes polygon {
  animation: supportPeerPulse 3.4s ease-in-out infinite;
}

#support-depth .peer-nodes polygon:nth-of-type(2),
#support-depth .peer-nodes polygon:nth-of-type(4) {
  animation-delay: 0.7s;
}

#support-depth .peer-nodes line {
  animation: supportDashFlow 9s linear infinite;
}

#support-depth .practice-burst line,
#support-depth .practice-burst circle {
  fill: #55cfff;
  stroke: #55cfff;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(85, 207, 255, 0.7));
}

#support-depth .practice-burst line {
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
  animation: supportBurstDraw 4.8s ease-in-out infinite;
}

#support-depth .practice-burst line:nth-of-type(2n) {
  animation-delay: 0.35s;
}

#support-depth .practice-burst line:nth-of-type(3n) {
  animation-delay: 0.72s;
}

#support-depth .practice-burst circle {
  transform-origin: center;
  animation: supportSparkFlicker 1.9s ease-in-out infinite alternate;
}

#support-depth .practice-burst circle:nth-of-type(2n) {
  animation-delay: 0.45s;
}

#support-depth .personal-web path,
#support-depth .personal-web line {
  fill: none;
  stroke: #b67aff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(182, 122, 255, 0.72));
}

#support-depth .personal-web path,
#support-depth .personal-web line {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: supportBranchFlow 6.4s ease-in-out infinite;
}

#support-depth .personal-web line:nth-of-type(2n) {
  animation-delay: 0.38s;
}

#support-depth .personal-web line:nth-of-type(3n) {
  animation-delay: 0.78s;
}

#support-depth .personal-web circle {
  fill: #b67aff;
  filter: drop-shadow(0 0 7px rgba(182, 122, 255, 0.7));
  transform-origin: center;
  animation: supportEndpointGlow 2.2s ease-in-out infinite alternate;
}

#support-depth .personal-web circle:nth-of-type(2n) {
  animation-delay: 0.5s;
}

#support-depth .library-stack rect,
#support-depth .library-stack path,
#support-depth .library-stack line,
#support-depth .library-stack polyline {
  fill: none;
  stroke: #ffd166;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.72));
}

#support-depth .library-stack rect,
#support-depth .library-stack path,
#support-depth .library-stack line,
#support-depth .library-stack polyline {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: supportLibraryDraw 5.8s ease-in-out infinite;
}

#support-depth .library-stack rect:nth-of-type(2n),
#support-depth .library-stack line:nth-of-type(2n) {
  animation-delay: 0.42s;
}

#support-depth .library-stack rect:nth-of-type(3n),
#support-depth .library-stack path:nth-of-type(2n),
#support-depth .library-stack polyline {
  animation-delay: 0.78s;
}

#support-depth .library-stack circle {
  fill: #ffd166;
  filter: drop-shadow(0 0 7px rgba(255, 209, 102, 0.72));
  transform-origin: center;
  animation: supportLibraryNodeGlow 2.1s ease-in-out infinite alternate;
}

#support-depth .library-stack circle:nth-of-type(2n) {
  animation-delay: 0.45s;
}

@keyframes supportPeerPulse {
  0%,
  100% {
    opacity: 0.48;
    stroke-width: 3.4;
  }
  50% {
    opacity: 1;
    stroke-width: 4.8;
  }
}

@keyframes supportDashFlow {
  to {
    stroke-dashoffset: -124;
  }
}

@keyframes supportPeerTextGlow {
  0%,
  100% {
    opacity: 0.68;
  }
  50% {
    opacity: 1;
  }
}

@keyframes supportBurstDraw {
  0% {
    opacity: 0.22;
    stroke-dashoffset: 52;
  }
  34%,
  72% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0.38;
    stroke-dashoffset: -52;
  }
}

@keyframes supportSparkFlicker {
  from {
    opacity: 0.32;
    transform: scale(0.75);
  }
  to {
    opacity: 1;
    transform: scale(1.24);
  }
}

@keyframes supportBranchFlow {
  0% {
    opacity: 0.28;
    stroke-dashoffset: 180;
  }
  45%,
  72% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0.34;
    stroke-dashoffset: -180;
  }
}

@keyframes supportEndpointGlow {
  from {
    opacity: 0.36;
    transform: scale(0.76);
  }
  to {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes supportLibraryDraw {
  0% {
    opacity: 0.24;
    stroke-dashoffset: 170;
  }
  42%,
  74% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0.36;
    stroke-dashoffset: -170;
  }
}

@keyframes supportLibraryNodeGlow {
  from {
    opacity: 0.34;
    transform: scale(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  #support-depth .peer-nodes polygon,
  #support-depth .peer-nodes line,
  #support-depth .peer-nodes text,
  #support-depth .practice-burst line,
  #support-depth .practice-burst circle,
  #support-depth .personal-web path,
  #support-depth .personal-web line,
  #support-depth .personal-web circle,
  #support-depth .library-stack rect,
  #support-depth .library-stack path,
  #support-depth .library-stack line,
  #support-depth .library-stack polyline,
  #support-depth .library-stack circle {
    animation: none;
  }

  #support-depth .practice-burst line,
  #support-depth .personal-web path,
  #support-depth .personal-web line,
  #support-depth .library-stack rect,
  #support-depth .library-stack path,
  #support-depth .library-stack line,
  #support-depth .library-stack polyline {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1180px) {
  #support-depth .support-benefit-card {
    border-right: 1px solid rgba(126, 207, 242, 0.15);
    border-bottom: 1px solid rgba(126, 207, 242, 0.15);
  }

  #support-depth .support-benefit-card:nth-child(2n) {
    border-right: 0;
  }

  #support-depth .support-benefit-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {

  #support-depth .support-benefit-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(126, 207, 242, 0.15);
  }

  #support-depth .support-benefit-card:last-child {
    border-bottom: 0;
  }

  #support-depth .support-benefit-art {
    height: 160px;
    margin-bottom: 22px;
  }
}

@media (max-width: 760px) {
  #support-depth .support-benefit-card {
    padding: 24px 18px 28px;
  }

  #support-depth .support-benefit-art {
    height: 140px;
  }

  #support-depth .support-benefit-card h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  #support-depth .support-benefit-card p {
    max-width: 28ch;
    margin-top: 18px;
    font-size: 14px;
  }
}

/* Support depth donor layout: compact 2x2 environment cards from particle source. */
#support-depth.support-depth-block {
  padding-top: clamp(88px, 10vh, 136px);
  padding-bottom: clamp(92px, 11vh, 146px);
}

#support-depth .support-depth-shell--compact {
  width: min(100%, 1480px);
  max-width: min(1480px, calc(100vw - clamp(40px, 6vw, 112px)));
  margin-inline: auto;
}

#support-depth .support-depth-head--compact {
  display: block;
  max-width: min(820px, 68vw);
  text-align: left;
}

#support-depth .support-depth-head--compact .section-kicker {
  margin-bottom: clamp(14px, 1.5vw, 20px);
}

#support-depth .support-depth-head--compact h2 {
  margin: 0;
}

#support-depth .support-compact-stack {
  margin-top: clamp(42px, 5.8vh, 76px);
}

#support-depth .support-benefit-grid {
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin: 0 auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

#support-depth .support-benefit-card {
  min-height: clamp(190px, 15vw, 236px);
  display: grid;
  grid-template-columns: clamp(120px, 12vw, 178px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(22px, 2.4vw, 34px);
  row-gap: clamp(12px, 1.1vw, 18px);
  align-content: center;
  align-items: center;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid rgba(126, 207, 242, 0.18);
  background:
    linear-gradient(135deg, rgba(126, 207, 242, 0.075), transparent 42%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.038), rgba(247, 247, 242, 0.012)),
    rgba(8, 13, 16, 0.48);
  box-shadow: inset 0 1px 0 rgba(247, 247, 242, 0.035);
  color: #f7f7f2;
}

#support-depth .support-benefit-card:last-child,
#support-depth .support-benefit-card:nth-child(2n),
#support-depth .support-benefit-card:nth-last-child(-n+2) {
  border: 1px solid rgba(126, 207, 242, 0.18);
}

#support-depth .support-benefit-card:hover {
  border-color: rgba(126, 207, 242, 0.32);
  background:
    linear-gradient(135deg, rgba(126, 207, 242, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.046), rgba(247, 247, 242, 0.014)),
    rgba(9, 16, 19, 0.58);
}

#support-depth .support-benefit-art {
  grid-row: 1 / span 2;
  width: 100%;
  height: clamp(118px, 10.6vw, 168px);
  display: grid;
  place-items: center;
  margin: 0;
}

#support-depth .support-benefit-art svg {
  width: min(100%, clamp(126px, 11vw, 176px));
  height: auto;
  max-height: 100%;
}

#support-depth .support-benefit-card h3 {
  min-height: 0;
  align-self: end;
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 1.04;
  font-weight: 760;
  text-transform: none;
}

#support-depth .support-benefit-card p {
  align-self: start;
  max-width: 34ch;
  margin: 0;
  color: rgba(247, 247, 242, 0.64);
  font-size: clamp(13px, 0.98vw, 16px);
  line-height: 1.52;
  font-weight: 400;
}

#support-depth .section-cta-strip {
  margin-top: clamp(58px, 7vh, 88px);
  margin-bottom: clamp(72px, 9vh, 118px);
  justify-content: flex-start;
}

@media (max-width: 1180px) {
  #support-depth .support-benefit-grid {
    max-width: 860px;
    gap: 22px;
  }

  #support-depth .support-benefit-card {
    grid-template-columns: minmax(108px, 0.34fr) minmax(0, 0.66fr);
    padding: 24px;
  }
}

@media (max-width: 820px) {
  #support-depth .support-benefit-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 18px;
  }

  #support-depth .support-benefit-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  #support-depth.support-depth-block {
    padding-top: 68px;
    padding-bottom: 82px;
  }

  #support-depth .support-depth-head--compact {
    max-width: 100%;
  }

  #support-depth .support-depth-head--compact h2 {
    max-width: 13ch;
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.02;
  }

  #support-depth .support-compact-stack {
    margin-top: 68px;
  }

  #support-depth .support-benefit-grid {
    row-gap: 42px;
  }

  #support-depth .support-benefit-card {
    grid-template-columns: minmax(96px, 0.34fr) minmax(0, 0.66fr);
    column-gap: 16px;
    padding: 20px 18px;
  }

  #support-depth .support-benefit-art {
    height: 96px;
  }

  #support-depth .support-benefit-art svg {
    width: min(100%, 124px);
  }

  #support-depth .support-benefit-card h3 {
    font-size: clamp(20px, 6.1vw, 26px);
  }

  #support-depth .support-benefit-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  #support-depth .section-cta-strip {
    margin-top: 58px;
    margin-bottom: 68px;
  }
}

/* Pricing and lower light sections: matte grey instead of high-contrast white. */
#pricing.pricing-block {
  border-top-color: rgba(17, 17, 17, 0.14);
}

#pricing .pricing-card {
  border-color: rgba(17, 17, 17, 0.14);
}

#pricing .section-kicker,
#testimonials .section-kicker,
#faq .section-kicker {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
}

#testimonials.testimonials-block {
  border-top-color: rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 207, 242, 0.075), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(53, 230, 177, 0.045), transparent 28%),
    linear-gradient(180deg, #dcddd9 0%, #e4e5e1 100%);
}

#testimonials.testimonials-block::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.052) 1px, transparent 1px);
  opacity: 0.36;
}

#faq.faq-block {
  border-top-color: rgba(17, 17, 17, 0.1);
  background:
    radial-gradient(circle at 88% 12%, rgba(126, 207, 242, 0.055), transparent 24%),
    linear-gradient(180deg, #e3e4e0 0%, #dcddd9 100%);
}

/* Header final pass: keep live menu wording lowercase, brand visible, and restore a larger header rhythm. */
.site-header {
  z-index: 1000;
  min-height: 66px;
  padding: 10px clamp(18px, 2.6vw, 42px);
  gap: clamp(16px, 2vw, 30px);
  overflow: visible;
}

.site-header .site-brand,
.site-brand {
  gap: 12px;
  font-size: clamp(16px, 1.08vw, 19px);
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header .site-brand img,
.site-brand img {
  width: 36px;
  height: 36px;
}

.site-header .top-nav,
.top-nav {
  font-size: clamp(13px, 0.92vw, 16px);
  letter-spacing: 0.04em;
  text-transform: none;
}

.top-nav > a,
.nav-dropdown > button,
.nav-dropdown__panel a,
.nav-dropdown__panel span {
  text-transform: none;
}

.mobile-menu-toggle,
.mobile-site-menu {
  display: none;
}

.mobile-menu-open {
  overflow: hidden;
}

.nav-dropdown__panel {
  z-index: 1001;
  min-width: 360px;
  padding: 12px 0;
}

.nav-dropdown__panel a,
.nav-dropdown__panel span {
  padding: 13px 16px;
  font-size: clamp(13px, 0.92vw, 16px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.nav-dropdown__panel .is-disabled {
  color: rgba(247, 247, 242, 0.48);
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

.header-enroll__status {
  font-size: clamp(11px, 0.82vw, 13px);
}

.header-enroll__cta {
  min-height: 38px;
  font-size: clamp(11px, 0.82vw, 13px);
}

@media (max-width: 1280px) {
  .site-header {
    min-height: 62px;
    padding-inline: clamp(14px, 1.7vw, 24px);
    gap: 12px;
  }

  .site-header .site-brand span {
    display: inline;
    font-size: clamp(14px, 1.2vw, 17px);
  }

  .site-header .top-nav,
  .top-nav {
    font-size: clamp(12px, 1vw, 14px);
  }
}

@media (max-width: 980px) {
  .site-header .site-brand span {
    display: inline;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: max-content minmax(0, 1fr) max-content max-content;
    grid-template-areas:
      "brand . enroll mobile-menu"
      "audience audience audience audience";
    justify-content: stretch;
  }

  .site-header .site-brand,
  .site-brand {
    grid-area: brand;
    min-width: max-content;
    gap: 6px;
  }

  .site-brand img {
    width: 26px;
    height: 26px;
  }

  .site-header .site-brand span,
  .site-brand span {
    display: inline;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }

  .header-enroll {
    grid-area: enroll;
    justify-self: end;
  }

  .header-enroll__cta {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 9.5px;
  }

  .site-header .top-nav,
  .top-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    grid-area: mobile-menu;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    justify-self: end;
    border: 1px solid rgba(247, 247, 242, 0.42);
    border-radius: 0;
    background: rgba(247, 247, 242, 0.04);
    color: var(--header-ink, var(--ink));
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 15px;
    height: 1px;
    background: currentColor;
  }

  .mobile-site-menu {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    flex-direction: column;
    min-height: 100svh;
    padding: 28px 22px 24px;
    overflow-y: auto;
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.94)),
      var(--bg);
    color: #f7f7f2;
  }

  .mobile-site-menu.is-open {
    display: flex;
  }

  .mobile-menu-open .assistant-toggle,
  .mobile-menu-open .assistant-drawer {
    display: none !important;
  }

  .mobile-site-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 44px;
    color: rgba(247, 247, 242, 0.72);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: none;
  }

  .mobile-menu-close {
    position: relative;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border: 1px solid rgba(247, 247, 242, 0.52);
    border-radius: 999px;
    background: transparent;
    color: #f7f7f2;
    cursor: pointer;
  }

  .mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
  }

  .mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-site-menu__body {
    display: grid;
    gap: 44px;
  }

  .mobile-site-menu__group {
    margin: 0;
  }

  .mobile-site-menu__group h2 {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(247, 247, 242, 0.16);
    color: rgba(247, 247, 242, 0.48);
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: none;
  }

  .mobile-site-menu__anchors,
  .mobile-site-menu__site-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .mobile-site-menu__anchors a {
    color: #f7f7f2;
    font-family: var(--display);
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
  }

  .mobile-site-menu__site-links a,
  .mobile-site-menu__site-links span {
    color: #f7f7f2;
    font-family: var(--mono);
    font-size: 18px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: none;
  }

  .mobile-site-menu__site-links a[aria-current="page"] {
    color: var(--button-bg);
  }

  .mobile-site-menu__site-links span[aria-disabled="true"] {
    color: rgba(247, 247, 242, 0.48);
    cursor: not-allowed;
    pointer-events: none;
    user-select: none;
  }

  .mobile-site-menu__foot {
    margin-top: auto;
    padding-top: 44px;
    color: rgba(247, 247, 242, 0.22);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.38em;
    text-align: center;
  }

  .nav-dropdown__panel {
    position: fixed;
    top: 130px;
    left: 10px;
    z-index: 1001;
    width: min(360px, calc(100vw - 20px));
    min-width: min(360px, calc(100vw - 20px));
    max-height: min(58vh, 360px);
    overflow: auto;
  }

  .nav-dropdown__panel a,
  .nav-dropdown__panel span {
    padding: 12px 14px;
    font-size: 12px;
    white-space: normal;
  }
}

/* QnD rail overlap guard: keep only dots idle; reveal labels near the rail. */
@media (max-width: 1340px) {
  body.show-section-rail .section-rail {
    display: flex !important;
    flex-direction: column;
    right: 8px !important;
    width: 44px !important;
    max-height: calc(100svh - 108px);
    padding: 9px 6px !important;
    overflow: hidden;
    border-color: transparent !important;
    background: rgba(5, 7, 10, 0.04) !important;
    box-shadow: none !important;
    opacity: 0.72;
    backdrop-filter: none;
  }

  body.show-section-rail.is-section-rail-near .section-rail,
  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    width: clamp(176px, 17vw, 220px) !important;
    padding: 12px 12px 12px 16px !important;
    border-color: rgba(126, 207, 242, 0.28) !important;
    background:
      linear-gradient(90deg, rgba(5, 7, 10, 0.94), rgba(5, 7, 10, 0.72)) !important;
    box-shadow: -18px 0 46px rgba(0, 0, 0, 0.26) !important;
    opacity: 0.98;
    backdrop-filter: blur(12px);
  }

  body[data-visual="firefly"].show-section-rail.is-section-rail-near .section-rail,
  body[data-visual="firefly"].show-section-rail .section-rail:hover,
  body[data-visual="firefly"].show-section-rail .section-rail:focus-within {
    background:
      linear-gradient(90deg, rgba(251, 251, 247, 0.9), rgba(251, 251, 247, 0.66)) !important;
    box-shadow: -16px 0 42px rgba(17, 17, 17, 0.12) !important;
  }

  .section-rail a {
    grid-template-columns: minmax(0, 1fr) 14px !important;
    gap: 10px !important;
    min-height: 34px !important;
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
  }

  body.show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    max-width: 0 !important;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(10px);
    transition: max-width 180ms ease, opacity 160ms ease, transform 180ms ease;
  }

  body.show-section-rail.is-section-rail-near .section-rail span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:hover span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:focus-within span:not(.section-rail__drag-handle) {
    max-width: 160px !important;
    opacity: 1;
    transform: translateX(0);
  }

  .section-rail i {
    justify-self: end;
    width: 8px !important;
    height: 8px !important;
  }

  .section-rail a.is-active i {
    width: 12px !important;
    height: 12px !important;
  }
}

/* Rail recovery: dots stay light; labels appear as local chips, never as a full-height panel. */
@media (max-width: 1340px) and (hover: hover) and (pointer: fine) {
  body.show-section-rail .section-rail,
  body.show-section-rail.is-section-rail-near .section-rail,
  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    display: flex !important;
    flex-direction: column;
    right: clamp(10px, 1.1vw, 16px) !important;
    width: 32px !important;
    max-height: min(72svh, 680px);
    padding: 4px 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 0.78;
    backdrop-filter: none !important;
  }

  body.show-section-rail.is-section-rail-near .section-rail,
  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    opacity: 1;
  }

  .section-rail a {
    position: relative;
    display: flex !important;
    width: 32px;
    min-height: 30px !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    color: rgba(247, 247, 242, 0.3);
    font-size: 14px !important;
    letter-spacing: 0.04em !important;
  }

  .section-rail a + a {
    margin-top: clamp(6px, 0.95vh, 11px) !important;
  }

  .section-rail i {
    justify-self: auto;
    width: 7px !important;
    height: 7px !important;
    margin-right: 2px;
    opacity: 0.58;
    transition: color 160ms ease, opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  }

  .section-rail a:hover i,
  .section-rail a:focus-visible i,
  .section-rail a.is-active i {
    width: 10px !important;
    height: 10px !important;
    color: var(--hot);
    opacity: 1;
    transform: none !important;
    box-shadow: 0 0 24px rgba(120, 207, 240, 0.72);
  }

  body.show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    position: absolute;
    top: 50%;
    right: 22px;
    z-index: 2;
    width: max-content;
    max-width: min(180px, calc(100vw - 76px)) !important;
    padding: 7px 10px;
    overflow: hidden;
    border: 1px solid rgba(126, 207, 242, 0.24);
    background: rgba(5, 7, 10, 0.78);
    color: rgba(247, 247, 242, 0.62);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transform: translate(8px, -50%);
    backdrop-filter: blur(10px);
    transition: opacity 150ms ease, transform 150ms ease, color 150ms ease, border-color 150ms ease;
  }

  body.show-section-rail.is-section-rail-near .section-rail span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:hover span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:focus-within span:not(.section-rail__drag-handle) {
    opacity: 0;
    transform: translate(8px, -50%);
  }

  body.show-section-rail .section-rail a:hover span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(126, 207, 242, 0.38);
    color: var(--hot);
    opacity: 1;
    transform: translate(0, -50%);
  }

  body[data-visual="firefly"].show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    background: rgba(251, 251, 247, 0.88);
    color: rgba(17, 17, 17, 0.62);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.12);
  }

  body[data-visual="firefly"].show-section-rail .section-rail a:hover span:not(.section-rail__drag-handle),
  body[data-visual="firefly"].show-section-rail .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body[data-visual="firefly"].show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle) {
    color: #1f6f8f;
  }
}

@media (max-width: 760px) {
  .section-rail,
  body.show-section-rail .section-rail,
  body.show-section-rail.is-section-rail-near .section-rail {
    display: none !important;
  }
}

@media (max-width: 760px) and (hover: none) {
  .section-rail {
    display: none !important;
  }
}

/* Route role switch stability: keep geometry fixed while profile copy changes. */
body.is-rewriting #route [data-role-text],
body.is-rewriting #route [data-role-html],
body.is-rewriting #route [data-role-route-title],
body.is-rewriting #route [data-role-route-body],
body.is-rewriting #route [data-role-route-output],
body.is-rewriting #route .route-card,
body.is-rewriting #outcomes [data-role-text],
body.is-rewriting #outcomes [data-role-html],
body.is-rewriting #outcomes [data-role-list],
body.is-rewriting #outcomes .outcome-panel,
body.is-rewriting #outcomes .outcome-output-list,
body.is-rewriting #outcomes .outcome-output-list b {
  animation: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  text-shadow: none !important;
}

.route-head {
  min-height: clamp(280px, 21.6vw, 342px);
}

.route-head h2 {
  min-height: 3.25em;
}

.route-head [data-role-text="routeIntro"] {
  min-height: calc(3 * 1.46em);
}

.route-card {
  min-height: clamp(346px, 22vw, 380px);
}

.route-card.is-active {
  transform: none;
}

.route-card h3 {
  min-height: calc(3 * 1.12em);
}

.route-card p {
  min-height: calc(5 * 1.5em);
}

#outcomes .outcomes-head h2 {
  min-height: calc(3 * 1.02em);
}

#outcomes .outcomes-grid {
  align-items: stretch;
}

#outcomes .outcome-sphere.is-active {
  transform: none;
}

#outcomes .outcome-panel {
  min-height: clamp(550px, 42vw, 580px);
  justify-content: flex-start;
}

#outcomes .outcome-panel__role {
  min-height: 1.2em;
}

#outcomes .outcome-panel h3 {
  min-height: calc(3 * 1.08em);
}

#outcomes .outcome-panel__copy {
  min-height: calc(3 * 1.5em);
}

#outcomes .outcome-output-list {
  min-height: 158px;
}

@media (min-width: 761px) and (max-width: 1340px) {
  .route-head {
    min-height: clamp(266px, 20.8vw, 288px);
  }

  .route-card {
    min-height: 346px;
  }
}

@media (min-width: 761px) and (max-width: 960px) {
  #outcomes .outcomes-head h2 {
    min-height: calc(3 * 1.02em);
  }

  #outcomes .outcome-panel {
    min-height: 562px;
  }
}

@media (max-width: 760px) {
  body.is-rewriting #route [data-role-text],
  body.is-rewriting #route [data-role-html],
  body.is-rewriting #route [data-role-route-title],
  body.is-rewriting #route [data-role-route-body],
  body.is-rewriting #route [data-role-route-output],
  body.is-rewriting #route .route-card {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    text-shadow: none !important;
  }

  .route-head h2 {
    font-size: clamp(31px, 8.7vw, 42px);
    line-height: 0.96;
  }

  .route-head p {
    font-size: 14px;
    line-height: 1.4;
  }

  .route-head {
    min-height: clamp(292px, 74vw, 318px);
  }

  .route-head h2 {
    min-height: 4.5em;
  }

  .route-head [data-role-text="routeIntro"] {
    min-height: calc(5 * 1.4em);
  }

  .route-track {
    margin-top: 22px;
    overflow: visible;
  }

  .route-card {
    min-height: 222px;
    padding: 18px 18px 18px 16px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr auto;
    grid-template-areas:
      "num title"
      "num body"
      ". body"
      ". output";
    column-gap: 14px;
    row-gap: 8px;
    overflow: visible;
  }

  .route-card__num {
    grid-area: num;
    width: 38px;
    height: 38px;
    align-self: start;
    margin-top: 2px;
    font-size: 16px;
  }

  .route-card h3 {
    grid-area: title;
    min-height: calc(3 * 1.08em);
    margin-top: 0;
    font-size: 20px;
    line-height: 1.08;
  }

  .route-card p {
    grid-area: body;
    min-height: calc(4 * 1.42em);
    margin-top: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .route-card > span {
    grid-area: output;
    margin-top: 0;
    padding-top: 4px;
    font-size: 10px;
  }

  #outcomes .outcomes-head h2 {
    min-height: calc(3 * 1.04em);
  }

  #outcomes .outcome-panel {
    min-height: 452px;
  }

  #outcomes .outcome-panel h3 {
    min-height: calc(3 * 1.04em);
  }

  #outcomes .outcome-panel__copy {
    min-height: calc(4 * 1.42em);
  }

  #outcomes .outcome-output-list {
    min-height: 170px;
  }
}

@media (max-width: 380px) {
  .route-card {
    padding-right: 14px;
    padding-left: 14px;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
  }

  .route-card__num {
    width: 36px;
    height: 36px;
  }

  .route-card h3 {
    font-size: 19px;
  }

  .route-card p {
    font-size: 13.5px;
    line-height: 1.38;
  }
}

/* Brand lockup: keep the AI Mindset mark/text composition consistent across header breakpoints. */
.site-header {
  --brand-lockup-mark-size: 36px;
  --brand-lockup-gap: 4px;
  --brand-lockup-font-size: clamp(15px, 1.08vw, 18px);
  --brand-lockup-mark-shift-y: -2px;
  --brand-lockup-mark-scale: 1.08;
}

.site-header .site-brand,
.site-brand {
  align-items: center;
  gap: var(--brand-lockup-gap);
  min-width: max-content;
  font-family: var(--mono);
  font-size: var(--brand-lockup-font-size);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header .site-brand img,
.site-brand img {
  width: var(--brand-lockup-mark-size);
  height: var(--brand-lockup-mark-size);
  flex: 0 0 var(--brand-lockup-mark-size);
  transform: translateY(var(--brand-lockup-mark-shift-y)) scale(var(--brand-lockup-mark-scale));
  transform-origin: 50% 50%;
}

.site-header .site-brand span,
.site-brand span {
  display: inline;
  max-width: none;
  overflow: visible;
  color: var(--header-ink, var(--ink));
  font-family: var(--mono);
  font-size: var(--brand-lockup-font-size);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .site-header {
    --brand-lockup-mark-size: 34px;
    --brand-lockup-gap: 4px;
    --brand-lockup-font-size: 14px;
    --brand-lockup-mark-shift-y: -2px;
  }
}

/* Header typography tune: keep nav light without adding another role-tab type scale. */
.site-header .top-nav,
.top-nav,
.site-header .top-nav > a,
.site-header .nav-dropdown > button,
.site-header .nav-dropdown__panel a,
.site-header .nav-dropdown__panel span {
  font-weight: 400;
}

@media (min-width: 761px) {
  .audience-tabs {
    flex-basis: clamp(350px, 28vw, 480px);
    max-width: 480px;
  }
}

@media (max-width: 380px) {
  .audience-tab span {
    font-size: 8.5px;
  }

  .audience-tab b {
    font-size: 11px;
  }
}

/* Speakers readability recovery: guest cards must read as editorial bios, not compressed chips. */
#speakers .speakers-shell {
  max-width: 1320px;
  padding-right: clamp(92px, 8vw, 142px);
}

#speakers .speaker-layer--guests .speaker-layer__head {
  margin-bottom: clamp(18px, 3vh, 30px);
}

#speakers .guest-speakers__label {
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.06em;
}

#speakers .speaker-layer--guests .guest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 3.2vw, 54px) clamp(28px, 2.8vw, 46px);
  margin-top: clamp(24px, 3.2vh, 34px);
}

#speakers .speaker-layer--guests .speaker-photo {
  filter: brightness(0.98);
}

#speakers .speaker-layer--guests .speaker-body h3 {
  grid-area: name;
  min-width: 0;
  padding-bottom: 0;
  color: #f7f7f2;
  font-family: var(--mono);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

#speakers .speaker-layer--guests .speaker-role {
  grid-area: role;
  min-width: 0;
  margin: 0;
  color: rgba(120, 207, 240, 0.9);
  font-family: var(--mono);
  font-size: clamp(12.5px, 0.86vw, 14px);
  line-height: 1.24;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

#speakers .speaker-layer--guests .speaker-topic {
  grid-area: topic;
  min-width: 0;
  margin: 0;
  color: rgba(247, 247, 242, 0.66);
  font-family: var(--mono);
  font-size: clamp(13.5px, 0.95vw, 15px);
  line-height: 1.26;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

#speakers .speaker-layer--guests .speaker-bio {
  grid-area: bio;
  max-width: none;
  margin: clamp(7px, 0.8vh, 9px) 0 0;
  color: rgba(247, 247, 242, 0.7);
  font-family: var(--mono);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 30px;
  }
}

@media (max-width: 760px) {
  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  #speakers .speakers-shell {
    padding-right: 0;
  }

  #speakers .speaker-layer--guests .speaker-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  #speakers .speaker-layer--guests .speaker-photo {
    width: 82px;
  }

  #speakers .speaker-layer--guests .speaker-body {
    grid-template-rows: auto auto auto auto;
    row-gap: 2px;
  }

  #speakers .speaker-layer--guests .speaker-role,
  #speakers .speaker-layer--guests .speaker-links {
    font-size: 13px;
  }

  #speakers .speaker-layer--guests .speaker-topic {
    font-size: 15px;
  }

  #speakers .speaker-layer--guests .speaker-bio {
    max-width: none;
    font-size: 15px;
    line-height: 1.48;
  }
}

/* Mobile speaker cards: make the portrait height follow the adjacent identity block. */
@media (max-width: 620px) {
  #speakers .speaker-layer--guests .speaker-card {
    align-items: stretch;
  }

  #speakers .speaker-layer--guests .speaker-photo {
    align-self: stretch;
    min-height: 82px;
    height: 100%;
  }
}

/* Speaker guest card rhythm: keep first-row bios aligned without pushing later rows away. */
#speakers .speaker-layer--guests {
  --guest-speaker-meta-height: clamp(96px, 7.2vw, 112px);
}

@media (max-width: 620px) {
  #speakers .speaker-layer--guests .speaker-card {
    grid-template-rows: auto auto;
    grid-template-areas:
      "photo body"
      "bio bio";
  }

  #speakers .speaker-layer--guests .speaker-body {
    min-height: 82px;
  }
}

@media (max-width: 620px) {
  .assistant-toggle,
  .assistant-drawer {
    display: none !important;
  }
}

/* Speakers width recovery: keep the improved vertical rhythm, but return the old reading measure. */

/* Mobile readability recovery: keep the second screen readable in sunlight and avoid heavy bold blocks. */
@media (max-width: 760px) {

  #agent-company .agent-company__body {
    max-width: none;
    padding-right: 0;
  }

  #agent-company .agent-company__body p,
  #agent-company .agent-company__intro {
    color: rgba(247, 247, 242, 0.68) !important;
    font-family: var(--font-readable);
    font-size: clamp(14.5px, 3.9vw, 16px);
    line-height: 1.56;
    font-weight: 400;
  }

  #agent-company .agent-company__list {
    gap: 9px;
    margin-top: 12px;
    color: rgba(247, 247, 242, 0.73);
    font-family: var(--font-readable);
    font-size: clamp(15.5px, 4.2vw, 17px);
    line-height: 1.5;
    font-weight: 400;
  }

  #agent-company .agent-company__list li {
    padding-left: 0.86em;
  }

  #agent-company .agent-stats {
    margin-top: 24px;
    padding-top: 18px;
    gap: 16px;
  }

  #agent-company .agent-stat dd {
    margin-top: 8px;
    color: rgba(247, 247, 242, 0.62);
    font-size: clamp(12.5px, 3.3vw, 14.5px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.03em;
  }
}

/* Section heading recovery: regular content sections share one heading rhythm. */
.section-kicker,
.route-head .section-kicker,
.case-library-head .section-kicker,
.schedule-header .section-kicker,
#support-depth .support-depth-head--compact .section-kicker {
  color: #78cff0;
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
}

.speakers-title,
.route-head h2,
.outcomes-head h2,
.case-library-head h2,
.case-library-block--archive .case-library-head h2,
.case-library-block--cards .case-library-head h2,
#support-depth .support-depth-head--compact h2,
.pricing-head h2,
.testimonials-title,
.testimonials-block .testimonials-title,
#testimonials .testimonials-title,
.schedule-header h2 {
  max-width: 15ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  text-wrap: balance;
}

#pricing .section-kicker,
#testimonials .section-kicker,
#faq .section-kicker {
  color: #0b4f61;
}

#pricing .pricing-head h2,
#testimonials .testimonials-title {
  color: #111111;
}

@media (max-width: 760px) {
  .section-kicker,
  .route-head .section-kicker,
  .case-library-head .section-kicker,
  .schedule-header .section-kicker,
  #support-depth .support-depth-head--compact .section-kicker {
    font-size: 12px;
  }

  .speakers-title,
  .route-head h2,
  .outcomes-head h2,
  .case-library-head h2,
  .case-library-block--archive .case-library-head h2,
  .case-library-block--cards .case-library-head h2,
  #support-depth .support-depth-head--compact h2,
  .pricing-head h2,
  .testimonials-title,
  .testimonials-block .testimonials-title,
  #testimonials .testimonials-title,
  .schedule-header h2 {
    max-width: 14ch;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.04;
  }
}

/* Pricing transfer: desktop poster cards without background numerals; mobile uses variant 10 blueprint entry cards. */
#pricing .pricing-shell {
  padding-right: clamp(62px, 6vw, 104px);
}

#pricing .pricing-card {
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
}

#pricing .pricing-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 207, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 207, 240, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.32;
}

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

#pricing .pricing-card:hover,
#pricing .pricing-card:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

#pricing .pricing-card__label {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

#pricing .pricing-card__price {
  font-size: clamp(56px, 6.8vw, 106px);
}

#pricing .pricing-card__price--discount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 0.95vw, 14px);
}

#pricing .pricing-card__price--discount .pricing-card__old-price {
  margin-left: 0;
}

#pricing .pricing-card__price--discount .pricing-card__current-price {
  margin-left: 0;
}

#pricing .pricing-card__price span {
  margin-left: 10px;
  color: rgba(247, 247, 242, 0.64);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 600;
}

#pricing .pricing-card__price .pricing-card__current-line {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(7px, 0.65vw, 10px);
  margin-left: 0;
  color: inherit;
  font-family: var(--hero-display);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: 0.86;
  white-space: nowrap;
}

#pricing .pricing-card--team .pricing-card__current-line {
  font-size: clamp(52px, 6.2vw, 96px);
}

#pricing .pricing-card__price .pricing-card__current-line .pricing-card__current-price {
  margin-left: 0;
  font-size: 1em;
}

#pricing .pricing-card__price .pricing-card__unit {
  flex: 0 0 auto;
  margin-left: 0;
}

#pricing .pricing-card__deadline {
  max-width: 32ch;
  margin-top: clamp(9px, 1.1vw, 14px);
}

#pricing .pricing-card__copy {
  max-width: 36ch;
  margin: clamp(22px, 2.5vw, 34px) 0 clamp(28px, 3.2vw, 44px);
  color: rgba(247, 247, 242, 0.68);
  font-family: var(--font-readable);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
  font-weight: 400;
}

#pricing .pricing-card__microcopy {
  max-width: 40ch;
  margin: calc(clamp(28px, 3.2vw, 44px) * -0.5) 0 clamp(28px, 3.2vw, 44px);
  color: rgba(247, 247, 242, 0.48);
  font-family: var(--font-readable);
  font-size: clamp(13px, 0.88vw, 15px);
  line-height: 1.42;
  font-weight: 400;
}

#pricing .pricing-card__cta,
#pricing .pricing-card__secondary {
  margin-top: auto;
  letter-spacing: 0.04em;
}

#pricing .pricing-card__cta {
  box-shadow: none;
}

#pricing .pricing-card:hover .pricing-card__cta,
#pricing .pricing-card:focus-visible .pricing-card__cta {
  background: rgba(53, 230, 177, 0.2);
}

#pricing .pricing-card:hover .pricing-card__secondary,
#pricing .pricing-card:focus-visible .pricing-card__secondary {
  border-color: rgba(120, 207, 240, 0.72);
  color: #f7f7f2;
}

@media (max-width: 760px) {
  #pricing.pricing-block {
    scroll-margin-top: 124px;
    padding-top: clamp(72px, 10vh, 92px) !important;
  }

  #pricing .pricing-grid {
    position: relative;
    min-height: 520px;
    border-color: rgba(120, 207, 240, 0.34);
    background-size: 38px 38px;
  }

  #pricing .pricing-grid::before {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 50%;
    height: 1px;
    background: rgba(120, 207, 240, 0.26);
    pointer-events: none;
  }

  #pricing .pricing-card {
    border: 1px solid rgba(120, 207, 240, 0.52);
    background: rgba(7, 12, 15, 0.88);
    transform: none;
  }

  #pricing .pricing-card--team {
    justify-self: end;
  }

  #pricing .pricing-card::before {
    content: "";
    inset: auto;
    top: 28px;
    width: 46px;
    height: 1px;
    background: #78cff0;
    opacity: 0.62;
  }

  #pricing .pricing-card--primary::before {
    right: -46px;
  }

  #pricing .pricing-card--team::before {
    left: -46px;
  }

  #pricing .pricing-card__label {
    margin-bottom: 16px;
    font-size: 11px;
  }

  #pricing .pricing-card__price {
    font-size: clamp(42px, 13vw, 58px);
  }

  #pricing .pricing-card__price--discount .pricing-card__old-price {
    font-size: 22px;
  }

  #pricing .pricing-card--team .pricing-card__current-line {
    font-size: clamp(39px, 10.8vw, 50px);
  }

  #pricing .pricing-card__deadline {
    margin-top: 8px;
    font-size: 12px;
  }

  #pricing .pricing-card__copy {
    margin: 16px 0 18px;
    font-size: 14px;
    line-height: 1.38;
  }

  #pricing .pricing-card__microcopy {
    display: none;
  }

  #pricing .pricing-card__cta,
  #pricing .pricing-card__secondary {
    display: none;
  }

  #pricing .pricing-card__select {
    display: inline-flex;
    align-self: flex-end;
    margin-top: auto;
    color: #78cff0;
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: lowercase;
  }

  #pricing .pricing-card__select::after {
    content: " ->";
  }
}

/* Pricing surface: match the native dark grid sections; cards carry the payment transplant. */
#pricing.pricing-block {
  position: relative;
  isolation: isolate;
  border-top: 1px solid rgba(126, 207, 242, 0.2);
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 207, 240, 0.1), transparent 28%),
    radial-gradient(circle at 86% 70%, var(--role-soft), transparent 30%),
    linear-gradient(180deg, #05070a 0%, #071013 100%) !important;
  background-size: auto;
  color: #f7f7f2;
}

#pricing.pricing-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 247, 242, 0.02) 0 1px, transparent 1px 5px);
  background-size:
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    clamp(70px, 7vw, 116px) clamp(70px, 7vw, 116px),
    100% 5px;
  opacity: 0.58;
}

#pricing.pricing-block .pricing-shell {
  position: relative;
  z-index: 1;
}

#pricing .section-kicker {
  color: #78cff0 !important;
}

#pricing .pricing-head h2 {
  color: #f7f7f2 !important;
}

#pricing .pricing-grid {
  border-color: rgba(120, 207, 240, 0.22) !important;
}

@media (max-width: 760px) {
  #pricing.pricing-block {
    background-size: auto;
  }
}

/* Section rail final recovery: ghost HUD, not a panel. */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  body.show-section-rail .section-rail,
  body.show-section-rail.is-section-rail-near .section-rail,
  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    right: clamp(14px, 1.25vw, 22px) !important;
    z-index: 80;
    width: 34px !important;
    max-height: min(76svh, 690px);
    padding: 6px 0 !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
    backdrop-filter: none !important;
  }

  .section-rail a {
    position: relative;
    display: flex !important;
    width: 34px;
    min-height: 31px !important;
    align-items: center;
    justify-content: flex-end;
    padding: 0 !important;
    color: rgba(174, 187, 190, 0.66);
    font-family: var(--font-mono);
    font-size: 14px !important;
    line-height: 1;
    letter-spacing: 0.06em !important;
    text-decoration: none;
    text-transform: lowercase;
  }

  .section-rail a + a {
    margin-top: clamp(5px, 0.78vh, 9px) !important;
  }

  .section-rail a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 0;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: translateY(-50%);
    transition: width 170ms ease, opacity 170ms ease, background 170ms ease;
  }

  .section-rail i {
    position: relative;
    z-index: 2;
    width: 7px !important;
    height: 7px !important;
    margin-right: 1px;
    border: 1px solid rgba(247, 247, 242, 0.18);
    background: currentColor;
    opacity: 0.72;
    box-shadow:
      0 0 0 1px rgba(5, 7, 10, 0.48),
      0 0 14px rgba(120, 207, 240, 0.18);
    transition: width 170ms ease, height 170ms ease, color 170ms ease, opacity 170ms ease, box-shadow 170ms ease;
  }

  body.show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    position: absolute;
    top: 50%;
    right: 70px;
    z-index: 3;
    width: max-content;
    max-width: min(210px, calc(100vw - 120px)) !important;
    padding: 6px 10px;
    overflow: hidden;
    border: 1px solid rgba(126, 207, 242, 0.16);
    background: rgba(5, 7, 10, 0.48);
    color: rgba(190, 199, 200, 0.68);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    text-align: right;
    white-space: nowrap;
    transform: translate(8px, -50%);
    backdrop-filter: blur(8px);
    transition: opacity 90ms ease-out, transform 90ms ease-out, color 120ms ease, border-color 120ms ease, background 120ms ease;
  }

  .section-rail a:hover,
  .section-rail a:focus-visible,
  .section-rail a.is-rail-pending,
  .section-rail a.is-rail-previous-active,
  .section-rail a.is-active {
    color: #78cff0;
  }

  body.show-section-rail.is-section-rail-near .section-rail a::before,
  body.show-section-rail .section-rail:hover a::before,
  body.show-section-rail .section-rail:focus-within a::before {
    width: 46px;
    opacity: 0.26;
  }

  .section-rail a:hover::before,
  .section-rail a:focus-visible::before,
  .section-rail a.is-rail-pending::before,
  .section-rail a.is-rail-previous-active::before,
  .section-rail a.is-active::before,
  body.show-section-rail.is-section-rail-near .section-rail a.is-active::before {
    width: 54px;
    opacity: 0.78;
  }

  body.show-section-rail.is-section-rail-near .section-rail span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:hover span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail:focus-within span:not(.section-rail__drag-handle) {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .section-rail a:hover span:not(.section-rail__drag-handle),
  .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  .section-rail a.is-rail-pending span:not(.section-rail__drag-handle),
  .section-rail a.is-rail-previous-active span:not(.section-rail__drag-handle),
  .section-rail a.is-active span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.4);
    background: rgba(5, 13, 17, 0.66);
    color: #78cff0;
  }

  .section-rail a.is-active i,
  .section-rail a.is-rail-pending i,
  .section-rail a.is-rail-previous-active i,
  .section-rail a:hover i,
  .section-rail a:focus-visible i {
    width: 11px !important;
    height: 11px !important;
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(5, 7, 10, 0.58),
      0 0 24px rgba(120, 207, 240, 0.72);
  }

  body.show-section-rail .section-rail a.is-active::before {
    width: 0;
    opacity: 0;
  }

  body.show-section-rail .section-rail a.is-active span:not(.section-rail__drag-handle) {
    opacity: 0;
    transform: translate(8px, -50%);
  }

  body.show-section-rail.is-section-rail-near .section-rail a.is-active::before,
  body.show-section-rail .section-rail a.is-active:hover::before,
  body.show-section-rail .section-rail a.is-active:focus-visible::before {
    width: 54px;
    opacity: 0.78;
  }

  body.show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail a.is-active:hover span:not(.section-rail__drag-handle),
  body.show-section-rail .section-rail a.is-active:focus-visible span:not(.section-rail__drag-handle) {
    opacity: 1;
    transform: translate(0, -50%);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a {
    color: rgba(61, 75, 80, 0.74);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail i {
    width: 8px !important;
    height: 8px !important;
    border: 0;
    background: #829193;
    opacity: 1;
    box-shadow: none;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a::before {
    background: rgba(86, 103, 107, 0.46);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail.is-section-rail-near .section-rail a::before,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail .section-rail:hover a::before,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail .section-rail:focus-within a::before {
    opacity: 0.54;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:hover::before,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:focus-visible::before,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active::before,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail.is-section-rail-near .section-rail a.is-active::before {
    opacity: 0.74;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    border-color: rgba(118, 135, 139, 0.22);
    background: rgba(245, 248, 246, 0.72);
    color: rgba(93, 108, 112, 0.64);
    box-shadow: 0 10px 30px rgba(102, 118, 120, 0.1);
    backdrop-filter: blur(8px);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:hover,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:focus-visible,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active {
    color: #2d9fca;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:hover span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(45, 159, 202, 0.42);
    background: rgba(240, 250, 254, 0.84);
    color: #247fa2;
    box-shadow: 0 12px 32px rgba(45, 159, 202, 0.14);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active i,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:hover i,
  body:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:focus-visible i {
    width: 11px !important;
    height: 11px !important;
    border: 0;
    background: #59c7e8;
    opacity: 1;
    box-shadow: 0 0 16px rgba(31, 139, 183, 0.34);
  }

  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a {
    color: rgba(174, 187, 190, 0.62);
  }

  body:has(.section-rail a[href="#schedule"].is-active).show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.24) !important;
    background: rgba(5, 13, 17, 0.72) !important;
    color: rgba(218, 226, 226, 0.72) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(10px);
  }

  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:hover,
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:focus-visible,
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active {
    color: #78cff0;
  }

  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:hover span:not(.section-rail__drag-handle),
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active span:not(.section-rail__drag-handle),
  body:has(.section-rail a[href="#schedule"].is-active).show-section-rail.is-section-rail-near .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.42) !important;
    background: rgba(5, 16, 22, 0.86) !important;
    color: #78cff0 !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34) !important;
  }

  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active i,
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:hover i,
  body:has(.section-rail a[href="#schedule"].is-active) .section-rail a:focus-visible i {
    border-color: rgba(247, 247, 242, 0.18);
    background: #78cff0;
    box-shadow:
      0 0 0 1px rgba(5, 7, 10, 0.58),
      0 0 24px rgba(120, 207, 240, 0.62);
  }

  body.copy-edit-mode .section-rail,
  body.copy-edit-mode.show-section-rail .section-rail,
  body.copy-edit-mode.show-section-rail.is-section-rail-near .section-rail {
    width: clamp(180px, 16vw, 228px) !important;
    padding: 10px 8px 10px 12px !important;
    border: 1px solid rgba(120, 207, 240, 0.26) !important;
    background: rgba(5, 7, 10, 0.86) !important;
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(12px) !important;
  }

  body.copy-edit-mode .section-rail a {
    display: grid !important;
    width: 100%;
    grid-template-columns: 18px minmax(0, 1fr) 11px;
    gap: 8px !important;
    min-height: 28px !important;
  }

  body.copy-edit-mode .section-rail span:not(.section-rail__drag-handle) {
    position: static;
    max-width: none !important;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    text-align: left;
    transform: none;
    backdrop-filter: none;
  }

  body.copy-edit-mode .section-rail a::before {
    display: none;
  }

  body.show-section-rail.is-section-rail-near .section-rail,
  body.show-section-rail .section-rail:hover,
  body.show-section-rail .section-rail:focus-within {
    width: 34px !important;
  }

  body.show-section-rail.is-section-rail-near .section-rail a,
  body.show-section-rail .section-rail:hover a,
  body.show-section-rail .section-rail:focus-within a {
    width: 34px !important;
  }

  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail i {
    width: 8px !important;
    height: 8px !important;
    border: 0 !important;
    background: #829193 !important;
    opacity: 1 !important;
    box-shadow: none !important;
  }

  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a::before {
    background: rgba(86, 103, 107, 0.46) !important;
  }

  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active i,
  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:hover i,
  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a:focus-visible i {
    width: 11px !important;
    height: 11px !important;
    border: 0 !important;
    background: #59c7e8 !important;
    opacity: 1 !important;
    box-shadow: 0 0 16px rgba(31, 139, 183, 0.34) !important;
  }

  body:not(.copy-edit-mode).show-section-rail .section-rail a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -2px;
    z-index: 1;
    width: min(262px, calc(100vw - 32px));
    height: max(100%, 31px);
    transform: translateY(-50%);
    pointer-events: none;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-near .section-rail a::after,
  body:not(.copy-edit-mode).show-section-rail .section-rail:hover a::after,
  body:not(.copy-edit-mode).show-section-rail .section-rail:focus-within a::after {
    pointer-events: auto;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-near .section-rail span:not(.section-rail__drag-handle),
  body:not(.copy-edit-mode).show-section-rail .section-rail:hover span:not(.section-rail__drag-handle),
  body:not(.copy-edit-mode).show-section-rail .section-rail:focus-within span:not(.section-rail__drag-handle) {
    pointer-events: auto;
  }
}

/* Rendered readability guard: keep meaningful controls and body copy above microtext size. */
.audience-tab span {
  font-size: clamp(11px, 0.72vw, 12px);
  line-height: 1.18;
}

.audience-tab b {
  font-size: clamp(13px, 0.88vw, 14px);
  line-height: 1.16;
}

.header-enroll__cta {
  font-size: clamp(12px, 0.82vw, 13px);
  line-height: 1.16;
  font-weight: 600;
}

.hero-copy .eyebrow {
  font-size: clamp(12px, 1vw, 17px);
  line-height: 1.3;
  font-weight: 560;
}

.hero-secondary,
.hero-focus-note {
  font-size: clamp(14px, 1.04vw, 16px);
  line-height: 1.46;
  font-weight: 430;
}

.hero-focus-label {
  line-height: 1.16;
}

.door-card span {
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.16;
  font-weight: 650;
  text-transform: none;
}

.door-card b,
.door-card b span {
  font-size: clamp(12px, 0.82vw, 13px);
  line-height: 1.22;
  font-weight: 560;
}

.route-card span,
.program-details summary span,
.program-week-card__meta,
.program-week-card__artifact {
  font-size: clamp(12px, 0.82vw, 13px);
  line-height: 1.28;
  font-weight: 580;
  text-transform: none;
}

.route-card p,
.program-week-card__intro > p:not(.program-week-card__meta) {
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.56;
  font-weight: 430;
}

.case-filter-button,
.case-person-copy small,
.case-row-label,
.case-row-effect small,
.case-role-pill,
.case-tech,
.case-story-open {
  font-size: clamp(12px, 0.82vw, 13px);
  line-height: 1.25;
  font-weight: 560;
  text-transform: none;
}

.schedule-header p,
.schedule-plan-note,
.schedule-role-note,
.schedule-note {
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.48;
  font-weight: 430;
}

.tile-code {
  font-size: clamp(11px, 0.78vw, 12px);
  line-height: 1.15;
  font-weight: 650;
  text-transform: none;
}

#speakers .speakers-leads .speaker-role,
#speakers .speakers-leads .speaker-links,
#speakers .speakers-leads .speaker-links a {
  font-size: clamp(12px, 0.84vw, 13px);
  line-height: 1.35;
  font-weight: 400;
}

#speakers .speakers-leads .speaker-card > .speaker-bio {
  font-size: clamp(15px, 1vw, 16px);
  line-height: 1.58;
  font-weight: 400;
}

#speakers .speaker-mini-body p,
#speakers .speaker-mini-body .speaker-links,
#speakers .speaker-mini-body .speaker-links a {
  font-size: clamp(12px, 0.82vw, 13px);
  line-height: 1.35;
  font-weight: 560;
}

.testimonials-disclaimer,
.testimonial-featured-role,
.testimonial-quote-author {
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.45;
  font-weight: 460;
}

.testimonial-full summary {
  font-size: clamp(12.5px, 0.86vw, 14px);
  line-height: 1.25;
  font-weight: 520;
}

@media (max-width: 620px) {
  .audience-tab span {
    font-size: 10.5px;
    line-height: 1.18;
  }

  .audience-tab b {
    font-size: 12px;
    line-height: 1.18;
  }

  .hero-copy .eyebrow {
    font-size: 12px;
    line-height: 1.3;
  }

  .door-card span {
    font-size: 12px;
    line-height: 1.18;
  }

  .door-card b,
  .door-card b span {
    font-size: 12px;
    line-height: 1.22;
  }

  .program-facts dt,
  .program-facts small {
    font-size: 11px;
    line-height: 1.12;
  }
}

/* Rendered readability guard: final specificity pass over legacy responsive overrides. */
.site-header .audience-tab span {
  font-size: 11px !important;
  line-height: 1.18 !important;
}

.site-header .audience-tab b {
  font-size: 12.5px !important;
  line-height: 1.18 !important;
}

.site-header .header-enroll__cta {
  font-size: 12px !important;
  line-height: 1.18 !important;
}

#hero .hero-secondary,
#hero .hero-focus-note {
  font-size: 14px !important;
  line-height: 1.46 !important;
  font-weight: 430 !important;
}

#route .route-card span,
#route .program-details summary span,
#route .program-week-card__meta,
#route .program-week-card__label,
#route .program-week-card__artifact {
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 560 !important;
  text-transform: none !important;
}

#route .route-card p,
#route .program-week-card p:not(.program-week-card__meta):not(.program-week-card__label):not(.program-week-card__artifact) {
  font-size: 14px !important;
  line-height: 1.56 !important;
  font-weight: 430 !important;
}

#outcomes .outcome-sphere span {
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 580 !important;
  text-transform: none !important;
}

#outcomes .outcome-panel__copy,
#alumni .alumni-proof-note span,
#pricing .pricing-card__microcopy,
#support-depth .support-benefit-card p,
#schedule .schedule-header p,
#schedule .schedule-plan-note,
#schedule .schedule-role-note,
#schedule .schedule-note,
#testimonials .testimonials-disclaimer,
#testimonials .testimonial-featured-role,
#testimonials .testimonial-quote-author {
  font-size: 14px !important;
  line-height: 1.46 !important;
  font-weight: 430 !important;
}

#speakers .speaker-mini-body p,
#speakers .speaker-mini-body .speaker-links,
#speakers .speaker-mini-body .speaker-links a {
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 520 !important;
  text-transform: none !important;
}

#adaptive-lab .adaptive-lab-index__item,
#adaptive-lab .adaptive-lab-index__item span,
#adaptive-lab .adaptive-lab-index__item strong,
#adaptive-lab .support-tag-cloud span {
  font-size: 12px !important;
  line-height: 1.35 !important;
}

#footer .aim-footer__group p {
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 430 !important;
  text-transform: none !important;
}

/* Footer lock: keep the AI Mindset lockup contained and readable. */
#footer.aim-footer {
  min-height: clamp(430px, 50vh, 610px);
  padding-top: clamp(82px, 10vh, 124px);
  padding-bottom: clamp(38px, 5vh, 62px);
  isolation: isolate;
}

#footer .aim-footer__ghost {
  left: 50%;
  right: auto;
  bottom: clamp(106px, 17vh, 178px);
  width: max-content;
  max-width: none;
  color: rgba(255, 255, 255, 0.032);
  font-size: clamp(96px, 15vw, 210px);
  line-height: 0.78;
  letter-spacing: -0.055em;
  transform: translateX(-50%);
}

#footer .aim-footer__shell {
  align-items: start;
}

#footer .aim-footer__brand {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(30px, 3.85vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  white-space: normal;
}

#footer .aim-footer__bottom {
  margin-top: clamp(86px, 12vh, 142px);
  line-height: 1;
  letter-spacing: 0.34em;
}

#footer .aim-footer__bottom span {
  font-size: 10px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 760px) {
  #footer.aim-footer {
    min-height: 420px;
    padding-top: 64px;
    padding-bottom: 30px;
  }

  #footer .aim-footer__ghost {
    bottom: 112px;
    font-size: clamp(74px, 24vw, 118px);
    color: rgba(255, 255, 255, 0.028);
  }

  #footer .aim-footer__brand {
    max-width: 10ch;
    font-size: clamp(32px, 11vw, 48px);
  }

  #footer .aim-footer__bottom {
    margin-top: 54px;
    align-items: flex-start;
  }

  #footer .aim-footer__bottom span {
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 620px) {
  .site-header .audience-tab span {
    font-size: 11px !important;
  }

  .site-header .audience-tab b,
  .site-header .header-enroll__cta {
    font-size: 12px !important;
  }

  #hero .hero-secondary,
  #hero .hero-focus-note,
  #outcomes .outcome-panel__copy,
  #alumni .alumni-proof-note span,
  #pricing .pricing-card__microcopy,
  #support-depth .support-benefit-card p,
  #schedule .schedule-header p,
  #schedule .schedule-plan-note,
  #schedule .schedule-role-note,
  #schedule .schedule-note,
  #testimonials .testimonials-disclaimer,
  #testimonials .testimonial-featured-role,
  #testimonials .testimonial-quote-author {
    font-size: 14px !important;
    line-height: 1.46 !important;
  }
}

@media (min-width: 761px) {
  section[id],
  footer[id] {
    scroll-margin-top: 118px;
  }
}

/* Header dropdown arrow is literal button text; avoid a separate glyph box. */
.site-header .nav-dropdown > button::before,
.nav-dropdown > button::before {
  content: none;
  display: none;
}

/* Header type system recovery: one compact mono language across the whole strip. */
.site-header {
  --header-type-size: clamp(12px, 0.78vw, 13px);
  --header-type-weight: 500;
  --header-type-tracking: 0.02em;
  --header-role-number-color: rgba(154, 195, 255, 0.95);
  --header-role-label-color: rgba(247, 247, 242, 0.72);
}

.site-header .site-brand,
.site-header .site-brand span,
.site-header .audience-tab span,
.site-header .audience-tab b,
.site-header .top-nav,
.site-header .top-nav > a,
.site-header .nav-dropdown > button,
.site-header .nav-dropdown__panel a,
.site-header .nav-dropdown__panel span,
.site-header .header-enroll,
.site-header .header-enroll__status,
.site-header .header-enroll__status span,
.site-header .header-enroll__cta {
  font-family: var(--mono) !important;
  text-transform: none !important;
  letter-spacing: var(--header-type-tracking) !important;
}

.site-header .audience-tab span,
.site-header .audience-tab b,
.site-header .top-nav,
.site-header .top-nav > a,
.site-header .nav-dropdown > button,
.site-header .nav-dropdown__panel a,
.site-header .nav-dropdown__panel span,
.site-header .header-enroll__status,
.site-header .header-enroll__status span,
.site-header .header-enroll__cta {
  font-size: var(--header-type-size) !important;
  line-height: 1.15 !important;
  font-weight: var(--header-type-weight) !important;
}

.site-header .nav-dropdown > button {
  gap: 0.18em;
}

.site-header .site-brand span {
  font-size: clamp(13px, 0.84vw, 14px) !important;
  line-height: 1 !important;
  font-weight: var(--header-type-weight) !important;
  letter-spacing: 0.01em !important;
}

.site-header .site-brand,
.site-header .site-brand span {
  font-family: var(--font-brand-lockup) !important;
}

.site-header .site-brand span {
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.site-header .audience-tab span {
  color: var(--header-role-number-color) !important;
}

.site-header .audience-tab b {
  color: var(--header-role-label-color) !important;
}

.site-header .audience-tab.is-active b,
.site-header .audience-tab:hover b,
.site-header .audience-tab:focus-visible b {
  color: rgba(247, 247, 242, 0.9) !important;
}

.site-header .header-enroll__status {
  color: rgba(247, 247, 242, 0.84) !important;
  white-space: nowrap;
}

.site-header .header-enroll__cta {
  min-height: 36px;
  padding-inline: clamp(16px, 1.28vw, 22px);
  color: var(--button-ink) !important;
}

.hero-copy .eyebrow {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-weight: 500 !important;
}

.hero-mobile-visual {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    --header-type-size: 12px;
  }

  .site-header .site-brand span {
    font-size: 13px !important;
  }
}

/* Mobile hero recovery: one control stack, stable role switching, readable visual-first composition. */
@media (max-width: 760px) {
  .site-header {
    min-height: 52px !important;
    padding: 8px 10px !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .site-header .site-brand {
    flex: 0 0 auto;
  }

  .site-header .site-brand img {
    width: 24px !important;
    height: 24px !important;
  }

  .site-header .header-enroll {
    flex: 0 0 auto !important;
    margin-left: auto;
  }

  .site-header .header-enroll__cta {
    min-height: 36px !important;
    padding-inline: 16px !important;
    font-size: 12px !important;
  }

  .mobile-menu-toggle {
    flex: 0 0 auto;
    width: 36px !important;
    height: 36px !important;
  }

  .site-header .audience-tabs {
    display: grid !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    left: 10px;
    order: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: none !important;
    width: auto;
    max-width: none;
    gap: 5px;
    padding: 7px;
    border: 1px solid rgba(126, 207, 242, 0.24);
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.97), rgba(5, 7, 10, 0.92));
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.46),
      inset 0 1px 0 rgba(247, 247, 242, 0.055);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, -6px, 0);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 0s linear 160ms;
    will-change: opacity, transform;
    isolation: isolate;
  }

  body.is-mobile-role-tabs-stuck .site-header .audience-tabs {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .site-header .audience-tab {
    min-height: 36px !important;
    padding: 5px 6px !important;
  }

  .site-header .audience-tab span,
  .site-header .audience-tab b {
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .hero-shell {
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero {
    display: block !important;
    min-height: auto !important;
    padding: 74px 18px 28px !important;
    overflow: hidden !important;
  }

  body[data-audience] .hero-copy,
  .hero-copy {
    display: block !important;
    width: 100% !important;
    padding-top: 0 !important;
  }

  body[data-audience] .hero-title-stack,
  .hero-title-stack {
    display: block !important;
    min-height: clamp(150px, 48vw, 188px) !important;
    height: clamp(150px, 48vw, 188px) !important;
    width: 100% !important;
  }

  .eyebrow {
    max-width: 32ch;
    margin: 0 0 12px !important;
    color: rgba(247, 247, 242, 0.72);
    font-size: 11px !important;
    line-height: 1.28 !important;
    letter-spacing: 0.01em !important;
    overflow-wrap: normal !important;
    text-transform: none !important;
  }

  body[data-audience] h1,
  .hero-title-fallback {
    width: 100% !important;
    max-width: 10.4ch !important;
    min-height: 1.88em !important;
    color: var(--ink) !important;
    font-size: clamp(44px, 12.8vw, 54px) !important;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  .hero-title-fallback [data-role-title-line],
  .hero-title-fallback span {
    max-width: 100% !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-shadow: none !important;
    transform: none !important;
  }

  .hero-secondary {
    max-width: 33ch !important;
    min-height: 5.5em !important;
    margin: 12px 0 0 !important;
    color: rgba(247, 247, 242, 0.72);
    font-size: 14.5px !important;
    line-height: 1.38 !important;
    overflow-wrap: normal !important;
  }

  .hero-focus-layout {
    margin-top: 0 !important;
  }

  .hero-focus-intro {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }

  .hero-focus-label {
    color: rgba(247, 247, 242, 0.88);
    font-size: 16px !important;
    line-height: 1.12 !important;
  }

  .hero-focus-layout .door-switch,
  .door-switch {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 112px !important;
    margin-top: 10px !important;
    overflow: visible !important;
  }

  .door-card {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    min-height: 112px !important;
    padding: 10px 8px !important;
    overflow: hidden !important;
  }

  .door-card > span {
    min-height: 1.2em;
    color: rgba(247, 247, 242, 0.58);
    font-size: 11.5px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  .door-card b {
    min-height: 4.6em;
    margin-top: 8px !important;
    font-size: clamp(12px, 3.15vw, 13px) !important;
    line-height: 1.14 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .program-facts {
    margin-top: clamp(58px, 11vh, 94px) !important;
  }
}

@media (max-width: 380px) {
  body[data-audience] h1,
  .hero-title-fallback {
    font-size: clamp(40px, 12.2vw, 48px) !important;
  }

  .hero-secondary {
    font-size: 13.5px !important;
  }

  .door-card {
    padding-inline: 7px !important;
  }

  .door-card > span {
    font-size: 11px !important;
  }
}

/* Section label system: one pre-heading style, with theme-aware color only. */
.section-kicker,
.route-head .section-kicker,
.case-library-head .section-kicker,
.schedule-header .section-kicker,
#support-depth .support-depth-head--compact .section-kicker,
#speakers .guest-speakers__label,
#testimonials .testimonials-disclaimer,
.final-cta-kicker,
.section-kicker--alumni {
  display: block;
  width: fit-content;
  max-width: min(100%, 64ch);
  margin: 0 0 clamp(14px, 1.8vw, 22px) !important;
  color: var(--section-kicker-color, #78cff0) !important;
  font-family: var(--mono) !important;
  font-size: clamp(12px, 0.86vw, 14px) !important;
  line-height: 1.12 !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-align: left !important;
  text-transform: lowercase !important;
}

#pricing,
#testimonials,
#faq {
  --section-kicker-color: #0b4f61;
}

#case-library,
#support-depth,
#schedule,
#final-cta,
#speakers,
#route,
#outcomes,
#alumni {
  --section-kicker-color: #78cff0;
}

#testimonials .testimonials-disclaimer {
  text-transform: lowercase !important;
}

#schedule .schedule-header p.section-kicker {
  font-size: clamp(12px, 0.86vw, 14px) !important;
  line-height: 1.12 !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: lowercase !important;
}

@media (min-width: 761px) {
  .schedule-shell,
  .final-cta-shell {
    width: min(100%, 1120px);
    max-width: min(1120px, calc(100vw - clamp(96px, 11vw, 176px)));
    margin-inline: auto;
  }

  .schedule-shell {
    padding-right: 0;
  }

  .schedule-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  }

@media (max-width: 760px) {
  .section-kicker,
  .route-head .section-kicker,
  .case-library-head .section-kicker,
  .schedule-header .section-kicker,
  #support-depth .support-depth-head--compact .section-kicker,
  #speakers .guest-speakers__label,
  #testimonials .testimonials-disclaimer,
  .final-cta-kicker,
  .section-kicker--alumni {
    max-width: 100%;
    margin-bottom: 12px !important;
    font-size: 12px !important;
    line-height: 1.16 !important;
    letter-spacing: 0.05em !important;
  }
}

/* Section label alignment: keep pre-heading labels on one optical column. */
:root {
  --section-shell-width: min(1480px, calc(100vw - 144px));
  --section-shell-width-mobile: calc(100vw - 36px);
}

@media (min-width: 761px) {
  #speakers .speakers-shell,
  #route .route-shell,
  #outcomes .outcomes-shell,
  #alumni .alumni-shell,
  #case-library .case-library-shell,
  #pricing .pricing-shell,
  #testimonials .testimonials-shell,
  #schedule .schedule-shell,
  #faq .faq-shell,
  #final-cta .final-cta-shell,
  #support-depth .support-depth-head--compact {
    width: var(--section-shell-width) !important;
    max-width: var(--section-shell-width) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 1600px) {
  #route .route-shell,
  #case-library .case-library-shell {
    position: relative;
    left: clamp(0px, calc((100vw - 1280px) * 0.036), 28px);
  }
}

@media (max-width: 760px) {
  #speakers .speakers-shell,
  #route .route-shell,
  #outcomes .outcomes-shell,
  #alumni .alumni-shell,
  #case-library .case-library-shell,
  #pricing .pricing-shell,
  #testimonials .testimonials-shell,
  #schedule .schedule-shell,
  #faq .faq-shell,
  #final-cta .final-cta-shell,
  #support-depth .support-depth-head--compact {
    width: var(--section-shell-width-mobile) !important;
    max-width: var(--section-shell-width-mobile) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: 0 !important;
  }

  #schedule .schedule-shell {
    position: relative;
    left: -4px;
  }

  #schedule .schedule-note {
    display: block !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

/* Testimonials open-state recovery: photo appears in the existing meta slot; identity and logos do not move. */
#testimonials .testimonial-meta-photo {
  display: none;
  width: 46px;
  height: 46px;
  align-self: start;
}

#testimonials .testimonial-meta-photo img {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(55, 140, 190, 0.24);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.92) contrast(1.04);
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta:has(.testimonial-meta-photo) {
  grid-template-columns: 46px minmax(0, 1fr) !important;
  gap: 4px 10px !important;
  align-items: center;
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta:has(.testimonial-meta-photo) .testimonial-meta-photo {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 2;
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta:has(.testimonial-meta-photo) .testimonial-quote-author {
  grid-column: 2;
  grid-row: 1;
}

#testimonials .testimonial-quote-line:has(.testimonial-full--line[open]) > .testimonial-quote-meta:has(.testimonial-meta-photo) .testimonial-visible-company-list {
  grid-column: 2;
  grid-row: 2;
}

#testimonials .testimonial-visible-company-list img[alt="Альфа-Капитал"] {
  width: 126px !important;
}

#testimonials .testimonial-full--line .testimonial-open-profile,
#testimonials .testimonial-full--line .testimonial-open-identity {
  display: none !important;
}

@media (max-width: 900px) {
  #testimonials .testimonial-visible-company-list img[alt="Альфа-Капитал"] {
    width: 112px !important;
  }
}

/* Alumni mobile recovery: keep real logo assets visible in light baseline, then reveal their native colors by scroll group. */
@media (max-width: 760px) {
  #alumni .alumni-logo img,
  #alumni .alumni-logo__image {
    opacity: 0.94 !important;
    filter: brightness(0) invert(1) saturate(0) contrast(1.24) drop-shadow(0 0 13px rgba(244, 251, 255, 0.4)) !important;
    transform: none !important;
    transition: none !important;
  }

  #alumni .alumni-logo--mts img,
  #alumni .alumni-logo--mts .alumni-logo__image,
  #alumni .alumni-logo--moex img,
  #alumni .alumni-logo--moex .alumni-logo__image {
    filter: grayscale(1) brightness(1.92) contrast(1.14) drop-shadow(0 0 13px rgba(244, 251, 255, 0.38)) !important;
  }

  #alumni .alumni-logo--moex {
    --mobile-logo-width: 88%;
  }

  #alumni .alumni-logo.is-scroll-active img,
  #alumni .alumni-logo.is-scroll-active .alumni-logo__image {
    opacity: 1 !important;
    filter: none !important;
    transform: translate3d(0, -1px, 0) !important;
  }

  #alumni .alumni-logo.is-scroll-active::before,
  #alumni .alumni-logo::after {
    content: none !important;
    display: none !important;
  }
}

/* Alumni desktop logo states: default is monochrome; native brand color appears only on hover/near. */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  #alumni .alumni-logo::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: -52px -82px;
    background: transparent;
  }

  #alumni .alumni-logo img,
  #alumni .alumni-logo__image {
    opacity: 0.78 !important;
    filter: brightness(0) invert(1) saturate(0) contrast(1.16) drop-shadow(0 0 10px rgba(244, 251, 255, 0.28)) !important;
    pointer-events: none;
    transition-duration: 110ms !important;
    transform: translate3d(0, 0, 0) !important;
  }

  #alumni .alumni-logo--mts img,
  #alumni .alumni-logo--mts .alumni-logo__image {
    opacity: 0.76 !important;
    filter: grayscale(1) saturate(0) brightness(1.16) contrast(1.08) drop-shadow(0 0 10px rgba(244, 251, 255, 0.24)) !important;
  }

  #alumni .alumni-logo:hover img,
  #alumni .alumni-logo:hover .alumni-logo__image,
  #alumni .alumni-logo:focus-visible img,
  #alumni .alumni-logo:focus-visible .alumni-logo__image,
  #alumni .alumni-logo.is-logo-near img,
  #alumni .alumni-logo.is-logo-near .alumni-logo__image {
    opacity: 1 !important;
    filter: var(--logo-hover-filter, saturate(1.08) contrast(1.04) drop-shadow(0 0 12px rgba(120, 207, 240, 0.34))) !important;
    transform: translate3d(0, -1px, 0) !important;
  }

  #alumni .alumni-logo--nebius:hover img,
  #alumni .alumni-logo--nebius:hover .alumni-logo__image,
  #alumni .alumni-logo--nebius:focus-visible img,
  #alumni .alumni-logo--nebius:focus-visible .alumni-logo__image,
  #alumni .alumni-logo--nebius.is-logo-near img,
  #alumni .alumni-logo--nebius.is-logo-near .alumni-logo__image {
    filter: brightness(1.18) contrast(1.08) drop-shadow(0 0 16px rgba(120, 207, 240, 0.46)) !important;
  }

  }

/* Alumni dark gray treatment: muted monochrome baseline, native brand color only on interaction. */
#alumni.alumni-block {
  border-top-color: rgba(183, 201, 212, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.035), transparent 38%),
    linear-gradient(180deg, #111820, #151f28) !important;
}

#alumni.alumni-block::before {
  background:
    repeating-linear-gradient(0deg, rgba(224, 234, 240, 0.032) 0 1px, transparent 1px 5px) !important;
  opacity: 0.44 !important;
}

#alumni .section-kicker--alumni {
  color: rgba(232, 239, 243, 0.62) !important;
}

#alumni .alumni-proof-note {
  color: rgba(232, 239, 243, 0.42) !important;
}

#alumni .alumni-proof-note strong {
  color: #f1f5f7 !important;
}

#alumni .alumni-proof-note span {
  color: rgba(241, 245, 247, 0.64) !important;
}

#alumni .alumni-marquee {
  border-block-color: rgba(224, 234, 240, 0.14) !important;
  background: rgba(224, 234, 240, 0.055) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 60px rgba(0, 0, 0, 0.22) !important;
}

#alumni .alumni-logo::before,
#alumni .alumni-logo::after {
  content: none !important;
  display: none !important;
}

#alumni .alumni-logo img,
#alumni .alumni-logo .alumni-logo__image {
  opacity: 0.58 !important;
  filter: grayscale(1) invert(1) brightness(1.05) contrast(0.74) !important;
  pointer-events: none;
  transform: none !important;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease !important;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  #alumni .alumni-logo:hover img,
  #alumni .alumni-logo:hover .alumni-logo__image,
  #alumni .alumni-logo:focus-visible img,
  #alumni .alumni-logo:focus-visible .alumni-logo__image,
  #alumni .alumni-logo.is-logo-near img,
  #alumni .alumni-logo.is-logo-near .alumni-logo__image {
    opacity: 1 !important;
    filter: none !important;
    transform: translate3d(0, -1px, 0) !important;
  }
}

@media (max-width: 760px) {
  #alumni .alumni-logo.is-scroll-active img,
  #alumni .alumni-logo.is-scroll-active .alumni-logo__image {
    opacity: 0.58 !important;
    filter: grayscale(1) invert(1) brightness(1.05) contrast(0.74) !important;
    transform: none !important;
  }
}

/* Nebius has no usable light mark in this strip; lift it optically on the dark alumni rail. */
#alumni .alumni-logo--nebius img,
#alumni .alumni-logo--nebius .alumni-logo__image,
#alumni .alumni-logo--nebius.is-scroll-active img,
#alumni .alumni-logo--nebius.is-scroll-active .alumni-logo__image {
  opacity: 0.94 !important;
  filter: brightness(0) invert(1) saturate(0.45) sepia(0.2) hue-rotate(168deg) brightness(1.18) contrast(1.08)
    drop-shadow(0 0 13px rgba(120, 207, 240, 0.44)) !important;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  #alumni .alumni-logo--nebius:hover img,
  #alumni .alumni-logo--nebius:hover .alumni-logo__image,
  #alumni .alumni-logo--nebius:focus-visible img,
  #alumni .alumni-logo--nebius:focus-visible .alumni-logo__image,
  #alumni .alumni-logo--nebius.is-logo-near img,
  #alumni .alumni-logo--nebius.is-logo-near .alumni-logo__image {
    opacity: 1 !important;
    filter: brightness(0) invert(1) saturate(0.55) sepia(0.24) hue-rotate(168deg) brightness(1.28) contrast(1.12)
      drop-shadow(0 0 16px rgba(120, 207, 240, 0.56)) !important;
  }
}

/* Source-logo fidelity: Alfa Capital and Semrush on-dark assets must not be recolored by global logo filters. */
#alumni .alumni-logo--alfa-capital img,
#alumni .alumni-logo--alfa-capital .alumni-logo__image,
#alumni .alumni-logo--alfa-capital:hover img,
#alumni .alumni-logo--alfa-capital:hover .alumni-logo__image,
#alumni .alumni-logo--alfa-capital:focus-visible img,
#alumni .alumni-logo--alfa-capital:focus-visible .alumni-logo__image,
#alumni .alumni-logo--alfa-capital.is-logo-near img,
#alumni .alumni-logo--alfa-capital.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--alfa-capital.is-scroll-active img,
#alumni .alumni-logo--alfa-capital.is-scroll-active .alumni-logo__image,
#alumni .alumni-logo--semrush img,
#alumni .alumni-logo--semrush .alumni-logo__image,
#alumni .alumni-logo--semrush:hover img,
#alumni .alumni-logo--semrush:hover .alumni-logo__image,
#alumni .alumni-logo--semrush:focus-visible img,
#alumni .alumni-logo--semrush:focus-visible .alumni-logo__image,
#alumni .alumni-logo--semrush.is-logo-near img,
#alumni .alumni-logo--semrush.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--semrush.is-scroll-active img,
#alumni .alumni-logo--semrush.is-scroll-active .alumni-logo__image {
  opacity: 1 !important;
  filter: none !important;
}

/* Final speakers width recovery: undo the accidental full-page speaker measure. */
@media (min-width: 761px) {
  #speakers .speakers-shell {
    width: min(1320px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
    max-width: min(1320px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
    padding-right: clamp(92px, 8vw, 142px) !important;
  }
}

/* Final notebook speaker cap: restore the pre-regression 960px measure. */
@media (min-width: 1121px) and (max-width: 1600px) {
  #speakers .speakers-shell {
    width: 960px !important;
    max-width: 960px !important;
  }
}

/* Final guest speaker grouping: the label belongs to the guest grid, not the previous block. */

#speakers .speaker-mini-grid--curators .speaker-mini-body p {
  font-weight: 400 !important;
  font-style: italic;
  letter-spacing: 0;
}

.audience-tab b,
.door-card > span,
.door-card > b {
  overflow-wrap: anywhere;
  white-space: normal;
}

.audience-tab b {
  line-height: 1.08;
}

.door-card span {
  line-height: 1.16;
}

@media (min-width: 761px) {
  .audience-tabs {
    flex-basis: clamp(430px, 35vw, 560px);
    max-width: 560px;
  }
}

/* Final recordings control recovery: compact, right-aligned, and visually attached to recordings. */
#speakers .guest-speakers {
  margin-top: clamp(118px, 14vh, 172px) !important;
}

#speakers .speaker-mini-grid--recordings {
  margin-top: clamp(22px, 3vh, 32px) !important;
}

#speakers .speaker-more--recordings {
  display: grid;
  justify-items: end;
  width: 100%;
  margin: clamp(32px, 4.4vh, 52px) 0 0 !important;
  padding: 0;
  border: 0 !important;
}

#speakers .speaker-more--recordings summary {
  justify-self: end;
  width: auto;
  min-width: 0;
  min-height: 34px !important;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(120, 207, 240, 0.38);
  color: rgba(120, 207, 240, 0.82) !important;
  font-family: var(--mono);
  font-size: clamp(12px, 0.78vw, 13px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

#speakers .speaker-more--recordings summary span {
  color: currentColor !important;
  font-size: 16px;
  line-height: 1;
}

#speakers .speaker-more--recordings summary:hover,
#speakers .speaker-more--recordings summary:focus-visible {
  border-bottom-color: #78cff0;
  color: #78cff0 !important;
}

#speakers .speaker-more--recordings > .speaker-mini-grid {
  justify-self: stretch;
  width: 100%;
  margin-top: clamp(20px, 2.8vh, 32px);
}

#speakers .curator-team {
  margin-top: clamp(88px, 11vh, 132px) !important;
}

@media (max-width: 760px) {
  #speakers .guest-speakers {
    margin-top: 96px !important;
  }

  #speakers .speaker-more--recordings {
    margin-top: 30px !important;
  }

  #speakers .speaker-more--recordings summary {
    min-height: 40px !important;
    font-size: 13px;
  }

  #speakers .curator-team {
    margin-top: 72px !important;
  }
}

/* Final route typography recovery: keep role-switch stability without inflated mono leading. */
#route .route-head [data-role-text="routeIntro"] {
  min-height: calc(2 * 1.32em) !important;
  margin-top: clamp(10px, 1.2vh, 16px) !important;
  font-family: var(--font-readable) !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.32 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

#route .route-track {
  --route-node-center: calc(clamp(16px, 1.55vw, 24px) + (clamp(42px, 3.5vw, 56px) / 2));
}

@media (min-width: 761px) {
  #route .route-track::before,
  #route .route-track::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: var(--route-node-center);
    top: calc(clamp(22px, 2.05vw, 30px) + (clamp(42px, 3.5vw, 56px) / 2));
    height: 1px;
    pointer-events: none;
  }

  #route .route-track::before {
    right: var(--route-node-center);
    background: rgba(43, 100, 238, 0.2);
  }

  #route .route-track::after {
    width: calc((100% - (var(--route-node-center) * 2)) * var(--route-progress));
    background: rgba(120, 207, 240, 0.68);
    box-shadow: 0 0 16px rgba(120, 207, 240, 0.18);
  }
}

#route .route-card__num {
  font-weight: 700 !important;
  position: relative;
  z-index: 3;
}

#route .route-card {
  min-height: clamp(294px, 18.8vw, 326px) !important;
  padding-top: clamp(20px, 1.9vw, 28px) !important;
  padding-bottom: clamp(18px, 1.75vw, 25px) !important;
}

#route .route-card.is-passed {
  background: rgba(43, 100, 238, 0.075) !important;
  border-color: rgba(43, 100, 238, 0.24) !important;
}

#route .route-card.is-reached .route-card__num {
  border-color: rgba(43, 100, 238, 0.82) !important;
  background: rgba(43, 100, 238, 0.12) !important;
  color: #4b7cff !important;
}

#route .route-card.is-reached h3,
#route .route-card.is-reached > span {
  color: color-mix(in srgb, var(--button-bg), #ffffff 16%) !important;
}

#route .route-card h3 {
  min-height: calc(3 * 1.22em) !important;
  margin-top: clamp(13px, 1.45vw, 19px) !important;
  font-family: var(--font-readable) !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

#route .route-card p {
  min-height: calc(4 * 1.32em) !important;
  margin-top: clamp(4px, 0.44vw, 7px) !important;
  font-family: var(--font-readable) !important;
  font-size: clamp(14px, 0.94vw, 15px) !important;
  line-height: 1.32 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

#route .route-card > span {
  letter-spacing: 0.03em !important;
  font-weight: 600 !important;
}

@media (max-width: 760px) {
  #route .route-head [data-role-text="routeIntro"] {
    min-height: calc(2 * 1.36em) !important;
    margin-top: 8px !important;
    font-size: 14px !important;
    line-height: 1.36 !important;
  }

  #route .route-card p {
    min-height: calc(4 * 1.36em) !important;
    margin-top: 4px !important;
    font-size: 14px !important;
    line-height: 1.36 !important;
  }

  #route .route-card {
    min-height: 198px !important;
  }
}

/* Final hero fact-strip separator cleanup: keep the strip frame, remove the adjacent section line. */
.hero-shell + .agent-company {
  border-top: 0 !important;
}

/* Final adaptive-lab tag cloud cleanup: remove the blue stroke grid, keep only the black panel. */
#adaptive-lab .adaptive-lab-tag-cloud {
  border: 0 !important;
  outline: 0 !important;
  background: #05070a !important;
  box-shadow: none !important;
}

#adaptive-lab .adaptive-lab-tag-cloud span,
#adaptive-lab .adaptive-lab-tag-cloud span:hover,
#adaptive-lab .adaptive-lab-tag-cloud span:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Final adaptive-lab height pass: keep the chosen black panel, make the tag band lower. */
#adaptive-lab .adaptive-lab-tag-cloud span {
  min-height: clamp(30px, 3.3vh, 39px) !important;
  padding-block: 7px !important;
}

@media (max-width: 760px) {
  #adaptive-lab .adaptive-lab-tag-cloud span {
    min-height: 30px !important;
    padding-block: 7px !important;
  }
}

/* Final CTA system pass: similar CTA buttons share one mono weight/tracking. */
.site-header .header-enroll__cta,
.hero-cta,
.record-cta,
.section-cta-strip > a:only-child {
  font-family: var(--mono) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  line-height: 1 !important;
  text-transform: none !important;
}

/* Support-depth CTA: use the compact filled CTA pattern instead of a wide outline slab. */
#support-depth .section-cta-strip {
  align-items: center !important;
  justify-content: center !important;
  margin-top: clamp(70px, 9.1vh, 112px) !important;
  margin-bottom: clamp(72px, 8.5vh, 112px) !important;
}

#support-depth .section-cta-strip > a:only-child {
  width: auto !important;
  margin-inline: auto !important;
  min-width: 220px !important;
  max-width: min(100%, 292px) !important;
  min-height: 52px !important;
  padding: 0 clamp(24px, 2.3vw, 34px) !important;
  border: 1px solid var(--button-border) !important;
  background: var(--button-bg) !important;
  color: var(--button-ink) !important;
  font-size: clamp(13px, 0.82vw, 15px) !important;
  box-shadow: 0 14px 42px var(--cta-glow) !important;
}

#support-depth .section-cta-strip > a:only-child::before {
  content: none !important;
  display: none !important;
}

#support-depth .section-cta-strip > a:only-child:hover,
#support-depth .section-cta-strip > a:only-child:focus-visible {
  background: var(--button-bg-hover) !important;
  color: var(--button-ink) !important;
  box-shadow: 0 18px 56px rgba(255, 184, 93, 0.28) !important;
}

@media (max-width: 760px) {
  #support-depth .section-cta-strip {
    margin-top: 68px !important;
    margin-bottom: 66px !important;
  }

  #support-depth .section-cta-strip > a:only-child {
    width: min(100%, 260px) !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 22px !important;
    font-size: 13px !important;
  }
}

/* Final case hierarchy pass: role is metadata, person/company and case content lead. */
.case-story-card summary {
  grid-template-columns:
    minmax(30px, 0.08fr)
    minmax(220px, 0.66fr)
    minmax(320px, 1.24fr)
    minmax(210px, 0.66fr)
    minmax(120px, 0.28fr)
    minmax(104px, max-content) !important;
}

.case-person-copy {
  gap: 6px !important;
  align-self: center !important;
}

.case-person-copy b {
  font-size: clamp(15px, 1vw, 18px) !important;
  line-height: 1.08 !important;
  font-weight: 750 !important;
}

.case-person-copy small {
  color: rgba(247, 247, 242, 0.74) !important;
  font-size: clamp(13px, 0.88vw, 15px) !important;
  line-height: 1.22 !important;
  font-weight: 650 !important;
}

.case-person-copy .case-role-pill {
  width: fit-content !important;
  max-width: 100% !important;
  margin-top: 2px !important;
  color: color-mix(in srgb, var(--role-accent) 60%, rgba(247, 247, 242, 0.58) 40%) !important;
  font-size: 12.5px !important;
  line-height: 1.18 !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  text-transform: lowercase !important;
}

#case-library .case-person-copy .case-company-link--summary {
  display: inline !important;
  width: fit-content !important;
  max-width: 100% !important;
  color: inherit !important;
  border-bottom-color: rgba(126, 207, 242, 0.32) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.case-story-card summary > .case-role-pill {
  display: none !important;
}

@media (min-width: 1121px) {
  .case-story-card summary .case-role-pill {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .case-story-open {
    grid-column: 6 !important;
    grid-row: 1 / span 2 !important;
  }
}

.case-story-open,
.case-story-card[open] .case-story-open::before {
  font-family: var(--mono) !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
}

.case-story-open {
  width: 86px !important;
  min-height: 32px !important;
  padding: 8px 9px !important;
}

@media (max-width: 1120px) {
  .case-story-card summary {
    grid-template-columns: minmax(30px, auto) minmax(0, 1fr) !important;
  }

  .case-person-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .case-person-copy .case-role-pill {
    display: block !important;
  }

  .case-story-open {
    width: 100% !important;
    min-height: 44px !important;
    padding: 12px 14px !important;
  }
}

/* Final rail proximity pass: reveal near the dots, not on top of case actions. */
@media (hover: hover) and (pointer: fine) {
  body:not(.copy-edit-mode).show-section-rail .section-rail a::after {
    right: -4px !important;
    width: min(148px, calc(100vw - 32px)) !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-navigating .section-rail span:not(.section-rail__drag-handle) {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate(0, -50%) !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-navigating .section-rail a::before {
    width: 46px !important;
    opacity: 0.26 !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-navigating .section-rail a:is(.is-active, .is-rail-pending, .is-rail-previous-active)::before {
    width: 54px !important;
    opacity: 0.78 !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-navigating .section-rail a:is(.is-active, .is-rail-pending, .is-rail-previous-active) span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.4) !important;
    background: rgba(5, 13, 17, 0.66) !important;
    color: #78cff0 !important;
  }

  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail.is-section-rail-navigating .section-rail a:is(.is-active, .is-rail-pending, .is-rail-previous-active) {
    color: #2d9fca !important;
  }

  body:not(.copy-edit-mode):has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active).show-section-rail.is-section-rail-navigating .section-rail a:is(.is-active, .is-rail-pending, .is-rail-previous-active) span:not(.section-rail__drag-handle) {
    border-color: rgba(45, 159, 202, 0.42) !important;
    background: rgba(240, 250, 254, 0.84) !important;
    color: #247fa2 !important;
  }
}

/* Final case hierarchy pass: company outranks service labels. */
.case-row-brief .case-row-label {
  display: none;
}

.case-row-brief {
  gap: 0 !important;
}

.case-person-copy small {
  color: rgba(247, 247, 242, 0.82) !important;
  font-size: clamp(14px, 0.94vw, 16px) !important;
  line-height: 1.16 !important;
  font-weight: 640 !important;
}

/* Final case identity pass: photo replaces low-value case number; detail stops duplicating identity. */
#case-library .case-story-card summary {
  grid-template-columns:
    minmax(56px, 0.14fr)
    minmax(220px, 0.68fr)
    minmax(320px, 1.24fr)
    minmax(210px, 0.66fr)
    minmax(120px, 0.28fr)
    minmax(104px, max-content) !important;
}

#case-library .case-summary-photo {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  justify-self: start !important;
  display: block !important;
  width: clamp(48px, 3.35vw, 62px) !important;
  height: clamp(48px, 3.35vw, 62px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(247, 247, 242, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(247, 247, 242, 0.08) !important;
}

#case-library .case-summary-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#case-library .case-story-detail {
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr) !important;
}

#case-library .case-story-visual {
  grid-row: 1 !important;
}

#case-library .case-story-detail dl {
  grid-row: 1 !important;
}

@media (max-width: 1120px) {
  #case-library .case-story-card summary {
    grid-template-columns: minmax(54px, auto) minmax(0, 1fr) !important;
  }

  #case-library .case-summary-photo {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 48px !important;
    height: 48px !important;
  }

  #case-library .case-person-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
}

@media (max-width: 760px) {
  #case-library .case-story-detail {
    grid-template-columns: 1fr !important;
  }

  #case-library .case-story-visual,
  #case-library .case-story-detail dl {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* FAQ final rhythm pass: compact closed categories, keep controls in one column. */
#faq {
  --faq-control-row-width: clamp(380px, 36vw, 520px);
}

#faq .faq-module {
  grid-column: 1 / -1;
}

#faq .faq-category {
  max-width: min(100%, 920px);
}

#faq .faq-category:first-of-type {
  margin-top: clamp(24px, 2.4vw, 34px);
}

#faq .faq-category + .faq-category {
  margin-top: clamp(16px, 1.9vw, 28px);
}

#faq .faq-category > summary {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: start;
  width: min(100%, var(--faq-control-row-width));
  max-width: 100%;
  min-height: 44px;
  gap: clamp(22px, 2vw, 32px);
  padding-block: clamp(12px, 1vw, 15px);
}

#faq .faq-question-link {
  display: flex;
  justify-content: flex-end;
  width: min(100%, var(--faq-control-row-width));
  max-width: min(100%, var(--faq-control-row-width));
  margin-top: clamp(18px, 2vw, 28px);
  margin-left: 0;
  margin-right: auto;
}

#faq .faq-question-link a {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  min-height: 34px;
  color: #2f66f2;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: right;
}

#faq .faq-question-link a::after {
  content: none;
}

#faq .faq-question-link a:hover,
#faq .faq-question-link a:focus-visible {
  color: #184ed8;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 760px) {
  #faq {
    --faq-control-row-width: min(100%, 306px);
  }

  #faq .faq-category:first-of-type {
    margin-top: 20px;
  }

  #faq .faq-category + .faq-category {
    margin-top: 12px;
  }

  #faq .faq-category > summary {
    width: fit-content;
    min-width: min(100%, var(--faq-control-row-width));
    max-width: 100%;
    padding-block: 12px;
  }

  #faq .faq-question-link {
    justify-content: flex-end;
    width: min(100%, var(--faq-control-row-width));
    max-width: min(100%, var(--faq-control-row-width));
  }

  #faq .faq-question-link a {
    min-width: 0;
    padding-block: 12px;
  }
}

/* Case review pass: opened rows should not draw an extra separator line. */
#case-library .case-story-detail {
  border-top: 0 !important;
}

/* Review-only dark scheme variant: open with ?caseSchemes=dark. */
body.case-schemes-dark-preview #case-library .case-story-visual,
body.case-schemes-dark-preview .case-blueprint-card {
  color: rgba(247, 247, 242, 0.92) !important;
  border-color: color-mix(in srgb, var(--case-card-accent) 34%, rgba(126, 207, 242, 0.2) 66%) !important;
  background:
    radial-gradient(circle at 22% 12%, color-mix(in srgb, var(--case-card-accent) 16%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(3, 8, 11, 0.96), rgba(8, 17, 20, 0.88)) !important;
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(247, 247, 242, 0.08) !important;
}

body.case-schemes-dark-preview #case-library .case-story-visual::before,
body.case-schemes-dark-preview .case-blueprint-card::before {
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.06) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(126, 207, 242, 0.032) 0 1px, transparent 1px 5px) !important;
  opacity: 0.72 !important;
}

body.case-schemes-dark-preview #case-library .case-story-visual::after,
body.case-schemes-dark-preview .case-blueprint-card::after {
  opacity: 0.72 !important;
}

body.case-schemes-dark-preview #case-library .case-blueprint-visual,
body.case-schemes-dark-preview .case-blueprint-visual {
  color: rgba(247, 247, 242, 0.9) !important;
}

body.case-schemes-dark-preview #case-library .case-blueprint-visual text,
body.case-schemes-dark-preview .case-blueprint-visual text,
body.case-schemes-dark-preview .case-service-core text {
  fill: color-mix(in srgb, var(--case-card-accent) 68%, #f7f7f2 32%) !important;
}

body.case-schemes-dark-preview .case-orbit,
body.case-schemes-dark-preview .case-branch-lines path,
body.case-schemes-dark-preview .case-circuit,
body.case-schemes-dark-preview .case-growth-line,
body.case-schemes-dark-preview .case-growth-axis path {
  stroke: color-mix(in srgb, var(--case-card-accent) 70%, rgba(247, 247, 242, 0.22) 30%) !important;
  opacity: 0.78 !important;
}

body.case-schemes-dark-preview .case-growth-shadow {
  stroke: rgba(247, 247, 242, 0.18) !important;
}

body.case-schemes-dark-preview .case-node--center circle,
body.case-schemes-dark-preview .case-mini-nodes circle,
body.case-schemes-dark-preview .case-growth-nodes circle {
  fill: color-mix(in srgb, var(--case-card-accent) 76%, #f7f7f2 24%) !important;
}

body.case-schemes-dark-preview .case-node--center path {
  stroke: rgba(247, 247, 242, 0.9) !important;
}

body.case-schemes-dark-preview .case-service-core rect,
body.case-schemes-dark-preview .case-service-grid rect,
body.case-schemes-dark-preview .case-blueprint-metrics span {
  fill: rgba(3, 10, 13, 0.72) !important;
  background: rgba(3, 10, 13, 0.72) !important;
  border-color: rgba(126, 207, 242, 0.22) !important;
  stroke: color-mix(in srgb, var(--case-card-accent) 64%, rgba(247, 247, 242, 0.18) 36%) !important;
}

body.case-schemes-dark-preview .case-company-link,
body.case-schemes-dark-preview .case-blueprint-link {
  color: color-mix(in srgb, var(--case-card-accent) 76%, #f7f7f2 24%) !important;
  border-color: color-mix(in srgb, var(--case-card-accent) 42%, transparent) !important;
}

/* Case library visual lock: opened case schemes stay on-dark in the main page. */
#case-library .case-story-visual {
  color: rgba(247, 247, 242, 0.92) !important;
  border-color: color-mix(in srgb, var(--case-card-accent) 34%, rgba(126, 207, 242, 0.2) 66%) !important;
  background:
    radial-gradient(circle at 22% 12%, color-mix(in srgb, var(--case-card-accent) 16%, transparent), transparent 38%),
    linear-gradient(135deg, rgba(3, 8, 11, 0.96), rgba(8, 17, 20, 0.88)) !important;
  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(247, 247, 242, 0.08) !important;
}

#case-library .case-story-visual::before {
  background-image:
    linear-gradient(rgba(126, 207, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 242, 0.06) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(126, 207, 242, 0.032) 0 1px, transparent 1px 5px) !important;
  opacity: 0.72 !important;
}

#case-library .case-story-visual::after {
  opacity: 0.72 !important;
}

#case-library .case-story-visual .case-blueprint-visual {
  color: rgba(247, 247, 242, 0.9) !important;
}

#case-library .case-story-visual .case-blueprint-visual text,
#case-library .case-story-visual .case-service-core text {
  fill: color-mix(in srgb, var(--case-card-accent) 56%, #f7f7f2 44%) !important;
}

#case-library .case-story-visual .case-orbit,
#case-library .case-story-visual .case-branch-lines path,
#case-library .case-story-visual .case-circuit,
#case-library .case-story-visual .case-growth-line,
#case-library .case-story-visual .case-growth-axis path {
  stroke: color-mix(in srgb, var(--case-card-accent) 70%, rgba(247, 247, 242, 0.22) 30%) !important;
  opacity: 0.78 !important;
}

#case-library .case-story-visual .case-orbit--wide {
  opacity: 0.44 !important;
}

#case-library .case-story-visual .case-branch-lines path {
  stroke: color-mix(in srgb, var(--case-card-accent) 62%, #f7f7f2 38%) !important;
  stroke-width: 2 !important;
  opacity: 0.72 !important;
}

#case-library .case-story-visual .case-mini-nodes circle {
  stroke: rgba(3, 8, 11, 0.86) !important;
  stroke-width: 2 !important;
}

#case-library .case-story-visual .case-growth-shadow {
  stroke: rgba(247, 247, 242, 0.18) !important;
}

#case-library .case-story-visual .case-node--center circle,
#case-library .case-story-visual .case-mini-nodes circle,
#case-library .case-story-visual .case-growth-nodes circle {
  fill: color-mix(in srgb, var(--case-card-accent) 76%, #f7f7f2 24%) !important;
}

#case-library .case-story-visual .case-node--center {
  filter: none !important;
}

#case-library .case-story-visual .case-node--center circle {
  fill: rgba(6, 18, 13, 0.9) !important;
  stroke: color-mix(in srgb, var(--case-card-accent) 72%, #f7f7f2 28%) !important;
  stroke-width: 4 !important;
}

#case-library .case-story-visual .case-node--center path {
  stroke: rgba(247, 247, 242, 0.9) !important;
  stroke-width: 4.4 !important;
}

#case-library .case-story-visual .case-service-core rect,
#case-library .case-story-visual .case-service-grid rect {
  fill: rgba(3, 10, 13, 0.72) !important;
  stroke: color-mix(in srgb, var(--case-card-accent) 64%, rgba(247, 247, 242, 0.18) 36%) !important;
}

#speakers .speaker-mini-photo {
  font-size: 0;
  color: transparent;
}

/* Final recordings expansion recovery: right-align only the control, not the expanded cards. */
#speakers .speaker-more--recordings {
  display: block !important;
  width: 100% !important;
  margin-top: clamp(22px, 3vh, 34px) !important;
  justify-items: initial !important;
}

#speakers .speaker-more--recordings[open] > .speaker-mini-grid,
#speakers .speaker-more--recordings > .speaker-mini-grid {
  width: 100% !important;
  max-width: none !important;
  margin: clamp(22px, 3vh, 34px) 0 0 !important;
  padding: 0 0 18px;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px 20px !important;
  justify-self: auto !important;
  justify-items: stretch !important;
}

@media (max-width: 900px) {
  #speakers .speaker-more--recordings[open] > .speaker-mini-grid,
  #speakers .speaker-more--recordings > .speaker-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  #speakers .speaker-more--recordings {
    margin-top: 22px !important;
  }

  #speakers .speaker-more--recordings[open] > .speaker-mini-grid,
  #speakers .speaker-more--recordings > .speaker-mini-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* Agent-company intent list: keep the intro as the cue, not the full list. */
#agent-company .agent-company__intro {
  font-weight: 580 !important;
}

#agent-company .agent-company__list,
#agent-company .agent-company__list li {
  font-weight: 430 !important;
}

.agent-company--no-title .agent-company__grid {
  grid-template-columns: minmax(0, min(720px, 100%)) !important;
  align-items: start !important;
  justify-content: start !important;
}

.agent-company--no-title .agent-company__body {
  align-self: start !important;
  max-width: 720px !important;
  padding-right: clamp(72px, 9vw, 120px) !important;
  transform: none !important;
}

@media (max-width: 760px) {
  .agent-company--no-title .agent-company__body {
    max-width: none !important;
    padding-right: 0 !important;
  }

  #agent-company .agent-company__intro {
    font-weight: 540 !important;
  }

  #agent-company .agent-company__list,
  #agent-company .agent-company__list li {
    font-weight: 400 !important;
  }
}

/* Recordings cards: one component for visible and expanded recording lists. */
#speakers .speaker-mini-grid--recordings,
#speakers .speaker-more--recordings[open] > .speaker-mini-grid,
#speakers .speaker-more--recordings > .speaker-mini-grid {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  justify-items: stretch !important;
  align-items: stretch !important;
}

#speakers .speaker-mini-grid--recordings .speaker-mini-card,
#speakers .speaker-more--recordings[open] .speaker-mini-card,
#speakers .speaker-more--recordings .speaker-mini-card {
  min-height: 82px !important;
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 12px !important;
  border: 1px solid rgba(247, 247, 242, 0.14) !important;
  background: rgba(247, 247, 242, 0.045) !important;
}

#speakers .speaker-mini-grid--recordings .speaker-mini-card[hidden],
#speakers .speaker-more--recordings[open] .speaker-mini-card[hidden],
#speakers .speaker-more--recordings .speaker-mini-card[hidden] {
  display: none !important;
}

#speakers .speaker-mini-grid--recordings .speaker-mini-photo,
#speakers .speaker-more--recordings[open] .speaker-mini-photo,
#speakers .speaker-more--recordings .speaker-mini-photo {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  aspect-ratio: 1 !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  font-size: 0 !important;
  color: transparent !important;
}

#speakers .speaker-mini-grid--recordings .speaker-mini-body,
#speakers .speaker-more--recordings[open] .speaker-mini-body,
#speakers .speaker-more--recordings .speaker-mini-body {
  min-width: 0 !important;
  align-self: center !important;
  padding-top: 0 !important;
}

@media (max-width: 900px) {
  #speakers .speaker-mini-grid--recordings,
  #speakers .speaker-more--recordings[open] > .speaker-mini-grid,
  #speakers .speaker-more--recordings > .speaker-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  #speakers .speaker-mini-grid--recordings,
  #speakers .speaker-more--recordings[open] > .speaker-mini-grid,
  #speakers .speaker-more--recordings > .speaker-mini-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* Header role menu: compact labels; only the active role owns the underline. */
.site-header .audience-tabs {
  --header-role-tab-gap: clamp(22px, 3.1vw, 44px);
  flex: 0 0 auto !important;
  gap: var(--header-role-tab-gap) !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100% !important;
}

.site-header .audience-tab {
  --role-tab-color: rgba(154, 195, 255, 0.95);
  --role-tab-muted: rgba(247, 247, 242, 0.52);
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 34px !important;
  padding: 4px 0 8px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--role-tab-muted) !important;
}

.site-header .audience-tab[data-audience-choice="enterprise"] {
  --role-tab-color: #7fa7ff;
}

.site-header .audience-tab[data-audience-choice="founders-smb"] {
  --role-tab-color: #35e6b1;
}

.site-header .audience-tab[data-audience-choice="micro-personal"] {
  --role-tab-color: #c9903c;
}

.site-header .audience-tab span,
.site-header .audience-tab b {
  color: var(--role-tab-muted) !important;
}

.site-header .audience-tab > span {
  display: none !important;
}

.site-header .audience-tab b {
  position: relative;
  display: inline-block !important;
  opacity: 0.82;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
}

.site-header .audience-tab b::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  background: var(--role-tab-color);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header .audience-tab:hover,
.site-header .audience-tab:focus-visible,
.site-header .audience-tab.is-active {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .audience-tab:hover b::after,
.site-header .audience-tab:focus-visible b::after {
  opacity: 0;
  transform: scaleX(0.55);
}

.site-header .audience-tab.is-active b::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .audience-tab:hover span,
.site-header .audience-tab:hover b,
.site-header .audience-tab:focus-visible span,
.site-header .audience-tab:focus-visible b {
  color: rgba(247, 247, 242, 0.74) !important;
  opacity: 1;
}

.site-header .audience-tab.is-active span,
.site-header .audience-tab.is-active b {
  color: var(--role-tab-color) !important;
  opacity: 1;
}

@media (min-width: 761px) {
  .site-header .audience-tabs {
    flex-basis: auto !important;
    max-width: none !important;
  }
}

@media (max-width: 760px) {
  .site-header .audience-tabs {
    --header-role-tab-gap: clamp(10px, 3.2vw, 16px);
    gap: var(--header-role-tab-gap) !important;
    padding: 7px 9px !important;
  }

  .site-header .audience-tab {
    min-height: 34px !important;
    padding: 5px 0 7px !important;
  }
}

/* Section heading system recovery: speakers and route share the same shell. */
@media (min-width: 761px) {

  #speakers .speakers-title,
  #route .route-head h2 {
    max-width: min(100%, 19.5ch) !important;
    font-size: clamp(54px, 4.7vw, 92px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
    text-wrap: balance;
  }

  #speakers .speakers-title {
    max-width: min(100%, 16.8ch) !important;
  }
}

@media (min-width: 1121px) and (max-width: 1600px) {
  #speakers .speakers-shell {
    width: var(--section-shell-width) !important;
    max-width: var(--section-shell-width) !important;
  }
}

@media (max-width: 760px) {
  #speakers .speakers-title,
  #route .route-head h2 {
    max-width: 100% !important;
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.06 !important;
  }
}

/* Speaker bios: factual company names must wrap, never truncate. */
#speakers .speakers-leads .speaker-body h3,
#speakers .speaker-layer--guests .speaker-body h3,
#speakers .speakers-leads .speaker-role,
#speakers .speaker-layer--guests .speaker-role,
#speakers .speakers-leads .speaker-links,
#speakers .speaker-layer--guests .speaker-links,
#speakers .speakers-leads .speaker-links a,
#speakers .speaker-layer--guests .speaker-links a,
#speakers .speaker-mini-body > h3,
#speakers .speaker-mini-body > p,
#speakers .speaker-mini-body > .speaker-links,
#speakers .speaker-mini-body > .speaker-links a {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

#speakers .speaker-mini-body > h3,
#speakers .speaker-mini-body > p:not(.speaker-links) {
  display: block !important;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
}

/* Route scroll recovery: progress is shown by circles/cards, not by a rail line. */
#route .route-track::before,
#route .route-track::after {
  content: none !important;
  display: none !important;
}

#route .route-progress-dot {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  width: calc(var(--route-marker-size, 52px) + 14px);
  height: calc(var(--route-marker-size, 52px) + 14px);
  border: 2px solid rgba(120, 207, 240, 0.92);
  border-radius: 50%;
  background: rgba(120, 207, 240, 0.035);
  box-shadow:
    0 0 0 1px rgba(120, 207, 240, 0.22),
    0 0 28px rgba(120, 207, 240, 0.22);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 220ms ease, top 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

#route .route-card.is-passed {
  background: rgba(43, 100, 238, 0.115) !important;
  border-color: rgba(43, 100, 238, 0.32) !important;
  box-shadow: inset 0 0 0 1px rgba(43, 100, 238, 0.16) !important;
}

#route .route-card.is-active {
  background: rgba(120, 207, 240, 0.13) !important;
  border-color: rgba(120, 207, 240, 0.46) !important;
  box-shadow: inset 0 0 0 1px rgba(120, 207, 240, 0.34) !important;
}

#route .route-card.is-passed .route-card__num,
#route .route-card.is-reached .route-card__num {
  border-color: rgba(43, 100, 238, 0.78) !important;
  background: rgba(43, 100, 238, 0.12) !important;
  color: #4b7cff !important;
}

#route .route-card.is-passed h3,
#route .route-card.is-passed > span {
  color: #78cff0 !important;
}

#route .route-card.is-passed p {
  color: rgba(247, 247, 242, 0.76) !important;
}

#route .route-card.is-active .route-card__num {
  border-color: rgba(120, 207, 240, 0.92) !important;
  background: rgba(120, 207, 240, 0.16) !important;
  color: #78cff0 !important;
  box-shadow: 0 0 26px rgba(120, 207, 240, 0.22) !important;
}

/* Speaker layout lock: leads and guests share one readable photo, identity and bio system. */

#speakers {
  --speaker-card-photo-size: clamp(104px, 7.2vw, 118px);
  --speaker-card-identity-gap: clamp(15px, 1.25vw, 21px);
  --guest-speaker-media-size: var(--speaker-card-photo-size);
  --guest-speaker-identity-gap: var(--speaker-card-identity-gap);
  --speaker-name-size: clamp(21px, 1.45vw, 25px);
  --speaker-meta-size: clamp(12.5px, 0.88vw, 14.5px);
  --speaker-bio-size: clamp(15.5px, 1.02vw, 18px);
  --speaker-topic-size: clamp(13px, 0.9vw, 15px);
}

@media (min-width: 761px) {
  #speakers .speaker-layer--guests {
    margin-top: clamp(96px, 12vh, 136px) !important;
  }

  #speakers .speaker-layer--guests .speaker-layer__head {
    min-height: 0 !important;
    margin-bottom: clamp(46px, 5.2vh, 70px) !important;
  }

  #speakers .speaker-layer--guests .guest-grid {
    row-gap: clamp(88px, 8vw, 124px) !important;
    margin-top: 0 !important;
  }

  #speakers .speakers-leads .speaker-card,
  #speakers .speaker-layer--guests .guest-grid > .speaker-card:nth-child(-n + 3),
  #speakers .speaker-layer--guests .speaker-card {
    grid-template-rows: var(--guest-speaker-media-size) auto auto !important;
  }

  #speakers .speakers-leads .speaker-body,
  #speakers .speaker-layer--guests .guest-grid > .speaker-card:nth-child(-n + 3) .speaker-body,
  #speakers .speaker-layer--guests .speaker-body {
    min-height: var(--guest-speaker-media-size) !important;
    height: var(--guest-speaker-media-size) !important;
  }
}

#speakers .speakers-leads .speaker-card,
#speakers .speaker-layer--guests .speaker-card {
  display: grid !important;
  grid-template-columns: var(--speaker-card-photo-size) minmax(0, 1fr) !important;
  grid-template-areas:
    "photo body"
    "bio bio"
    "topic topic" !important;
  grid-template-rows: var(--guest-speaker-media-size) auto auto;
  column-gap: var(--speaker-card-identity-gap) !important;
  row-gap: 0 !important;
  align-items: start !important;
  align-content: start !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#speakers .speakers-leads .speaker-photo,
#speakers .speaker-layer--guests .speaker-photo {
  grid-area: photo !important;
  width: var(--speaker-card-photo-size) !important;
  height: var(--speaker-card-photo-size) !important;
  align-self: start !important;
  border-radius: 4px !important;
}

#speakers .speakers-leads .speaker-body,
#speakers .speaker-layer--guests .speaker-body {
  grid-area: body !important;
  min-width: 0 !important;
  min-height: 0;
  height: var(--guest-speaker-media-size);
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto !important;
  justify-content: flex-start !important;
  align-content: start !important;
  gap: clamp(5px, 0.55vw, 8px) !important;
}

#speakers .speakers-leads .speaker-body h3,
#speakers .speaker-layer--guests .speaker-body h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: var(--speaker-name-size) !important;
  line-height: 1.07 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

#speakers .speakers-leads .speaker-role,
#speakers .speakers-leads .speaker-links,
#speakers .speakers-leads .speaker-body > .speaker-links:last-child,
#speakers .speaker-layer--guests .speaker-role,
#speakers .speaker-layer--guests .speaker-links,
#speakers .speaker-layer--guests .speaker-body > .speaker-links:last-child {
  margin: 0 !important;
  font-size: var(--speaker-meta-size) !important;
  line-height: 1.22 !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
}

#speakers .speakers-leads .speaker-card > .speaker-bio,
#speakers .speaker-layer--guests .speaker-card > .speaker-bio {
  grid-area: bio !important;
  margin: clamp(15px, 1.8vh, 22px) 0 0 !important;
  font-size: var(--speaker-bio-size) !important;
  line-height: 1.44 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

#speakers .speakers-leads .speaker-card > .speaker-topic,
#speakers .speaker-layer--guests .speaker-card > .speaker-topic {
  grid-area: topic !important;
  display: block !important;
  margin: clamp(14px, 1.6vh, 20px) 0 0 !important;
  color: #78cff0 !important;
  font-family: var(--mono) !important;
  font-size: var(--speaker-topic-size) !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 1180px) and (min-width: 761px) {
  #speakers {
    --speaker-card-photo-size: clamp(98px, 9.2vw, 112px);
    --speaker-name-size: clamp(20px, 2vw, 24px);
  }
}

@media (max-width: 620px) {
  #speakers {
    --speaker-card-photo-size: 96px;
    --speaker-card-identity-gap: 14px;
    --speaker-name-size: clamp(21px, 6.4vw, 25px);
    --speaker-meta-size: 13px;
    --speaker-bio-size: 16px;
    --speaker-topic-size: 15px;
  }

  #speakers .speaker-layer--guests .speaker-layer__head {
    margin-bottom: 44px !important;
  }

}

/* Alumni logo interaction lock: source colors appear only on direct hover/focus. */
#alumni .alumni-logo img,
#alumni .alumni-logo .alumni-logo__image,
#alumni .alumni-logo.is-logo-near img,
#alumni .alumni-logo.is-logo-near .alumni-logo__image,
#alumni .alumni-logo.is-scroll-active img,
#alumni .alumni-logo.is-scroll-active .alumni-logo__image {
  opacity: 0.58 !important;
  filter: grayscale(1) invert(1) brightness(1.05) contrast(0.74) !important;
  transform: none !important;
}

#alumni .alumni-logo--alfa-capital img,
#alumni .alumni-logo--alfa-capital .alumni-logo__image,
#alumni .alumni-logo--alfa-capital.is-logo-near img,
#alumni .alumni-logo--alfa-capital.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--alfa-capital.is-scroll-active img,
#alumni .alumni-logo--alfa-capital.is-scroll-active .alumni-logo__image,
#alumni .alumni-logo--semrush img,
#alumni .alumni-logo--semrush .alumni-logo__image,
#alumni .alumni-logo--semrush.is-logo-near img,
#alumni .alumni-logo--semrush.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--semrush.is-scroll-active img,
#alumni .alumni-logo--semrush.is-scroll-active .alumni-logo__image {
  opacity: 0.64 !important;
  filter: grayscale(1) saturate(0) brightness(0.88) contrast(0.9) !important;
  transform: none !important;
}

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  #alumni .alumni-logo:hover img,
  #alumni .alumni-logo:hover .alumni-logo__image,
  #alumni .alumni-logo:focus-visible img,
  #alumni .alumni-logo:focus-visible .alumni-logo__image {
    opacity: 1 !important;
    filter: none !important;
    transform: translate3d(0, -1px, 0) !important;
  }
}

/* Avito/Yandex source-color lock: interaction reveals on-dark assets; passive states stay light monochrome. */
#alumni .alumni-logo--avito img,
#alumni .alumni-logo--avito .alumni-logo__image,
#alumni .alumni-logo--avito.is-logo-near img,
#alumni .alumni-logo--avito.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--avito.is-scroll-active img,
#alumni .alumni-logo--avito.is-scroll-active .alumni-logo__image,
#alumni .alumni-logo--yandex img,
#alumni .alumni-logo--yandex .alumni-logo__image,
#alumni .alumni-logo--yandex.is-logo-near img,
#alumni .alumni-logo--yandex.is-logo-near .alumni-logo__image,
#alumni .alumni-logo--yandex.is-scroll-active img,
#alumni .alumni-logo--yandex.is-scroll-active .alumni-logo__image {
  opacity: 0.72 !important;
  filter: brightness(0) invert(1) saturate(0) contrast(1.1) !important;
  transform: none !important;
}

#alumni .alumni-logo--avito:hover img,
#alumni .alumni-logo--avito:hover .alumni-logo__image,
#alumni .alumni-logo--avito:focus-visible img,
#alumni .alumni-logo--avito:focus-visible .alumni-logo__image,
#alumni .alumni-logo--yandex:hover img,
#alumni .alumni-logo--yandex:hover .alumni-logo__image,
#alumni .alumni-logo--yandex:focus-visible img,
#alumni .alumni-logo--yandex:focus-visible .alumni-logo__image {
  opacity: 1 !important;
  filter: none !important;
  transform: translate3d(0, -1px, 0) !important;
}

/* Schedule alignment lock: center the calendar group without changing tile scale. */
@media (min-width: 901px) {
  #schedule .sprint-calendar,
  #schedule .schedule-note,
  #schedule.schedule-block.has-domain .sprint-calendar,
  #schedule.schedule-block.has-domain .schedule-note {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Schedule legend lock: keep the legend attached to the calendar width. */
@media (min-width: 901px) {
  #schedule .schedule-header {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px) !important;
    gap: clamp(18px, 2vw, 28px) !important;
  }

  #schedule .schedule-tools {
    justify-items: end !important;
    align-self: end !important;
  }

  #schedule .schedule-legend {
    max-width: 340px !important;
    justify-content: flex-end !important;
  }
}

@media (max-width: 900px) {
  #schedule .schedule-header {
    grid-template-columns: 1fr !important;
  }

  #schedule .schedule-tools {
    justify-items: start !important;
  }

  #schedule .schedule-legend {
    max-width: 100% !important;
    justify-content: flex-start !important;
  }
}

/* Header spacing hierarchy lock: outside groups breathe more than items inside a group. */
.site-header .top-nav > a:last-child::after {
  content: none !important;
  display: none !important;
}

.site-header .nav-dropdown > button::after {
  content: "|" !important;
  display: inline-block !important;
  margin: 0 clamp(8px, 1vw, 18px) !important;
  color: var(--dim) !important;
}

@media (min-width: 761px) {
  .site-header {
    justify-content: flex-start !important;
    column-gap: clamp(18px, 1.8vw, 28px) !important;
  }

  .site-header .site-brand {
    margin-right: clamp(42px, 4.2vw, 68px) !important;
  }

  .site-header .audience-tabs {
    --header-role-tab-gap: clamp(22px, 2.1vw, 32px) !important;
    gap: var(--header-role-tab-gap) !important;
  }

  .site-header .top-nav {
    margin-left: auto !important;
  }
}

/* Outcomes desktop composition: keep the selected route card visible with the title. */
@media (min-width: 961px) {
  #outcomes .outcomes-grid {
    align-items: start !important;
  }

  #outcomes .outcome-panel {
    align-self: start !important;
    margin-top: clamp(-180px, -14vh, -118px) !important;
  }
}

/* Case library filter lock: four role tags stay in one row on desktop. */
#case-library .case-library-head .section-kicker {
  text-transform: lowercase !important;
}

#case-library.case-library-block--archive .case-library-head h2 {
  max-width: none !important;
}

@media (min-width: 960px) {
  #case-library.case-library-block--archive .case-library-head h2 {
    white-space: nowrap !important;
  }
}

#case-library.case-library-block--archive .case-filter-bar {
  grid-template-columns: minmax(0, 1fr) !important;
}

#case-library .case-story-grid,
#case-library .case-story-card,
#case-library .case-story-card summary,
#case-library .case-story-open {
  overflow-anchor: none;
}

#case-library .case-filter-group[aria-label="Роли"] {
  width: 100% !important;
  max-width: 100% !important;
}

#case-library .case-filter-group[aria-label="Роли"] .case-filter-options {
  width: 100% !important;
  max-width: 100% !important;
}

@media (min-width: 761px) {
  #case-library .case-filter-group[aria-label="Роли"] .case-filter-options {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: clamp(6px, 0.7vw, 10px) !important;
    align-items: center !important;
    overflow: visible !important;
  }

  #case-library .case-filter-group[aria-label="Роли"] .case-filter-button {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 0 clamp(10px, 0.95vw, 14px) !important;
    font-size: clamp(11px, 0.74vw, 12px) !important;
    line-height: 1 !important;
    font-weight: 650 !important;
    letter-spacing: 0.035em !important;
    white-space: nowrap !important;
    text-transform: none !important;
  }
}

@media (max-width: 760px) {
  #case-library .case-filter-group[aria-label="Роли"] .case-filter-options {
    flex-wrap: wrap !important;
  }
}

/* Hero fact-box hierarchy lock: keep the strip centered, but demote facts to metadata weight. */
@media (min-width: 761px) and (min-height: 761px) {
  .program-facts {
    align-items: center !important;
  }

  .program-facts .fact-row {
    align-self: center !important;
  }

  .program-facts .fact-row dd {
    font-size: clamp(16px, 0.9vw, 18px) !important;
    line-height: 1.28 !important;
    font-weight: 560 !important;
    transform: translateY(-2px) !important;
  }
}

.program-facts .fact-row--date-range small {
  color: rgba(247, 247, 242, 0.56) !important;
  font-size: clamp(11px, 0.72em, 12px) !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
}

.program-facts .fact-row--date-range i {
  color: rgba(247, 247, 242, 0.32) !important;
  font-weight: 400 !important;
}

@media (max-width: 760px) {
  .program-facts .fact-row dd {
    font-size: clamp(12px, 3.4vw, 14px) !important;
    line-height: 1.28 !important;
    font-weight: 560 !important;
    transform: translateY(-1px) !important;
  }
}

/* Case library row lock: medium desktop must not reuse the wide six-column table. */
@media (max-width: 1120px) and (min-width: 761px) {
  #case-library .case-story-card summary {
    grid-template-columns: clamp(54px, 5.8vw, 64px) minmax(0, 1fr) !important;
    grid-template-areas:
      "photo person"
      "photo brief"
      "photo effect"
      "photo tech"
      "open open" !important;
    gap: 10px clamp(16px, 2vw, 22px) !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: clamp(20px, 2.4vw, 28px) !important;
  }

  #case-library .case-summary-photo {
    grid-area: photo !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: clamp(54px, 5.8vw, 64px) !important;
    height: clamp(54px, 5.8vw, 64px) !important;
    align-self: start !important;
  }

  #case-library .case-person-copy {
    grid-area: person !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: start !important;
    min-width: 0 !important;
  }

  #case-library .case-row-brief {
    grid-area: brief !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-width: 0 !important;
  }

  #case-library .case-row-effect {
    grid-area: effect !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-width: 0 !important;
    justify-self: start !important;
  }

  #case-library .case-tech {
    grid-area: tech !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin-top: 2px !important;
  }

  #case-library .case-story-open {
    grid-area: open !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: min(100%, 220px) !important;
    justify-self: start !important;
    align-self: start !important;
  }

  #case-library .case-person-copy b,
  #case-library .case-person-copy small,
  #case-library .case-row-brief strong,
  #case-library .case-row-effect b,
  #case-library .case-tech {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    overflow-wrap: anywhere !important;
  }

  #case-library .case-row-effect-value {
    display: inline-grid !important;
    max-width: 100% !important;
  }
}

/* Section rail menu contract: current anchors, hero visibility and white-section contrast. */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a {
    color: #34454b !important;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail i {
    background: #73868a !important;
    opacity: 1 !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.36) !important;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a::before {
    background: rgba(70, 88, 94, 0.58) !important;
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active).show-section-rail .section-rail span:not(.section-rail__drag-handle) {
    border-color: rgba(53, 72, 78, 0.24) !important;
    background: #fbfdfc !important;
    color: #324349 !important;
    box-shadow: 0 12px 30px rgba(82, 98, 102, 0.15) !important;
    backdrop-filter: blur(8px);
  }

  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a:hover,
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a:focus-visible,
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-active,
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-rail-pending,
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-rail-previous-active {
    color: #147fa6 !important;
  }

body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a:hover span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-active span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-rail-pending span:not(.section-rail__drag-handle),
  body:has(.section-rail a:is([href="#testimonials"], [href="#schedule"], [href="#faq"]).is-active) .section-rail a.is-rail-previous-active span:not(.section-rail__drag-handle) {
    border-color: rgba(20, 127, 166, 0.48) !important;
    background: #ffffff !important;
    color: #0f6f92 !important;
    box-shadow: 0 14px 34px rgba(20, 127, 166, 0.18) !important;
  }
}

/* Speakers tablet layout: two lead cards before the desktop three-column row starts. */
@media (min-width: 761px) {
  #speakers .speakers-leads {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Speakers: three lead speakers in one desktop row; center a single guest on the second row. */
@media (min-width: 901px) {
  #speakers.speakers-block .speakers-leads {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 28px !important;
    row-gap: 28px !important;
  }

  #speakers.speakers-block .speaker-layer--guests .guest-grid > .speaker-card:last-child:nth-child(3n + 1) {
    grid-column: 2 !important;
  }
}

#speakers .speaker-layer--guests .speaker-card,
#speakers .speaker-layer--guests .guest-grid > .speaker-card:nth-child(-n + 3) {
  grid-template-rows: auto auto auto !important;
}

#speakers .speaker-layer--guests .speaker-body,
#speakers .speaker-layer--guests .guest-grid > .speaker-card:nth-child(-n + 3) .speaker-body {
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-content: start !important;
}

#speakers .speakers-leads .speaker-role,
#speakers .speaker-layer--guests .speaker-role {
  text-transform: none !important;
}

#speakers .speaker-more--recordings {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

#speakers .speaker-more--recordings summary {
  display: flex !important;
  width: max-content !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

#speakers .speaker-more--recordings[open] > .speaker-mini-grid,
#speakers .speaker-more--recordings > .speaker-mini-grid {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: stretch !important;
}

/* Speaker role rhythm lock: roles keep one metadata style even when they are the last paragraph. */
#speakers .speakers-leads .speaker-body,
#speakers .speaker-layer--guests .speaker-body,
#speakers .speaker-layer--guests .guest-grid > .speaker-card:nth-child(-n + 3) .speaker-body {
  gap: 0 !important;
  row-gap: 0 !important;
}

#speakers .speakers-leads .speaker-role,
#speakers .speaker-layer--guests .speaker-role,
#speakers .speakers-leads .speaker-body > p.speaker-role:last-child,
#speakers .speaker-layer--guests .speaker-body > p.speaker-role:last-child {
  margin: clamp(8px, 0.7vw, 11px) 0 0 !important;
  color: rgba(120, 207, 240, 0.9) !important;
  font-family: var(--mono) !important;
  font-size: var(--speaker-meta-size) !important;
  line-height: 1.24 !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

/* Hero scale lock: keep the chosen layout, make the main title about 30% larger. */
@media (min-width: 761px) {
  #hero .hero-title-stack {
    min-height: clamp(265px, 27.3vw, 333px) !important;
  }

  #hero .hero-title-fallback {
    max-width: min(78vw, 1274px) !important;
    min-height: 2.5em !important;
    font-size: clamp(68px, 7.8vw, 120px) !important;
    line-height: 0.84 !important;
  }
}

/* Hero flow guard: title metrics can be taller than the fixed role grid row. */
@media (min-width: 761px) {
  body[data-audience] #hero .hero-copy {
    grid-template-rows: auto auto auto auto auto !important;
  }

  body[data-audience] #hero .hero-title-stack {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
  }

  body[data-audience] #hero .hero-title-fallback {
    margin-bottom: clamp(26px, 3vw, 48px) !important;
    min-height: 0 !important;
  }

  #hero .hero-secondary {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
  }
}

/* Hero scale selector: keep the prompt as text and make profile choices read as buttons. */
@media (min-width: 761px) {
  #hero .hero-focus-intro {
    position: static !important;
    width: fit-content !important;
    max-width: min(100%, 760px) !important;
    min-height: 0 !important;
    margin: clamp(18px, 2.4vh, 30px) auto clamp(14px, 1.8vh, 20px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
    pointer-events: none;
  }

  #hero .hero-focus-label {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  #hero .hero-focus-layout .door-switch {
    width: min(80%, 1056px) !important;
    max-width: 1056px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    gap: clamp(8px, 0.9vw, 12px) !important;
  }

  #hero .door-card {
    min-height: clamp(92px, 8vw, 112px) !important;
    padding: clamp(12px, 1vw, 16px) !important;
  }

  #hero .door-card b {
    margin-top: clamp(16px, 2.2vw, 28px) !important;
  }
}

@media (max-width: 760px) {
  #hero .hero-focus-intro {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
}

#hero .hero-copy > .eyebrow {
  margin-bottom: 8px !important;
}

/* Adaptive-lab viewport lock: keep the section short enough to reveal neighboring blocks. */
@media (min-width: 761px) {
  #adaptive-lab.adaptive-kinetic-lab {
    height: 76.5svh !important;
    min-height: min(76.5svh, 690px) !important;
    max-height: 76.5svh !important;
    padding-block: 0 !important;
    overflow: hidden !important;
  }

  #adaptive-lab .adaptive-kinetic-stage {
    height: 100% !important;
  }

  #adaptive-lab .adaptive-kinetic-copy {
    min-height: 100% !important;
    padding-top: clamp(8px, 1.35vh, 20px) !important;
    padding-bottom: clamp(72px, 9.4vh, 104px) !important;
  }

  #adaptive-lab .adaptive-kinetic-title-media {
    height: clamp(260px, 28vw, 480px) !important;
  }

  #adaptive-lab .adaptive-lab-tag-cloud-card {
    bottom: clamp(46px, 6.5vh, 84px) !important;
  }
}

@media (max-width: 760px) {
  #adaptive-lab.adaptive-kinetic-lab {
    padding-block: 0 !important;
    min-height: 476px !important;
    overflow: hidden !important;
  }

  #adaptive-lab .adaptive-kinetic-copy {
    padding-top: 28px !important;
    padding-bottom: 150px !important;
  }

  #adaptive-lab .adaptive-kinetic-title-media {
    height: clamp(190px, 51vw, 255px) !important;
  }

  #adaptive-lab .adaptive-lab-tag-cloud-card {
    bottom: 18px !important;
  }
}

/* Speakers title rhythm: same display type as adjacent section titles, but no forced four-line wrap. */
#speakers .speakers-title {
  max-width: min(100%, 12.8em) !important;
  margin-bottom: clamp(112px, 13vh, 160px);
  color: var(--ink) !important;
  font-family: var(--display) !important;
  text-wrap: balance;
}

@media (max-width: 760px) {
  #speakers .speakers-title {
    margin-bottom: 82px;
  }
}

#speakers .speakers-title span {
  color: var(--button-bg);
}

/* Speakers width hard lock: keep this block on the accepted production measure,
   independent from the wide shared shells used by later sections. */
@media (min-width: 761px) {
  #speakers.speakers-block > .speakers-shell {
    width: min(1320px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
    max-width: min(1320px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: clamp(92px, 8vw, 142px) !important;
  }
}

@media (min-width: 761px) and (max-width: 1340px) {
  #speakers.speakers-block > .speakers-shell {
    padding-right: 0 !important;
  }
}

@media (min-width: 761px) {
  #speakers.speakers-block .speakers-leads {
    column-gap: 32px !important;
    row-gap: 32px !important;
  }

  #speakers.speakers-block .speaker-layer--guests .guest-grid {
    column-gap: 32px !important;
    row-gap: 64px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  #speakers.speakers-block .speaker-layer--guests .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  #speakers.speakers-block > .speakers-shell {
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-right: 0 !important;
  }

  #speakers.speakers-block .speaker-layer--guests .guest-grid {
    gap: 48px 24px !important;
  }
}

/* Speaker block approved expansion: keep the section contained, widen every speaker sub-block together. */
@media (min-width: 1601px) {
  #speakers .speakers-shell,
  #speakers.speakers-block > .speakers-shell {
    width: min(1438px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
    max-width: min(1438px, calc(100vw - clamp(96px, 11vw, 176px))) !important;
  }
}

@media (min-width: 1341px) and (max-width: 1600px) {
  #speakers .speakers-shell,
  #speakers.speakers-block > .speakers-shell {
    width: calc(1056px - clamp(9.2px, 0.8vw, 14.2px)) !important;
    max-width: calc(1056px - clamp(9.2px, 0.8vw, 14.2px)) !important;
  }
}

@media (min-width: 1121px) and (max-width: 1340px) {
  #speakers .speakers-shell,
  #speakers.speakers-block > .speakers-shell {
    width: min(1056px, calc(100vw - 94px)) !important;
    max-width: min(1056px, calc(100vw - 94px)) !important;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  #speakers .speakers-shell,
  #speakers.speakers-block > .speakers-shell {
    width: min(990px, calc(100vw - 94px)) !important;
    max-width: min(990px, calc(100vw - 94px)) !important;
  }
}

@media (min-width: 761px) {
  #speakers .speakers-leads,
  #speakers .speaker-layer--guests,
  #speakers .speaker-more--recordings,
  #speakers .speaker-mini-grid--curators {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Speaker identity proximity: photo and name must read as one unit, distinct from neighboring cards. */
@media (min-width: 761px) {
  #speakers {
    --speaker-card-identity-gap: 12px;
  }

  #speakers .speaker-mini-grid--recordings .speaker-mini-card,
  #speakers .speaker-more--recordings[open] .speaker-mini-card,
  #speakers .speaker-more--recordings .speaker-mini-card {
    gap: 10px !important;
  }

  #speakers .speaker-mini-grid--curators .speaker-mini-card {
    gap: 8px !important;
  }
}

@media (max-width: 760px) {
  #speakers {
    --speaker-card-identity-gap: 10px;
  }

  #speakers .speaker-mini-grid--recordings .speaker-mini-card,
  #speakers .speaker-more--recordings[open] .speaker-mini-card,
  #speakers .speaker-more--recordings .speaker-mini-card {
    gap: 10px !important;
  }

  #speakers .speaker-mini-grid--curators .speaker-mini-card {
    gap: 8px !important;
  }
}

/* Agent-company visual pass: readable left copy plus purposeful arc for the red cloud. */
#agent-company.agent-company--no-title {
  min-height: clamp(660px, 78svh, 900px) !important;
  padding-top: clamp(118px, 14vh, 178px) !important;
  padding-bottom: clamp(74px, 8vh, 104px) !important;
}

#agent-company.agent-company--no-title::after {
  inset: auto -7% -42% 37% !important;
  width: min(66vw, 1040px) !important;
  height: min(66vw, 1040px) !important;
  min-width: 620px !important;
  min-height: 620px !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: 0.32 !important;
  background: conic-gradient(from 214deg, transparent 0deg 16deg, rgba(120, 207, 240, 0.1) 18deg, rgba(120, 207, 240, 0.32) 74deg, rgba(120, 207, 240, 0.08) 126deg, transparent 142deg 360deg) !important;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1px), #000 100%) !important;
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1px), #000 100%) !important;
}

#agent-company.agent-company--no-title .agent-company__grid {
  width: min(100%, 1360px) !important;
  margin-inline: auto !important;
  grid-template-columns: minmax(390px, 620px) minmax(0, 1fr) !important;
  gap: clamp(28px, 5vw, 86px) !important;
}

#agent-company.agent-company--no-title .agent-company__body {
  max-width: 620px !important;
  padding-right: 0 !important;
  margin-left: clamp(18px, 3vw, 54px) !important;
  transform: translateY(clamp(-18px, -1.8vh, -10px)) !important;
}

#agent-company.agent-company--no-title .agent-company__intro {
  color: rgba(247, 247, 242, 0.8) !important;
  font-size: clamp(18px, 1.28vw, 22px) !important;
  line-height: 1.32 !important;
  font-weight: 700 !important;
}

#agent-company.agent-company--no-title .agent-company__list {
  gap: clamp(9px, 1.15vh, 14px) !important;
  margin-top: clamp(18px, 2.2vh, 26px) !important;
  color: rgba(247, 247, 242, 0.84) !important;
  font-size: clamp(19px, 1.45vw, 25px) !important;
  line-height: 1.22 !important;
  font-weight: 700 !important;
}

#agent-company.agent-company--no-title .agent-company__list li {
  padding-left: 1.1em !important;
}

#agent-company.agent-company--no-title .agent-company__list li::before {
  content: "" !important;
  top: 0.58em !important;
  width: 0.34em !important;
  height: 0.34em !important;
  border-radius: 999px !important;
  background: var(--role-accent) !important;
  box-shadow: 0 0 16px rgba(45, 227, 199, 0.42) !important;
  transform: translateY(-50%) !important;
}

#agent-company.agent-company--no-title .agent-stats {
  margin-top: clamp(30px, 4.4vh, 52px) !important;
  padding-top: clamp(20px, 2.8vh, 30px) !important;
  max-width: min(860px, 100%) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 3.2vw, 52px) !important;
}

#agent-company.agent-company--no-title .agent-stat dt {
  font-size: clamp(38px, 3.5vw, 58px) !important;
  line-height: 0.9 !important;
}

#agent-company.agent-company--no-title .agent-stat dd {
  max-width: 24ch !important;
  color: rgba(247, 247, 242, 0.68) !important;
  font-family: var(--font-readable) !important;
  font-size: clamp(13px, 1.02vw, 16px) !important;
  line-height: 1.28 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  #agent-company.agent-company--no-title {
    min-height: auto !important;
    padding: 112px 22px 70px !important;
  }

  #agent-company.agent-company--no-title::after {
    inset: auto -52% -18% 18% !important;
    width: 620px !important;
    height: 620px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    opacity: 0.2 !important;
  }

  #agent-company.agent-company--no-title .agent-company__grid {
    display: block !important;
    width: 100% !important;
  }

  #agent-company.agent-company--no-title .agent-company__body {
    max-width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
  }

  #agent-company.agent-company--no-title .agent-company__list {
    font-size: clamp(18px, 5.2vw, 22px) !important;
    line-height: 1.24 !important;
  }

  #agent-company.agent-company--no-title .agent-stats {
    grid-template-columns: 1fr !important;
  }
}

/* Schedule rail theme lock: dark section keeps dark HUD chips. */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.24) !important;
    background: rgba(5, 13, 17, 0.74) !important;
    color: rgba(218, 226, 226, 0.72) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
  }

  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a {
    color: rgba(174, 187, 190, 0.62) !important;
  }

  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a:hover,
  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a:focus-visible,
  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active {
    color: #78cff0 !important;
  }

  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a:hover span:not(.section-rail__drag-handle),
  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body.show-section-rail:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-near:has(.section-rail a[href="#schedule"].is-active) .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.42) !important;
    background: rgba(5, 16, 22, 0.88) !important;
    color: #78cff0 !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34) !important;
  }
}

/* Lower dark footer/CTA rail lock: FAQ can stay active, but chips must switch back to dark HUD. */
@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a {
    color: rgba(174, 187, 190, 0.62) !important;
  }

  body.show-section-rail.is-section-rail-on-lower-dark .section-rail i {
    background: currentColor !important;
    opacity: 0.7 !important;
    box-shadow: none !important;
  }

  body.show-section-rail.is-section-rail-on-lower-dark .section-rail span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.22) !important;
    background: rgba(5, 13, 17, 0.78) !important;
    color: rgba(218, 226, 226, 0.76) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(10px) !important;
  }

  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:hover,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:focus-visible,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-active,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-rail-pending,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-rail-previous-active {
    color: #78cff0 !important;
  }

  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:hover i,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:focus-visible i,
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-active i {
    opacity: 1 !important;
    box-shadow: 0 0 24px rgba(120, 207, 240, 0.72) !important;
  }

  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:hover span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a:focus-visible span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-active span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-rail-pending span:not(.section-rail__drag-handle),
  body.show-section-rail.is-section-rail-on-lower-dark .section-rail a.is-rail-previous-active span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.44) !important;
    background: rgba(5, 16, 22, 0.9) !important;
    color: #78cff0 !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38) !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a,
  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active {
    color: #78cff0 !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail i,
  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active i {
    background: currentColor !important;
    opacity: 1 !important;
    box-shadow: 0 0 24px rgba(120, 207, 240, 0.72) !important;
  }

  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail span:not(.section-rail__drag-handle),
  body:not(.copy-edit-mode).show-section-rail.is-section-rail-on-lower-dark:has(.section-rail a:is([href="#testimonials"], [href="#faq"]).is-active) .section-rail a.is-active span:not(.section-rail__drag-handle) {
    border-color: rgba(120, 207, 240, 0.44) !important;
    background: rgba(5, 16, 22, 0.9) !important;
    color: #78cff0 !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.38) !important;
  }
}

/* Route cards should mask the decorative red particles instead of letting them show through as dirty stains. */
#route .route-card {
  isolation: isolate;
  overflow: hidden;
  background: rgba(5, 9, 12, 0.94) !important;
}

#route .route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 9, 12, 0.98), rgba(5, 9, 12, 0.95));
}

#route .route-card.is-active::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(120, 207, 240, 0.13), transparent 58%),
    linear-gradient(180deg, rgba(12, 28, 32, 0.98), rgba(9, 22, 25, 0.95));
}

#route .route-card.is-passed::before {
  background: linear-gradient(180deg, rgba(9, 17, 27, 0.98), rgba(7, 13, 23, 0.95));
}

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

/* Route particle mask: cards hide the decorative cloud; controls below the cards stay on the live background. */
#route .route-shell {
  z-index: 3 !important;
}

#route .route-track {
  isolation: isolate;
  position: relative;
  z-index: 1;
  background: rgb(5, 9, 12) !important;
}

#route .route-card {
  background: rgb(5, 9, 12) !important;
}

#route .route-card::before {
  background: linear-gradient(180deg, rgb(5, 9, 12), rgb(5, 9, 12)) !important;
}

#route .route-card.is-active::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(120, 207, 240, 0.11), transparent 52%),
    linear-gradient(180deg, rgb(10, 22, 25), rgb(7, 15, 17)) !important;
}

#route .route-card.is-passed::before {
  background: linear-gradient(180deg, rgb(9, 17, 27), rgb(7, 13, 23)) !important;
}

/* Pricing cards transplant: keep the native section background/head, replace only the two payment cards. */
#pricing .pricing-shell {
  max-width: 1180px;
  padding-inline: 0;
}

#pricing .pricing-head {
  display: block;
  gap: 0;
  margin-bottom: 0;
}

#pricing .pricing-head .section-kicker {
  margin: 0 0 clamp(14px, 1.5vw, 20px) !important;
}

#pricing .pricing-head h2 {
  display: block;
  margin: 0;
  font-family: var(--hero-display);
  font-weight: 820;
  letter-spacing: 0;
}

#pricing .pricing-grid {
  position: relative;
  display: grid;
  width: min(918px, 100%);
  max-width: 918px;
  margin: clamp(34px, 5vh, 64px) auto 0;
  grid-template-columns: minmax(0, 498fr) minmax(14px, 22fr) minmax(360px, 398fr);
  gap: 0;
  align-items: center;
  border: 0;
  background: transparent;
}

#pricing .pricing-grid::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  height: 1px;
  margin-top: clamp(100px, 8.9vw, 118px);
  background: linear-gradient(90deg, rgba(53, 230, 177, 0.76), rgba(120, 207, 240, 0.72));
  box-shadow: 0 0 18px rgba(120, 207, 240, 0.22);
}

#pricing .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 0;
  border-radius: 0;
  color: #f7f7f2;
  font-family: var(--pricing-mono-font, var(--mono));
  text-decoration: none;
  transform: scale(1);
  transform-origin: center;
  -webkit-font-smoothing: antialiased;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

#pricing .pricing-card--primary {
  --pricing-hover-x: 68%;
  --pricing-hover-y: 18%;
  grid-column: 1;
  aspect-ratio: 1.34 / 1;
  min-height: clamp(346px, 30vw, 392px);
  padding: clamp(30px, 2.65vw, 38px) clamp(34px, 3vw, 44px) clamp(24px, 2.15vw, 32px);
  border: 1px solid rgba(53, 230, 177, 0.88);
  background:
    radial-gradient(circle at var(--pricing-hover-x) var(--pricing-hover-y), rgba(53, 230, 177, 0.24), transparent 13.5rem),
    linear-gradient(90deg, rgba(4, 8, 10, 0.99) 0%, rgba(6, 13, 14, 0.97) 58%, rgba(12, 39, 32, 0.78) 100%);
}

#pricing .pricing-card--team {
  --pricing-hover-x: 30%;
  --pricing-hover-y: 22%;
  grid-column: 3;
  aspect-ratio: 1.24 / 1;
  min-height: clamp(306px, 25vw, 346px);
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: clamp(26px, 2.25vw, 32px) clamp(20px, 1.75vw, 26px) clamp(22px, 1.95vw, 28px) clamp(24px, 2.15vw, 30px);
  border: 1px solid rgba(120, 207, 240, 0.34);
  background:
    radial-gradient(circle at var(--pricing-hover-x) var(--pricing-hover-y), rgba(120, 207, 240, 0.18), transparent 11.5rem),
    linear-gradient(135deg, rgba(14, 20, 23, 0.97) 0%, rgba(9, 14, 17, 0.96) 64%, rgba(18, 42, 50, 0.68) 100%);
}

#pricing .pricing-card::before {
  content: none;
}

#pricing .pricing-card:hover,
#pricing .pricing-card:focus-visible,
#pricing .pricing-card:focus-within {
  filter: brightness(1.055) saturate(1.08);
  outline: none;
  transform: scale(1.018);
  box-shadow: 0 0 0 1px rgba(120, 207, 240, 0.16), 0 18px 54px rgba(0, 0, 0, 0.24);
}

#pricing .pricing-card--primary:hover,
#pricing .pricing-card--primary:focus-visible,
#pricing .pricing-card--primary:focus-within {
  border-color: rgba(53, 230, 177, 1);
  background:
    radial-gradient(circle at var(--pricing-hover-x) var(--pricing-hover-y), rgba(53, 230, 177, 0.3), transparent 14.5rem),
    linear-gradient(90deg, rgba(4, 8, 10, 0.99) 0%, rgba(6, 13, 14, 0.97) 58%, rgba(12, 39, 32, 0.78) 100%);
}

#pricing .pricing-card--team:hover,
#pricing .pricing-card--team:focus-visible,
#pricing .pricing-card--team:focus-within {
  border-color: rgba(120, 207, 240, 0.72);
  background:
    radial-gradient(circle at var(--pricing-hover-x) var(--pricing-hover-y), rgba(120, 207, 240, 0.24), transparent 12.5rem),
    linear-gradient(135deg, rgba(14, 20, 23, 0.97) 0%, rgba(9, 14, 17, 0.96) 64%, rgba(18, 42, 50, 0.68) 100%);
}

#pricing .pricing-card__label,
#pricing .pricing-card__deadline,
#pricing .pricing-card__copy,
#pricing .pricing-card__cta,
#pricing .pricing-card__secondary {
  font-family: var(--pricing-mono-font, var(--mono));
  letter-spacing: 0;
}

#pricing .pricing-card__label {
  margin: 0 0 clamp(20px, 1.85vw, 26px);
  color: #78cff0;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.15;
  font-weight: 650;
}

#pricing .pricing-card__title {
  max-width: 10.7ch;
  margin: 0;
  color: #f7f7f2;
  font-family: var(--pricing-display-font, var(--hero-display));
  font-size: clamp(32px, 3.05vw, 44px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

#pricing .pricing-card--team .pricing-card__title {
  max-width: 10.5ch;
  font-size: clamp(24px, 2.28vw, 32px);
}

#pricing .pricing-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 0.98vw, 14px);
  margin-top: clamp(22px, 2vw, 28px);
  color: #f7f7f2;
  font-family: var(--pricing-display-font, var(--hero-display));
  line-height: 0.84;
  font-weight: 900;
  font-variation-settings: "wght" 900;
  letter-spacing: 0;
}

#pricing .pricing-card--team .pricing-card__price {
  gap: clamp(8px, 0.82vw, 12px);
  margin-top: clamp(16px, 1.5vw, 22px);
}

#pricing .pricing-card__price--discount .pricing-card__old-price {
  margin: 0;
  color: rgba(171, 184, 184, 0.78);
  font-family: var(--pricing-display-font, var(--hero-display));
  font-size: clamp(18px, 1.42vw, 22px);
  line-height: 0.96;
  font-weight: 850;
  text-decoration-line: line-through;
  text-decoration-thickness: 0.12em;
  text-decoration-color: rgba(171, 184, 184, 0.78);
}

#pricing .pricing-card__price--discount .pricing-card__current-price {
  margin: 0;
  color: #35e6b1;
  font-family: var(--pricing-display-font, var(--hero-display));
  font-size: clamp(54px, 5.1vw, 76px);
  line-height: 0.82;
  font-weight: 900;
  font-variation-settings: "wght" 900;
  white-space: nowrap;
}

#pricing .pricing-card--team .pricing-card__current-line {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(7px, 0.68vw, 10px);
  margin: 0;
  line-height: 0.84;
  white-space: nowrap;
}

#pricing .pricing-card--team .pricing-card__price--discount .pricing-card__current-line .pricing-card__current-price {
  color: #78cff0;
  font-size: clamp(38px, 3.58vw, 52px);
}

#pricing .pricing-card__price .pricing-card__unit {
  margin: 0;
  color: rgba(247, 247, 242, 0.72);
  font-family: var(--pricing-mono-font, var(--mono));
  font-size: clamp(10px, 0.76vw, 12px);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

#pricing .pricing-card__deadline {
  margin: clamp(10px, 0.95vw, 14px) 0 0;
  color: rgba(247, 247, 242, 0.62);
  font-size: clamp(10px, 0.76vw, 12px);
  line-height: 1.2;
  font-weight: 500;
}

#pricing .pricing-card--primary .pricing-card__copy {
  display: none;
}

#pricing .pricing-card--team .pricing-card__copy {
  position: absolute;
  left: 0;
  bottom: calc(-1 * clamp(24px, 2.18vw, 30px));
  max-width: none;
  margin: 0;
  color: rgba(247, 247, 242, 0.68);
  font-size: clamp(10px, 0.78vw, 12px);
  line-height: 1.46;
  font-weight: 430;
  white-space: nowrap;
}

#pricing .pricing-card__cta,
#pricing .pricing-card__secondary {
  position: static;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: clamp(38px, 3vw, 44px);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(11px, 0.8vw, 12px);
  line-height: 1;
  font-weight: 700;
  text-transform: lowercase;
  text-decoration: none;
  white-space: nowrap;
}

#pricing .pricing-card__cta {
  align-self: flex-end;
  margin-top: auto;
  width: clamp(166px, 13.4vw, 196px);
  height: clamp(38px, 3.1vw, 44px);
  border: 1px solid rgba(53, 230, 177, 0.9);
  background: rgba(53, 230, 177, 0.12);
  color: #35e6b1;
}

#pricing .pricing-card__secondary {
  align-self: flex-end;
  margin-left: auto;
  margin-top: auto;
  width: clamp(144px, 11.2vw, 166px);
  height: clamp(36px, 2.82vw, 40px);
  border: 1px solid rgba(247, 247, 242, 0.42);
  background: transparent;
  color: rgba(247, 247, 242, 0.86);
}

#pricing .pricing-card:hover .pricing-card__cta,
#pricing .pricing-card:focus-visible .pricing-card__cta,
#pricing .pricing-card:focus-within .pricing-card__cta {
  border-color: #35e6b1;
  background: #35e6b1;
  color: #071316;
}

#pricing .pricing-card:hover .pricing-card__secondary,
#pricing .pricing-card:focus-visible .pricing-card__secondary,
#pricing .pricing-card:focus-within .pricing-card__secondary {
  border-color: #78cff0;
  background: #78cff0;
  color: #071316;
}

#pricing .pricing-card__cta:hover,
#pricing .pricing-card__cta:focus-visible {
  border-color: #35e6b1;
  background: #35e6b1;
  color: #071316;
}

#pricing .pricing-card__secondary:hover,
#pricing .pricing-card__secondary:focus-visible {
  border-color: #78cff0;
  background: #78cff0;
  color: #071316;
}

#pricing .pricing-card__select {
  display: none;
}

@media (min-width: 761px) and (max-width: 1120px) {
  #pricing .pricing-grid {
    width: min(840px, 100%);
    grid-template-columns: minmax(0, 462fr) minmax(12px, 18fr) minmax(322px, 360fr);
  }

  #pricing .pricing-card__title {
    font-size: clamp(27px, 3.6vw, 36px);
  }

  #pricing .pricing-card--team .pricing-card__title {
    font-size: clamp(22px, 2.82vw, 28px);
  }

  #pricing .pricing-card__price--discount .pricing-card__current-price {
    font-size: clamp(46px, 6.1vw, 62px);
  }

  #pricing .pricing-card--team .pricing-card__price--discount .pricing-card__current-line .pricing-card__current-price {
    font-size: clamp(32px, 4.18vw, 42px);
  }
}

@media (max-width: 760px) {
  #pricing .pricing-shell {
    padding-right: 0;
  }

  #pricing .pricing-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  #pricing .pricing-grid::before {
    content: none;
  }

  #pricing .pricing-card {
    grid-column: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    padding: 24px 22px;
    border-radius: 0;
  }

  #pricing .pricing-card--team {
    grid-column: 1;
    margin-top: 0;
  }

  #pricing .pricing-card__title {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  #pricing .pricing-card--team .pricing-card__title {
    font-size: clamp(27px, 7.4vw, 34px);
  }

  #pricing .pricing-card__price--discount .pricing-card__current-price {
    font-size: clamp(50px, 13vw, 64px);
  }

  #pricing .pricing-card--team .pricing-card__price--discount .pricing-card__current-line .pricing-card__current-price {
    font-size: clamp(42px, 11vw, 54px);
  }

  #pricing .pricing-card--team .pricing-card__copy,
  #pricing .pricing-card__copy {
    position: static;
    display: block;
    margin: 14px 0 18px;
    white-space: normal;
  }

  #pricing .pricing-card__cta,
  #pricing .pricing-card__secondary {
    position: static;
    width: 100%;
    height: 44px;
    margin-top: 10px;
  }
}
