: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);
  /* audience-accent: mirrors --role-accent, switched by body[data-audience] and script.js */
  --audience-accent: var(--role-accent);
  --mono: "IBM Plex Mono", "SFMono-Regular", "Roboto Mono", monospace;
  --display: "Geologica", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hero-display: "Roboto Condensed", "Arial Narrow", "Helvetica Neue Condensed Bold", "Helvetica Neue", Arial, sans-serif;
}

/* audience-accent per-audience CSS fallbacks (script.js sets --role-accent on body.style, which cascades) */
body[data-audience="enterprise"] {
  --audience-accent: #6c9bff;
}

body[data-audience="founders-smb"] {
  --audience-accent: #35e6b1;
}

body[data-audience="micro-personal"] {
  --audience-accent: #f0a840;
}

* {
  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(--display);
  font-feature-settings: "kern" 1, "liga" 1;
}

[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;
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.78);
  mix-blend-mode: screen;
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

.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-accent per-tab color variables */
.audience-tab[data-audience-choice="enterprise"] {
  --tab-accent: #6c9bff;
  --tab-accent-soft: rgba(108, 155, 255, 0.12);
}

.audience-tab[data-audience-choice="founders-smb"] {
  --tab-accent: #35e6b1;
  --tab-accent-soft: rgba(53, 230, 177, 0.12);
}

.audience-tab[data-audience-choice="micro-personal"] {
  --tab-accent: #f0a840;
  --tab-accent-soft: rgba(240, 168, 64, 0.12);
}

.audience-tabs {
  display: flex;
  align-items: stretch;
  gap: 4px;
  flex: 0 1 clamp(260px, 22vw, 400px);
  min-width: 0;
  font-family: var(--mono);
}

.audience-tab {
  appearance: none;
  min-width: 0;
  min-height: 30px;
  flex: 1 1 0;
  border: 1px solid color-mix(in srgb, var(--tab-accent, var(--role-accent)), transparent 72%);
  border-radius: 0;
  padding: 4px 7px;
  background: rgba(247, 247, 242, 0.022);
  color: color-mix(in srgb, var(--tab-accent, var(--muted)), transparent 30%);
  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;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audience-tab span {
  color: color-mix(in srgb, var(--tab-accent, var(--role-accent)), var(--ink) 28%);
  font-size: clamp(7px, 0.48vw, 9px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.audience-tab b {
  margin-top: 4px;
  color: inherit;
  font-size: clamp(9px, 0.65vw, 11px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.audience-tab:hover,
.audience-tab:focus-visible {
  border-color: color-mix(in srgb, var(--tab-accent, var(--role-accent)), transparent 42%);
  background: var(--tab-accent-soft, rgba(53, 230, 177, 0.08));
  color: var(--ink);
  outline: none;
}

.audience-tab.is-active {
  border-color: var(--tab-accent, var(--role-accent));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--tab-accent, var(--role-accent)), transparent 78%), rgba(247, 247, 242, 0.025));
  color: var(--ink);
  box-shadow: 0 0 20px color-mix(in srgb, var(--tab-accent, var(--role-accent)), transparent 80%);
}

.audience-tab.is-active span {
  opacity: 1;
}

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: clamp(10px, 1.1vw, 20px);
  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: none;
  margin: 0;
  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: "▸";
  position: absolute;
  right: clamp(18px, 1.65vw, 30px);
  top: 50%;
  color: var(--hot);
  font-size: 10px;
  line-height: 1;
  transform: translateY(-50%);
}

.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 {
  display: block;
  position: fixed;
  top: 50%;
  right: clamp(6px, 0.9vw, 14px);
  z-index: 34;
  width: clamp(96px, 7vw, 132px);
  max-height: calc(100svh - 108px);
  padding: 8px 6px 8px 10px;
  overflow: auto;
  border: 1px solid rgba(126, 207, 242, 0.14);
  border-right: 0;
  background: rgba(8, 10, 14, 0.55);
  box-shadow: -14px 0 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(16px, -50%);
  backdrop-filter: blur(10px);
  -webkit-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(3px, 0.7vh, 7px);
}

.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);
}

.nav-dropdown__panel .is-disabled {
  color: var(--dim);
  cursor: not-allowed;
}

.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(12px, 2.2vh, 24px);
  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: anywhere;
}

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 !important;
}

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;
}

.hero-focus-note {
  max-width: 58ch;
  margin: 8px 0 0;
  color: rgba(247, 247, 242, 0.58);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.44;
  font-weight: 600;
}

.hero-focus-through {
  margin-top: 12px;
  color: rgba(247, 247, 242, 0.64);
}

.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: "Material Symbols Sharp";
  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;
}

.audience-readout {
  width: min(100%, 520px);
  margin-top: clamp(12px, 2vh, 18px);
  padding: 12px 14px;
  border-left: 2px solid var(--role-accent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--role-accent), transparent 88%), rgba(247, 247, 242, 0.018));
  color: var(--muted);
  font-family: var(--mono);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--role-accent), transparent 86%);
}

.audience-readout span,
.audience-readout b {
  display: inline-flex;
  vertical-align: baseline;
}

.audience-readout span {
  color: var(--role-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-readout b {
  margin-left: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.audience-readout p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(180px, 220px);
  gap: 14px;
  align-items: center;
  width: min(100%, 520px);
  margin-top: clamp(18px, 3vh, 32px);
}

.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 {
  width: 100%;
  margin-top: 0;
}

.hero-route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  padding: 0 clamp(18px, 1.8vw, 26px);
  background: rgba(247, 247, 242, 0.034);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mono);
  font-size: clamp(12px, 0.76vw, 14px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  width: 100%;
  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);
}

.hero-route-link:hover,
.hero-route-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--role-accent);
  background: var(--role-soft);
  outline: none;
}

.variant-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
}

.variant-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(244, 240, 234, 0.045);
  color: var(--dim);
  text-decoration: none;
}

.variant-switcher a:hover,
.variant-switcher a:focus-visible,
.variant-switcher a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(244, 240, 234, 0.09);
}

body[data-visual="firefly"] .variant-switcher a {
  background: rgba(120, 207, 240, 0.035);
}

body[data-visual="firefly"] .variant-switcher a:hover,
body[data-visual="firefly"] .variant-switcher a:focus-visible,
body[data-visual="firefly"] .variant-switcher a[aria-current="page"] {
  background: rgba(120, 207, 240, 0.085);
}

.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__title {
  max-width: 14.2ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 4.7vw, 76px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.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(--display);
  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(--display);
  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(11px, 0.78vw, 13px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.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-motion {
  position: absolute;
  z-index: 3;
  left: clamp(30px, 2.8vw, 46px);
  right: clamp(30px, 2.8vw, 46px);
  top: clamp(58px, 5.4vw, 82px);
  height: 1px;
  pointer-events: none;
}

.route-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--button-bg), transparent);
  opacity: 0.34;
}

.route-runner {
  position: absolute;
  left: calc(var(--route-progress) * 100%);
  top: 0;
  width: clamp(14px, 1.25vw, 22px);
  height: clamp(14px, 1.25vw, 22px);
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 24px var(--cta-glow), 0 0 64px rgba(43, 100, 238, 0.28);
  transform: translate(-50%, -50%);
  transition: left 180ms linear;
}

