/* Cinematic Precision — scroll-led motion with a bright, restrained operating aesthetic. */
.cinematic-site {
  --cinematic-ink: #102a3b;
  --cinematic-teal: #17666a;
  --cinematic-coral: #ff7857;
  --cinematic-mint: #dff3ec;
  --cinematic-sand: #f3ddb6;
  --cinematic-line: #d9e4e3;
  --cinematic-small-text: #566970;
  --cinematic-coral-text: #a83f2a;
  --cinematic-gold-text: #74591e;
  --cinematic-ease: cubic-bezier(.16, 1, .3, 1);
  overflow-x: clip;
}

.cinematic-site .site-header {
  transition: min-height 420ms var(--cinematic-ease), background-color 420ms ease, box-shadow 420ms ease;
}

.cinematic-site .header-inner { height: 76px; transition: height 420ms var(--cinematic-ease), min-height 420ms var(--cinematic-ease); }
.cinematic-site .site-header.is-scrolled .header-inner { height: 66px; min-height: 66px; }
.cinematic-site .nav-contact { overflow: hidden; position: relative; isolation: isolate; }
.cinematic-site .nav-contact::before,
.cinematic-site .button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: var(--cinematic-teal);
  transform: translateY(103%);
  transition: transform 520ms var(--cinematic-ease);
}
.cinematic-site .nav-contact:hover::before,
.cinematic-site .button:hover::before { transform: translateY(0); }
.cinematic-site .button { position: relative; isolation: isolate; overflow: hidden; }

.cinematic-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  background:
    linear-gradient(90deg, transparent 49.92%, #102a3b0b 50%, transparent 50.08%),
    #fff;
}

.cinematic-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cinematic-coral) 0 25%, var(--cinematic-teal) 25% 63%, var(--cinematic-sand) 63% 82%, var(--cinematic-mint) 82%);
  transform: scaleX(calc(.2 + var(--hero-progress, 0) * .8));
  transform-origin: left;
}

.cinematic-hero-grid {
  display: grid;
  min-height: calc(100svh - 132px);
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, .58fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  padding-block: clamp(42px, 5.5vh, 68px) 24px;
}

.cinematic-hero-copy {
  position: relative;
  z-index: 2;
  transform: translateY(calc(var(--hero-progress, 0) * -26px));
}

.cinematic-site .cinematic-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--cinematic-ink);
  font-size: clamp(54px, 5.3vw, 82px);
  line-height: .94;
  text-align: left;
}

.cinematic-line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  color: var(--cinematic-ink);
}

.cinematic-hero h1 .cinematic-line > span {
  display: block;
  color: var(--cinematic-ink);
  transform: translateY(0);
  opacity: 1;
}

.cinematic-hero h1 .cinematic-line::after,
.cinematic-hero h1 .cinematic-line > span::after { content: none; }

.has-cinematic-motion .cinematic-line:nth-child(1) > span { animation: cinematic-line-in 900ms var(--cinematic-ease) 80ms forwards; }
.has-cinematic-motion .cinematic-line:nth-child(2) > span { animation: cinematic-line-in 900ms var(--cinematic-ease) 170ms forwards; }
.has-cinematic-motion .cinematic-line:nth-child(3) > span { animation: cinematic-line-in 900ms var(--cinematic-ease) 260ms forwards; }

@keyframes cinematic-line-in {
  from { opacity: 1; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cinematic-hero h1 em {
  position: relative;
  color: var(--cinematic-teal);
  font-style: normal;
  white-space: nowrap;
}

.cinematic-hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.02em;
  bottom: .02em;
  left: -.02em;
  height: .12em;
  background: var(--cinematic-mint);
  transform: scaleX(0);
  transform-origin: left;
}

.has-cinematic-motion .cinematic-hero h1 em::after { animation: cinematic-rule-in 800ms var(--cinematic-ease) 800ms forwards; }
@keyframes cinematic-rule-in { to { transform: scaleX(1); } }

.cinematic-hero .bright-hero-lede {
  max-width: 720px;
  margin-top: clamp(26px, 3.4vh, 42px);
  font-size: clamp(18px, 1.45vw, 21px);
}

.cinematic-hero .bright-actions { justify-content: flex-start; }
.cinematic-hero .cta-reassurance { max-width: 640px; }
.cinematic-site .cta-reassurance { color: var(--cinematic-small-text); }

.cinematic-visual {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  width: min(35vw, 500px);
  aspect-ratio: 1;
  justify-self: end;
  perspective: 1000px;
  transform: translate3d(0, calc(var(--hero-progress, 0) * 48px), 0) scale(calc(1 - var(--hero-progress, 0) * .04));
  transform-style: preserve-3d;
}

.cinematic-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, #dff3ecb8 0, #dff3ec52 38%, transparent 70%);
  filter: blur(12px);
  transform: translate(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 12px));
}

