:root {
  --ink: #162126;
  --muted: #5d6b70;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #d8dedb;
  --teal: #116b68;
  --teal-dark: #0a4545;
  --blue: #2d5c88;
  --gold: #b88735;
  --copper: #a6533b;
  --shadow: 0 18px 50px rgba(12, 23, 28, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--surface);
  background: var(--teal-dark);
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  color: #f8fbf8;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(247, 248, 245, 0.94);
  box-shadow: 0 8px 30px rgba(18, 28, 34, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold);
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 19, 23, 0.92) 0%, rgba(9, 19, 23, 0.72) 42%, rgba(9, 19, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 19, 23, 0.58), rgba(9, 19, 23, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 118px 0 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: 4.15rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.filter-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  margin: 48px 0 0;
}

.hero-stats div {
  position: relative;
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin: 0;
}

.hero-stats dt span {
  display: block;
  min-height: 34px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-stats dt strong {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.hero-stats a {
  display: inline-flex;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 900;
  text-decoration-color: rgba(184, 135, 53, 0.86);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-stats a:hover,
.hero-stats a:focus-visible {
  color: var(--gold);
}

.career-trailer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  overflow: auto;
  color: #ffffff;
  background: #081114;
  overscroll-behavior: contain;
}

.career-trailer.is-open {
  display: grid;
}

.trailer-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 15, 0.95), rgba(5, 12, 15, 0.72), rgba(5, 12, 15, 0.94)),
    url("assets/equity-product-command-center.png") center / cover;
  transform: scale(1.03);
  filter: saturate(0.95);
}

.career-trailer.is-playing .trailer-backdrop {
  animation: trailerDrift 18s ease-in-out infinite alternate;
}

.trailer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100dvh - 48px);
  margin: 24px auto;
}

.career-trailer.is-playing .trailer-shell {
  width: min(1320px, calc(100% - 32px));
  min-height: calc(100dvh - 32px);
  margin: 16px auto;
}

.trailer-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.trailer-topbar h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.trailer-close {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.trailer-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.trailer-close span:first-child {
  transform: rotate(45deg);
}

.trailer-close span:last-child {
  transform: rotate(-45deg);
}

.trailer-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 46px 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(11, 24, 28, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.trailer-scene-glow {
  position: absolute;
  inset: auto -8% -28% 34%;
  height: 55%;
  background:
    radial-gradient(circle at 24% 45%, rgba(184, 135, 53, 0.26), transparent 28%),
    radial-gradient(circle at 70% 58%, rgba(17, 107, 104, 0.45), transparent 34%),
    radial-gradient(circle at 48% 18%, rgba(45, 92, 136, 0.34), transparent 36%);
  filter: blur(28px);
  opacity: 0.9;
}

.career-trailer.is-playing .trailer-scene-glow {
  animation: trailerGlow 9s ease-in-out infinite alternate;
}

.trailer-visual {
  position: absolute;
  top: 50%;
  right: 48px;
  z-index: 1;
  width: min(34%, 360px);
  height: min(78%, 420px);
  transform: translateY(-50%);
  pointer-events: none;
}

.trailer-visual::before {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 107, 104, 0.24), transparent 66%);
  content: "";
  filter: blur(18px);
}

.trailer-stage[data-scene="operating-altitude"] .trailer-visual,
.trailer-stage[data-scene="equity-scale"] .trailer-visual {
  opacity: 0.92;
}

.visual-career-arc {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
}

.career-spine {
  position: absolute;
  top: 17%;
  bottom: 17%;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(184, 135, 53, 0.72), rgba(17, 107, 104, 0.42), rgba(255, 255, 255, 0.08));
}

.career-nodes {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.career-node {
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 20, 22, 0.86);
  opacity: 0.55;
}

.career-node.is-complete {
  border-color: rgba(184, 135, 53, 0.72);
  background: rgba(184, 135, 53, 0.34);
  opacity: 0.86;
}

.career-node.is-active {
  border-color: #ffffff;
  background: var(--gold);
  opacity: 1;
  box-shadow: 0 0 0 8px rgba(184, 135, 53, 0.14);
}

.career-stack {
  position: absolute;
  top: 15%;
  right: 0;
  bottom: 15%;
  left: 54px;
  display: grid;
  grid-template-rows: repeat(9, minmax(0, 1fr));
  align-items: center;
  width: min(360px, calc(100% - 54px));
}

.career-layer {
  display: grid;
  grid-row: var(--row);
  min-height: 32px;
  align-content: center;
  width: 100%;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(17, 107, 104, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(0);
}

.career-layer.is-active {
  border-color: rgba(184, 135, 53, 0.72);
  background:
    linear-gradient(90deg, rgba(184, 135, 53, 0.24), rgba(17, 107, 104, 0.16)),
    rgba(255, 255, 255, 0.075);
  color: #ffffff;
}

.career-layer strong {
  font-size: 0.78rem;
  line-height: 1.15;
}

.career-layer small {
  display: none;
}

.career-trailer.is-playing .career-node.is-active {
  animation: careerNodePulse 1.8s ease-in-out infinite alternate;
}

.career-trailer.is-playing .career-layer {
  animation: careerLayerSettle 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i) * 80ms);
}

.visual-orbit,
.visual-analyst,
.visual-kanban,
.visual-enterprise-product,
.visual-stack,
.visual-portfolio,
.visual-ai,
.visual-servicing,
.visual-scale,
.visual-operating,
.visual-global,
.visual-founder,
.visual-constellation {
  position: absolute;
  inset: 0;
}

.analysis-card,
.enterprise-node,
.service-channel,
.client-node {
  position: absolute;
  display: grid;
  min-width: 92px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.analysis-card.card-one {
  top: 16%;
  left: 8%;
}

.analysis-card.card-two {
  top: 36%;
  right: 7%;
}

.analysis-card.card-three {
  bottom: 22%;
  left: 18%;
}

.analysis-chart {
  position: absolute;
  right: 8%;
  bottom: 14%;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 132px;
}

.analysis-chart i {
  width: 28px;
  height: 54px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--teal), rgba(184, 135, 53, 0.75));
}

.analysis-chart i:nth-child(2) {
  height: 82px;
}

.analysis-chart i:nth-child(3) {
  height: 108px;
}

.analysis-chart i:nth-child(4) {
  height: 70px;
}

.career-trailer.is-playing .analysis-chart i {
  animation: barLift 2.8s ease-in-out infinite alternate;
}

.visual-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: center;
}