.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);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.route-card::after {
  content: "→";
  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-passed,
.route-card.is-active {
  background: var(--hot-soft);
}

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

.route-card__meta {
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-card__num {
  width: clamp(42px, 3.5vw, 56px);
  height: clamp(42px, 3.5vw, 56px);
  margin-top: clamp(18px, 2.1vw, 28px);
  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-passed,
.route-card--goal.is-active {
  background: #05070a;
}

.route-card--goal h3,
.route-card--goal .route-card__meta {
  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;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.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 {
    margin-top: clamp(24px, 3.4vh, 38px);
  }

  .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__title {
    max-width: 14.2ch;
    font-size: clamp(42px, 4.35vw, 62px);
    line-height: 0.98;
  }

  .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;
  }

  .route-motion {
    right: clamp(30px, 2.8vw, 46px);
    width: auto;
  }
}

.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;
  color: var(--hot);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.route-head .section-kicker {
  max-width: none;
  margin: 0 0 12px;
  color: var(--hot);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.schedule-header h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(46px, 5.2vw, 84px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.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-domain-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  justify-content: flex-end;
  gap: 10px;
  width: min(100%, 760px);
}

.schedule-domain-tabs button {
  appearance: none;
  min-height: 54px;
  padding: 0 18px;
  border: 2px solid rgba(120, 207, 240, 0.32);
  border-radius: 4px;
  background: rgba(120, 207, 240, 0.06);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(12px, 0.94vw, 15px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.schedule-domain-tabs button:hover,
.schedule-domain-tabs button:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(247, 247, 242, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.schedule-domain-tabs button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--schedule-domain-accent, var(--role-accent));
  background: color-mix(in srgb, var(--schedule-domain-accent, var(--role-accent)), transparent 82%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--schedule-domain-accent, var(--role-accent)), transparent 72%), 0 0 28px color-mix(in srgb, var(--schedule-domain-accent, var(--role-accent)), transparent 76%);
}

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

.schedule-domain-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 78vw);
  max-width: 1100px;
  margin: -6px 0 16px;
}

.schedule-domain-route[hidden] {
  display: none;
}

.schedule-domain-route__step {
  min-width: 0;
  min-height: 92px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--schedule-domain-accent, var(--role-accent)), transparent 58%);
  border-radius: 4px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--schedule-domain-accent, var(--role-accent)), transparent 86%), rgba(247, 247, 242, 0.025)),
    rgba(4, 8, 12, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.schedule-domain-route__step span {
  display: block;
  margin-bottom: 9px;
  color: var(--schedule-domain-accent, var(--role-accent));
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.schedule-domain-route__step strong {
  display: block;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.schedule-domain-route__step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(10px, 0.74vw, 12px);
  line-height: 1.25;
  font-weight: 650;
}

.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.coworking {
  --dot: #7cc8e6;
}

.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-block.has-domain .sprint-calendar,
.schedule-block.has-domain .schedule-note {
  width: min(100%, 78vw);
  max-width: 1100px;
}

.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-block.has-domain .schedule-empty,
.schedule-block.has-domain .schedule-tile {
  min-height: 86px;
}

.schedule-block.has-domain .schedule-tile {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  padding: 9px 10px;
  text-align: left;
}

.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.coworking {
  border-color: rgba(124, 200, 230, 0.46);
  background: rgba(124, 200, 230, 0.17);
  color: #93d8f2;
}

.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.is-domain-muted {
  opacity: 0.34;
  filter: saturate(0.5);
}

.schedule-tile.is-domain-common,
.schedule-tile.is-domain-focus {
  z-index: 4;
  opacity: 1;
  filter: none;
  color: var(--ink);
}

.schedule-tile.is-domain-focus {
  border-color: var(--schedule-domain-accent, var(--hot));
  background: color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), var(--bg-2) 76%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), transparent 36%), 0 18px 46px color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), transparent 84%);
}

.schedule-tile.is-domain-common {
  border: 1px dashed color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), transparent 8%);
  background: color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), var(--bg-2) 88%);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), transparent 90%);
}

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

.schedule-block.has-domain .schedule-tile .date-num {
  font-size: clamp(18px, 1.6vw, 28px);
}

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

.tile-domain-title,
.tile-domain-meta {
  display: none;
  min-width: 0;
  color: currentColor;
  font-family: var(--mono);
}

.schedule-tile.is-domain-focus .tile-domain-title,
.schedule-tile.is-domain-common .tile-domain-title,
.schedule-tile.is-domain-focus .tile-domain-meta,
.schedule-tile.is-domain-common .tile-domain-meta {
  display: block;
}

.schedule-tile.is-domain-focus .tile-code,
.schedule-tile.is-domain-common .tile-code {
  display: none;
}

.tile-domain-title {
  max-width: 100%;
  margin-top: 2px;
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.tile-domain-meta {
  margin-top: auto;
  color: var(--muted);
  font-size: clamp(9px, 0.76vw, 11px);
  line-height: 1.2;
  font-weight: 700;
}

.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;
}

.tile-tooltip .tile-domain-reason {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--schedule-domain-accent, var(--hot)), transparent 70%);
  color: var(--schedule-domain-accent, var(--hot));
  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;
  }

  .schedule-domain-tabs {
    justify-content: flex-start;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    width: min(100%, 760px);
  }

  .schedule-domain-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
    max-width: 760px;
  }

  .schedule-domain-route__step {
    min-height: 96px;
  }

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

  .schedule-block.has-domain .sprint-calendar,
  .schedule-block.has-domain .schedule-note {
    min-width: 900px;
    width: 900px;
    max-width: none;
  }

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

@media (max-width: 560px) {
  .schedule-domain-tabs {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 40px));
  }

  .schedule-domain-route {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 40px));
    max-width: none;
  }

  .schedule-domain-route__step {
    min-height: 78px;
    padding: 11px 12px;
  }
}

.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);
  max-width: 980px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 4.8vw, 78px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.speakers-note {
  max-width: 78ch;
  margin: clamp(-10px, -1vh, -4px) 0 clamp(26px, 4vh, 42px);
  color: rgba(247, 247, 242, 0.62);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.55;
  font-weight: 600;
}

.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-card--lead {
  grid-template-columns: 112px minmax(0, 1fr);
  border-color: color-mix(in srgb, var(--role-accent), transparent 58%);
  background:
    radial-gradient(circle at 90% 16%, var(--role-soft), transparent 10rem),
    rgba(247, 247, 242, 0.052);
}

.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-photo--initials {
  display: grid;
  place-items: center;
  color: rgba(247, 247, 242, 0.74);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background:
    radial-gradient(circle at 35% 28%, rgba(43, 100, 238, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(247, 247, 242, 0.18), rgba(126, 207, 242, 0.08));
}

.speaker-card--lead .speaker-photo {
  width: 112px;
}

.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.08em;
  text-transform: uppercase;
}

.speaker-links {
  margin: 7px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: clamp(11px, 0.76vw, 13px);
  line-height: 1.35;
  font-weight: 500;
}

.speaker-links a {
  color: rgba(247, 247, 242, 0.46);
  text-decoration: none;
}

.speaker-links a:hover,
.speaker-links a:focus-visible {
  color: var(--button-bg);
}

.speaker-body > p:last-child {
  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-speakers__intro {
  max-width: 70ch;
  margin: 0;
  color: rgba(247, 247, 242, 0.52);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.45;
  font-weight: 500;
}

.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);
}

.speaker-more--live {
  margin-bottom: clamp(26px, 4vh, 42px);
}

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

.speaker-more-grid span {
  color: rgba(17, 17, 17, 0.54);
  font-family: var(--mono);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.4;
  font-weight: 600;
}

#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);
}

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

.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;
}

.curator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.curator-card {
  min-width: 0;
  text-align: center;
}

.curator-photo {
  width: clamp(104px, 11vw, 150px);
  aspect-ratio: 1;
  display: block;
  margin: 0 auto 14px;
  border: 1px solid rgba(126, 207, 242, 0.24);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: rgba(247, 247, 242, 0.12);
  filter: grayscale(1) contrast(1.06);
}

.curator-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.08;
  font-weight: 900;
}