.cinematic-orbit {
  position: absolute;
  border: 1px solid #17666a42;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: border-color 400ms ease;
}
.cinematic-orbit::before,
.cinematic-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinematic-ink);
}
.cinematic-orbit::before { top: 14%; left: 14%; }
.cinematic-orbit::after { right: 10%; bottom: 23%; background: var(--cinematic-coral); }
.cinematic-orbit > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 6px;
  background: var(--cinematic-teal);
  box-shadow: 0 8px 24px #102a3b24;
}

.cinematic-orbit-one {
  inset: 1%;
  transform: rotate(13deg) rotateX(calc(58deg + var(--pointer-y) * 5deg)) rotateZ(calc(var(--pointer-x) * 3deg));
  animation: cinematic-orbit 28s linear infinite;
}
.cinematic-orbit-two {
  inset: 17%;
  border-color: #ff78575a;
  transform: rotate(-31deg) rotateX(calc(66deg + var(--pointer-x) * 4deg)) rotateY(calc(var(--pointer-y) * 4deg));
  animation: cinematic-orbit-reverse 22s linear infinite;
}
.cinematic-orbit-three {
  inset: 33%;
  border-color: #102a3b35;
  transform: rotate(64deg) rotateX(54deg);
  animation: cinematic-orbit 18s linear infinite;
}
.cinematic-orbit-one > span { transform: translate(-50%, -50%) translateX(213px); }
.cinematic-orbit-two > span { width: 15px; height: 15px; background: var(--cinematic-coral); transform: translate(-50%, -50%) translateX(142px); }
.cinematic-orbit-three > span { width: 13px; height: 13px; background: var(--cinematic-sand); transform: translate(-50%, -50%) translateX(74px); }

@keyframes cinematic-orbit { to { rotate: 1turn; } }
@keyframes cinematic-orbit-reverse { to { rotate: -1turn; } }

.cinematic-core {
  position: absolute;
  inset: 38%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 25%;
  background: #ffffffd9;
  box-shadow: 0 28px 70px #102a3b1f;
  transform: translate(calc(var(--pointer-x) * -9px), calc(var(--pointer-y) * -9px)) rotate(calc(var(--pointer-x) * 2deg));
  backdrop-filter: blur(14px);
}
.cinematic-core span { border-radius: 26%; background: var(--cinematic-ink); }
.cinematic-core span:nth-child(2) { background: var(--cinematic-coral); }
.cinematic-core span:nth-child(3) { background: var(--cinematic-sand); }
.cinematic-core span:nth-child(4) { background: var(--cinematic-teal); }

.cinematic-hero-foot {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
}
.cinematic-hero-foot .bright-promise { margin: 0; }
.cinematic-hero-foot > a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--cinematic-line); border-radius: 50%; color: #61737a; font-size: 14px; }
.cinematic-hero-foot > a span { display: inline-block; animation: cinematic-nudge 1.8s var(--cinematic-ease) infinite; }
@keyframes cinematic-nudge { 50% { transform: translateY(5px); } }

.cinematic-outcomes {
  position: relative;
  overflow: clip;
  padding-block: clamp(100px, 10vw, 160px) clamp(68px, 7vw, 100px);
}
.cinematic-outcomes::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -12vw;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid #17666a20;
  border-radius: 50%;
  transform: translateY(calc(var(--scene-progress, 0) * 140px)) scale(calc(.86 + var(--scene-progress, 0) * .14));
}
.cinematic-outcomes .bright-split-heading h2 { max-width: 850px; }
.cinematic-outcomes .bright-outcome-list { border-top: 0; }
.cinematic-outcomes .bright-outcome-list article {
  position: relative;
  min-height: 280px;
  padding-top: 32px;
  border-top: 1px solid var(--cinematic-line);
  transform: translateY(calc((1 - var(--item-progress, 1)) * 74px));
  opacity: 1;
  transition: color 320ms ease, background-color 320ms ease;
}
.cinematic-outcomes .bright-outcome-list article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--cinematic-coral-text);
  font-size: 12px;
  font-weight: 750;
}
.cinematic-outcomes .bright-outcome-list article:nth-child(2) > span { color: var(--cinematic-teal); }
.cinematic-outcomes .bright-outcome-list article:nth-child(3) > span { color: var(--cinematic-gold-text); }
.cinematic-outcomes .bright-outcome-list article:hover { background: #f7fbfa; }

.cinematic-services {
  position: relative;
  padding-block: clamp(82px, 8vw, 112px);
  background: #dff3ec;
}
.cinematic-services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 40%, #ffffff70 50%, transparent 60%);
  transform: translateX(calc(-90% + var(--scene-progress, 0) * 180%));
}
.cinematic-services .bright-service-list { position: relative; }
.cinematic-services .service-lane {
  min-height: 122px;
  transition: min-height 650ms var(--cinematic-ease), padding 650ms var(--cinematic-ease), color 320ms ease, background-color 320ms ease, transform 320ms var(--cinematic-ease);
}
.cinematic-services .service-lane:hover { transform: translateX(8px); }
.cinematic-services .service-lane[aria-pressed="true"] {
  min-height: 154px;
  padding-inline: clamp(22px, 3vw, 44px);
  color: var(--cinematic-ink);
  background: #fff;
  transform: translateX(0);
}
.cinematic-services .service-lane[aria-pressed="true"] .lane-copy strong { color: var(--cinematic-teal); }
.cinematic-services .lane-action { transition: transform 500ms var(--cinematic-ease), color 300ms ease; }
.cinematic-services .service-lane:hover .lane-action { transform: translateX(-8px); }