.kanban-column {
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.kanban-column strong {
  color: var(--gold);
}

.kanban-column i {
  display: block;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.career-trailer.is-playing .kanban-column i {
  animation: stackPulse 3.8s ease-in-out infinite;
}

.enterprise-core,
.service-hub {
  position: absolute;
  top: 40%;
  left: 34%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(184, 135, 53, 0.42);
  border-radius: 999px;
  background: rgba(184, 135, 53, 0.18);
  color: #ffffff;
  font-weight: 900;
}

.enterprise-node.node-one,
.service-channel.channel-one {
  top: 14%;
  left: 22%;
}

.enterprise-node.node-two,
.service-channel.channel-two {
  top: 32%;
  right: 5%;
}

.enterprise-node.node-three,
.service-channel.channel-three {
  bottom: 22%;
  right: 14%;
}

.enterprise-node.node-four,
.service-channel.channel-four {
  bottom: 14%;
  left: 12%;
}

.career-trailer.is-playing .enterprise-node,
.career-trailer.is-playing .service-channel,
.career-trailer.is-playing .client-node {
  animation: floatNode 4.2s ease-in-out infinite alternate;
}

.orbit-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: inset 0 0 50px rgba(17, 107, 104, 0.18);
}

.career-trailer.is-playing .orbit-ring {
  animation: slowSpin 18s linear infinite;
}

.orbit-core,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.orbit-core {
  top: 42%;
  left: 39%;
  width: 74px;
  height: 74px;
  background: rgba(184, 135, 53, 0.22);
}

.orbit-node {
  min-width: 64px;
  height: 42px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.node-a {
  top: 13%;
  left: 38%;
}

.node-b {
  top: 30%;
  right: 8%;
}

.node-c {
  right: 14%;
  bottom: 22%;
}

.node-d {
  bottom: 12%;
  left: 30%;
}

.node-e {
  top: 34%;
  left: 2%;
}

.career-trailer.is-playing .orbit-node {
  animation: floatNode 4.2s ease-in-out infinite alternate;
}

.career-trailer.is-playing .node-b,
.career-trailer.is-playing .node-d {
  animation-delay: 520ms;
}

.visual-stack {
  display: grid;
  align-content: center;
  gap: 12px;
}

.visual-stack span {
  display: block;
  width: calc(72% + var(--i) * 5%);
  min-height: 46px;
  padding: 12px 14px;
  margin-left: calc(var(--i) * 7px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(17, 107, 104, 0.34), rgba(255, 255, 255, 0.08));
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.career-trailer.is-playing .visual-stack span {
  animation: stackPulse 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i) * 160ms);
}

.portfolio-layer {
  position: absolute;
  left: 12%;
  display: grid;
  width: 74%;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.layer-one {
  top: 18%;
}

.layer-two {
  top: 39%;
  transform: translateX(22px);
}

.layer-three {
  top: 60%;
  transform: translateX(44px);
}

.portfolio-arrow {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 3px;
  height: 58%;
  background: linear-gradient(var(--gold), var(--teal));
}

.portfolio-arrow::after {
  position: absolute;
  right: -7px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.career-trailer.is-playing .portfolio-layer {
  animation: layerRise 4.4s ease-in-out infinite alternate;
}

.ai-chip {
  position: absolute;
  top: 35%;
  left: 36%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(184, 135, 53, 0.46);
  border-radius: 999px;
  background: rgba(184, 135, 53, 0.2);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
}

.ai-message {
  position: absolute;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.message-one {
  top: 18%;
  left: 4%;
  width: 52%;
}

.message-two {
  top: 58%;
  right: 4%;
  width: 48%;
}

.message-three {
  bottom: 16%;
  left: 12%;
  width: 38%;
}

.qr-grid {
  position: absolute;
  right: 5%;
  top: 16%;
  display: grid;
  width: 92px;
  height: 92px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.qr-grid i {
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.qr-grid i:nth-child(2n) {
  background: var(--teal);
}

.career-trailer.is-playing .ai-message {
  animation: messageSweep 3.6s ease-in-out infinite alternate;
}

.visual-servicing::before,
.visual-global::before,
.visual-enterprise-product::before {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  content: "";
}

.global-ring {
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--gold);
  border-right-color: var(--teal);
  border-radius: 999px;
}

.career-trailer.is-playing .global-ring {
  animation: slowSpin 14s linear infinite;
}

.client-one {
  top: 18%;
  left: 10%;
}

.client-two {
  top: 22%;
  right: 8%;
}

.client-three {
  right: 14%;
  bottom: 20%;
}

.client-four {
  bottom: 16%;
  left: 12%;
}

.visual-global strong {
  position: absolute;
  top: 43%;
  left: 30%;
  color: #ffffff;
  font-size: 3.3rem;
  line-height: 1;
}


.scale-number {
  position: absolute;
  top: 38%;
  left: 12%;
  z-index: 2;
  color: #ffffff;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
}

.scale-tag {
  position: absolute;
  display: grid;
  min-width: 106px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.tag-one {
  top: 14%;
  left: 6%;
}

.tag-two {
  top: 22%;
  right: 2%;
}

.tag-three {
  right: 8%;
  bottom: 10%;
}

.scale-ring {
  position: absolute;
  top: 14%;
  right: 3%;
  width: 210px;
  height: 210px;
  border: 18px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
  border-right-color: var(--teal);
  border-radius: 999px;
}

.career-trailer.is-playing .scale-ring {
  animation: slowSpin 7s linear infinite;
}

.scale-bars {
  position: absolute;
  right: 8%;
  bottom: 18%;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 120px;
}

.scale-bars i {
  width: 22px;
  height: calc(38px + var(--h, 1) * 16px);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--teal), rgba(184, 135, 53, 0.76));
}

.scale-bars i:nth-child(1) {
  --h: 2;
}

.scale-bars i:nth-child(2) {
  --h: 4;
}

.scale-bars i:nth-child(3) {
  --h: 3;
}

.scale-bars i:nth-child(4) {
  --h: 5;
}

.scale-bars i:nth-child(5) {
  --h: 6;
}

.career-trailer.is-playing .scale-bars i {
  animation: barLift 2.6s ease-in-out infinite alternate;
}

.visual-operating {
  display: grid;
  align-content: center;
  gap: 24px;
}

.budget-meter {
  display: block;
  height: 28px;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 53, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.budget-meter i {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.roadmap-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 52px;
  align-items: center;
}

.roadmap-line::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.roadmap-line i {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 4px solid var(--teal);
  border-radius: 999px;
  background: #ffffff;
}

.team-grid {
  display: grid;
  width: 190px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.team-grid i {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.visual-operating strong {
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
}

.career-trailer.is-playing .budget-meter i {
  animation: budgetFill 3.4s ease-in-out infinite alternate;
}

.phone-frame {
  position: absolute;
  top: 10%;
  left: 22%;
  width: 170px;
  height: 310px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(17, 107, 104, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.map-path {
  position: absolute;
  top: 45%;
  left: 18%;
  width: 112px;
  height: 52px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--teal);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px 999px 999px 0;
  background: var(--gold);
  transform: rotate(-45deg);
}

.pin-one {
  top: 28%;
  left: 26%;
}

.pin-two {
  top: 51%;
  right: 24%;
}

.pin-three {
  bottom: 22%;
  left: 42%;
}

.launch-trail {
  position: absolute;
  right: 9%;
  bottom: 18%;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), #ffffff);
  transform: rotate(-24deg);
}

.career-trailer.is-playing .launch-trail {
  animation: trailFlash 1.8s ease-in-out infinite;
}

.star {
  position: absolute;
  display: grid;
  min-width: 82px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}

.star-one {
  top: 18%;
  left: 18%;
}

.star-two {
  top: 34%;
  right: 8%;
}

.star-three {
  bottom: 30%;
  left: 10%;
}

.star-four {
  right: 22%;
  bottom: 14%;
}

.constellation-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), var(--teal));
  transform-origin: left center;
}

.line-one {
  top: 27%;
  left: 36%;
  width: 142px;
  transform: rotate(18deg);
}

.line-two {
  top: 47%;
  left: 22%;
  width: 174px;
  transform: rotate(-28deg);
}

.line-three {
  right: 26%;
  bottom: 25%;
  width: 112px;
  transform: rotate(24deg);
}

.career-trailer.is-playing .star {
  animation: starPulse 3s ease-in-out infinite alternate;
}

.trailer-kicker,
.trailer-stage h3,
.trailer-stage p,
.trailer-proof {
  position: relative;
  z-index: 2;
  width: min(760px, 64%);
}

.trailer-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trailer-stage h3 {
  margin: 0;
  font-size: 5.05rem;
  line-height: 0.98;
}

.trailer-stage.is-long-scene {
  justify-content: flex-start;
}

.trailer-stage.is-long-scene h3 {
  font-size: 4.15rem;
  line-height: 1;
}

.trailer-stage.is-extra-long-scene h3 {
  font-size: 3.65rem;
  line-height: 1.03;
}

.trailer-stage[data-scene="equity-scale"] {
  justify-content: flex-start;
}

.trailer-stage[data-scene="ai-service"] {
  justify-content: flex-start;
}

.trailer-stage[data-scene="equity-scale"] .trailer-proof {
  margin-top: 22px;
}

.trailer-stage[data-scene="equity-scale"] .trailer-details.is-metric-focus {
  position: absolute;
  right: 58px;
  bottom: 18px;
  left: 58px;
  width: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.trailer-stage[data-scene="equity-scale"] .trailer-visual {
  top: 50%;
  right: 48px;
  z-index: 1;
  width: min(34%, 360px);
  height: min(78%, 420px);
  opacity: 0.92;
}

.trailer-stage[data-scene="equity-scale"] .trailer-details .trailer-metric-card {
  min-height: 104px;
  align-content: end;
  container-type: inline-size;
  padding: clamp(14px, 1.15vw, 20px);
}

.trailer-stage[data-scene="equity-scale"] .trailer-metric-card strong {
  max-width: 100%;
  font-family: "Avenir Next Condensed", "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.65rem, 14cqw, 4.5rem);
  font-weight: 800;
  line-height: 0.92;
  white-space: nowrap;
}

.trailer-stage[data-scene="equity-scale"] .trailer-kicker,
.trailer-stage[data-scene="equity-scale"] h3,
.trailer-stage[data-scene="equity-scale"] p {
  width: min(58%, 780px);
}

.trailer-stage[data-scene="equity-scale"] h3 {
  font-size: clamp(4rem, 5.5vw, 5.7rem);
}

.trailer-stage[data-scene="equity-scale"] p.trailer-caption-beats {
  gap: 11px;
  font-size: clamp(1.45rem, 2.15vw, 1.9rem);
}

.trailer-stage[data-scene="equity-scale"] .career-stack {
  opacity: 1;
}

.trailer-stage[data-scene="equity-scale"] .career-spine {
  top: 17%;
  bottom: 17%;
  left: 22px;
  opacity: 1;
  background: linear-gradient(180deg, rgba(184, 135, 53, 0.9), rgba(17, 107, 104, 0.72), rgba(255, 255, 255, 0.14));
}

.trailer-stage[data-scene="equity-scale"] .career-nodes {
  top: 15%;
  bottom: 15%;
  left: 14px;
  opacity: 1;
}

.trailer-stage[data-scene="equity-scale"] .career-node {
  width: 16px;
  height: 16px;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(17, 20, 22, 0.96);
}

.trailer-stage[data-scene="equity-scale"] .career-node.is-active {
  box-shadow: 0 0 0 8px rgba(184, 135, 53, 0.18);
}

.trailer-stage[data-scene="founder"] {
  justify-content: flex-start;
  padding-bottom: 160px;
}

.trailer-stage[data-scene="founder"] .trailer-details.is-metric-focus {
  position: absolute;
  right: 58px;
  bottom: 18px;
  left: 58px;
  width: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.trailer-stage[data-scene="founder"] .trailer-visual {
  top: 50%;
  right: 48px;
  z-index: 1;
  width: min(34%, 360px);
  height: min(78%, 420px);
  opacity: 0.92;
}

.trailer-stage[data-scene="founder"] .trailer-metric-card {
  min-height: 104px;
  align-content: end;
  container-type: inline-size;
  padding: clamp(14px, 1.15vw, 20px);
}

.trailer-stage[data-scene="founder"] .trailer-metric-card strong {
  max-width: 100%;
  font-family: "Avenir Next Condensed", "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.65rem, 14cqw, 4.5rem);
  font-weight: 800;
  line-height: 0.92;
  white-space: nowrap;
}

.trailer-stage[data-scene="founder"] .trailer-kicker,
.trailer-stage[data-scene="founder"] h3,
.trailer-stage[data-scene="founder"] p {
  width: min(62%, 900px);
}

.trailer-stage[data-scene="founder"] h3 {
  font-size: clamp(3.8rem, 4.8vw, 5rem);
}

.trailer-stage[data-scene="founder"] p.trailer-caption-beats {
  gap: 8px;
  margin-top: 22px;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
}

.trailer-stage[data-scene="founder"] .career-stack {
  opacity: 1;
}

.trailer-stage[data-scene="founder"] .career-spine {
  top: 17%;
  bottom: 17%;
  left: 22px;
  opacity: 1;
}

.trailer-stage[data-scene="founder"] .career-nodes {
  top: 15%;
  bottom: 15%;
  left: 14px;
  opacity: 1;
}

.trailer-stage[data-scene="founder"] .career-node {
  width: 16px;
  height: 16px;
}

.trailer-stage[data-scene="founder"] .career-node.is-active {
  box-shadow: 0 0 0 8px rgba(184, 135, 53, 0.18);
}

.trailer-stage[data-scene="close"] {
  justify-content: flex-start;
  padding: clamp(48px, 5vw, 76px) clamp(54px, 5vw, 82px) 250px;
  background:
    linear-gradient(112deg, rgba(184, 135, 53, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(9, 19, 22, 0.84);
}

.trailer-stage[data-scene="close"]::after {
  position: absolute;
  top: 43%;
  right: clamp(54px, 5vw, 82px);
  bottom: auto;
  left: clamp(54px, 5vw, 82px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 135, 53, 0.28) 42%, rgba(17, 107, 104, 0.82));
  content: "";
  opacity: 0.8;
  transform: scaleX(1);
  transform-origin: left;
}

.career-trailer.is-playing .trailer-stage[data-scene="close"]::after {
  animation: finaleRuleIn 900ms 260ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.trailer-stage[data-scene="close"] .trailer-details.is-metric-focus {
  position: absolute;
  top: 132px;
  right: 58px;
  bottom: 56px;
  left: auto;
  width: min(44%, 650px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  align-content: stretch;
}

.trailer-stage[data-scene="close"] .trailer-visual {
  display: none;
}

.trailer-stage[data-scene="close"] .trailer-metric-card {
  min-height: 0;
  align-content: end;
  container-type: inline-size;
  padding: clamp(16px, 1.35vw, 22px);
}

.trailer-stage[data-scene="close"] .trailer-metric-card strong {
  max-width: 100%;
  font-family: "Avenir Next Condensed", "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.75rem, 18cqw, 4.9rem);
  font-weight: 800;
  line-height: 0.92;
  white-space: nowrap;
}

.trailer-stage[data-scene="close"] .trailer-kicker,
.trailer-stage[data-scene="close"] h3,
.trailer-stage[data-scene="close"] p {
  width: min(94%, 1460px);
}

.trailer-stage[data-scene="close"] h3 {
  max-width: 1400px;
  font-size: clamp(4.4rem, 6vw, 6.8rem);
  line-height: 0.94;
}

.trailer-stage[data-scene="close"] p.trailer-caption-beats {
  display: none;
}

.trailer-stage[data-scene="close"] .career-stack {
  opacity: 0;
}

.trailer-stage[data-scene="close"] .career-spine {
  top: 8%;
  bottom: 8%;
  left: 26px;
  opacity: 0.9;
}

.trailer-stage[data-scene="close"] .career-nodes {
  top: 6%;
  bottom: 6%;
  left: 18px;
  opacity: 1;
}

.trailer-stage[data-scene="close"] .career-node {
  width: 18px;
  height: 18px;
}

.trailer-stage[data-scene="close"] .career-node.is-active {
  box-shadow: 0 0 0 12px rgba(184, 135, 53, 0.18);
}

.trailer-stage[data-scene="close"] .trailer-details.is-finale {
  position: absolute;
  top: 43%;
  right: clamp(54px, 5vw, 82px);
  bottom: clamp(38px, 4vw, 56px);
  left: clamp(54px, 5vw, 82px);
  display: block;
  width: auto;
  margin: 0;
}

.finale-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: calc(100% - 30px);
}

.finale-step {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: center;
  gap: 13px;
  padding: 34px clamp(22px, 2.3vw, 42px) 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  opacity: 1;
  transform: translateY(0);
}

.finale-step:first-child {
  padding-left: 0;
}

.finale-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.finale-step-topline {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.trailer-details .finale-index {
  display: inline-block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.28);
  background: transparent;
  font-family: "Avenir Next Condensed", "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.35rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 0.8;
}

.finale-step small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finale-step strong {
  max-width: 390px;
  color: #ffffff;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.12;
}

.trailer-details .finale-description {
  display: block;
  max-width: 360px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: clamp(0.82rem, 0.94vw, 1rem);
  font-weight: 650;
  line-height: 1.42;
}

.finale-proofline {
  width: 100% !important;
  margin: 6px 0 0 !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: clamp(0.72rem, 0.82vw, 0.86rem) !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-trailer.is-playing .finale-step {
  animation: finaleStepIn 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(420ms + var(--finale-index, 0) * 150ms);
}

.trailer-stage[data-scene="ai-service"] .trailer-details.is-metric-focus {
  position: absolute;
  right: 58px;
  bottom: 18px;
  left: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: auto;
  margin-top: 0;
}

.trailer-stage[data-scene="ai-service"] .trailer-metric-card {
  min-height: 104px;
  container-type: inline-size;
  padding: clamp(14px, 1.15vw, 20px);
}

.trailer-stage[data-scene="ai-service"] .trailer-metric-card:first-child {
  min-height: 104px;
  border-color: rgba(184, 135, 53, 0.82);
  background:
    linear-gradient(150deg, rgba(184, 135, 53, 0.32), rgba(17, 107, 104, 0.2) 58%, rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.trailer-stage[data-scene="ai-service"] .trailer-metric-card strong {
  max-width: 100%;
  font-family: "Avenir Next Condensed", "Arial Narrow", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(2.65rem, 14cqw, 4.5rem);
  font-weight: 800;
  line-height: 0.92;
  white-space: nowrap;
}

.trailer-stage[data-scene="ai-service"] .career-spine {
  bottom: 27%;
}

.trailer-stage[data-scene="ai-service"] .career-nodes {
  bottom: 25%;
}

.trailer-stage p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.35rem;
}

.trailer-stage p.trailer-caption-beats {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.18;
}

.trailer-caption-beats span {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: trailerBeatIn 680ms ease forwards;
}

.trailer-caption-beats span:nth-child(2) {
  animation-delay: 180ms;
}

.trailer-caption-beats span:nth-child(3) {
  animation-delay: 360ms;
}

.trailer-proof {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  margin-top: 30px;
  padding: 8px 13px;
  border: 1px solid rgba(184, 135, 53, 0.42);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(184, 135, 53, 0.14);
  font-weight: 900;
}

.trailer-proof.is-hidden {
  display: none;
}

.trailer-stage.is-transitioning .trailer-kicker,
.trailer-stage.is-transitioning h3,
.trailer-stage.is-transitioning p,
.trailer-stage.is-transitioning .trailer-proof,
.trailer-stage.is-transitioning .trailer-details {
  animation: trailerTextIn 520ms ease both;
}

.trailer-details {
  position: relative;
  z-index: 2;
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  width: min(760px, 64%);
  margin-top: 12px;
}

.trailer-details.is-visible {
  display: flex;
}

.trailer-details.is-metric-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 58%);
  margin-top: 18px;
}

.trailer-details span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left-color: rgba(184, 135, 53, 0.72);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(90deg, rgba(184, 135, 53, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 900;
}

.trailer-details .trailer-metric-card {
  display: grid;
  min-height: 112px;
  align-content: end;
  padding: 16px;
  border-color: rgba(184, 135, 53, 0.62);
  border-left-color: rgba(17, 107, 104, 0.78);
  background:
    linear-gradient(150deg, rgba(184, 135, 53, 0.2), rgba(17, 107, 104, 0.18) 58%, rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.trailer-metric-card strong {
  color: #ffffff;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.trailer-metric-card .metric-mobile-value {
  display: none;
}

.trailer-metric-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.18;
}

.career-trailer.is-playing .trailer-details.is-metric-focus .trailer-metric-card {
  animation: metricCardRise 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--metric-index, 0) * 110ms);
}

@media (min-width: 981px) and (max-height: 820px) {
  .trailer-stage[data-scene="founder"] {
    padding-bottom: 46px;
  }

  .trailer-stage[data-scene="close"] {
    padding: 28px 36px 174px;
  }

  .trailer-stage[data-scene="founder"] h3 {
    font-size: 3.35rem;
  }

  .trailer-stage[data-scene="close"] h3 {
    width: min(94%, 980px);
    font-size: clamp(3.15rem, 5.2vw, 4.35rem);
    line-height: 0.94;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) p.trailer-caption-beats {
    gap: 7px;
    font-size: 1.15rem;
  }

  .trailer-stage[data-scene="close"] p.trailer-caption-beats {
    display: none;
  }

  .trailer-stage[data-scene="close"]::after {
    top: auto;
    right: 36px;
    bottom: 150px;
    left: 36px;
  }

  .trailer-stage[data-scene="close"] .trailer-details.is-finale {
    top: auto;
    right: 36px;
    bottom: 20px;
    left: 36px;
  }

  .finale-step {
    min-height: 82px;
    gap: 5px;
    padding: 14px 20px;
  }

  .finale-step small {
    font-size: 0.64rem;
  }

  .finale-step strong {
    font-size: clamp(1rem, 1.55vw, 1.2rem);
  }

  .trailer-details .finale-index,
  .trailer-details .finale-description {
    display: none;
  }

  .finale-proofline {
    margin-top: 3px !important;
    font-size: 0.65rem !important;
  }

  .trailer-stage[data-scene="founder"] .trailer-kicker,
  .trailer-stage[data-scene="founder"] h3,
  .trailer-stage[data-scene="founder"] p {
    width: min(43%, 520px);
  }

  .trailer-stage[data-scene="founder"] .trailer-details.is-metric-focus {
    top: 104px;
    right: 28px;
    bottom: 28px;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 46%;
  }

  .trailer-stage[data-scene="founder"] .trailer-visual {
    top: 50%;
    right: calc(46% + 42px);
    z-index: 3;
    width: 54px;
    height: min(68%, 360px);
    opacity: 1;
  }

  .trailer-stage[data-scene="founder"] .career-stack {
    opacity: 0;
  }

  .trailer-stage[data-scene="founder"] .career-spine {
    top: 8%;
    bottom: 8%;
    left: 26px;
  }

  .trailer-stage[data-scene="founder"] .career-nodes {
    top: 6%;
    bottom: 6%;
    left: 18px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-kicker,
  .trailer-stage[data-scene="equity-scale"] h3,
  .trailer-stage[data-scene="equity-scale"] p {
    width: min(43%, 520px);
  }

  .trailer-stage[data-scene="equity-scale"] h3 {
    font-size: clamp(3.35rem, 5vw, 4.2rem);
  }

  .trailer-stage[data-scene="equity-scale"] p.trailer-caption-beats {
    gap: 7px;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-details.is-metric-focus {
    top: 104px;
    right: 28px;
    bottom: 28px;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 46%;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-visual {
    top: 50%;
    right: calc(46% + 42px);
    z-index: 3;
    width: 54px;
    height: min(68%, 360px);
    opacity: 1;
  }

  .trailer-stage[data-scene="equity-scale"] .career-stack {
    opacity: 0;
  }

  .trailer-stage[data-scene="equity-scale"] .career-spine {
    top: 8%;
    bottom: 8%;
    left: 26px;
  }

  .trailer-stage[data-scene="equity-scale"] .career-nodes {
    top: 6%;
    bottom: 6%;
    left: 18px;
  }

  .trailer-stage[data-scene="ai-service"] .trailer-kicker,
  .trailer-stage[data-scene="ai-service"] h3,
  .trailer-stage[data-scene="ai-service"] p {
    width: min(43%, 520px);
  }

  .trailer-stage[data-scene="ai-service"] h3 {
    font-size: clamp(3.35rem, 5vw, 4.2rem);
  }

  .trailer-stage[data-scene="ai-service"] p.trailer-caption-beats {
    gap: 7px;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  }

  .trailer-stage[data-scene="ai-service"] .trailer-details.is-metric-focus {
    top: 104px;
    right: 28px;
    bottom: 28px;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 46%;
  }

  .trailer-stage[data-scene="ai-service"] .trailer-visual {
    top: 50%;
    right: calc(46% + 42px);
    z-index: 3;
    width: 54px;
    height: min(68%, 360px);
    opacity: 1;
  }

  .trailer-stage[data-scene="ai-service"] .career-stack {
    opacity: 0;
  }

  .trailer-stage[data-scene="ai-service"] .career-spine {
    top: 8%;
    bottom: 8%;
    left: 26px;
  }

  .trailer-stage[data-scene="ai-service"] .career-nodes {
    top: 6%;
    bottom: 6%;
    left: 18px;
  }
}

.trailer-progress {
  position: relative;
  --chapter-step: 10%;
  height: 8px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(var(--chapter-step) - 1px),
      rgba(255, 255, 255, 0.42) calc(var(--chapter-step) - 1px),
      rgba(255, 255, 255, 0.42) var(--chapter-step)
    ),
    rgba(255, 255, 255, 0.18);
  cursor: pointer;
  outline: none;
}

.trailer-progress:focus-visible {
  box-shadow: 0 0 0 3px rgba(184, 135, 53, 0.4);
}

.trailer-progress > span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 160ms linear;
}

.trailer-progress-preview {
  position: absolute;
  bottom: calc(100% + 14px);
  left: var(--preview-left, 0%);
  z-index: 4;
  display: none;
  width: min(280px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(11, 24, 28, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.trailer-progress-preview::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 24, 28, 0.94);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.trailer-progress-preview.is-visible {
  display: block;
}

.trailer-progress-preview strong,
.trailer-progress-preview span {
  display: block;
}

.trailer-progress-preview strong {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trailer-progress-preview span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.trailer-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trailer-controls .button.secondary {
  color: #ffffff;
}

body.trailer-lock {
  overflow: hidden;
}

@keyframes trailerTextIn {
  from {
    opacity: 0.22;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trailerBeatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metricCardRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes finaleRuleIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes finaleStepIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trailerDrift {
  from {
    transform: scale(1.03) translate3d(-1%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes trailerGlow {
  from {
    transform: translateX(-4%);
    opacity: 0.72;
  }

  to {
    transform: translateX(5%);
    opacity: 1;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatNode {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

@keyframes stackPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.76;
  }

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

@keyframes layerRise {
  from {
    filter: brightness(0.92);
  }

  to {
    filter: brightness(1.16);
  }
}

@keyframes messageSweep {
  from {
    transform: translateX(-10px);
    opacity: 0.62;
  }

  to {
    transform: translateX(10px);
    opacity: 1;
  }
}

@keyframes barLift {
  from {
    transform: scaleY(0.72);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes budgetFill {
  from {
    width: 42%;
  }

  to {
    width: 86%;
  }
}

@keyframes trailFlash {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-10px) rotate(-24deg);
  }

  50% {
    opacity: 1;
    transform: translateX(10px) rotate(-24deg);
  }
}

@keyframes starPulse {
  from {
    box-shadow: 0 0 0 rgba(17, 107, 104, 0);
  }

  to {
    box-shadow: 0 0 32px rgba(17, 107, 104, 0.44);
  }
}

@keyframes careerNodePulse {
  from {
    box-shadow: 0 0 0 5px rgba(184, 135, 53, 0.12);
  }

  to {
    box-shadow: 0 0 0 12px rgba(184, 135, 53, 0.2);
  }
}

@keyframes careerLayerSettle {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-trailer.is-playing .trailer-backdrop,
  .career-trailer.is-playing .trailer-scene-glow,
  .career-trailer.is-playing .orbit-ring,
  .career-trailer.is-playing .orbit-node,
  .career-trailer.is-playing .visual-stack span,
  .career-trailer.is-playing .portfolio-layer,
  .career-trailer.is-playing .ai-message,
  .career-trailer.is-playing .scale-ring,
  .career-trailer.is-playing .scale-bars i,
  .career-trailer.is-playing .budget-meter i,
  .career-trailer.is-playing .launch-trail,
  .career-trailer.is-playing .star,
  .career-trailer.is-playing .trailer-metric-card,
  .trailer-caption-beats span,
  .career-trailer.is-playing .career-node.is-active,
  .career-trailer.is-playing .career-layer {
    animation: none;
  }

  .trailer-caption-beats span {
    opacity: 1;
    transform: none;
  }
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  width: min(760px, 100%);
}

.section-heading h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-grid,
.metric-grid,
.playbook-grid {
  display: grid;
  gap: 14px;
}

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

.profile-card,
.metric-card,
.case-card,
.playbook-grid article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.profile-card {
  min-height: 250px;
  padding: 24px;
}

.profile-card h3,
.case-card h3,
.playbook-grid h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
}

.profile-card p,
.case-card p,
.playbook-grid p,
.contact-section p,
.metric-card p {
  margin: 0;
  color: var(--muted);
}

.impact-section {
  width: 100%;
  max-width: none;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  background: #e9efec;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.metric-card {
  position: relative;
  min-height: 246px;
  padding: 24px;
  overflow: hidden;
}

.metric-card::after {
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(17, 107, 104, 0.1);
  content: attr(data-watermark);
  font-size: 5rem;
  font-weight: 900;
}

.metric-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(17, 107, 104, 0.34);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 2.45rem;
  line-height: 1;
}

.filter-bar {
  margin-bottom: 24px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #ffffff;
  border-color: var(--teal);
  background: var(--teal);
}

.work-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.timeline {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
}

.timeline-item {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
}

.timeline-item.active,
.timeline-item:hover,
.timeline-item:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(17, 107, 104, 0.14);
}

.timeline-item span {
  display: block;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  margin-top: 4px;
}

.case-stack {
  display: grid;
  gap: 14px;
}

.case-card {
  padding: 24px;
  box-shadow: 0 8px 24px rgba(20, 28, 32, 0.05);
}

.case-card.featured {
  border-color: rgba(17, 107, 104, 0.34);
  box-shadow: var(--shadow);
}

.case-card.is-hidden {
  display: none;
}

.case-card.is-dimmed {
  opacity: 0.42;
}

.case-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 900;
}

.case-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.case-card li + li {
  margin-top: 8px;
}

.playbook-section {
  width: 100%;
  max-width: none;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  color: #f7fbf8;
  background: #152428;
}

.playbook-section .section-heading h2,
.playbook-grid h3 {
  color: #ffffff;
}

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

.playbook-grid article {
  min-height: 240px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.playbook-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #111d20;
  background: var(--gold);
  font-weight: 900;
}

.playbook-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.skill-cloud span {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 40px;
  align-items: center;
  padding-top: 52px;
}

.contact-section h2 {
  margin: 0 0 14px;
  font-size: 2.45rem;
  line-height: 1.08;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-panel a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  border-color: var(--teal);
}

.copy-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .icon-button {
    display: grid;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav {
    display: grid;
  }

  .nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-stats,
  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .work-layout {
    grid-template-columns: 1fr;
  }

  .timeline {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, 100%);
  }
}

@media (max-width: 680px) {
  .hero-content,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    min-height: auto;
    padding: 112px 0 34px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-stats,
  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .timeline,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 34px;
  }

  .section,
  .impact-section,
  .playbook-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .case-topline {
    display: block;
  }

  .case-topline span {
    display: block;
  }

  .site-footer {
    display: grid;
  }

  .trailer-shell {
    width: min(100% - 24px, var(--max));
    min-height: calc(100dvh - 24px);
    margin: 12px auto;
    gap: 14px;
  }

  .career-trailer.is-playing .trailer-shell {
    width: min(100% - 16px, var(--max));
    min-height: calc(100dvh - 16px);
    margin: 8px auto;
  }

  .trailer-topbar {
    gap: 14px;
  }

  .trailer-topbar h2 {
    font-size: 1.28rem;
  }

  .trailer-stage {
    padding: 22px;
  }

  .trailer-stage[data-scene="founder"] {
    padding-bottom: 22px;
  }

  .trailer-visual {
    top: auto;
    right: -18px;
    bottom: 22px;
    width: 78%;
    height: 40%;
    opacity: 0.3;
    transform: none;
  }

  .visual-career-arc {
    opacity: 0.24;
    transform: none;
  }

  .career-stack {
    display: none;
  }

  .career-spine {
    top: 42%;
    bottom: 10%;
    left: auto;
    right: 4px;
  }

  .career-nodes {
    top: 40%;
    bottom: 8%;
    left: auto;
    right: -4px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-visual,
  .trailer-stage[data-scene="operating-altitude"] .trailer-visual,
  .trailer-stage[data-scene="founder"] .trailer-visual {
    bottom: -8px;
    height: 34%;
    opacity: 0.16;
  }

  .trailer-stage[data-scene="equity-scale"] .scale-tag {
    display: none;
  }

  .trailer-kicker,
  .trailer-stage h3,
  .trailer-stage p,
  .trailer-proof,
  .trailer-details {
    width: 100%;
  }

  .trailer-details.is-metric-focus {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-details.is-metric-focus {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-kicker,
  .trailer-stage[data-scene="equity-scale"] h3,
  .trailer-stage[data-scene="equity-scale"] p {
    width: 100%;
  }

  .trailer-stage[data-scene="equity-scale"] h3 {
    font-size: 3.1rem;
  }

  .trailer-stage[data-scene="equity-scale"] p.trailer-caption-beats {
    gap: 8px;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) .trailer-visual {
    top: auto;
    right: -18px;
    bottom: -8px;
    width: 78%;
    height: 34%;
    opacity: 0.16;
    transform: none;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) .trailer-details.is-metric-focus {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) .trailer-kicker,
  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) h3,
  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) p {
    width: 100%;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) h3 {
    font-size: 2.55rem;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) p.trailer-caption-beats {
    gap: 7px;
    font-size: 1.12rem;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) .trailer-metric-card {
    min-height: 92px;
    padding: 12px;
  }

  .trailer-stage:is([data-scene="founder"], [data-scene="close"]) .trailer-metric-card strong {
    font-size: 2rem;
  }

  .trailer-stage[data-scene="ai-service"] .trailer-details.is-metric-focus {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .trailer-details .trailer-metric-card {
    min-height: 92px;
    padding: 12px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-details .trailer-metric-card {
    min-height: 92px;
  }

  .trailer-stage[data-scene="equity-scale"] .trailer-metric-card strong {
    font-size: 2rem;
  }

  .trailer-stage[data-scene="ai-service"] .trailer-details .trailer-metric-card,
  .trailer-stage[data-scene="ai-service"] .trailer-metric-card:first-child {
    min-height: 92px;
  }

  .trailer-stage[data-scene="ai-service"] .trailer-metric-card:first-child strong {
    font-size: 2rem;
  }

  .trailer-metric-card strong {
    font-size: 2rem;
  }

  .trailer-metric-card.has-mobile-value > strong:first-child {
    display: none;
  }

  .trailer-metric-card .metric-mobile-value {
    display: block;
  }

  .trailer-metric-card small {
    margin-top: 7px;
    font-size: 0.68rem;
  }

  .trailer-stage h3 {
    font-size: 3.1rem;
  }

  .trailer-stage.is-long-scene h3,
  .trailer-stage.is-extra-long-scene h3 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .trailer-stage p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .trailer-stage[data-scene="close"] {
    padding: 28px 22px 24px;
  }

  .trailer-stage[data-scene="close"]::after {
    display: none;
  }

  .trailer-stage[data-scene="close"] h3,
  .trailer-stage[data-scene="close"].is-long-scene h3,
  .trailer-stage[data-scene="close"].is-extra-long-scene h3 {
    width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.15rem);
    line-height: 0.98;
  }

  .trailer-stage[data-scene="close"] .trailer-details.is-finale {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 24px;
  }

  .finale-flow {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(184, 135, 53, 0.72);
  }

  .finale-step,
  .finale-step:first-child,
  .finale-step:last-child {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 3px;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .finale-step small {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.62rem;
  }

  .finale-step-topline {
    display: contents;
  }

  .trailer-details .finale-index {
    display: grid;
    width: 40px;
    height: 36px;
    grid-column: 1;
    grid-row: 1 / span 2;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left-color: rgba(184, 135, 53, 0.78);
    border-radius: 4px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    font-family: Inter, ui-sans-serif, sans-serif;
    font-size: 0.7rem;
    line-height: 1;
  }

  .finale-step strong {
    grid-column: 2;
    grid-row: 2;
  }

  .trailer-details .finale-description {
    display: none;
  }

  .finale-step strong {
    font-size: 1rem;
  }

  .finale-proofline {
    margin-top: 12px !important;
    font-size: 0.61rem !important;
    line-height: 1.45;
  }

  .trailer-controls {
    justify-content: stretch;
  }

  .trailer-controls .button {
    flex: 1 1 calc(50% - 10px);
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media print {
  .site-header,
  .career-trailer,
  .hero-media,
  .hero-overlay,
  .hero-actions,
  .filter-bar,
  .timeline,
  .contact-panel button,
  .site-footer {
    display: none;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  .hero,
  .hero-content,
  .section,
  .impact-section,
  .playbook-section {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0 0 20px;
    color: #000000;
    background: #ffffff;
  }

  .hero-content {
    margin: 0;
  }

  .hero h1,
  .section-heading h2,
  .contact-section h2 {
    font-size: 24pt;
  }

  .hero-copy,
  .hero-stats dd,
  .profile-card p,
  .case-card p,
  .case-card li,
  .metric-card p,
  .playbook-grid p,
  .contact-section p {
    color: #000000;
  }

  .hero-stats,
  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .work-layout,
  .contact-section,
  .section-heading {
    display: block;
  }

  .profile-card,
  .metric-card,
  .case-card,
  .playbook-grid article,
  .contact-panel {
    min-height: 0;
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

@media screen {
  :root {
    --ink: #111416;
    --muted: #69706d;
    --paper: #f4f1eb;
    --surface: #fbfaf7;
    --surface-2: #ebe7df;
    --line: rgba(17, 20, 22, 0.14);
    --line-strong: rgba(17, 20, 22, 0.24);
    --teal: #0f766e;
    --teal-dark: #0c4f4b;
    --blue: #27384a;
    --gold: #9f7a37;
    --copper: #885b44;
    --shadow: 0 22px 70px rgba(17, 20, 22, 0.1);
    --soft-shadow: 0 10px 34px rgba(17, 20, 22, 0.07);
    --max: 1240px;
  }

  body {
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(244, 241, 235, 1) 680px),
      var(--paper);
    font-family:
      "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(17, 20, 22, 0.045) 1px, transparent 1px),
      linear-gradient(180deg, rgba(17, 20, 22, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, black, transparent 68%);
    content: "";
  }

  .site-header {
    min-height: 76px;
    padding: 16px max(24px, calc((100vw - var(--max)) / 2));
    color: rgba(251, 250, 247, 0.94);
  }

  .site-header.scrolled,
  .site-header.open {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.9);
    border-bottom: 1px solid rgba(17, 20, 22, 0.08);
    box-shadow: none;
  }

  .brand {
    gap: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 0.86rem;
    letter-spacing: 0;
  }

  .brand strong {
    font-size: 0.94rem;
    letter-spacing: 0;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav {
    gap: 28px;
  }

  .nav a {
    color: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 0.82;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--gold);
    opacity: 1;
  }

  .hero {
    min-height: 100vh;
    color: #f8f5ef;
    background: #101416;
  }

  .hero-media {
    inset: 0 0 0 38%;
    opacity: 0.48;
  }

  .hero-media img {
    object-position: center;
    filter: saturate(0.72) contrast(0.92);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #101416 0%, rgba(16, 20, 22, 0.96) 42%, rgba(16, 20, 22, 0.58) 72%, rgba(16, 20, 22, 0.82) 100%),
      radial-gradient(circle at 78% 26%, rgba(159, 122, 55, 0.16), transparent 32%),
      radial-gradient(circle at 70% 68%, rgba(15, 118, 110, 0.16), transparent 36%);
  }

  .hero-content {
    width: min(var(--max), calc(100% - 64px));
    min-height: 100vh;
    padding: 116px 0 54px;
  }

  .eyebrow {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    width: min(840px, 100%);
    font-size: clamp(3.6rem, 5.9vw, 5.7rem);
    line-height: 0.96;
    font-weight: 850;
    text-wrap: balance;
  }

  .hero-copy {
    width: min(690px, 100%);
    color: rgba(248, 245, 239, 0.78);
    font-size: 1.08rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 32px;
  }

  .button,
  .filter-button {
    min-height: 44px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 850;
  }

  .button:focus-visible,
  .filter-button:focus-visible,
  .timeline-item:focus-visible,
  .contact-panel a:focus-visible,
  .trailer-close:focus-visible,
  .icon-button:focus-visible {
    outline: 2px solid rgba(167, 123, 50, 0.82);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(167, 123, 50, 0.14);
  }

  .button {
    padding: 11px 17px;
  }

  .button.primary {
    background: #f8f5ef;
    color: #111416;
  }

  .button.primary:hover,
  .button.primary:focus-visible {
    background: #dfd6c6;
    color: #111416;
  }

  .button.secondary {
    border-color: rgba(248, 245, 239, 0.26);
    background: rgba(248, 245, 239, 0.055);
    color: #f8f5ef;
  }

  .button.secondary:hover,
  .button.secondary:focus-visible {
    border-color: rgba(248, 245, 239, 0.52);
    background: rgba(248, 245, 239, 0.1);
  }

  .hero-stats {
    width: min(1120px, 100%);
    gap: 0;
    margin-top: 42px;
    border-top: 1px solid rgba(248, 245, 239, 0.2);
    border-bottom: 1px solid rgba(248, 245, 239, 0.2);
  }

  .hero-stats div {
    min-height: 138px;
    padding: 20px 22px;
    border: 0;
    border-right: 1px solid rgba(248, 245, 239, 0.16);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats dt span {
    min-height: auto;
    color: rgba(248, 245, 239, 0.52);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-stats dt strong {
    margin-top: 18px;
    font-size: 1.72rem;
  }

  .hero-stats dd {
    color: rgba(248, 245, 239, 0.66);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hero-stats a {
    color: #f8f5ef;
    text-decoration-color: rgba(159, 122, 55, 0.78);
  }

  .section {
    width: min(var(--max), calc(100% - 64px));
    padding: 104px 0;
  }

  .section-heading {
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
    gap: 64px;
    align-items: start;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: clamp(2.15rem, 4.2vw, 4.25rem);
    font-weight: 830;
    line-height: 0.98;
    text-wrap: balance;
  }

  .profile-card,
  .metric-card,
  .case-card,
  .playbook-grid article,
  .contact-panel,
  .timeline-item,
  .filter-button,
  .skill-cloud span {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(251, 250, 247, 0.74);
    box-shadow: none;
  }

  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }

  .profile-card {
    min-height: 260px;
    padding: 28px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
  }

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

  .profile-card h3,
  .case-card h3,
  .playbook-grid h3 {
    color: var(--ink);
    font-size: 1.08rem;
    letter-spacing: 0;
  }

  .profile-card p,
  .case-card p,
  .playbook-grid p,
  .contact-section p,
  .metric-card p,
  .case-card li {
    color: var(--muted);
  }

  .impact-section {
    width: 100%;
    max-width: none;
    padding: 104px max(32px, calc((100vw - var(--max)) / 2));
    background:
      linear-gradient(180deg, rgba(17, 20, 22, 0.025), rgba(17, 20, 22, 0.045)),
      #ebe7df;
  }

  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    border: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.56);
  }

  .metric-card {
    min-height: 214px;
    padding: 28px;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

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

  .metric-icon {
    width: auto;
    height: auto;
    place-items: initial;
    margin-bottom: 42px;
    border: 0;
    border-radius: 0;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .metric-card strong {
    color: var(--ink);
    font-size: 2.7rem;
    font-weight: 850;
  }

  .filter-bar {
    gap: 8px;
    margin-bottom: 28px;
  }

  .filter-button {
    min-height: 38px;
    padding: 8px 12px;
    color: var(--muted);
  }

  .filter-button.active,
  .filter-button:hover,
  .filter-button:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #f8f5ef;
  }

  .work-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
  }

  .timeline {
    top: 96px;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.68);
  }

  .timeline-item {
    min-height: 84px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .timeline-item.active,
  .timeline-item:hover,
  .timeline-item:focus-visible {
    border-color: var(--line);
    box-shadow: inset 3px 0 0 var(--gold);
  }

  .timeline-item span,
  .case-topline {
    color: var(--gold);
  }

  .case-stack {
    gap: 12px;
  }

  .case-card {
    padding: 28px;
    border-radius: 4px;
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.72)),
      var(--surface);
  }

  .case-card.featured {
    border-color: var(--line-strong);
    box-shadow: var(--soft-shadow);
  }

  .case-topline {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .case-card h3 {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .case-dossier {
    min-height: 560px;
  }

  .case-dossier > p {
    max-width: 920px;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .dossier-snapshot {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 24px 0 28px;
    border: 1px solid rgba(17, 20, 22, 0.1);
    background: rgba(255, 253, 248, 0.52);
  }

  .dossier-snapshot div {
    min-height: 104px;
    padding: 18px 20px;
    border-right: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-snapshot div:last-child {
    border-right: 0;
  }

  .dossier-snapshot dt {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .dossier-snapshot dd {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 850;
    line-height: 1.08;
  }

  .dossier-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    border-top: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-grid section {
    min-height: 156px;
    padding: 22px 24px 22px 0;
    border-bottom: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-grid section:nth-child(2n) {
    padding-left: 24px;
    border-left: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-grid section:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .dossier-grid h4 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .dossier-grid p,
  .dossier-grid ul {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .dossier-grid ul {
    display: block;
    padding-left: 18px;
  }

  .dossier-grid li + li {
    margin-top: 8px;
  }

  .dossier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .dossier-tags span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.62);
    color: rgba(17, 20, 22, 0.68);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .playbook-section {
    padding: 112px max(32px, calc((100vw - var(--max)) / 2));
    color: #f8f5ef;
    background:
      linear-gradient(135deg, rgba(17, 20, 22, 0.96), rgba(28, 35, 36, 0.96)),
      #111416;
  }

  .playbook-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(248, 245, 239, 0.16);
  }

  .playbook-grid article {
    min-height: 260px;
    padding: 28px;
    border: 0;
    border-right: 1px solid rgba(248, 245, 239, 0.16);
    border-radius: 0;
    background: transparent;
  }

  .playbook-grid article:last-child {
    border-right: 0;
  }

  .playbook-grid span {
    width: auto;
    height: auto;
    place-items: initial;
    margin-bottom: 44px;
    border-radius: 0;
    color: var(--gold);
    background: transparent;
  }

  .skill-cloud span {
    min-height: 34px;
    border-radius: 999px;
    background: rgba(251, 250, 247, 0.7);
    font-size: 0.82rem;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr) 390px;
    padding-top: 72px;
  }

  .contact-panel {
    padding: 20px;
    background: rgba(251, 250, 247, 0.8);
  }

  .contact-panel a {
    border-radius: 4px;
  }

  .site-footer {
    width: min(var(--max), calc(100% - 64px));
  }

  .career-trailer {
    background: #111416;
  }

  .trailer-backdrop {
    opacity: 0.34;
    filter: saturate(0.62) contrast(0.88);
    background:
      linear-gradient(90deg, rgba(17, 20, 22, 0.96), rgba(17, 20, 22, 0.84), rgba(17, 20, 22, 0.96)),
      url("assets/equity-product-command-center.png") center / cover;
  }

  .trailer-shell {
    width: min(1280px, calc(100% - 48px));
  }

  .career-trailer.is-playing .trailer-shell {
    width: min(1320px, calc(100% - 40px));
  }

  .trailer-topbar h2 {
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.04;
  }

  .trailer-stage {
    border-color: rgba(248, 245, 239, 0.18);
    border-radius: 4px;
    background:
      linear-gradient(135deg, rgba(248, 245, 239, 0.08), rgba(248, 245, 239, 0.025)),
      rgba(17, 20, 22, 0.82);
    box-shadow: none;
  }

  .trailer-stage h3 {
    font-size: 4.65rem;
    line-height: 1;
  }

  .trailer-stage.is-long-scene h3 {
    font-size: 3.8rem;
  }

  .trailer-stage.is-extra-long-scene h3 {
    font-size: 3.35rem;
  }

  .trailer-stage p {
    color: rgba(248, 245, 239, 0.78);
    font-size: 1.22rem;
  }

  .trailer-proof,
  .trailer-details span {
    border-radius: 4px;
    color: #f8f5ef;
    background: rgba(248, 245, 239, 0.06);
  }

  .trailer-progress-preview {
    border-radius: 4px;
    background: rgba(17, 20, 22, 0.96);
  }

  .trailer-controls .button.primary {
    background: #f8f5ef;
    color: #111416;
  }
}

@media screen and (max-width: 1100px) {
  .hero-stats,
  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .contact-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats div:nth-child(2),
  .metric-card:nth-child(2),
  .playbook-grid article:nth-child(2),
  .profile-card:nth-child(2) {
    border-right: 0;
  }

  .work-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .timeline {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 680px) {
  body::before {
    background-size: 48px 48px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .nav {
    right: 16px;
    left: 16px;
    border-radius: 4px;
  }

  .hero-content,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .hero-content {
    padding: 108px 0 34px;
  }

  .hero-media {
    inset: 0;
    opacity: 0.3;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 3.55rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-stats,
  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .timeline,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .profile-card,
  .metric-card,
  .playbook-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child,
  .profile-card:last-child,
  .metric-card:last-child,
  .playbook-grid article:last-child {
    border-bottom: 0;
  }

  .section,
  .impact-section,
  .playbook-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: 2.3rem;
  }

  .case-card {
    padding: 22px;
  }

  .contact-section {
    gap: 28px;
  }

  .trailer-shell,
  .career-trailer.is-playing .trailer-shell {
    width: min(100% - 16px, var(--max));
  }

  .trailer-stage h3 {
    font-size: 2.85rem;
  }

  .trailer-stage.is-long-scene h3,
  .trailer-stage.is-extra-long-scene h3 {
    font-size: 2.35rem;
  }
}

@media screen {
  :root {
    --paper: #f3f0e8;
    --surface: #fffdf8;
    --surface-2: #e7e1d6;
    --line: rgba(17, 20, 22, 0.12);
    --line-strong: rgba(17, 20, 22, 0.22);
    --gold: #a77b32;
    --shadow: 0 28px 90px rgba(17, 20, 22, 0.09);
    --soft-shadow: 0 16px 48px rgba(17, 20, 22, 0.06);
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(243, 240, 232, 1) 760px),
      var(--paper);
  }

  body::before {
    opacity: 0.52;
    background:
      linear-gradient(90deg, rgba(17, 20, 22, 0.03) 1px, transparent 1px),
      linear-gradient(180deg, rgba(17, 20, 22, 0.024) 1px, transparent 1px);
    background-size: 96px 96px;
  }

  .site-header {
    border-bottom: 1px solid transparent;
  }

  .site-header.scrolled,
  .site-header.open {
    background: rgba(255, 253, 248, 0.84);
    backdrop-filter: blur(18px) saturate(1.08);
  }

  .brand-mark {
    background: rgba(255, 253, 248, 0.03);
  }

  .site-header.scrolled .brand-mark,
  .site-header.open .brand-mark {
    background: rgba(17, 20, 22, 0.025);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #0f1315 0%, rgba(15, 19, 21, 0.98) 42%, rgba(15, 19, 21, 0.68) 70%, rgba(15, 19, 21, 0.9) 100%),
      linear-gradient(180deg, rgba(15, 19, 21, 0.08), rgba(15, 19, 21, 0.7) 88%),
      radial-gradient(circle at 78% 26%, rgba(167, 123, 50, 0.12), transparent 30%),
      radial-gradient(circle at 72% 70%, rgba(15, 118, 110, 0.12), transparent 36%);
  }

  .hero h1 {
    max-width: 875px;
  }

  .hero-copy {
    position: relative;
    padding-left: 18px;
    border-left: 1px solid rgba(248, 245, 239, 0.22);
  }

  .hero-actions .button.primary {
    box-shadow: 0 16px 42px rgba(248, 245, 239, 0.12);
  }

  .hero-stats {
    background: rgba(248, 245, 239, 0.018);
  }

  .hero-stats div {
    min-height: 150px;
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .hero-stats div:hover {
    background: rgba(248, 245, 239, 0.045);
    transform: translateY(-2px);
  }

  .section {
    position: relative;
  }

  .section[id],
  #top,
  #contact {
    scroll-margin-top: 96px;
  }

  .section::before,
  .impact-section::before,
  .playbook-section::before {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 34px;
    background: linear-gradient(90deg, var(--line-strong), transparent 62%);
    content: "";
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading .eyebrow,
  .contact-section .eyebrow,
  .trailer-topbar .eyebrow {
    color: var(--gold);
  }

  .section-heading h2,
  .contact-section h2 {
    max-width: 840px;
  }

  .intro-section::before,
  .work-section::before {
    display: none;
  }

  .intro-section .section-heading,
  .work-section .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .intro-section .section-heading .eyebrow,
  .work-section .section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .intro-section .section-heading::before,
  .work-section .section-heading::before {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--line-strong), transparent 62%);
    content: "";
  }

  .intro-section .section-heading h2,
  .work-section .section-heading h2 {
    max-width: 720px;
  }

  .section-subline {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.68;
  }

  .intro-grid,
  .metric-grid,
  .playbook-grid,
  .timeline {
    box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.62);
  }

  .profile-card,
  .metric-card,
  .playbook-grid article {
    transition:
      background 180ms ease,
      transform 180ms ease;
  }

  .profile-card:hover,
  .metric-card:hover,
  .playbook-grid article:hover {
    background: rgba(255, 253, 248, 0.36);
    transform: translateY(-2px);
  }

  .profile-card h3,
  .playbook-grid h3 {
    font-size: 1.02rem;
    text-transform: none;
  }

  .profile-card h3::before,
  .playbook-grid h3::before {
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--gold);
    content: "";
  }

  .impact-section {
    position: relative;
    background:
      linear-gradient(180deg, rgba(17, 20, 22, 0.018), rgba(17, 20, 22, 0.042)),
      #e9e3d8;
  }

  .metric-grid {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.5)),
      rgba(255, 253, 248, 0.58);
  }

  .metric-card strong {
    letter-spacing: -0.02em;
  }

  .metric-card p {
    max-width: 250px;
  }

  .filter-bar {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }

  .filter-button {
    background: transparent;
  }

  .timeline {
    background: rgba(255, 253, 248, 0.62);
  }

  .timeline-group-label {
    margin: 0;
    padding: 14px 18px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .timeline-group-label.venture {
    border-top: 1px solid var(--line);
    background: rgba(167, 123, 50, 0.035);
  }

  .timeline-item {
    position: relative;
    padding: 18px 18px 18px 20px;
  }

  .timeline-item small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.35;
  }

  .timeline-item.venture-item {
    background: rgba(255, 253, 248, 0.36);
  }

  .timeline-item.active {
    background: rgba(255, 253, 248, 0.54);
  }

  .timeline-item.active::after {
    position: absolute;
    top: 18px;
    right: 16px;
    color: var(--gold);
    content: "Viewing";
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .case-card {
    position: relative;
    padding: 32px 34px;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.76)),
      var(--surface);
  }

  .case-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: transparent;
    content: "";
  }

  .case-card.featured::before,
  .case-card:hover::before {
    background: var(--gold);
  }

  .case-card.featured {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 1), rgba(255, 253, 248, 0.8)),
      linear-gradient(135deg, rgba(167, 123, 50, 0.07), transparent 48%);
  }

  .case-card.is-dimmed {
    opacity: 0.68;
  }

  .case-topline {
    align-items: baseline;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 20, 22, 0.09);
  }

  .case-card p {
    max-width: 860px;
    font-size: 1.01rem;
    line-height: 1.68;
  }

  .case-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 22px;
    padding-left: 18px;
  }

  .case-card li + li {
    margin-top: 0;
  }

  .playbook-section {
    background:
      linear-gradient(135deg, rgba(17, 20, 22, 0.97), rgba(23, 30, 31, 0.97)),
      radial-gradient(circle at 82% 18%, rgba(167, 123, 50, 0.1), transparent 28%),
      #111416;
  }

  .playbook-section::before {
    background: linear-gradient(90deg, rgba(248, 245, 239, 0.24), transparent 62%);
  }

  .playbook-grid article:hover {
    background: rgba(248, 245, 239, 0.045);
  }

  .playbook-section {
    width: min(var(--max), calc(100% - 64px));
    max-width: var(--max);
    padding: 104px 0;
    color: var(--ink);
    background: transparent;
  }

  .playbook-section::before {
    background: linear-gradient(90deg, var(--line-strong), transparent 62%);
  }

  .playbook-section .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .playbook-section .section-heading h2 {
    max-width: 760px;
    color: var(--ink);
  }

  .playbook-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.52);
  }

  .playbook-grid article {
    min-height: 250px;
    padding: 28px;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
  }

  .playbook-grid article:last-child {
    border-right: 0;
  }

  .playbook-grid article:hover {
    background: rgba(255, 253, 248, 0.38);
  }

  .playbook-grid span {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 42px;
    color: var(--gold);
    background: transparent;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .playbook-grid h3 {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .playbook-grid h3::before {
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--gold);
    content: "";
  }

  .playbook-grid p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .skill-cloud {
    padding-top: 2px;
  }

  .skill-cloud span {
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.46);
    color: rgba(17, 20, 22, 0.68);
  }

  .capability-map {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.52);
  }

  .capability-map article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
  }

  .capability-map article:last-child {
    border-right: 0;
  }

  .capability-map h3 {
    margin: 0 0 28px;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .capability-map h3::before {
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--gold);
    content: "";
  }

  .capability-map ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.45;
    list-style: none;
  }

  .capability-map li {
    position: relative;
    padding-left: 16px;
  }

  .capability-map li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--gold);
    content: "";
  }

  .contact-section {
    align-items: end;
    row-gap: 40px;
    padding-bottom: 88px;
  }

  .contact-section::before {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .contact-section > div:first-child {
    max-width: 820px;
  }

  .contact-panel {
    border-color: var(--line-strong);
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.76)),
      var(--surface);
    box-shadow: var(--soft-shadow);
  }

  .contact-panel a {
    background: rgba(255, 253, 248, 0.72);
  }

  .site-footer {
    padding-top: 30px;
    color: rgba(17, 20, 22, 0.58);
  }

  .career-trailer {
    background: #0f1315;
  }

  .trailer-stage {
    border-color: rgba(248, 245, 239, 0.16);
    background:
      linear-gradient(135deg, rgba(248, 245, 239, 0.075), rgba(248, 245, 239, 0.022)),
      rgba(15, 19, 21, 0.88);
  }

  .trailer-scene-glow {
    opacity: 0.54;
    filter: blur(42px);
  }

  .trailer-kicker {
    letter-spacing: 0.09em;
  }

  .trailer-proof {
    border-color: rgba(167, 123, 50, 0.42);
  }

  .trailer-progress {
    height: 6px;
    background:
      repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent calc(var(--chapter-step) - 1px),
        rgba(248, 245, 239, 0.34) calc(var(--chapter-step) - 1px),
        rgba(248, 245, 239, 0.34) var(--chapter-step)
      ),
      rgba(248, 245, 239, 0.13);
  }

  .trailer-progress > span {
    background: linear-gradient(90deg, var(--gold), rgba(15, 118, 110, 0.92));
  }

  .trailer-controls .button.secondary {
    background: rgba(248, 245, 239, 0.045);
  }
}

@media screen and (max-width: 1100px) {
  .intro-section .section-heading {
    grid-template-columns: 1fr;
  }

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

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

  .capability-map article:nth-child(2) {
    border-right: 0;
  }

  .capability-map article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .playbook-grid article:nth-child(2) {
    border-right: 0;
  }

  .playbook-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .dossier-snapshot div:nth-child(2) {
    border-right: 0;
  }

  .dossier-snapshot div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-grid section,
  .dossier-grid section:nth-child(2n) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .dossier-grid section:nth-last-child(2) {
    border-bottom: 1px solid rgba(17, 20, 22, 0.1);
  }

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

  .timeline-item.active::after {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  body::before {
    background-size: 64px 64px;
  }

  .hero-copy {
    padding-left: 14px;
  }

  .section::before,
  .impact-section::before,
  .playbook-section::before {
    margin-bottom: 24px;
  }

  .profile-card:hover,
  .metric-card:hover,
  .playbook-grid article:hover,
  .hero-stats div:hover {
    transform: none;
  }

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

  .playbook-section {
    width: min(100% - 32px, var(--max));
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .playbook-grid article,
  .playbook-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .playbook-grid article:last-child {
    border-bottom: 0;
  }

  .capability-map {
    grid-template-columns: 1fr;
  }

  .capability-map article,
  .capability-map article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-map article:last-child {
    border-bottom: 0;
  }

  .dossier-snapshot {
    grid-template-columns: 1fr;
  }

  .dossier-snapshot div,
  .dossier-snapshot div:nth-child(2) {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 20, 22, 0.1);
  }

  .dossier-snapshot div:last-child {
    border-bottom: 0;
  }
}

/* Refined landing intro */
@media screen {
  .hero {
    min-height: clamp(680px, 88svh, 840px);
  }

  .hero-media {
    inset: 0 0 0 46%;
    opacity: 0.36;
  }

  .hero-media img {
    object-position: 44% center;
    filter: saturate(0.58) contrast(0.88);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, #0f1315 0%, #0f1315 38%, rgba(15, 19, 21, 0.94) 54%, rgba(15, 19, 21, 0.64) 78%, rgba(15, 19, 21, 0.82) 100%),
      linear-gradient(180deg, rgba(15, 19, 21, 0.06), rgba(15, 19, 21, 0.62));
  }

  .hero-content {
    min-height: clamp(680px, 88svh, 840px);
    justify-content: center;
    padding: 128px 0 84px;
  }

  .hero-content .eyebrow {
    margin-bottom: 20px;
    color: rgba(248, 245, 239, 0.58);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    width: min(860px, 76vw);
    max-width: none;
    font-size: clamp(3.5rem, 5vw, 5.15rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    width: min(610px, 100%);
    margin-top: 28px;
    padding-left: 0;
    border-left: 0;
    color: rgba(248, 245, 239, 0.7);
    font-size: 1.04rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: center;
    gap: 22px;
    margin-top: 30px;
  }

  .hero-actions .button.primary {
    min-height: 48px;
    padding-inline: 20px;
    box-shadow: none;
  }

  .hero-actions .text-button {
    min-height: auto;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    color: rgba(248, 245, 239, 0.78);
    background: transparent;
  }

  .hero-actions .text-button:hover,
  .hero-actions .text-button:focus-visible {
    color: #f8f5ef;
    background: transparent;
  }

  .hero-actions .text-button span {
    transition: transform 180ms ease;
  }

  .hero-actions .text-button:hover span,
  .hero-actions .text-button:focus-visible span {
    transform: translateX(3px);
  }
}

@media screen and (max-width: 680px) {
  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-media {
    inset: 0;
    opacity: 0.22;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 19, 21, 0.78), #0f1315 70%),
      linear-gradient(90deg, #0f1315 0%, rgba(15, 19, 21, 0.68) 100%);
  }

  .hero-content {
    padding: 120px 0 64px;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(3rem, 13.5vw, 4rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 34rem;
    padding-left: 0;
  }

  .hero-actions .button {
    width: auto;
  }
}