.curator-card p {
  max-width: 22ch;
  margin: 10px auto 0;
  color: rgba(247, 247, 242, 0.52);
  font-family: var(--mono);
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.35;
  font-weight: 600;
}

@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 {
  max-width: 10.8ch;
  margin: 0 0 clamp(38px, 5.8vh, 68px);
  color: #111111;
  font-family: var(--display);
  font-size: clamp(52px, 6.8vw, 112px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
  text-wrap: balance;
}

.testimonials-title span {
  display: block;
  color: var(--button-bg);
}

.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(42px, 6vh, 72px) clamp(20px, 5.6vw, 88px) clamp(52px, 7vh, 82px);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(120, 207, 240, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfbf7 0%, #f4f3ed 100%);
  color: #111111;
}

.alumni-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.32;
  mix-blend-mode: multiply;
}

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

.alumni-title {
  margin: 0 0 clamp(20px, 3vh, 30px);
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--mono);
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.alumni-note {
  max-width: 780px;
  margin: clamp(-12px, -1vh, -6px) 0 clamp(22px, 3vh, 36px);
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.55;
  font-weight: 500;
}

.alumni-marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.08);
  -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: none;
  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: #111111;
  line-height: 1;
  white-space: normal;
}

.alumni-logo img,
.alumni-logo__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.7) brightness(1.2) opacity(0.48);
  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 {
  filter: var(--logo-hover-filter);
  opacity: 1;
  transform: translate3d(0, -1px, 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: none;
}

.alumni-logo--sber {
  --logo-width: clamp(148px, 12vw, 190px);
  --logo-height: clamp(26px, 3vw, 38px);
}

.alumni-logo--yandex {
  --logo-width: clamp(132px, 9.8vw, 174px);
  --logo-height: clamp(34px, 3.2vw, 46px);
}

.alumni-logo--avito {
  --logo-width: clamp(128px, 9.6vw, 166px);
  --logo-height: clamp(34px, 3.2vw, 46px);
}

.alumni-logo--moex {
  --logo-width: clamp(112px, 8.4vw, 148px);
  --logo-height: clamp(34px, 3.2vw, 44px);
}

.alumni-logo--alfa-capital {
  --logo-width: clamp(148px, 11.6vw, 190px);
  --logo-height: clamp(30px, 3vw, 42px);
}

.alumni-logo--semrush {
  --logo-width: clamp(142px, 10.8vw, 176px);
  --logo-height: clamp(34px, 3.6vw, 48px);
  --logo-hover-filter: brightness(0) saturate(100%) invert(67%) sepia(68%) saturate(885%) hue-rotate(212deg) brightness(101%) contrast(97%);
}

.alumni-logo--nebius {
  --logo-width: clamp(132px, 10vw, 174px);
  --logo-height: clamp(28px, 2.6vw, 38px);
}

.alumni-logo--tutu {
  --logo-width: clamp(108px, 8.5vw, 138px);
  --logo-height: clamp(38px, 3.8vw, 52px);
}

.alumni-logo--wordmark {
  padding-left: 0;
}

@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-grid {
  margin-top: clamp(28px, 4.8vh, 58px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(126, 207, 242, 0.26);
  background: rgba(247, 247, 242, 0.026);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.depth-layer-card {
  min-height: clamp(260px, 20vw, 330px);
  padding: clamp(22px, 2.5vw, 40px);
  border-right: 1px solid rgba(126, 207, 242, 0.12);
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.045), rgba(247, 247, 242, 0.01)),
    rgba(5, 7, 10, 0.16);
}

.depth-layer-card:nth-child(2n),
.depth-layer-card:last-child {
  border-right: 0;
}

.depth-layer-card--wide,
.depth-layer-card--platform {
  grid-column: auto;
}

.depth-layer-card__label {
  margin: 0 0 clamp(22px, 2.6vw, 34px);
  color: #35e6b1;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.depth-layer-card h3 {
  max-width: 21ch;
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 32px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.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;
}

.depth-chip-row,
.artifact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(22px, 3vw, 36px);
}

.depth-chip-row span,
.artifact-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(126, 207, 242, 0.2);
  background: rgba(126, 207, 242, 0.07);
  color: rgba(247, 247, 242, 0.76);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.artifact-grid span {
  justify-content: center;
  min-height: 42px;
  text-align: center;
}

.depth-name-list {
  margin: clamp(18px, 2.8vw, 30px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(126, 207, 242, 0.16);
}

.depth-name-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(126, 207, 242, 0.12);
  color: rgba(247, 247, 242, 0.88);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.25;
  font-weight: 800;
}

.depth-name-list span {
  color: rgba(247, 247, 242, 0.42);
  font-size: 11px;
  font-weight: 600;
}

.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;
}

.adaptive-lab-head h2,
.case-library-head h2 {
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 78px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.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;
}

.adaptive-lab-grid,
.case-path-grid {
  margin-top: clamp(34px, 5.6vh, 68px);
  display: grid;
  border: 1px solid rgba(126, 207, 242, 0.24);
  background: rgba(247, 247, 242, 0.032);
}

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

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