.cinematic-process {
  position: relative;
  overflow: clip;
  background: var(--cinematic-ink);
}
.cinematic-process h2,
.cinematic-process h3,
.cinematic-process .bright-control-note strong,
.cinematic-process .bright-responsibilities strong { color: #fff; }
.cinematic-process .bright-split-heading > p,
.cinematic-process .bright-process-steps p,
.cinematic-process .bright-control-note span,
.cinematic-process .bright-responsibilities span { color: #b9c7ca; }
.cinematic-process .bright-process-steps li,
.cinematic-process .bright-control-note,
.cinematic-process .bright-responsibilities,
.cinematic-process .bright-responsibilities p { border-color: #ffffff25; }
.cinematic-process .bright-process-steps li {
  opacity: .62;
  transform: translateY(12px);
  transition: opacity 700ms var(--cinematic-ease), transform 700ms var(--cinematic-ease);
}
.cinematic-process .bright-process-steps li.is-current,
.cinematic-process:not(.is-in-view) .bright-process-steps li { opacity: 1; transform: translateY(0); }
.cinematic-process .bright-process-steps li::before { transform: scaleX(0); }
.cinematic-process .bright-process-steps li.is-current::before { transform: scaleX(1); }
.cinematic-process .bright-process-steps span { color: var(--cinematic-coral); }
.cinematic-process .bright-responsibilities small { color: #8fa1a5; }

@media (min-width: 921px) and (min-height: 680px) {
  .has-cinematic-motion .cinematic-process { height: auto; padding-block: clamp(86px, 8vw, 118px); }
  .has-cinematic-motion .cinematic-process-stage {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    padding-block: 0;
  }
  .has-cinematic-motion .cinematic-process .bright-split-heading h2 { font-size: clamp(46px, 4.8vw, 68px); }
  .has-cinematic-motion .cinematic-process .bright-process-steps { margin-top: 36px; }
  .has-cinematic-motion .cinematic-process .bright-process-steps li { min-height: 178px; padding-top: 19px; }
  .has-cinematic-motion .cinematic-process .bright-process-steps h3 { margin-top: 18px; font-size: clamp(24px, 2.1vw, 31px); }
  .has-cinematic-motion .cinematic-process .bright-process-steps p { margin-top: 12px; font-size: 13px; }
  .has-cinematic-motion .cinematic-process .bright-control-note { padding-top: 18px; }
  .has-cinematic-motion .cinematic-process .bright-responsibilities { margin-top: 14px; }
  .has-cinematic-motion .cinematic-process .bright-responsibilities p { padding-block: 13px 10px; }
  .has-cinematic-motion .cinematic-process .bright-responsibilities small { padding-top: 8px; }
}

.industry-bridge {
  position: relative;
  z-index: 4;
  padding-block: 24px;
  border-bottom: 1px solid var(--cinematic-line);
  background: #fff;
}

.cinematic-site .bright-close {
  padding-block: clamp(88px, 8vw, 118px);
  background: #fff;
}
.cinematic-site .bright-close::before {
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  top: 50%;
  right: -18vw;
  border: 1px solid #17666a25;
  background: transparent;
  transform: translateY(-50%) scale(calc(.75 + var(--scene-progress, 0) * .2));
}
.cinematic-site .bright-close::after { display: none; }
.cinematic-site .bright-close-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .72fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}
.cinematic-site .bright-close-copy { min-width: 0; }
.cinematic-site .bright-close h2 { max-width: 760px; font-size: clamp(52px, 5.8vw, 82px); }
.cinematic-site .bright-close h2 + p { max-width: 690px; }
.bright-founder-email { display: inline-flex; margin-top: 30px; }

.conversion-finale {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid #102a3b1f;
  border-radius: 14px;
  background: linear-gradient(155deg, #fff 0 58%, #f3faf7 100%);
  box-shadow: 0 30px 90px #102a3b14;
  transform: translateY(calc((1 - var(--scene-progress, 1)) * 24px));
}
.conversion-finale::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  top: -160px;
  border: 1px solid #17666a29;
  border-radius: 50%;
  pointer-events: none;
}
.finale-kicker { color: var(--cinematic-teal); font-size: 11px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.conversion-finale h3 { max-width: 470px; margin-top: 14px; font-size: clamp(34px, 3.4vw, 50px); font-weight: 650; letter-spacing: -.045em; line-height: .98; }
.finale-visual {
  --finale-x: 0;
  --finale-y: 0;
  position: relative;
  height: 248px;
  margin-top: 24px;
  overflow: hidden;
  border-block: 1px solid var(--cinematic-line);
  background: linear-gradient(90deg, #f8fbfa, #fff 54%, #f8fbfa);
  perspective: 800px;
}
.finale-task,
.finale-result {
  position: absolute;
  z-index: 3;
  display: grid;
  min-height: 46px;
  align-items: center;
  border: 1px solid #102a3b18;
  background: #fff;
  box-shadow: 0 10px 28px #102a3b12;
  transition: inset 760ms var(--cinematic-ease), rotate 760ms var(--cinematic-ease), transform 760ms var(--cinematic-ease), opacity 500ms ease;
}
.finale-task { width: 128px; grid-template-columns: 4px 1fr; gap: 10px; padding: 10px 12px; }
.finale-task i { align-self: stretch; background: var(--cinematic-coral); }
.finale-task span { overflow: hidden; font-size: 10px; font-weight: 690; text-overflow: ellipsis; white-space: nowrap; }
.finale-task-one { left: 4%; top: 20%; rotate: -5deg; transform: translate(calc(var(--finale-x) * -4px), calc(var(--finale-y) * -3px)); }
.finale-task-two { left: 10%; top: 61%; rotate: 4deg; transform: translate(calc(var(--finale-x) * -7px), calc(var(--finale-y) * -5px)); }
.finale-task-two i { background: var(--cinematic-teal); }
.finale-task-three { left: 36%; top: 10%; rotate: 2deg; transform: translate(calc(var(--finale-x) * -5px), calc(var(--finale-y) * -4px)); }
.finale-task-three i { background: #956b22; }
.finale-core {
  position: absolute;
  z-index: 4;
  left: 52%;
  top: 55%;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 7px;
  border: 1px solid #102a3b18;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 14px 38px #102a3b18;
  transform: translate(-50%, -50%) rotateX(calc(var(--finale-y) * -3deg)) rotateY(calc(var(--finale-x) * 4deg));
  transition: transform 700ms var(--cinematic-ease), box-shadow 500ms ease;
}
.finale-core i { border-radius: 3px; background: var(--cinematic-ink); }
.finale-core i:nth-child(2) { background: var(--cinematic-coral); }
.finale-core i:nth-child(3) { background: var(--cinematic-sand); }
.finale-core i:nth-child(4) { background: var(--cinematic-teal); }
.finale-path { position: absolute; z-index: 2; top: 55%; height: 1px; background: var(--cinematic-teal); opacity: .24; transform-origin: left; transition: opacity 500ms ease, transform 700ms var(--cinematic-ease); }
.finale-path-one { left: 25%; width: 27%; }
.finale-path-two { left: 52%; width: 25%; }
.finale-result { right: 3%; top: 42%; width: 138px; gap: 5px; padding: 13px 15px; opacity: .32; transform: translate(12px, calc(var(--finale-y) * -3px)); }
.finale-result span { color: var(--cinematic-teal); font-size: 9px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }
.finale-result strong { font-size: 12px; }
.conversion-finale[data-selected-need] .finale-task-one { left: 3%; top: 18%; rotate: 0deg; }
.conversion-finale[data-selected-need] .finale-task-two { left: 3%; top: 42%; rotate: 0deg; }
.conversion-finale[data-selected-need] .finale-task-three { left: 3%; top: 66%; rotate: 0deg; }
.conversion-finale[data-selected-need] .finale-path { opacity: .68; transform: scaleX(1.08); }
.conversion-finale[data-selected-need] .finale-result { opacity: 1; transform: translate(0, calc(var(--finale-y) * -3px)); }
.conversion-finale[data-selected-need] .finale-core { box-shadow: 0 0 0 12px #dff3ec8c, 0 18px 42px #102a3b1b; }
.finale-visual.is-resolving .finale-core { animation: finale-confirm 700ms var(--cinematic-ease); }
@keyframes finale-confirm { 50% { transform: translate(-50%, -50%) scale(1.1); } }

.finale-choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 22px; border: 1px solid var(--cinematic-line); }
.finale-choices button { min-height: 70px; padding: 12px; border: 0; background: #fff; color: var(--cinematic-ink); font: inherit; font-size: 11px; font-weight: 680; line-height: 1.25; text-align: left; transition: color 220ms ease, background-color 220ms ease, transform 220ms ease; }
.finale-choices button + button { border-left: 1px solid var(--cinematic-line); }
.finale-choices button span { display: block; margin-bottom: 8px; color: var(--cinematic-coral-text); font-size: 9px; }
.finale-choices button:hover { background: #f5faf8; transform: translateY(-2px); }
.finale-choices button[aria-pressed="true"] { color: #fff; background: var(--cinematic-teal); }
.finale-choices button[aria-pressed="true"] span { color: #fff; }
.finale-status { min-height: 50px; margin-top: 17px; color: var(--cinematic-small-text); font-size: 13px; line-height: 1.5; }
.finale-cta { width: 100%; justify-content: space-between; margin-top: 4px; }
.conversion-finale .cta-reassurance { margin-top: 13px; color: var(--cinematic-small-text); font-size: 11px; text-align: center; }

@media (max-width: 1100px) {
  .cinematic-hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: 28px; }
  .cinematic-visual { width: min(38vw, 440px); }
  .cinematic-orbit-one > span { transform: translate(-50%, -50%) translateX(202px); }
  .cinematic-orbit-two > span { transform: translate(-50%, -50%) translateX(134px); }
  .cinematic-orbit-three > span { transform: translate(-50%, -50%) translateX(69px); }
}

@media (max-width: 980px) {
  .cinematic-site .bright-close-inner { grid-template-columns: 1fr; gap: 54px; }
  .cinematic-site .bright-close h2 { max-width: 820px; }
  .conversion-finale { width: 100%; max-width: 680px; }
}

@media (max-width: 760px) {
  .cinematic-site .header-inner { height: auto; min-height: 68px; }
  .cinematic-hero { min-height: auto; background: #fff; }
  .cinematic-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px 18px;
  }
  .cinematic-site .cinematic-hero h1 { font-size: clamp(40px, 11.5vw, 48px); text-align: center; }
  .cinematic-hero-copy { transform: none; }
  .cinematic-hero .bright-hero-lede { margin-inline: auto; text-align: center; }
  .cinematic-hero .bright-actions { justify-content: center; }
  .cinematic-hero .cta-reassurance { margin-inline: auto; text-align: center; }
  .cinematic-visual {
    width: min(70vw, 274px);
    justify-self: center;
    transform: none;
  }
  .cinematic-orbit-one > span { transform: translate(-50%, -50%) translateX(125px); }
  .cinematic-orbit-two > span { transform: translate(-50%, -50%) translateX(83px); }
  .cinematic-orbit-three > span { transform: translate(-50%, -50%) translateX(43px); }
  .cinematic-hero-foot { align-items: flex-start; flex-direction: column; padding-bottom: 28px; }
  .cinematic-outcomes { padding-block: 86px 72px; }
  .cinematic-outcomes::before { display: none; }
  .cinematic-outcomes .bright-outcome-list article { min-height: 0; transform: none; opacity: 1; }
  .cinematic-outcomes .bright-outcome-list article > span { margin-bottom: 26px; }
  .cinematic-services { padding-block: 72px; }
  .cinematic-services .service-lane,
  .cinematic-services .service-lane[aria-pressed="true"] { min-height: 0; }
  .cinematic-services .service-lane:hover { transform: none; }
  .cinematic-process { padding-block: 72px; }
  .cinematic-process .bright-process-steps li { opacity: 1; transform: none; }
  .cinematic-process .bright-process-steps { margin-top: 34px; }
  .cinematic-process .bright-process-steps li,
  .cinematic-process .bright-process-steps li + li { padding-block: 22px 30px; }
  .cinematic-process .bright-process-steps h3 { margin-top: 22px; }
  .cinematic-process .bright-process-steps p { margin-top: 12px; }
  .cinematic-process .bright-responsibilities { margin-top: 20px; }
  .cinematic-process .bright-responsibilities p,
  .cinematic-process .bright-responsibilities p + p { padding-block: 18px; }
  .cinematic-site .bright-close { padding-block: 78px; }
  .cinematic-site .bright-close-inner { gap: 42px; }
  .cinematic-site .bright-close h2 { font-size: clamp(44px, 12vw, 58px); }
  .cinematic-site .bright-close h2 + p { margin-top: 22px; font-size: 16px; }
  .bright-founder-email { margin-top: 24px; }
  .bright-close-copy .bright-close-links { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 14px 22px; margin-top: 34px; }
  .conversion-finale { padding: 24px 18px; border-radius: 10px; }
  .conversion-finale h3 { font-size: clamp(34px, 10vw, 44px); }
  .finale-visual { height: 210px; margin-top: 20px; }
  .finale-task { width: 108px; min-height: 42px; padding: 8px 9px; }
  .finale-task span { font-size: 9px; }
  .finale-task-three { left: 28%; }
  .finale-core { left: 53%; width: 52px; }
  .finale-result { right: 2%; width: 112px; padding: 11px 10px; }
  .finale-result strong { font-size: 10px; }
  .finale-choices button { min-height: 66px; padding: 10px 8px; font-size: 10px; }
  .finale-status { min-height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-site *,
  .cinematic-site *::before,
  .cinematic-site *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .cinematic-hero h1 .cinematic-line > span,
  .cinematic-hero h1 em::after { opacity: 1; transform: none; }
  .cinematic-visual,
  .cinematic-hero-copy,
  .cinematic-outcomes .bright-outcome-list article,
  .cinematic-process .bright-process-steps li { opacity: 1; transform: none; }
  .conversion-finale { opacity: 1; transform: none; }
  .finale-task,
  .finale-result,
  .finale-path { transition: none; }
  .finale-core { transform: translate(-50%, -50%); transition: none; }
  .operational-work-card { transition: none; }
  .service-art i { animation: none !important; }
  .operational-canvas-label-start { display: none; }
  .operational-canvas-label-end { opacity: 1; }
}

/* Operational transformation — approved media-stage concept */
.operational-story::before { display: none; }
.operational-canvas {
  position: relative;
  height: clamp(360px, 39vw, 500px);
  margin-top: clamp(30px, 4vw, 56px);
  overflow: hidden;
  border-block: 1px solid var(--cinematic-line);
  background:
    linear-gradient(90deg, #fff 0 48%, #f8fbfb 48% 100%);
  isolation: isolate;
}
.operational-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 47.8%, #102a3b12 48%, transparent 48.2%);
  opacity: calc(.18 + var(--operational-progress, 0) * .82);
}
.operational-canvas-label {
  position: absolute;
  z-index: 4;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cinematic-small-text);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.operational-canvas-label span { width: 7px; height: 7px; border-radius: 50%; background: var(--cinematic-coral); }
.operational-canvas-label-start { left: 24px; opacity: calc(1 - var(--operational-progress, 0) * 1.6); }
.operational-canvas-label-end { right: 24px; opacity: calc(var(--operational-progress, 0) * 1.5); }
.operational-canvas-label-end span { background: var(--cinematic-teal); }
.operational-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid #102a3b20;
  background: #fff;
  box-shadow: 0 20px 60px #102a3b14;
  transform: translate(-50%, -50%) scale(calc(.84 + var(--operational-progress, 0) * .16));
}
.operational-core span { background: var(--cinematic-ink); }
.operational-core span:nth-child(2) { background: var(--cinematic-teal); }
.operational-core span:nth-child(3) { background: var(--cinematic-coral); }
.operational-core span:nth-child(4) { background: var(--cinematic-sand); }
.operational-core::after {
  content: "";
  position: absolute;
  inset: -44px;
  z-index: -1;
  border: 1px solid #17666a20;
  border-radius: 50%;
  opacity: var(--operational-progress, 0);
  transform: scale(calc(.65 + var(--operational-progress, 0) * .35));
}
.operational-work-card {
  --card-accent: var(--cinematic-teal);
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 176px;
  min-height: 58px;
  grid-template-columns: 4px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid #102a3b12;
  background: #fff;
  box-shadow: 0 10px 26px #102a3b12;
  color: var(--cinematic-ink);
  transform: translate(-50%, -50%) translate3d(var(--work-x, 0), var(--work-y, 0), 0) rotate(var(--work-rotate, 0));
  will-change: transform;
}
.operational-work-card i { align-self: stretch; background: var(--card-accent); }
.operational-work-card span { overflow: hidden; font-size: 12px; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.operational-work-card b { color: #789096; font-size: 10px; letter-spacing: 1px; }
.operational-work-card.tone-navy { --card-accent: var(--cinematic-ink); background: var(--cinematic-ink); color: #fff; }
.operational-work-card.tone-mint { --card-accent: var(--cinematic-teal); background: var(--cinematic-mint); }
.operational-work-card.tone-sand { --card-accent: #956b22; background: var(--cinematic-sand); }
.operational-work-card.tone-coral { --card-accent: #fff; background: var(--cinematic-coral); color: var(--cinematic-ink); }
.operational-path {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 1px;
  background: var(--cinematic-teal);
  opacity: calc(var(--operational-progress, 0) * .7);
  transform: scaleX(var(--operational-progress, 0));
  transform-origin: left;
}
.operational-path-one { width: 44%; }
.operational-path-two { width: 30%; rotate: 90deg; }

/* Media-led service choices */
.cinematic-services .bright-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}
.cinematic-services .service-lane,
.cinematic-services .service-lane[aria-pressed="true"] {
  min-height: 470px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr;
  gap: 10px 24px;
  align-items: start;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid #102a3b1c;
  background: #fff;
  box-shadow: 0 18px 60px #102a3b0b;
  transform: none;
}
.cinematic-services .service-lane:hover { border-color: #17666a70; transform: translateY(-5px); }
.cinematic-services .service-lane[aria-pressed="true"] { border-color: var(--cinematic-teal); box-shadow: inset 4px 0 0 var(--cinematic-teal), 0 24px 70px #102a3b12; }
.cinematic-services .service-lane .lane-copy { grid-column: 1 / -1; }
.cinematic-services .service-lane .lane-copy strong { font-size: clamp(34px, 3.5vw, 53px); }
.cinematic-services .service-lane .lane-copy small { max-width: 500px; }
.cinematic-services .service-lane .lane-action { grid-column: 1 / -1; justify-self: start; min-width: 0; margin-top: 8px; text-align: left; }
.cinematic-services .service-lane:hover .lane-action { transform: translateX(7px); }
.service-art {
  position: relative;
  display: block;
  width: calc(100% + clamp(56px, 6vw, 84px));
  height: 224px;
  grid-column: 1 / -1;
  align-self: end;
  margin: 12px calc(clamp(28px, 3vw, 42px) * -1) calc(clamp(28px, 3vw, 42px) * -1);
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfa, #fff);
}
.service-art-communication::before,
.service-art-communication::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  border: 1px solid #17666a40;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service-art-communication::before { width: 110px; height: 110px; }
.service-art-communication::after { width: 168px; height: 168px; border-color: #17666a20; }
.service-art-communication b { position: absolute; left: 50%; top: 58%; width: 18px; height: 18px; border: 5px solid #dff3ec; border-radius: 50%; background: var(--cinematic-teal); transform: translate(-50%, -50%); }
.service-art-communication i {
  position: absolute;
  width: 148px;
  height: 56px;
  border: 1px solid #17666a35;
  background: #fff;
  box-shadow: 0 12px 28px #102a3b12;
}
.service-art-communication i::before { content: ""; position: absolute; left: 18px; top: 18px; width: 72px; height: 3px; background: #17666a70; box-shadow: 0 9px 0 #17666a35; }
.service-art-communication i::after { content: "•••"; position: absolute; right: 14px; top: 15px; color: var(--cinematic-teal); font-style: normal; font-size: 9px; letter-spacing: 2px; }
.service-art-communication i:nth-child(1) { left: 4%; top: 20%; rotate: -5deg; }
.service-art-communication i:nth-child(2) { right: 5%; top: 12%; rotate: 4deg; }
.service-art-communication i:nth-child(3) { left: 16%; bottom: 14%; background: var(--cinematic-ink); }
.service-art-communication i:nth-child(4) { right: 12%; bottom: 10%; background: var(--cinematic-sand); }
.service-art-communication i:nth-child(5) { left: 36%; top: 11%; width: 126px; background: var(--cinematic-mint); }
.service-art-communication.is-playing i { animation: service-message-float 5.6s var(--cinematic-ease) infinite alternate; }
.service-art-communication.is-playing i:nth-child(2) { animation-delay: -.8s; }
.service-art-communication.is-playing i:nth-child(3) { animation-delay: -1.7s; }
.service-art-communication.is-playing i:nth-child(4) { animation-delay: -2.6s; }
.service-art-communication.is-playing i:nth-child(5) { animation-delay: -3.4s; }
@keyframes service-message-float { to { translate: 0 -12px; rotate: 1deg; } }

.service-art-followup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 46px;
  gap: 12px 18px;
  align-content: center;
  padding: 36px clamp(22px, 4vw, 50px);
}
.service-art-followup > b { align-self: end; color: #526a72; font-size: 9px; font-weight: 760; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.service-art-followup i { position: relative; border: 1px solid #102a3b14; background: #f4f5f2; box-shadow: 0 8px 18px #102a3b08; }
.service-art-followup i::before { content: ""; position: absolute; left: 14px; top: 18px; width: 60%; height: 3px; background: #102a3b20; }
.service-art-followup i:nth-child(2),
.service-art-followup i:nth-child(5) { background: var(--cinematic-mint); }
.service-art-followup i:nth-child(3),
.service-art-followup i:nth-child(6) { background: var(--cinematic-teal); }
.service-art-followup i:nth-child(3)::after,
.service-art-followup i:nth-child(6)::after { content: "✓"; position: absolute; right: 10px; top: 12px; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: #fff; color: var(--cinematic-teal); font-style: normal; font-size: 11px; }
.service-art-followup.is-playing i { animation: service-followthrough 4.8s var(--cinematic-ease) infinite; }
.service-art-followup.is-playing i:nth-child(2) { animation-delay: -.5s; }
.service-art-followup.is-playing i:nth-child(3) { animation-delay: -1s; }
.service-art-followup.is-playing i:nth-child(4) { animation-delay: -1.5s; }
.service-art-followup.is-playing i:nth-child(5) { animation-delay: -2s; }
.service-art-followup.is-playing i:nth-child(6) { animation-delay: -2.5s; }
@keyframes service-followthrough { 50% { translate: 7px 0; box-shadow: 0 13px 24px #102a3b12; } }

.cinematic-services .service-lane-team,
.cinematic-services .service-lane-team[aria-pressed="true"] {
  min-height: 126px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  align-items: center;
  background: #ffffffb5;
}
.cinematic-services .service-lane-team .lane-copy,
.cinematic-services .service-lane-team .lane-action { grid-column: auto; grid-row: 1; }
.cinematic-services .service-lane-team .lane-copy strong { font-size: clamp(30px, 3vw, 44px); }
.cinematic-services .service-lane-team .lane-action { justify-self: end; margin-top: 0; }

@media (min-width: 921px) and (min-height: 680px) {
  .has-cinematic-motion .operational-story { height: 180svh; padding-block: 0; }
  .has-cinematic-motion .operational-story .cinematic-outcomes-stage {
    position: sticky;
    top: 66px;
    display: grid;
    height: calc(100svh - 66px);
    align-content: center;
    padding-block: 22px;
  }
  .has-cinematic-motion .operational-story .bright-split-heading h2 { font-size: clamp(42px, 4.4vw, 64px); }
  .has-cinematic-motion .operational-canvas { height: clamp(260px, 36vh, 360px); margin-top: 18px; }
  .has-cinematic-motion .operational-story .bright-outcome-list { margin-top: 16px; }
  .has-cinematic-motion .operational-story .bright-outcome-list article { min-height: 112px; padding-top: 18px; }
  .has-cinematic-motion .operational-story .bright-outcome-list article > span { margin-bottom: 16px; }
  .has-cinematic-motion .operational-story .bright-outcome-list h3 { font-size: clamp(22px, 2vw, 29px); }
  .has-cinematic-motion .operational-story .bright-outcome-list p { margin-top: 9px; font-size: 13px; }
}

@media (max-width: 900px) {
  .operational-canvas { height: 480px; }
  .cinematic-services .bright-service-list { grid-template-columns: 1fr; }
  .cinematic-services .service-lane-team,
  .cinematic-services .service-lane-team[aria-pressed="true"] { grid-column: auto; }
}

@media (max-width: 760px) {
  .operational-canvas { height: 360px; margin-top: 30px; background: #f8fbfb; }
  .operational-canvas-label-start { display: none; }
  .operational-canvas-label-end { right: 16px; opacity: 1; }
  .operational-core { left: 50%; top: 18%; width: 64px; }
  .operational-path { display: none; }
  .operational-work-card { width: min(42vw, 156px); min-height: 52px; padding: 10px; }
  .operational-work-card span { font-size: 10px; }
  .operational-story .bright-outcome-list {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 286px);
    gap: 14px;
    padding-inline: 24px 44px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .operational-story .bright-outcome-list::-webkit-scrollbar,
  .cinematic-services .bright-service-list::-webkit-scrollbar { display: none; }
  .operational-story .bright-outcome-list:focus-visible { outline: 2px solid var(--cinematic-teal); outline-offset: -2px; }
  .operational-story .bright-outcome-list article,
  .operational-story .bright-outcome-list article + article {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--cinematic-line);
    scroll-snap-align: start;
  }
  .cinematic-services .bright-service-list {
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 310px);
    gap: 14px;
    padding-inline: 24px 44px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cinematic-services .service-lane,
  .cinematic-services .service-lane[aria-pressed="true"] { min-height: 410px; padding: 24px 22px; scroll-snap-align: start; }
  .cinematic-services .service-lane .lane-copy strong { font-size: clamp(32px, 10vw, 43px); }
  .service-art { width: calc(100% + 44px); height: 204px; margin-inline: -22px; margin-bottom: -24px; }
  .service-art-communication i { width: 124px; height: 50px; }
  .service-art-followup { gap: 9px; padding-inline: 18px; }
  .service-art-followup > b { display: none; }
  .cinematic-services .service-lane-team,
  .cinematic-services .service-lane-team[aria-pressed="true"] { min-height: 410px; grid-template-columns: 1fr; grid-template-rows: auto auto; align-content: center; }
  .cinematic-services .service-lane-team .lane-copy,
  .cinematic-services .service-lane-team .lane-action { grid-column: 1; grid-row: auto; justify-self: start; }
  .industry-bridge {
    display: flex;
    width: 100%;
    max-width: none;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 22px;
    padding: 18px 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .industry-bridge::-webkit-scrollbar { display: none; }
  .industry-bridge span { margin-right: 6px; }
}