.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-meta {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 14px clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgba(126, 207, 242, 0.12);
  color: rgba(247, 247, 242, 0.48);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.case-story-meta-title {
  color: rgba(247, 247, 242, 0.78);
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 900;
}

.case-story-meta [data-case-filter-count] {
  margin-left: auto;
  color: rgba(247, 247, 242, 0.46);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.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-story-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.case-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.case-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(247, 247, 242, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(247, 247, 242, 0.58), transparent 0 24%, transparent 25%),
    linear-gradient(135deg, color-mix(in srgb, var(--role-accent) 56%, #f7f7f2 44%), rgba(5, 7, 10, 0.78));
  color: #05070a;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
}

.case-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 1px solid rgba(126, 207, 242, 0.2);
  border-radius: 4px;
  color: var(--role-accent);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 8px;
  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(--display);
  font-size: clamp(27px, 2.2vw, 40px);
  line-height: 1;
  font-weight: 900;
  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-card[open] .case-story-open {
  color: var(--role-accent);
}

.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: 10px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-story-detail dd {
  color: rgba(247, 247, 242, 0.66);
  font-size: clamp(12px, 0.84vw, 14px);
  line-height: 1.5;
  font-weight: 600;
}

.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-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)
    34px;
  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-file-id {
  color: var(--role-accent);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.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: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-story-card summary strong {
  max-width: none;
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(17px, 1.28vw, 24px);
  line-height: 1.06;
}

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

.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-size: clamp(17px, 1.2vw, 22px);
  line-height: 1;
  font-weight: 900;
  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: center;
}

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

.case-story-open {
  display: inline-grid;
  width: 32px;
  height: 32px;
  align-self: auto;
  justify-self: end;
  place-items: center;
  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: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.case-story-open::before {
  content: "↘";
  font-family: var(--mono);
  font-size: 19px;
  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);
}

.case-story-card[open] .case-story-open::before {
  content: "↗";
}

.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: 2;
  display: grid;
  min-width: 0;
  overflow: hidden;
  align-self: start;
  margin-top: clamp(18px, 2.8vw, 34px);
  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-detail-person {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-top: 18px;
}

.case-detail-person .case-avatar {
  width: 42px;
  height: 42px;
}

.case-detail-person span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.case-detail-person b,
.case-detail-person small {
  display: block;
  font-family: var(--mono);
}

.case-detail-person b {
  color: #f7f7f2;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

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

.case-detail-person .case-company-link {
  display: inline;
  width: auto;
  color: rgba(99, 204, 255, 0.78);
  border-bottom-color: rgba(99, 204, 255, 0.35);
  font-size: inherit;
}

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

.adaptive-lab-cell,
.case-path-card {
  min-height: clamp(250px, 19vw, 330px);
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(126, 207, 242, 0.14);
  background: rgba(5, 7, 10, 0.2);
}

.adaptive-lab-cell:last-child,
.case-path-card:last-child {
  border-right: 0;
}

.adaptive-lab-cell:nth-child(2n) {
  border-right: 0;
}

.adaptive-lab-cell:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(126, 207, 242, 0.14);
}

.adaptive-lab-cell span,
.case-path-card p {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--role-accent);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adaptive-lab-cell h3,
.case-path-card h3 {
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.adaptive-lab-cell p,
.case-path-card span,
.case-library-note span {
  display: block;
  margin: clamp(18px, 2.5vw, 28px) 0 0;
  color: rgba(247, 247, 242, 0.62);
  font-family: var(--mono);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.58;
  font-weight: 600;
}

.adaptive-example,
.case-library-note {
  margin-top: clamp(20px, 3.2vh, 34px);
  border: 1px dashed rgba(126, 207, 242, 0.22);
  background: rgba(247, 247, 242, 0.035);
}

.adaptive-example {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) repeat(2, minmax(0, 1fr));
}

.adaptive-example > p,
.adaptive-example > div,
.case-library-note {
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
}

.adaptive-example > p {
  margin: 0;
  color: var(--role-accent);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adaptive-example > div {
  border-left: 1px dashed rgba(126, 207, 242, 0.16);
}

.adaptive-example b,
.adaptive-example span,
.case-library-note b {
  display: block;
  font-family: var(--mono);
}

.adaptive-example b,
.case-library-note b {
  color: rgba(247, 247, 242, 0.88);
  font-size: clamp(13px, 0.94vw, 16px);
  line-height: 1.35;
  font-weight: 900;
}

.adaptive-example span {
  margin-top: 12px;
  color: rgba(247, 247, 242, 0.58);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.55;
  font-weight: 600;
}

.case-path-card span {
  color: var(--role-accent);
}

.case-library-block--cards {
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 207, 242, 0.16), transparent 28%),
    radial-gradient(circle at 84% 30%, rgba(180, 126, 242, 0.12), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #071013 100%);
}

.case-library-block--cards .case-library-head {
  grid-template-columns: minmax(220px, 0.36fr) minmax(430px, 0.82fr) minmax(320px, 0.72fr);
}

.case-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(38px, 5.6vh, 70px);
}

.case-blueprint-card {
  --case-card-accent: #7ecff2;
  --case-card-accent-soft: rgba(126, 207, 242, 0.18);
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(190px, auto) auto auto;
  min-width: 0;
  min-height: clamp(590px, 45vw, 680px);
  overflow: hidden;
  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 28px 82px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #1d2026;
}

.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-blueprint-card::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-blueprint-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -28%;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--case-card-accent-soft), transparent 62%);
  pointer-events: none;
}

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

.case-blueprint-card__top {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2vw, 26px) clamp(20px, 2.2vw, 28px) 0;
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.case-blueprint-code {
  color: color-mix(in srgb, var(--case-card-accent) 78%, #1d2026 22%);
}

.case-blueprint-route {
  color: rgba(29, 32, 38, 0.54);
  text-align: right;
}

.case-blueprint-identity {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: clamp(26px, 3vw, 40px) clamp(20px, 2.2vw, 28px) 0;
}

.case-blueprint-person {
  color: rgba(29, 32, 38, 0.56);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.25;
  font-weight: 900;
}

.case-blueprint-identity h3 {
  margin: 0;
  color: #1d2026;
  font-family: var(--display);
  font-size: clamp(28px, 2.1vw, 40px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.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-identity p {
  margin: 0;
  color: rgba(29, 32, 38, 0.68);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.48;
  font-weight: 700;
}

.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-blueprint-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 clamp(20px, 2.2vw, 28px) clamp(18px, 2vw, 24px);
}

.case-blueprint-metrics span {
  display: grid;
  min-width: 0;
  gap: 8px;
  align-content: start;
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(29, 32, 38, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.34);
}

.case-blueprint-metrics b,
.case-blueprint-metrics small {
  display: block;
  min-width: 0;
  font-family: var(--mono);
  letter-spacing: 0;
}

.case-blueprint-metrics b {
  color: #1d2026;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.case-blueprint-metrics small {
  color: rgba(29, 32, 38, 0.55);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
}

.case-blueprint-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin-top: auto;
  padding: 0 clamp(20px, 2.2vw, 28px);
  border-top: 1px solid rgba(29, 32, 38, 0.1);
  color: color-mix(in srgb, var(--case-card-accent) 72%, #1d2026 28%);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.case-blueprint-link::after {
  content: "↓";
  font-size: 18px;
  line-height: 1;
}

.case-blueprint-link:hover,
.case-blueprint-link:focus-visible {
  outline: none;
  background: color-mix(in srgb, var(--case-card-accent) 16%, transparent);
  color: #1d2026;
}

.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--cards .case-library-head,
.case-blueprint-link {
  display: none;
}

.case-library-block--cards .case-blueprint-grid {
  margin-top: 0;
}

.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;
}

.faq-module {
  margin-bottom: clamp(28px, 4vw, 54px);
}

.faq-category {
  border-bottom: 1px solid rgba(24, 22, 22, 0.08);
}

.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: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 6px;
  color: rgba(24, 22, 22, 0.72);
  font-family: var(--mono);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.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;
  padding: 0 6px 18px;
}

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

.faq-items details > summary {
  padding: 15px 0;
  color: rgba(24, 22, 22, 0.86);
  font-family: var(--mono);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.35;
  font-weight: 800;
}

.faq-items p {
  max-width: 920px;
  margin: 0;
  padding: 0 0 18px;
  color: rgba(24, 22, 22, 0.62);
  font-family: var(--mono);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.65;
  font-weight: 500;
}

.faq-question-link {
  margin-top: clamp(22px, 3vw, 36px);
}

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

.faq-question-link a::before {
  content: "/";
  margin-right: 7px;
  color: rgba(24, 22, 22, 0.24);
}

.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: 24px;
  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(92px, 14vh, 164px) clamp(20px, 5.6vw, 88px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, var(--role-soft), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(120, 207, 240, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  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: 1040px;
  margin: 0 auto;
}

.final-cta-kicker {
  margin: 0 0 clamp(20px, 3vh, 34px);
}

.final-cta-shell h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--hero-display);
  font-size: clamp(74px, 9vw, 162px);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
  text-shadow: 0 0 34px rgba(247, 247, 242, 0.08);
}

.final-cta-shell h2 span {
  display: block;
  color: var(--role-accent);
  text-shadow: 0 0 42px var(--role-glow);
}

.final-cta-shell p:not(.final-cta-kicker) {
  max-width: 620px;
  margin: clamp(22px, 3.2vh, 38px) auto 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.55;
  font-weight: 600;
}

.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 {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483100;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  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 {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 2147483099;
  width: min(420px, calc(100vw - 36px));
  max-height: calc(100svh - 120px);
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
  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 {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(247, 247, 242, 0.045);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  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 [hidden] {
  display: none !important;
}

.assistant-controls input {
  min-width: 0;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  font-family: var(--mono);
  font-size: 11px;
}

.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;
  color: #111111;
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 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(270px, 19vw, 330px);
  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: color-mix(in srgb, var(--audience-accent, var(--role-accent)), rgba(17,17,17,0.2) 60%);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--audience-accent, var(--role-accent)), transparent 82%), 0 8px 40px color-mix(in srgb, var(--audience-accent, var(--role-accent)), transparent 90%);
}

.pricing-card__label {
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  color: rgba(17, 17, 17, 0.42);
  font-family: var(--mono);
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.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: color-mix(in srgb, var(--audience-accent, var(--role-accent)), #111111 78%);
}

.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%, 48ch);
  margin: clamp(18px, 2.4vw, 28px) 0 clamp(54px, 4.8vw, 78px);
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
  white-space: pre-line;
}

.pricing-card__microcopy {
  max-width: 34ch;
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.42);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.45;
  font-weight: 600;
}

.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 color-mix(in srgb, var(--audience-accent, var(--button-border)), transparent 22%);
  background: var(--audience-accent, var(--button-bg));
  color: #08080c;
  box-shadow: 0 16px 46px color-mix(in srgb, var(--audience-accent, #2b64ee), transparent 72%);
}

.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: 1180px) 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
      38px;
    row-gap: 11px;
  }

  .case-file-id {
    grid-column: 1;
    grid-row: 1;
  }

  .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;
  }

  .depth-layer-grid,
  .adaptive-lab-grid,
  .case-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-blueprint-card {
    min-height: 0;
  }

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

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

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

  .depth-layer-card:nth-child(2n),
  .adaptive-lab-cell:nth-child(2n),
  .case-path-card:nth-child(2n) {
    border-right: 0;
  }

  .depth-layer-card--wide,
  .depth-layer-card--platform {
    grid-column: span 2;
  }
}

@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;
  }

  .alumni-note {
    margin-top: 0;
    font-size: 12px;
  }

  .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-meta {
    padding: 11px 16px;
  }

  .case-story-meta-title {
    font-size: 12px;
  }

  .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-file-id {
    grid-column: 1;
    grid-row: 1;
  }

  .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: 2;
    justify-self: end;
  }

  .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-grid {
    gap: 16px;
    margin-top: 30px;
  }

  .case-blueprint-card {
    grid-template-rows: auto auto auto auto auto;
  }

  .case-blueprint-card__top {
    gap: 10px;
    padding: 18px 18px 0;
    font-size: 12px;
  }

  .case-blueprint-route {
    max-width: 14ch;
  }

  .case-blueprint-identity {
    padding: 26px 18px 0;
  }

  .case-blueprint-identity h3 {
    font-size: clamp(27px, 8vw, 36px);
  }

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

  .case-blueprint-metrics {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .case-blueprint-metrics span {
    min-height: 0;
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .case-blueprint-link {
    padding-inline: 18px;
  }

  .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;
  }

  .case-library-block--cards .case-library-head {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .depth-layer-grid,
  .adaptive-lab-grid,
  .case-path-grid {
    grid-template-columns: 1fr;
  }

  .depth-layer-card,
  .depth-layer-card--wide,
  .depth-layer-card--platform,
  .adaptive-lab-cell,
  .case-path-card {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(126, 207, 242, 0.16);
    padding: 24px 20px;
  }

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

  .adaptive-lab-cell:last-child,
  .case-path-card:last-child {
    border-bottom: 0;
  }

  .adaptive-lab-cell:last-child,
  .case-path-card:last-child {
    border-bottom: 0;
  }

  .depth-layer-card h3 {
    max-width: 13ch;
    font-size: clamp(25px, 7vw, 34px);
  }

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

  .adaptive-example {
    grid-template-columns: 1fr;
  }

  .adaptive-example > div {
    border-left: 0;
    border-top: 1px dashed rgba(126, 207, 242, 0.16);
  }

}

.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;
}

.original-firefly-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  opacity: 0.68;
  filter: contrast(0.86) brightness(1.08);
  pointer-events: auto;
}

#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.12em;
  text-transform: uppercase;
  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;
  }

  .agent-company__title {
    max-width: 8.2ch;
  }

  .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 {
    margin-top: 20px;
  }

  .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__title {
    max-width: 13.8ch;
    font-size: clamp(36px, 4.4vw, 48px);
    line-height: 1;
  }

  .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;
  }

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

  .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__title {
    max-width: 12.5ch;
    font-size: clamp(38px, 6vw, 52px);
  }

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

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

  .route-motion {
    display: none;
  }

  .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;
  }

  .hero {
    min-height: 100svh;
    gap: 20px;
    padding: 24px 18px 30px;
  }

  .site-header {
    min-height: 54px;
    padding: 8px 14px;
  }

  .header-enroll__status {
    display: none;
  }

  .header-enroll__status i {
    display: none;
  }

  .header-enroll__cta {
    min-height: 32px;
    padding: 0 13px;
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .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;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

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

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

  .hero-secondary {
    max-width: 32ch;
    margin-top: 20px;
    font-size: 14px;
  }

  .hero-cta {
    margin-top: 22px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

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

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

  .program-facts {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .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__title {
    max-width: 10.5ch;
    font-size: clamp(46px, 16vw, 74px);
    line-height: 0.9;
  }

  .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-motion {
    display: none;
  }

  .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,
  .speaker-card--lead,
  .guest-grid .speaker-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

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

  .speaker-more-grid {
    grid-template-columns: 1fr;
  }

  .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: 36px 18px 48px;
  }

  .alumni-title {
    font-size: 14px;
  }

  .alumni-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .alumni-set {
    gap: 28px;
    padding: 24px 26px;
  }

  .alumni-logo {
    font-size: clamp(17px, 6.4vw, 22px);
  }

  .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: 48px;
    font-size: 15px;
  }

  .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,
  .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 (min-width: 1081px) and (max-width: 1340px) {
  /* prevent section-rail (38px + 6px gap) from overlapping rightmost content */
  body.show-section-rail .site-main section,
  body.show-section-rail .pricing-shell,
  body.show-section-rail .case-library-shell {
    padding-right: 52px;
  }
}

@media (max-width: 1080px) {
  .section-rail {
    display: none !important;
  }
}

@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;
  }
}

@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 {
    flex-wrap: wrap;
    align-items: center;
    max-width: 100vw;
    overflow: hidden;
  }

  .audience-tabs {
    order: 4;
    flex: 1 0 100%;
    max-width: none;
    width: 100%;
    overflow-x: auto;
    padding-top: 2px;
    scrollbar-width: none;
  }

  .audience-tabs::-webkit-scrollbar {
    display: none;
  }

  .audience-tab {
    flex: 0 0 max(132px, calc((100vw - 38px) / 3));
    min-height: 38px;
  }

  .audience-tab span {
    font-size: 8px;
  }

  .audience-tab b {
    font-size: 10px;
  }

  .hero {
    padding-top: 116px;
  }

  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;
  }

  .audience-readout {
    max-width: calc(100vw - 36px);
    padding: 11px 12px;
  }

  .audience-readout b {
    display: block;
    margin: 7px 0 0;
  }

  .audience-readout p {
    overflow-wrap: anywhere;
  }

  .program-facts {
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .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-category > summary {
    padding: 18px 0;
  }

  .faq-items {
    padding-inline: 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: anywhere;
    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] .hero-focus-note {
    margin-top: 6px;
    font-size: clamp(11px, 0.9vw, 13px);
    line-height: 1.32;
  }

  body[data-audience] .hero-focus-through {
    margin-top: 8px;
  }

  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;
  }

  .hero-bottom {
    margin-top: 14px;
  }

  .hero-cta,
  .hero-route-link {
    min-height: 40px;
  }

  .variant-switcher {
    margin-top: 8px;
  }

  .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 {
    gap: 7px 10px;
    padding: 6px 12px;
  }

  .site-header .top-nav {
    display: none !important;
  }

  .audience-tabs {
    order: 3;
    gap: 4px;
    padding-top: 0;
  }

  .audience-tab {
    flex: 1 1 0;
    min-height: 34px;
    padding: 4px 6px;
  }

  .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;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.18;
  }

  .hero-secondary {
    max-width: 31ch;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.34;
    min-height: 0;
  }

  .hero-focus-intro {
    max-width: 34ch;
    margin-top: 10px;
  }

  .hero-focus-label,
  .hero-focus-through {
    font-size: 11px;
    line-height: 1.16;
  }

  .hero-focus-note {
    max-width: 34ch;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.32;
  }

  .hero-focus-through {
    margin-top: 8px;
  }

  .door-switch {
    gap: 8px;
    margin-top: 8px;
  }

  .door-card {
    min-height: 118px;
    padding: 12px;
  }

  .door-card span {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .door-card b {
    margin-top: 18px;
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.16;
  }

  .hero-bottom {
    gap: 10px;
    grid-template-columns: minmax(0, 1.08fr) minmax(132px, 0.92fr);
    width: 100%;
    margin-top: 18px;
  }

  .hero-cta,
  .hero-route-link {
    min-height: 38px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .variant-switcher {
    margin-top: 8px;
  }

  .program-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 12px;
  }

  .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);
  }

  .program-facts .fact-row dd {
    font-size: 12px;
    line-height: 1.22;
  }
}

@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;
  }

  .hero-focus-note {
    font-size: 10px;
    line-height: 1.28;
  }

  .door-switch {
    margin-top: 8px;
  }

  .door-card {
    min-height: 108px;
    padding: 11px;
  }

  .door-card b {
    margin-top: 13px;
  }

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

  .program-facts {
    padding: 9px 10px;
  }
}

.adaptive-kinetic-lab {
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-height: clamp(500px, 58vh, 720px);
  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-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);
  pointer-events: none;
}

.adaptive-kinetic-kicker {
  align-self: flex-start;
  margin-bottom: clamp(18px, 2.4vh, 28px);
  pointer-events: auto;
}

.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: 430px;
    cursor: default;
  }

  .adaptive-kinetic-copy {
    padding: 42px 18px;
  }

  .adaptive-kinetic-kicker {
    margin-bottom: 18px;
  }

  .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;
  }

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

@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,
  .speaker-card--lead,
  .guest-grid .speaker-card {
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 16px;
  }

  .speaker-photo,
  .speaker-card--lead .speaker-photo,
  .guest-grid .speaker-photo {
    width: 76px;
  }

  .curator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .curator-photo {
    width: 104px;
  }
}

/* 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 {
    min-height: 0;
    padding: 8px 10px 9px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "brand enroll"
      "audience audience"
      "nav nav";
    gap: 8px 10px;
    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 {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
    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));
    gap: 5px;
    overflow: visible;
    padding: 0;
    min-width: 0;
  }

  .audience-tab {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    min-height: 42px;
    flex: initial;
    flex-basis: auto;
    padding: 6px 7px;
    overflow: hidden;
  }

  .audience-tab span {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .audience-tab b {
    margin-top: 5px;
    font-size: 10px;
    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;
  }

  .hero {
    display: block;
    padding: 148px 16px 26px;
  }

  body[data-audience] .hero-copy {
    display: block;
    width: 100%;
  }

  body[data-audience] .hero-title-stack {
    min-height: 0;
    display: block;
  }

  .eyebrow {
    width: 100%;
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body[data-audience] h1,
  .hero-title-fallback {
    max-width: 100%;
    min-height: 0;
    font-size: clamp(30px, 10.4vw, 40px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-title-fallback span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-secondary {
    max-width: 32ch;
    min-height: 0;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.38;
    overflow-wrap: normal;
  }

  .hero-focus-intro {
    max-width: 34ch;
    margin-top: 12px;
  }

  .hero-focus-label,
  .hero-focus-through {
    font-size: 11px;
    line-height: 1.16;
  }

  .hero-focus-note {
    max-width: 34ch;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.32;
  }

  .hero-focus-through {
    margin-top: 8px;
  }

  .door-switch {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    margin-top: 10px;
    overflow: visible;
    box-sizing: border-box;
  }

  .door-card {
    min-height: 0;
    width: 100%;
    padding: 13px 14px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .door-card span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .door-card b {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .program-facts {
    margin-top: 18px;
    width: 100%;
    padding: 13px 14px;
    gap: 12px;
    overflow: hidden;
  }

  .program-facts .fact-row {
    grid-template-columns: minmax(74px, auto) minmax(0, 1fr);
    column-gap: 12px;
  }

  .program-facts .fact-row dd {
    font-size: 13px;
    line-height: 1.3;
    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 {
    opacity: 0.54;
    filter: saturate(0.86) brightness(0.72);
  }

  .site-header {
    padding: 6px 9px 7px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 5px 8px;
  }

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

  .site-brand span {
    display: none;
  }

  .header-enroll__cta {
    min-height: 30px;
    padding-inline: 11px;
    font-size: 9.5px;
    letter-spacing: 0.02em;
  }

  .audience-tabs {
    gap: 4px;
  }

  .audience-tab {
    min-height: 32px;
    padding: 4px 5px;
  }

  .audience-tab span {
    font-size: 7.5px;
    letter-spacing: 0.045em;
  }

  .audience-tab b {
    margin-top: 4px;
    font-size: 9px;
    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;
  }

  .hero {
    padding: 118px 14px 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 9.5px;
    line-height: 1.22;
    letter-spacing: 0.07em;
  }

  body[data-audience] h1,
  .hero-title-fallback {
    max-width: 100%;
    font-size: clamp(31px, 9.55vw, 38px);
    line-height: 1.02;
    min-height: 0;
  }

  .hero-secondary {
    max-width: 100%;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.34;
  }

  .hero-focus-intro {
    max-width: 100%;
    margin-top: 9px;
  }

  .hero-focus-label,
  .hero-focus-through {
    font-size: 10px;
    line-height: 1.16;
  }

  .hero-focus-note {
    max-width: 36ch;
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.28;
  }

  .hero-focus-through {
    margin-top: 7px;
  }

  .door-switch {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    margin-top: 8px;
  }

  .door-card {
    min-height: 64px;
    padding: 8px 7px;
    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 {
    margin-top: 7px;
    font-size: clamp(9.2px, 2.62vw, 10.6px);
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .program-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    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;
  }

  .program-facts .fact-row dd {
    font-size: 11.5px;
    line-height: 1.24;
  }

  .fact-row--date-range small {
    margin-right: 4px;
    font-size: 8px;
  }

  .agent-company {
    padding: 34px 16px 46px;
  }

  .agent-company__title {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 44px);
    line-height: 0.98;
  }

  .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;
}

.hero-focus-note {
  max-width: 43ch;
  margin: 8px 0 0;
  color: rgba(247, 247, 242, 0.62);
  font-family: var(--mono);
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.38;
  font-weight: 650;
  letter-spacing: 0;
}

@media (max-width: 1120px) {
  .hero-focus-intro {
    width: min(100%, 440px);
  }

  .hero-focus-label {
    font-size: 22px;
  }

  .hero-focus-note {
    font-size: 12px;
    line-height: 1.32;
  }
}

@media (max-width: 760px) {
  .hero-focus-layout {
    margin-top: 14px;
  }

  .hero-focus-layout .door-switch {
    margin-top: 8px;
  }

  .hero-focus-intro {
    width: 100%;
    padding-left: 12px;
  }

  .hero-focus-label {
    font-size: 18px;
    line-height: 1.08;
  }

  .hero-focus-note {
    max-width: 37ch;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.34;
  }
}

@media (max-width: 380px) {
  .hero-focus-label {
    font-size: 17px;
  }

  .hero-focus-note {
    font-size: 10.5px;
    line-height: 1.3;
  }
}

/* Adaptive-lab support cloud: moved from support-depth into the lower part of the AI-lab screen. */
#adaptive-lab .adaptive-lab-tag-cloud-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 4.2vw, 72px);
  bottom: clamp(136px, 17vh, 176px);
  left: clamp(22px, 4.2vw, 72px);
  max-width: 1520px;
  margin: 0 auto;
  padding: clamp(10px, 1.25vw, 16px);
  border: 1px solid rgba(126, 207, 242, 0.24);
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.04), rgba(247, 247, 242, 0.012)),
    rgba(5, 7, 10, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(247, 247, 242, 0.035);
  backdrop-filter: blur(10px);
}

#adaptive-lab .adaptive-lab-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(7px, 0.9vw, 11px);
}

#adaptive-lab .adaptive-lab-tag-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30px, 3vw, 42px);
  padding: 0 clamp(10px, 1.2vw, 17px);
  border: 1px solid rgba(126, 207, 242, 0.34);
  background: rgba(126, 207, 242, 0.06);
  color: rgba(247, 247, 242, 0.74);
  font-family: var(--mono);
  font-size: clamp(11px, 0.86vw, 14px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  #adaptive-lab .adaptive-lab-tag-cloud-card {
    right: 14px;
    bottom: 16px;
    left: 14px;
    padding: 10px;
  }

  #adaptive-lab .adaptive-lab-tag-cloud {
    justify-content: flex-start;
    gap: 7px;
  }

  #adaptive-lab .adaptive-lab-tag-cloud span {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
    min-height: 32px;
    padding: 0 8px;
    font-size: 10.5px;
  }
}

.case-story-card:not([open]) .case-story-detail {
  display: none !important;
}

.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;
}

.hero-focus-note {
  max-width: min(100%, 64ch) !important;
  margin: 9px 0 0 auto !important;
  color: rgba(247, 247, 242, 0.66) !important;
  font-family: var(--mono) !important;
  font-size: clamp(15px, 1.25vw, 21px) !important;
  line-height: 1.36 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

@media (min-width: 761px) {
  body[data-audience] .hero-secondary {
    min-height: clamp(75px, 5.55vw, 114px) !important;
  }
}

@media (min-width: 761px) and (max-width: 1600px) {
  .hero-focus-note {
    font-size: clamp(13px, 1vw, 16px) !important;
    line-height: 1.3 !important;
    font-weight: 500 !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;
    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 12px 14px 14px 24px !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;
    text-align: right !important;
  }

  .hero-focus-label {
    font-size: clamp(24px, 6.6vw, 29px) !important;
    line-height: 1.06 !important;
  }

  .hero-focus-note {
    max-width: 100% !important;
    margin-left: auto !important;
    font-size: 12px !important;
    line-height: 1.34 !important;
    font-weight: 500 !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;
  }

  .hero-focus-note {
    font-size: clamp(13px, 1vw, 16px) !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 760px) {
  .hero-focus-note {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }
}

/* AI Native guest speakers: compact transferred grid */
#speakers .speaker-layer--guests {
  margin-top: clamp(30px, 4.6vh, 44px);
  margin-bottom: clamp(38px, 5.6vh, 64px);
  padding-top: clamp(22px, 3.6vh, 34px);
  border-top: 1px solid rgba(126, 207, 242, 0.16);
}

#speakers .speaker-layer--guests + .guest-speakers {
  margin-top: 0;
  padding-top: clamp(24px, 3.8vh, 40px);
  border-top: 1px solid rgba(126, 207, 242, 0.14);
}

#speakers .speaker-layer--guests .speaker-layer__head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 34px);
  align-items: start;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

#speakers .speaker-layer--guests .guest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
}

#speakers .speaker-layer--guests .speaker-card {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: clamp(14px, 1.35vw, 18px);
  border-color: rgba(126, 207, 242, 0.16);
  background:
    radial-gradient(circle at 92% 24%, rgba(120, 207, 240, 0.055), transparent 7rem),
    rgba(247, 247, 242, 0.035);
  box-shadow: none;
}

#speakers .speaker-layer--guests .speaker-photo {
  width: 56px;
}

#speakers .speaker-layer--guests .speaker-tags {
  margin-bottom: 6px;
}

#speakers .speaker-layer--guests .speaker-tags span {
  min-height: 17px;
  padding: 0 6px;
  font-size: 8px;
}

#speakers .speaker-layer--guests .speaker-body h3 {
  font-size: clamp(15px, 0.98vw, 18px);
  line-height: 1.08;
}

#speakers .speaker-layer--guests .speaker-role {
  margin-top: 6px;
  font-size: clamp(9px, 0.62vw, 11px);
  line-height: 1.25;
}

#speakers .speaker-layer--guests .speaker-topic {
  margin-top: 4px;
  font-size: 9px;
  line-height: 1.2;
}

#speakers .speaker-layer--guests .speaker-links {
  margin-top: 6px;
  gap: 6px;
  font-size: clamp(10px, 0.68vw, 12px);
}

#speakers .speaker-layer--guests .speaker-body > p:last-child {
  margin-top: clamp(10px, 1.35vh, 14px);
  font-size: clamp(11px, 0.74vw, 13px);
  line-height: 1.38;
}

@media (max-width: 1120px) {
  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  #speakers .speaker-layer--guests .speaker-layer__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #speakers .speaker-layer--guests .guest-grid {
    grid-template-columns: 1fr;
  }

  #speakers .speaker-layer--guests .speaker-card {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 14px;
  }

  #speakers .speaker-layer--guests .speaker-photo {
    width: 54px;
  }
}

/* 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(2, minmax(0, 1fr));
  gap: 32px;
  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;
  margin-bottom: 0;
}

#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 .guest-speakers__intro {
  max-width: 720px;
  margin: 0;
  color: rgba(247, 247, 242, 0.52);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}

#speakers .speaker-layer--guests .guest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 20px;
}

#speakers .speakers-leads .speaker-card,
#speakers .speaker-layer--guests .speaker-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  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-card--lead {
  grid-template-columns: 88px minmax(0, 1fr);
}

#speakers .speakers-leads .speaker-body,
#speakers .speaker-layer--guests .speaker-body {
  display: contents;
}

#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-column: 1;
  grid-row: 1 / span 4;
  width: 72px;
  height: 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--lead .speaker-photo {
  width: 88px;
  height: 88px;
}

#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: 2;
  margin: 0 0 3px;
  color: #f7f7f2;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0;
}

#speakers .speakers-leads .speaker-card--lead .speaker-body h3 {
  font-size: 15px;
}

#speakers .speakers-leads .speaker-role,
#speakers .speaker-layer--guests .speaker-role {
  grid-column: 2;
  margin: 0 0 4px;
  color: #64b5d9;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#speakers .speaker-layer--guests .speaker-topic {
  grid-column: 2;
  margin: 0 0 4px;
  color: rgba(247, 247, 242, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#speakers .speakers-leads .speaker-links,
#speakers .speaker-layer--guests .speaker-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 0;
  color: rgba(247, 247, 242, 0.42);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

#speakers .speakers-leads .speaker-links a,
#speakers .speaker-layer--guests .speaker-links a {
  color: rgba(247, 247, 242, 0.42);
  text-decoration: none;
}

#speakers .speakers-leads .speaker-links a:hover,
#speakers .speaker-layer--guests .speaker-links a:hover,
#speakers .speakers-leads .speaker-links a:focus-visible,
#speakers .speaker-layer--guests .speaker-links a:focus-visible {
  color: #64b5d9;
}

#speakers .speakers-leads .speaker-body > p:last-child,
#speakers .speaker-layer--guests .speaker-body > p:last-child {
  grid-column: 1 / -1;
  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 .speaker-layer--guests .guest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #speakers .speakers-leads {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #speakers .speakers-leads .speaker-card--lead {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  #speakers .speakers-leads .speaker-card--lead .speaker-photo {
    width: 72px;
    height: 72px;
  }
}

@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__title {
    margin: 0;
    max-width: 14.2ch;
    font-size: clamp(50px, 4.9vw, 80px);
    line-height: 0.975;
    text-wrap: pretty;
  }

  #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);
}

/* 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 {
  display: block;
  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 {
  display: block;
  padding: clamp(38px, 5.2vw, 68px);
  border: 1px solid rgba(55, 140, 190, 0.2);
  background: rgba(120, 207, 240, 0.07);
}

#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 {
  max-width: 78ch;
  margin-bottom: clamp(28px, 4vh, 42px);
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.68;
  font-weight: 520;
}

#testimonials .testimonial-featured-card:first-child .testimonial-featured-author {
  min-height: 0;
}

#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 {
  margin-top: clamp(18px, 3vh, 32px);
}

#testimonials .testimonial-full summary {
  min-height: 36px;
  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:first-child {
    padding: 28px 22px 30px;
  }

  #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-featured-card:first-child,
#testimonials .testimonial-featured-card {
  display: block;
  padding: clamp(22px, 3.1vw, 40px);
  border: 1px solid rgba(55, 140, 190, 0.15);
  border-radius: 4px;
  background: rgba(55, 140, 190, 0.03);
}

#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-text,
#testimonials .testimonial-featured-card:first-child .testimonial-featured-text {
  max-width: 820px;
  margin: 0 0 16px;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(15px, 1.16vw, 21px);
  font-style: italic;
  line-height: 1.58;
  font-weight: 500;
}

#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;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 8px clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(16px, 2.4vh, 25px) 0;
  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-text {
  color: rgba(17, 17, 17, 0.7);
  font-family: var(--mono);
  font-size: clamp(14px, 1.06vw, 19px);
  font-style: italic;
  line-height: 1.56;
}

#testimonials .testimonial-quote-author {
  display: -webkit-box;
  color: rgba(17, 17, 17, 0.4);
  font-family: var(--mono);
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-wrap: balance;
  -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-quote-author--with-photo {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

#testimonials .testimonial-quote-author--with-photo > span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#testimonials .testimonial-author-photo {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

#testimonials .testimonial-open-media {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

#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-identity {
  display: grid;
  min-width: 0;
  gap: 10px;
  align-content: start;
}

#testimonials .testimonial-open-identity > strong,
#testimonials .testimonial-open-identity > span {
  display: none;
}

#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);
}

.testimonial-open-company-list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#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-company-chip {
  display: inline-flex;
  min-height: 30px;
  max-width: 100%;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(55, 140, 190, 0.22);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.58);
  background: rgba(120, 207, 240, 0.045);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  overflow-wrap: anywhere;
}

#testimonials .testimonial-company-chip--anonymous {
  color: rgba(17, 17, 17, 0.46);
  background: rgba(17, 17, 17, 0.035);
}

#testimonials .testimonial-full--line {
  grid-column: 1 / -1;
  display: block;
  margin-top: clamp(2px, 0.7vh, 8px);
  padding-top: 0;
  border-top: 0;
}

#testimonials .testimonial-full--line summary {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  margin-top: 0;
  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;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 0 clamp(20px, 4vw, 56px);
  width: 100%;
  max-width: none;
  padding-top: clamp(6px, 1.1vh, 12px);
}

#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-media {
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: start;
  margin-top: clamp(8px, 1.4vh, 16px);
}

#testimonials .testimonial-full--line .testimonial-open-profile {
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: start;
  margin-top: 0;
}

#testimonials .testimonial-full--line:not([open]) .testimonial-open-media {
  display: none;
}

#testimonials .testimonial-full--line:not([open]) .testimonial-open-profile {
  display: none;
}

#testimonials .testimonial-featured-name {
  font-size: clamp(15px, 1.04vw, 19px);
  line-height: 1.15;
}

#testimonials .testimonial-featured-role {
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

#testimonials .testimonial-full {
  margin-top: clamp(12px, 1.8vh, 20px);
  padding-top: clamp(10px, 1.5vh, 16px);
}

#testimonials .testimonial-full summary {
  gap: 7px;
  min-height: 24px;
  padding: 0 0 3px;
  border-bottom: 0;
  font-size: clamp(10px, 0.74vw, 12px);
  line-height: 1.1;
  letter-spacing: 0.035em;
  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(12px, 0.88vw, 14px);
  line-height: 1.55;
}

@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: 6px;
  }

  #testimonials .testimonial-quote-author {
    white-space: normal;
  }

  #testimonials .testimonial-quote-line {
    cursor: default;
  }

  #testimonials .testimonial-open-media {
    align-items: flex-start;
    gap: 11px;
    max-width: 100%;
  }

  #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 > div > p {
    order: 1;
  }

  #testimonials .testimonial-full--line .testimonial-open-media {
    order: 2;
    margin: 4px 0 12px;
  }

  #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;
  }
}

/* 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-depth-head--compact h2 {
  max-width: 15ch;
  margin: 0;
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

#support-depth .support-compact-stack {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
  margin-top: clamp(24px, 4vh, 46px);
}

#support-depth .support-compact-card,
#support-depth .support-tag-cloud-card {
  border: 1px solid rgba(126, 207, 242, 0.3);
  background:
    linear-gradient(180deg, rgba(247, 247, 242, 0.045), rgba(247, 247, 242, 0.01)),
    rgba(5, 7, 10, 0.34);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

#support-depth .support-compact-card {
  padding: clamp(20px, 2.8vw, 34px) clamp(20px, 3.2vw, 42px);
}

#support-depth .support-compact-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#support-depth .support-compact-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: center;
  min-height: clamp(44px, 4.8vw, 64px);
  padding: clamp(10px, 1.4vw, 15px) 0;
  border-bottom: 1px solid rgba(126, 207, 242, 0.14);
  color: #f7f7f2;
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

#support-depth .support-compact-list li:last-child {
  border-bottom: 0;
}

#support-depth .support-compact-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(53, 230, 177, 0.8);
  background: rgba(53, 230, 177, 0.22);
  box-shadow: 0 0 18px rgba(53, 230, 177, 0.32);
}

#support-depth .support-tag-cloud-card {
  padding: clamp(18px, 2.4vw, 30px);
}

#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-compact-card {
    padding: 18px 16px;
  }

  #support-depth .support-compact-list li {
    grid-template-columns: 8px minmax(0, 1fr);
    min-height: 44px;
    font-size: clamp(22px, 7.2vw, 32px);
  }

  #support-depth .support-tag-cloud-card {
    padding: 16px 14px;
  }

  #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-compact-card {
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2.4vw, 30px);
}

#support-depth .support-compact-list li {
  grid-template-columns: 8px minmax(0, 1fr);
  min-height: clamp(34px, 3.4vw, 48px);
  padding: clamp(7px, 1vw, 10px) 0;
  font-size: clamp(19px, 1.8vw, 27px);
}

#support-depth .support-compact-list li::before {
  width: 7px;
  height: 7px;
}

#support-depth .support-tag-cloud-card {
  padding: clamp(14px, 1.8vw, 22px);
}

#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-compact-card {
    padding: 14px 14px;
  }

  #support-depth .support-compact-list li {
    min-height: 36px;
    padding: 7px 0;
    font-size: clamp(18px, 5.4vw, 24px);
  }

  #support-depth .support-tag-cloud-card {
    padding: 14px;
  }

  #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;
}

#support-depth .support-benefit-grid + .support-tag-cloud-card {
  margin-top: clamp(18px, 2.6vw, 28px);
}

@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-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #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-grid {
    grid-template-columns: 1fr;
  }

  #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;
  }
}
