:root {
  --ops-ink: #14212b;
  --ops-muted: #687682;
  --ops-line: rgba(20, 33, 43, .12);
  --ops-paper: #ffffff;
  --ops-mist: #f3f6f5;
  --ops-coral: #f16655;
  --ops-mint: #7ab8a2;
  --ops-night: #17232c;
  --ops-shell: min(1560px, calc(100vw - 96px));
}

html { scroll-behavior: smooth; }

body.website-operations-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--ops-ink);
  background: var(--ops-paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

.website-operations-page .ops-page *,
.website-operations-page .ops-page *::before,
.website-operations-page .ops-page *::after { box-sizing: border-box; }

.website-operations-page .header.site-header-compact {
  top: 0 !important;
  height: 80px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(18, 28, 36, .07) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px);
}

.website-operations-page .header.site-header-compact .logo img {
  filter: brightness(0) saturate(100%) opacity(.84) !important;
}

.website-operations-page .header.site-header-compact .nav-compact .title > a {
  color: var(--ops-ink) !important;
  text-shadow: none !important;
}

.website-operations-page .header.site-header-compact .edit-search {
  filter: brightness(0) saturate(100%) opacity(.7) !important;
}

.website-operations-page .header.site-header-compact .edit-handle {
  border-color: rgba(20, 33, 43, .24) !important;
  background: transparent !important;
  color: var(--ops-ink) !important;
  filter: none !important;
}

.website-operations-page .header.site-header-compact .edit-handle:hover {
  border-color: var(--ops-ink) !important;
  background: var(--ops-ink) !important;
  color: #fff !important;
}

.ops-page { overflow: hidden; background: var(--ops-paper); }
.ops-shell { width: var(--ops-shell); margin: 0 auto; }
.ops-section { padding: 130px 0; }

.ops-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--ops-coral);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.ops-kicker span {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.ops-hero {
  position: relative;
  min-height: 820px;
  padding: 154px 0 88px;
  background:
    linear-gradient(90deg, rgba(245, 248, 247, .96) 0, rgba(245, 248, 247, .88) 38%, rgba(255,255,255,.18) 66%),
    #f5f8f7;
}

.ops-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 43, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 43, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 72%);
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.ops-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(680px, 1.18fr);
  align-items: center;
  gap: clamp(54px, 6vw, 112px);
}

.ops-breadcrumb {
  margin-bottom: 48px;
  color: #8a969e;
  font-size: 13px;
}

.ops-breadcrumb a { color: inherit; }

.ops-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(52px, 4.35vw, 82px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.ops-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ops-muted);
  font-size: 19px;
  line-height: 1.9;
}

.ops-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }

.ops-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 10px 0 28px;
  border: 1px solid var(--ops-coral);
  border-radius: 4px;
  color: #fff;
  background: var(--ops-coral);
  box-shadow: 0 18px 40px rgba(241, 102, 85, .18);
  font-size: 16px;
  font-weight: 700;
  transition: color .28s ease, background-color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.ops-primary i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--ops-coral);
  background: #fff;
  font-style: normal;
  transition: transform .28s ease;
}

.ops-primary:hover {
  color: #fff;
  background: #df5848;
  box-shadow: 0 24px 46px rgba(241, 102, 85, .26);
  transform: translateY(-2px);
}

.ops-primary:hover i { transform: rotate(45deg); }

.ops-secondary {
  position: relative;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  color: var(--ops-ink);
  font-size: 15px;
  font-weight: 700;
}

.ops-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--ops-ink);
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .3s ease;
}

.ops-secondary:hover::after { transform: scaleX(1); }

.ops-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 680px;
  margin: 58px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--ops-line);
}

.ops-hero-facts div { min-width: 0; padding-right: 20px; }
.ops-hero-facts div + div { padding-left: 24px; border-left: 1px solid var(--ops-line); }
.ops-hero-facts dt { margin-bottom: 7px; font-size: 15px; font-weight: 700; }
.ops-hero-facts dd { margin: 0; color: #89949b; font-size: 12px; line-height: 1.6; }

.ops-hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.43 / 1;
  border: 1px solid rgba(20, 33, 43, .12);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(20, 33, 43, .13);
}

.ops-browser-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 18px;
  gap: 7px;
  border-bottom: 1px solid rgba(20, 33, 43, .08);
  background: rgba(255, 255, 255, .94);
}

.ops-browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #ee7563; }
.ops-browser-bar span:nth-child(2) { background: #d7b265; }
.ops-browser-bar span:nth-child(3) { background: #75b994; }
.ops-browser-bar b { margin-left: 10px; color: #8a969e; font-size: 11px; font-weight: 500; }

.ops-hero-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.ops-hero-visual:hover > img { transform: scale(1.018); }

.ops-hero-visual figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 4px;
  color: #26333c;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(20, 33, 43, .12);
  backdrop-filter: blur(14px);
}

.ops-hero-visual figcaption span { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; }
.ops-hero-visual figcaption i { width: 7px; height: 7px; border-radius: 50%; background: var(--ops-mint); box-shadow: 0 0 0 5px rgba(122, 184, 162, .16); }
.ops-hero-visual figcaption strong { font-size: 14px; }

.ops-section-nav { border-top: 1px solid var(--ops-line); border-bottom: 1px solid var(--ops-line); background: #fff; }
.ops-section-nav .ops-shell { display: flex; justify-content: flex-end; gap: 44px; height: 68px; align-items: center; }
.ops-section-nav a { position: relative; color: #64727d; font-size: 14px; }
.ops-section-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -24px; height: 2px; background: var(--ops-coral); transform: scaleX(0); transition: transform .3s ease; }
.ops-section-nav a:hover { color: var(--ops-ink); }
.ops-section-nav a:hover::after { transform: scaleX(1); }

.ops-section-heading { max-width: 900px; }
.ops-section-heading h2,
.ops-section-top h2 {
  margin: 0;
  color: var(--ops-ink);
  font-size: clamp(42px, 3.8vw, 68px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.ops-section-heading > p:last-child,
.ops-section-top > p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ops-muted);
  font-size: 17px;
  line-height: 1.9;
}

.ops-intro { background: #fff; }
.ops-intro .ops-shell { display: grid; grid-template-columns: minmax(0, .82fr) minmax(600px, 1.18fr); gap: clamp(80px, 10vw, 190px); align-items: end; }
.ops-intro-lines { border-top: 1px solid var(--ops-line); }
.ops-intro-lines article { display: grid; grid-template-columns: 58px 180px 1fr; gap: 22px; align-items: center; min-height: 124px; border-bottom: 1px solid var(--ops-line); }
.ops-intro-lines b { color: var(--ops-coral); font-size: 12px; }
.ops-intro-lines h3 { margin: 0; font-size: 21px; font-weight: 600; }
.ops-intro-lines p { margin: 0; color: var(--ops-muted); font-size: 14px; line-height: 1.8; }

.ops-services { background: var(--ops-mist); }
.ops-section-top { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: end; margin-bottom: 68px; }
.ops-section-top > p { margin: 0; }

.ops-service-desk {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--ops-line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(20, 33, 43, .08);
}

.ops-service-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--ops-line); background: #fbfcfc; }
.ops-service-tab { position: relative; display: grid; grid-template-columns: 52px 1fr; flex: 1; align-items: center; gap: 18px; min-height: 132px; padding: 26px 30px; border: 0; border-bottom: 1px solid var(--ops-line); color: #78858e; background: transparent; text-align: left; cursor: pointer; transition: color .3s ease, background-color .3s ease; }
.ops-service-tab:last-child { border-bottom: 0; }
.ops-service-tab::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px; background: var(--ops-coral); transform: scaleY(0); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.ops-service-tab b { font-size: 12px; }
.ops-service-tab span { display: block; color: var(--ops-ink); font-size: 20px; font-weight: 600; }
.ops-service-tab small { display: block; margin-top: 7px; color: #8a969e; font-size: 12px; font-weight: 400; }
.ops-service-tab:hover,
.ops-service-tab.is-active { color: var(--ops-coral); background: #fff; }
.ops-service-tab.is-active::before { transform: scaleY(1); }

.ops-service-stage { position: relative; min-width: 0; }
.ops-service-panel { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(470px, 1.28fr); gap: 50px; align-items: center; min-height: 620px; padding: 72px; opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
.ops-service-panel.is-active { opacity: 1; transform: translateY(0); }
.ops-panel-copy > p { margin: 0 0 22px; color: var(--ops-coral); font-size: 12px; font-weight: 700; }
.ops-panel-copy h3 { margin: 0; font-size: clamp(32px, 2.5vw, 48px); font-weight: 500; line-height: 1.32; }
.ops-panel-copy ul { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ops-line); }
.ops-panel-copy li { position: relative; padding: 17px 0 17px 24px; border-bottom: 1px solid var(--ops-line); color: #596873; font-size: 14px; }
.ops-panel-copy li::before { content: ""; position: absolute; left: 0; top: 24px; width: 7px; height: 7px; border: 2px solid var(--ops-mint); border-radius: 50%; }

.ops-panel-ui { position: relative; min-height: 420px; overflow: hidden; border: 1px solid rgba(20,33,43,.1); border-radius: 6px; color: var(--ops-ink); background: #f5f7f6; box-shadow: 0 28px 60px rgba(20,33,43,.1); }
.ops-panel-ui > header { display: flex; align-items: center; height: 60px; padding: 0 24px; border-bottom: 1px solid var(--ops-line); background: rgba(255,255,255,.75); }
.ops-panel-ui > header i { width: 8px; height: 8px; margin-right: 12px; border-radius: 50%; background: var(--ops-coral); }
.ops-panel-ui > header span { font-size: 14px; font-weight: 600; }
.ops-panel-ui > header em { margin-left: auto; padding: 6px 10px; border-radius: 3px; color: #4f8874; background: rgba(122,184,162,.12); font-size: 11px; font-style: normal; }
.ops-panel-ui > footer { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; color: #72808a; font-size: 12px; }

.ops-calendar-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin: 30px 30px 12px; color: #98a1a7; font-size: 10px; text-align: center; }
.ops-calendar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin: 0 30px; }
.ops-calendar-grid i { display: block; height: 92px; border: 1px solid rgba(20,33,43,.08); border-radius: 4px; background: rgba(255,255,255,.76); }
.ops-calendar-grid i.done { background: rgba(122,184,162,.14); }
.ops-calendar-grid i.active { border-color: rgba(241,102,85,.5); background: rgba(241,102,85,.08); }

.ops-search-chart { position: relative; height: 250px; margin: 52px 34px 0; border-left: 1px solid rgba(20,33,43,.12); border-bottom: 1px solid rgba(20,33,43,.12); color: var(--ops-coral); }
.ops-search-chart::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(to bottom, transparent 0 48px, rgba(20,33,43,.06) 49px 50px); }
.ops-search-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.ops-health-score { position: absolute; left: 52px; top: 112px; display: grid; width: 180px; height: 180px; place-content: center; border: 20px solid rgba(122,184,162,.14); border-top-color: var(--ops-mint); border-radius: 50%; text-align: center; transform: rotate(-24deg); }
.ops-health-score strong,
.ops-health-score span { transform: rotate(24deg); }
.ops-health-score strong { font-size: 52px; font-weight: 500; }
.ops-health-score span { margin-top: 4px; color: #7d8991; font-size: 11px; }
.ops-health-list { position: absolute; top: 110px; right: 38px; width: 42%; }
.ops-health-list span { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; min-height: 62px; border-bottom: 1px solid var(--ops-line); color: #5d6b75; font-size: 13px; }
.ops-health-list i { width: 7px; height: 7px; border-radius: 50%; background: var(--ops-mint); }
.ops-health-list b { color: #5e9d86; font-size: 11px; }

.ops-data-bars { position: absolute; left: 48px; right: 48px; top: 108px; bottom: 72px; display: flex; align-items: flex-end; gap: 18px; border-bottom: 1px solid var(--ops-line); }
.ops-data-bars i { display: block; flex: 1; height: var(--h); background: linear-gradient(to top, var(--ops-mint), rgba(122,184,162,.12)); transform-origin: bottom; animation: opsBarRise .8s cubic-bezier(.16,1,.3,1) both; }
.ops-data-bars i:nth-child(even) { background: linear-gradient(to top, var(--ops-coral), rgba(241,102,85,.1)); animation-delay: .08s; }
@keyframes opsBarRise { from { transform: scaleY(.12); opacity: .4; } }

.ops-rhythm { color: #fff; background: var(--ops-night); }
.ops-section-heading-light h2 { color: #fff; }
.ops-section-heading-light > p:last-child { color: rgba(255,255,255,.6); }
.ops-rhythm .ops-kicker { color: #ff8877; }
.ops-rhythm-track { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 86px; border-top: 1px solid rgba(255,255,255,.14); }
.ops-rhythm-track::before { content: ""; position: absolute; left: 0; top: -1px; width: 33.333%; height: 2px; background: var(--ops-coral); transition: width 1.4s cubic-bezier(.16,1,.3,1); }
.ops-rhythm-track.is-inview::before { width: 100%; }
.ops-rhythm-track article { position: relative; min-height: 460px; padding: 58px 54px 48px 0; border-right: 1px solid rgba(255,255,255,.12); }
.ops-rhythm-track article + article { padding-left: 54px; }
.ops-rhythm-track article:last-child { border-right: 0; }
.ops-rhythm-track b { font-size: 92px; font-weight: 300; line-height: 1; }
.ops-rhythm-track > article > span { margin-left: 6px; color: rgba(255,255,255,.42); font-size: 14px; }
.ops-rhythm-track h3 { margin: 42px 0 16px; font-size: 25px; font-weight: 500; }
.ops-rhythm-track p { margin: 0; color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.85; }
.ops-rhythm-track ul { margin: 28px 0 0; padding: 0; list-style: none; }
.ops-rhythm-track li { margin: 10px 0; color: rgba(255,255,255,.76); font-size: 13px; }
.ops-rhythm-track li::before { content: ""; display: inline-block; width: 14px; height: 1px; margin-right: 10px; vertical-align: middle; background: var(--ops-coral); }

.ops-delivery { background: #fff; }
.ops-delivery-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(80px, 10vw, 180px); align-items: start; }
.ops-delivery .ops-section-heading { position: sticky; top: 130px; }
.ops-text-link { display: inline-flex; align-items: center; gap: 22px; margin-top: 42px; color: var(--ops-ink); font-size: 15px; font-weight: 700; }
.ops-text-link i { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--ops-line); border-radius: 50%; font-style: normal; transition: color .25s ease, background .25s ease, transform .25s ease; }
.ops-text-link:hover i { color: #fff; background: var(--ops-ink); transform: rotate(45deg); }
.ops-delivery-list { border-top: 1px solid var(--ops-line); }
.ops-delivery-list article { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 26px; min-height: 122px; border-bottom: 1px solid var(--ops-line); transition: padding .3s ease, background .3s ease; }
.ops-delivery-list article:hover { padding: 0 22px; background: var(--ops-mist); }
.ops-delivery-list > article > b { color: var(--ops-coral); font-size: 12px; }
.ops-delivery-list h3 { margin: 0 0 8px; font-size: 21px; font-weight: 600; }
.ops-delivery-list p { margin: 0; color: var(--ops-muted); font-size: 13px; }
.ops-delivery-list > article > span { color: #a3adb3; font-size: 10px; }

.ops-faq { background: var(--ops-mist); }
.ops-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(80px, 11vw, 200px); }
.ops-faq-list { border-top: 1px solid var(--ops-line); }
.ops-faq-list details { border-bottom: 1px solid var(--ops-line); }
.ops-faq-list summary { position: relative; display: flex; align-items: center; min-height: 94px; padding-right: 54px; font-size: 19px; font-weight: 600; cursor: pointer; list-style: none; }
.ops-faq-list summary::-webkit-details-marker { display: none; }
.ops-faq-list summary i::before,
.ops-faq-list summary i::after { content: ""; position: absolute; right: 10px; top: 46px; width: 18px; height: 1px; background: var(--ops-ink); transition: transform .3s ease; }
.ops-faq-list summary i::after { transform: rotate(90deg); }
.ops-faq-list details[open] summary i::after { transform: rotate(0); }
.ops-faq-list details p { max-width: 760px; margin: -4px 0 30px; padding-right: 70px; color: var(--ops-muted); font-size: 14px; line-height: 1.9; }

.ops-cta { padding: 70px 0 90px; background: var(--ops-mist); }
.ops-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; min-height: 330px; padding: 62px 70px; overflow: hidden; border-radius: 7px; background: linear-gradient(105deg, #ecf4f1 0 48%, #f7eae6 100%); }
.ops-cta-inner > div > p { margin: 0 0 18px; color: var(--ops-coral); font-size: 12px; font-weight: 700; }
.ops-cta h2 { margin: 0 0 18px; font-size: clamp(36px, 3vw, 54px); font-weight: 500; line-height: 1.3; }
.ops-cta span { color: var(--ops-muted); font-size: 15px; }

[data-ops-reveal] { opacity: 1; transform: translateY(0); }
[data-ops-reveal].is-inview { animation: ops-reveal-in .72s cubic-bezier(.16,1,.3,1) both; }

@keyframes ops-reveal-in {
  from { opacity: .01; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1500px) {
  :root { --ops-shell: min(1380px, calc(100vw - 72px)); }
  .ops-hero-grid { grid-template-columns: minmax(0,.86fr) minmax(600px,1.14fr); gap: 62px; }
  .ops-service-panel { padding: 54px; grid-template-columns: minmax(280px,.78fr) minmax(420px,1.22fr); }
}

@media (max-width: 1200px) {
  :root { --ops-shell: calc(100vw - 48px); }
  .ops-hero { min-height: auto; padding-top: 130px; }
  .ops-hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .ops-hero-copy h1 { font-size: 54px; }
  .ops-hero-facts { grid-template-columns: 1fr; }
  .ops-hero-facts div { padding: 12px 0; }
  .ops-hero-facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--ops-line); }
  .ops-intro .ops-shell { grid-template-columns: 1fr; gap: 70px; }
  .ops-service-desk { grid-template-columns: 280px 1fr; }
  .ops-service-panel { grid-template-columns: 1fr; padding: 46px; }
  .ops-panel-ui { min-height: 340px; }
  .ops-delivery-grid,
  .ops-faq-grid { grid-template-columns: 1fr; gap: 70px; }
  .ops-delivery .ops-section-heading { position: static; }
}

@media (max-width: 900px) {
  :root { --ops-shell: calc(100vw - 32px); }
  .ops-section { padding: 92px 0; }
  .ops-hero { padding: 118px 0 60px; }
  .ops-hero-grid { grid-template-columns: 1fr; }
  .ops-breadcrumb { margin-bottom: 30px; }
  .ops-hero-visual { aspect-ratio: 1.35 / 1; }
  .ops-section-nav .ops-shell { justify-content: flex-start; overflow-x: auto; }
  .ops-section-top { grid-template-columns: 1fr; gap: 28px; }
  .ops-service-desk { grid-template-columns: 1fr; }
  .ops-service-tabs { display: grid; grid-template-columns: repeat(4, minmax(160px,1fr)); overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--ops-line); }
  .ops-service-tab { min-height: 104px; border-right: 1px solid var(--ops-line); border-bottom: 0; }
  .ops-service-tab::before { left: 18px; right: 18px; top: auto; bottom: 0; width: auto; height: 3px; transform: scaleX(0); }
  .ops-service-tab.is-active::before { transform: scaleX(1); }
  .ops-rhythm-track { grid-template-columns: 1fr; }
  .ops-rhythm-track::before { display: none; }
  .ops-rhythm-track article,
  .ops-rhythm-track article + article { min-height: auto; padding: 50px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 640px) {
  :root { --ops-shell: calc(100vw - 28px); }
  body.website-operations-page { background: #fff; }
  .website-operations-page .header.site-header-compact { height: 72px !important; }
  .ops-section { padding: 72px 0; }
  .ops-hero { padding: 105px 0 46px; }
  .ops-kicker { margin-bottom: 20px; font-size: 11px; }
  .ops-breadcrumb { display: none; }
  .ops-hero-copy h1 { font-size: 43px; line-height: 1.18; }
  .ops-lead { margin-top: 24px; font-size: 16px; line-height: 1.8; }
  .ops-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-top: 30px; }
  .ops-primary { min-height: 54px; }
  .ops-hero-facts { margin-top: 36px; }
  .ops-hero-visual { aspect-ratio: .95 / 1; }
  .ops-hero-visual > img { object-position: 63% center; }
  .ops-browser-bar { height: 40px; }
  .ops-hero-visual figcaption { left: 14px; right: 14px; bottom: 14px; min-height: 56px; padding: 0 16px; }
  .ops-hero-visual figcaption strong { display: none; }
  .ops-section-nav .ops-shell { height: 58px; gap: 26px; }
  .ops-section-nav a { flex: 0 0 auto; font-size: 13px; }
  .ops-section-heading h2,
  .ops-section-top h2 { font-size: 38px; }
  .ops-section-heading > p:last-child,
  .ops-section-top > p { margin-top: 20px; font-size: 15px; }
  .ops-intro-lines article { grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 0; }
  .ops-intro-lines p { grid-column: 2; }
  .ops-service-tabs { grid-template-columns: repeat(4, 148px); }
  .ops-service-tab { grid-template-columns: 28px 1fr; padding: 18px 14px; }
  .ops-service-tab span { font-size: 16px; }
  .ops-service-panel { min-height: auto; padding: 30px 18px; gap: 34px; }
  .ops-panel-copy h3 { font-size: 30px; }
  .ops-panel-ui { min-height: 300px; }
  .ops-calendar-row,
  .ops-calendar-grid { margin-left: 16px; margin-right: 16px; }
  .ops-calendar-grid i { height: 62px; }
  .ops-health-score { left: 28px; top: 104px; width: 130px; height: 130px; border-width: 14px; }
  .ops-health-score strong { font-size: 38px; }
  .ops-health-list { top: 96px; right: 18px; width: 43%; }
  .ops-rhythm-track { margin-top: 54px; }
  .ops-rhythm-track b { font-size: 72px; }
  .ops-delivery-list article { grid-template-columns: 34px 1fr; gap: 16px; min-height: 106px; }
  .ops-delivery-list > article > span { display: none; }
  .ops-faq-list summary { min-height: 82px; padding-right: 40px; font-size: 16px; line-height: 1.55; }
  .ops-faq-list details p { padding-right: 16px; }
  .ops-cta { padding: 40px 0 70px; }
  .ops-cta-inner { align-items: flex-start; flex-direction: column; min-height: 0; padding: 38px 24px; }
  .ops-cta h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-ops-reveal],
  .ops-service-panel,
  .ops-primary,
  .ops-primary i,
  .ops-hero-visual > img,
  .ops-data-bars i { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* 2026-07-21: premium operations studio and delivery archive */
.website-operations-page .ops-stream {
  padding-bottom: 132px;
  background: #f5f7f6;
}

.website-operations-page .ops-stream-gallery.ops-studio {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.5fr);
  min-height: 700px;
  margin-top: 76px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 36, 45, .1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 74px rgba(27, 44, 53, .11);
}

.website-operations-page .ops-stream-gallery.ops-studio::before,
.website-operations-page .ops-stream-gallery.ops-studio::after {
  display: none;
  content: none;
}

.ops-studio-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  min-width: 0;
  border-right: 1px solid rgba(21, 36, 45, .1);
  background: #fff;
}

.ops-studio-nav::before {
  position: absolute;
  left: 32px;
  top: 25px;
  content: "FOX SPIRIT / OPERATIONS STUDIO";
  color: #8c969b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.ops-studio-tab {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 38px 32px 26px;
  border: 0;
  border-bottom: 1px solid rgba(21, 36, 45, .09);
  border-radius: 0;
  background: transparent;
  color: #17252e;
  text-align: left;
  cursor: pointer;
  transition: background-color 360ms ease, color 360ms ease, padding-left 420ms cubic-bezier(.2,.78,.2,1);
}

.ops-studio-tab:first-child { padding-top: 58px; }
.ops-studio-tab:last-child { border-bottom: 0; }
.ops-studio-tab::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  content: "";
  background: #f16959;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(.2,.78,.2,1);
}
.ops-studio-tab:hover,
.ops-studio-tab:focus-visible,
.ops-studio-tab.is-active {
  padding-left: 38px;
  background: #f3f7f5;
  outline: 0;
}
.ops-studio-tab.is-active::before { transform: scaleY(1); }
.ops-studio-tab > span {
  align-self: start;
  padding-top: 3px;
  color: #9aa5aa;
  font-size: 12px;
  font-weight: 700;
}
.ops-studio-tab.is-active > span { color: #f16959; }
.ops-studio-tab div { min-width: 0; }
.ops-studio-tab small {
  display: block;
  margin-bottom: 8px;
  color: #8a959b;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}
.ops-studio-tab strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.ops-studio-tab p {
  margin: 7px 0 0;
  color: #7b878d;
  font-size: 13px;
  line-height: 1.55;
}

.ops-studio-stage {
  position: relative;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  background: #dfe5e4;
}
.ops-studio-image {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.015) translate3d(var(--ops-image-x, 0), var(--ops-image-y, 0), 0);
  transition: transform 900ms cubic-bezier(.2,.75,.2,1), filter 500ms ease;
  will-change: transform;
}
.ops-studio-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 20, 25, .03) 20%, rgba(10, 20, 25, .18) 58%, rgba(10, 20, 25, .92) 100%);
}

.website-operations-page .ops-studio-stage .ops-stream-panel,
.website-operations-page .ops-studio-stage .ops-stream-panel[hidden] {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: none !important;
  clip-path: inset(0 0 0 10%);
  transition: opacity 480ms ease, clip-path 640ms cubic-bezier(.2,.78,.2,1);
}
.website-operations-page .ops-studio-stage .ops-stream-panel::before,
.website-operations-page .ops-studio-stage .ops-stream-panel::after { display: none; }
.website-operations-page .ops-studio-stage .ops-stream-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}

.ops-studio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 150px 46px 42px;
  background: linear-gradient(180deg, rgba(13, 24, 30, 0), rgba(13, 24, 30, .92) 74%);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 620ms cubic-bezier(.2,.78,.2,1) 80ms, opacity 520ms ease 80ms;
}
.ops-stream-panel.is-active .ops-studio-caption { transform: translateY(0); opacity: 1; }
.ops-studio-caption small {
  display: block;
  margin-bottom: 12px;
  color: #f8a093;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.website-operations-page .ops-studio-caption h3 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.28;
}
.ops-studio-caption p {
  max-width: 670px;
  margin: 12px 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
}
.ops-studio-caption ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ops-studio-caption li {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
}

.ops-studio-metric {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  align-content: center;
  width: 144px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 6px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 44px rgba(18, 34, 42, .13);
  color: #16242d;
  backdrop-filter: blur(13px);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 560ms cubic-bezier(.2,.78,.2,1) 150ms, opacity 420ms ease 150ms;
}
.ops-stream-panel.is-active .ops-studio-metric { transform: translateY(0); opacity: 1; }
.ops-studio-metric b { font-size: 28px; font-weight: 600; line-height: 1; }
.ops-studio-metric span { margin-top: 9px; color: #738087; font-size: 11px; line-height: 1.4; }

.ops-studio-marker {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(16, 30, 38, .13);
  color: #283740;
  font-style: normal;
  font-size: 11px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 420ms ease 240ms, transform 560ms cubic-bezier(.2,.78,.2,1) 240ms;
}
.ops-stream-panel.is-active .ops-studio-marker { opacity: 1; transform: translateY(0); }
.ops-studio-marker b {
  width: 8px;
  height: 8px;
  border: 2px solid #f16959;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(241,105,89,.13);
}
.ops-marker-content { top: 32%; left: 38%; }
.ops-marker-search { top: 40%; left: 62%; }
.ops-marker-experience { top: 48%; left: 25%; }
.ops-marker-data { top: 30%; left: 54%; }
.website-operations-page .ops-stream-hint { margin-top: 17px; color: #89949a; }

.website-operations-page .ops-artifacts {
  padding: 140px 0 150px;
  background: #fff;
}
.website-operations-page .ops-artifacts::before { display: none; }
.ops-deliverables {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  min-height: 620px;
  margin-top: 76px;
  overflow: hidden;
  border-top: 1px solid rgba(22, 38, 47, .12);
  border-bottom: 1px solid rgba(22, 38, 47, .12);
}
.ops-deliverables-visual {
  position: relative;
  min-width: 0;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #eef1ef;
}
.ops-deliverables-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.2,.75,.2,1), filter 500ms ease;
}
.ops-deliverables:hover .ops-deliverables-visual img { transform: scale(1.035); }
.ops-deliverables-visual figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 5px;
  background: rgba(18, 31, 39, .88);
  color: #fff;
  backdrop-filter: blur(12px);
}
.ops-deliverables-visual figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #f68a79;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.ops-deliverables-visual figcaption strong {
  display: block;
  max-width: 620px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.45;
  transition: opacity 180ms ease, transform 260ms ease;
}
.ops-deliverables-visual figcaption strong.is-changing { opacity: 0; transform: translateY(5px); }

.ops-deliverables-list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  min-width: 0;
  border-left: 1px solid rgba(22, 38, 47, .12);
  background: #fff;
}
.ops-deliverable-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 25px 28px;
  border-bottom: 1px solid rgba(22, 38, 47, .1);
  color: #17252e;
  cursor: default;
  transition: background-color 340ms ease, padding-left 420ms cubic-bezier(.2,.78,.2,1);
}
.ops-deliverable-item:last-child { border-bottom: 0; }
.ops-deliverable-item::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  content: "";
  background: #f16959;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(.2,.78,.2,1);
}
.ops-deliverable-item:hover,
.ops-deliverable-item:focus-visible,
.ops-deliverable-item.is-active {
  padding-left: 34px;
  background: #f5f7f6;
  outline: 0;
}
.ops-deliverable-item.is-active::before { transform: scaleY(1); }
.ops-deliverable-item > b { color: #a0aaaf; font-size: 12px; }
.ops-deliverable-item.is-active > b { color: #f16959; }
.ops-deliverable-item div { min-width: 0; }
.ops-deliverable-item small {
  display: block;
  margin-bottom: 5px;
  color: #98a2a7;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.ops-deliverable-item h3 { margin: 0; font-size: 22px; font-weight: 500; line-height: 1.3; }
.ops-deliverable-item p { margin: 6px 0 0; color: #7b878d; font-size: 13px; }
.ops-deliverable-item > span {
  padding: 7px 9px;
  border: 1px solid rgba(22,38,47,.12);
  border-radius: 3px;
  color: #748087;
  font-size: 10px;
  white-space: nowrap;
}
.ops-deliverable-item.is-active > span { border-color: rgba(241,105,89,.28); color: #e86252; }

@media (max-width: 1280px) {
  .website-operations-page .ops-stream-gallery.ops-studio,
  .ops-studio-stage { min-height: 640px; }
  .ops-studio-tab { padding-inline: 25px; }
  .ops-studio-tab:hover,
  .ops-studio-tab:focus-visible,
  .ops-studio-tab.is-active { padding-left: 30px; }
  .ops-studio-tab strong { font-size: 20px; }
  .website-operations-page .ops-studio-caption h3 { font-size: 32px; }
  .ops-deliverable-item { padding-inline: 22px; }
}

@media (max-width: 980px) {
  .website-operations-page .ops-stream-gallery.ops-studio {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }
  .ops-studio-nav {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(96px, auto));
    border-right: 0;
    border-bottom: 1px solid rgba(21,36,45,.1);
  }
  .ops-studio-nav::before { display: none; }
  .ops-studio-tab,
  .ops-studio-tab:first-child {
    padding: 24px 22px;
    border-right: 1px solid rgba(21,36,45,.09);
  }
  .ops-studio-tab:nth-child(2n) { border-right: 0; }
  .ops-studio-tab:hover,
  .ops-studio-tab:focus-visible,
  .ops-studio-tab.is-active { padding-left: 28px; }
  .ops-studio-stage { min-height: 580px; }
  .ops-deliverables { grid-template-columns: 1fr; }
  .ops-deliverables-visual { min-height: 560px; }
  .ops-deliverables-list { border-left: 0; border-top: 1px solid rgba(22,38,47,.12); }
  .ops-deliverable-item { min-height: 116px; }
}

@media (max-width: 640px) {
  .website-operations-page .ops-stream { padding-bottom: 86px; }
  .website-operations-page .ops-stream-gallery.ops-studio { margin-top: 52px; border-radius: 4px; }
  .ops-studio-nav { grid-template-rows: repeat(2, 78px); }
  .ops-studio-tab,
  .ops-studio-tab:first-child {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
    padding: 17px 13px;
  }
  .ops-studio-tab:hover,
  .ops-studio-tab:focus-visible,
  .ops-studio-tab.is-active { padding-left: 16px; }
  .ops-studio-tab small,
  .ops-studio-tab p { display: none; }
  .ops-studio-tab strong { font-size: 15px; }
  .ops-studio-stage { min-height: 500px; }
  .ops-studio-image { object-position: 58% center; }
  .ops-studio-caption { padding: 125px 20px 24px; }
  .website-operations-page .ops-studio-caption h3 { font-size: 26px; line-height: 1.32; }
  .ops-studio-caption p { margin-block: 10px 14px; font-size: 13px; }
  .ops-studio-caption ul { gap: 6px; }
  .ops-studio-caption li { padding: 5px 7px; font-size: 10px; }
  .ops-studio-metric { top: 16px; right: 16px; width: 112px; min-height: 82px; padding: 14px; }
  .ops-studio-metric b { font-size: 22px; }
  .ops-studio-marker { display: none; }
  .website-operations-page .ops-artifacts { padding-block: 92px; }
  .ops-deliverables { min-height: 0; margin-top: 54px; }
  .ops-deliverables-visual { min-height: 430px; }
  .ops-deliverables-visual figcaption { left: 14px; right: 14px; bottom: 14px; padding: 18px; }
  .ops-deliverables-visual figcaption strong { font-size: 19px; }
  .ops-deliverable-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 104px;
    padding: 20px 15px;
  }
  .ops-deliverable-item:hover,
  .ops-deliverable-item:focus-visible,
  .ops-deliverable-item.is-active { padding-left: 19px; }
  .ops-deliverable-item h3 { font-size: 19px; }
  .ops-deliverable-item > span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ops-studio-image,
  .website-operations-page .ops-studio-stage .ops-stream-panel,
  .ops-studio-caption,
  .ops-studio-metric,
  .ops-studio-marker,
  .ops-deliverables-visual img,
  .ops-deliverable-item { transition: none !important; }
}

/* Service flow redesign: intentionally isolated from the global header and footer. */
.ops-stream {
  padding-top: 142px;
  background: #fff;
}

.ops-stream-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 66px;
}

.ops-stream-intro .ops-kicker {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.ops-stream-intro h2 {
  margin: 0;
  max-width: 920px;
  color: var(--ops-ink);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0;
}

.ops-stream-intro > p:last-child {
  margin: 0 0 8px;
  color: var(--ops-muted);
  font-size: 17px;
  line-height: 1.95;
}

.ops-stream-gallery {
  display: flex;
  gap: 10px;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.ops-stream-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  padding: 38px 34px;
  border: 1px solid rgba(20, 33, 43, .08);
  outline: none;
  color: var(--ops-ink);
  cursor: pointer;
  transition: flex-grow 680ms cubic-bezier(.2,.78,.18,1), border-color 360ms ease, transform 360ms ease;
}

.ops-stream-panel.is-active {
  flex-grow: 2.35;
  border-color: rgba(20, 33, 43, .16);
}

.ops-stream-panel:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ops-coral);
}

.ops-stream-content { background: #edf3ef; }
.ops-stream-search { color: #fff; background: #17232c; }
.ops-stream-experience { background: #f2ece6; }
.ops-stream-data { background: #e9eef3; }

.ops-stream-index {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(20, 33, 43, .14);
}

.ops-stream-search .ops-stream-index { border-bottom-color: rgba(255,255,255,.18); }
.ops-stream-index b { font-size: 14px; font-weight: 700; }
.ops-stream-index span { font-size: 11px; font-weight: 700; opacity: .62; }

.ops-stream-copy {
  position: relative;
  z-index: 3;
  width: min(470px, 100%);
  padding-top: 78px;
}

.ops-stream-copy small {
  display: block;
  margin-bottom: 20px;
  color: var(--ops-coral);
  font-size: 13px;
  font-weight: 700;
}

.ops-stream-search .ops-stream-copy small { color: #f49788; }

.ops-stream-copy h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
}

.ops-stream-copy p {
  margin: 26px 0 0;
  color: var(--ops-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ops-stream-search .ops-stream-copy p { color: rgba(255,255,255,.64); }

.ops-stream-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.ops-stream-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(20, 33, 43, .13);
  font-size: 12px;
  line-height: 1;
}

.ops-stream-search .ops-stream-copy li { border-color: rgba(255,255,255,.2); }

.ops-stream-panel:not(.is-active) .ops-stream-copy p,
.ops-stream-panel:not(.is-active) .ops-stream-copy ul {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.ops-stream-copy p,
.ops-stream-copy ul {
  transition: opacity 360ms ease 100ms, transform 480ms cubic-bezier(.2,.78,.18,1) 100ms;
}

.ops-stream-panel:not(.is-active) .ops-stream-copy h3 {
  font-size: 28px;
}

.ops-stream-visual {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 1;
  width: 46%;
  height: 210px;
  opacity: .2;
  transform: translate3d(28px, 22px, 0) scale(.9);
  transform-origin: 100% 100%;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(.2,.78,.18,1);
}

.ops-stream-panel.is-active .ops-stream-visual {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ops-stream-visual-content i {
  position: absolute;
  right: 0;
  width: 78%;
  height: 48px;
  border: 1px solid rgba(20,33,43,.12);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 40px rgba(32,65,52,.08);
}

.ops-stream-visual-content i:nth-child(1) { top: 8px; transform: translateX(-12%); }
.ops-stream-visual-content i:nth-child(2) { top: 68px; transform: translateX(-2%); }
.ops-stream-visual-content i:nth-child(3) { top: 128px; transform: translateX(-20%); }
.ops-stream-visual-content strong { position: absolute; right: 20px; bottom: 0; font-size: 72px; font-weight: 300; line-height: 1; }
.ops-stream-visual-content span { position: absolute; right: 18px; bottom: -22px; font-size: 11px; }

.ops-stream-visual-search {
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ops-stream-visual-search::after {
  position: absolute;
  inset: 34px 4px 26px;
  content: "";
  border-bottom: 2px solid #f49788;
  background: linear-gradient(145deg, transparent 0 48%, rgba(244,151,136,.22) 48% 100%);
  clip-path: polygon(0 88%, 18% 76%, 38% 80%, 58% 52%, 76% 58%, 100% 8%, 100% 100%, 0 100%);
}

.ops-stream-visual-search i {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid #17232c;
  border-radius: 50%;
  background: #f49788;
  box-shadow: 0 0 0 5px rgba(244,151,136,.16);
}

.ops-stream-visual-search i:nth-child(1) { left: 8%; bottom: 38px; }
.ops-stream-visual-search i:nth-child(2) { left: 38%; bottom: 52px; }
.ops-stream-visual-search i:nth-child(3) { left: 65%; bottom: 90px; }
.ops-stream-visual-search i:nth-child(4) { right: 2%; top: 28px; }
.ops-stream-visual-search span { position: absolute; right: 8px; top: 62px; z-index: 3; font-size: 34px; font-weight: 600; }

.ops-stream-visual-device > i,
.ops-stream-visual-device > b {
  position: absolute;
  bottom: 0;
  display: block;
  border: 2px solid rgba(20,33,43,.68);
  background: rgba(255,255,255,.55);
  box-shadow: 0 24px 50px rgba(71,52,37,.1);
}

.ops-stream-visual-device > i { left: 4%; width: 70%; height: 76%; padding: 18px; }
.ops-stream-visual-device > b { right: 2%; width: 28%; height: 96%; padding: 13px 9px; }
.ops-stream-visual-device span { display: block; height: 8px; margin-bottom: 13px; background: rgba(20,33,43,.12); }
.ops-stream-visual-device span:first-child { width: 56%; background: var(--ops-coral); }

.ops-stream-visual-data {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 24px 12px 0;
  border-bottom: 1px solid rgba(20,33,43,.25);
}

.ops-stream-visual-data::before,
.ops-stream-visual-data::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background: rgba(20,33,43,.1);
}

.ops-stream-visual-data::before { top: 34%; }
.ops-stream-visual-data::after { top: 66%; }
.ops-stream-visual-data i { position: relative; z-index: 1; flex: 1; height: var(--v); background: #91a8b9; transform-origin: 50% 100%; animation: opsBarBreathe 3.8s ease-in-out infinite alternate; }
.ops-stream-visual-data i:nth-child(2) { animation-delay: -.8s; }
.ops-stream-visual-data i:nth-child(3) { animation-delay: -1.6s; background: var(--ops-coral); }
.ops-stream-visual-data i:nth-child(4) { animation-delay: -2.4s; }
.ops-stream-visual-data i:nth-child(5) { animation-delay: -3.2s; background: var(--ops-ink); }

@keyframes opsBarBreathe {
  0% { transform: scaleY(.84); opacity: .72; }
  100% { transform: scaleY(1); opacity: 1; }
}

.ops-stream-hint {
  margin: 18px 0 0;
  color: #97a1a8;
  font-size: 12px;
  text-align: right;
}

.ops-runway {
  position: relative;
  padding: 150px 0;
  overflow: visible;
  color: #fff;
  background: #111a21;
}

.ops-runway::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(255,255,255,.14);
}

.ops-runway-layout {
  display: grid;
  grid-template-columns: minmax(340px, .7fr) minmax(0, 1.3fr);
  gap: 140px;
  align-items: start;
}

.ops-runway-guide {
  position: sticky;
  top: 150px;
  padding-right: 50px;
}

.ops-runway-guide > span {
  color: #f49788;
  font-size: 13px;
  font-weight: 700;
}

.ops-runway-guide h2 {
  margin: 34px 0 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}

.ops-runway-guide p {
  margin: 30px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
  line-height: 1.9;
}

.ops-runway-meter {
  position: relative;
  width: 2px;
  height: 180px;
  margin-top: 48px;
  overflow: hidden;
  background: rgba(255,255,255,.13);
}

.ops-runway-meter i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--ops-progress, 33.333%);
  background: var(--ops-coral);
  transition: height 620ms cubic-bezier(.2,.78,.18,1);
}

.ops-runway-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 54px;
  min-height: 460px;
  padding: 70px 0 90px;
  border-top: 1px solid rgba(255,255,255,.14);
  opacity: .42;
  transition: opacity 420ms ease, transform 620ms cubic-bezier(.2,.78,.18,1);
}

.ops-runway-steps article:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.ops-runway-steps article.is-active { opacity: 1; transform: translate3d(-18px,0,0); }
.ops-runway-steps article > b { color: transparent; font-size: 136px; font-weight: 600; line-height: .8; -webkit-text-stroke: 1px rgba(255,255,255,.34); }
.ops-runway-steps article.is-active > b { -webkit-text-stroke-color: #f49788; }
.ops-runway-steps small { color: #f49788; font-size: 12px; font-weight: 700; }
.ops-runway-steps h3 { margin: 20px 0 0; font-size: 38px; font-weight: 500; line-height: 1.35; }
.ops-runway-steps p { margin: 24px 0 0; max-width: 600px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.9; }
.ops-runway-steps ul { display: flex; flex-wrap: wrap; gap: 24px; margin: 42px 0 0; padding: 0; list-style: none; }
.ops-runway-steps li { position: relative; padding-left: 15px; color: rgba(255,255,255,.82); font-size: 13px; }
.ops-runway-steps li::before { position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; content: ""; background: var(--ops-coral); }

.ops-artifacts {
  padding: 150px 0 170px;
  background: #f4f6f4;
}

.ops-artifacts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  align-items: end;
  gap: 100px;
}

.ops-artifacts-heading span,
.ops-closeout-questions header span,
.ops-closeout-contact > span {
  display: block;
  margin-bottom: 24px;
  color: var(--ops-coral);
  font-size: 12px;
  font-weight: 700;
}

.ops-artifacts-heading h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}

.ops-artifacts-heading > p {
  margin: 0 0 8px;
  color: var(--ops-muted);
  font-size: 16px;
  line-height: 1.95;
}

.ops-artifact-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 350px;
  gap: 24px;
  margin-top: 88px;
  perspective: 1200px;
}

.ops-artifact {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(20,33,43,.12);
  background: #fff;
  box-shadow: 0 28px 80px rgba(20,33,43,.07);
  transition: transform 520ms cubic-bezier(.2,.78,.18,1), box-shadow 520ms ease;
}

.ops-artifact:hover { transform: translate3d(0,-12px,30px) rotate(0deg); box-shadow: 0 38px 90px rgba(20,33,43,.13); }
.ops-artifact-a { grid-column: 1 / span 4; transform: rotate(-1.1deg); }
.ops-artifact-b { grid-column: 5 / span 4; transform: translateY(28px) rotate(.7deg); }
.ops-artifact-c { grid-column: 9 / span 4; transform: rotate(-.55deg); }
.ops-artifact-d { grid-column: 2 / span 5; transform: translateY(8px) rotate(.65deg); }
.ops-artifact-e { grid-column: 7 / span 5; transform: translateY(36px) rotate(-.75deg); }

.ops-artifact header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--ops-line); }
.ops-artifact header b { color: var(--ops-coral); font-size: 13px; }
.ops-artifact header span { color: #929ba1; font-size: 10px; font-weight: 700; }
.ops-artifact h3 { margin: 30px 0 0; font-size: 28px; font-weight: 500; }
.ops-artifact > p { margin: 10px 0 0; color: var(--ops-muted); font-size: 14px; }
.ops-artifact footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--ops-line); color: #8b969d; font-size: 11px; }

.ops-paper-checks,
.ops-paper-calendar,
.ops-paper-lines,
.ops-paper-search,
.ops-paper-bars { position: relative; flex: 1; min-height: 110px; margin: 24px 0; }
.ops-paper-checks { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.ops-paper-checks i { position: relative; border: 1px solid var(--ops-line); background: #f7f8f7; }
.ops-paper-checks i::before { position: absolute; left: 12px; top: 14px; width: 18px; height: 18px; border: 1px solid #9aa6ac; content: ""; }
.ops-paper-checks i::after { position: absolute; left: 42px; right: 12px; top: 20px; height: 5px; content: ""; background: #dfe4e2; }
.ops-paper-calendar { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ops-paper-calendar i { border: 1px solid var(--ops-line); background: #fafafa; }
.ops-paper-calendar i:nth-child(2), .ops-paper-calendar i:nth-child(5) { background: rgba(241,102,85,.13); }
.ops-paper-lines { display: flex; flex-direction: column; justify-content: center; gap: 15px; }
.ops-paper-lines i { display: block; width: 100%; height: 8px; background: #e4e8e6; }
.ops-paper-lines i:nth-child(2) { width: 84%; }
.ops-paper-lines i:nth-child(3) { width: 65%; background: rgba(241,102,85,.24); }
.ops-paper-lines i:nth-child(4) { width: 76%; }
.ops-paper-search { padding-left: 54px; }
.ops-paper-search > i { position: absolute; left: 0; top: 8px; width: 34px; height: 34px; border: 2px solid var(--ops-coral); border-radius: 50%; }
.ops-paper-search > i::after { position: absolute; right: -11px; bottom: -7px; width: 15px; height: 2px; content: ""; background: var(--ops-coral); transform: rotate(45deg); }
.ops-paper-search span { display: block; width: 100%; height: 12px; margin: 10px 0; background: #e5e9e7; }
.ops-paper-search span:nth-child(3) { width: 78%; }
.ops-paper-search span:nth-child(4) { width: 58%; }
.ops-paper-bars { display: flex; align-items: flex-end; gap: 14px; padding: 8px 12px 0; border-bottom: 1px solid var(--ops-line); }
.ops-paper-bars i { flex: 1; height: var(--v); background: #9db0ba; }
.ops-paper-bars i:last-child { background: var(--ops-coral); }

.ops-closeout {
  padding: 150px 0;
  background: #fff;
}

.ops-closeout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .72fr);
  gap: 110px;
  align-items: start;
}

.ops-closeout-questions header h2,
.ops-closeout-contact h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0;
}

.ops-closeout .ops-faq-list { margin-top: 64px; }
.ops-closeout .ops-faq-list details { border-top: 1px solid var(--ops-line); }
.ops-closeout .ops-faq-list details:last-child { border-bottom: 1px solid var(--ops-line); }
.ops-closeout .ops-faq-list summary { min-height: 88px; font-size: 17px; }
.ops-closeout .ops-faq-list details p { padding: 0 62px 30px 0; font-size: 14px; line-height: 1.9; }

.ops-closeout-contact {
  position: sticky;
  top: 126px;
  min-height: 610px;
  padding: 60px;
  overflow: hidden;
  color: #fff;
  background: #17232c;
}

.ops-closeout-contact > span { color: #f49788; }
.ops-closeout-contact p { margin: 30px 0 0; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.9; }
.ops-closeout-route { position: relative; height: 150px; margin: 56px 0 42px; border-bottom: 1px solid rgba(255,255,255,.14); }
.ops-closeout-route::before { position: absolute; left: 0; right: 0; bottom: 46px; height: 1px; content: ""; background: rgba(255,255,255,.16); transform: rotate(-7deg); transform-origin: 50% 50%; }
.ops-closeout-route i,
.ops-closeout-route b { position: absolute; width: 11px; height: 11px; border: 2px solid #17232c; border-radius: 50%; background: #f49788; box-shadow: 0 0 0 6px rgba(244,151,136,.13); }
.ops-closeout-route i:nth-child(1) { left: 4%; bottom: 39px; }
.ops-closeout-route i:nth-child(2) { left: 46%; bottom: 68px; }
.ops-closeout-route i:nth-child(3) { right: 23%; bottom: 88px; }
.ops-closeout-route b { right: 2%; bottom: 110px; width: 15px; height: 15px; background: #fff; }
.ops-closeout-contact .ops-primary { margin-top: auto; background: var(--ops-coral); }

@media (max-width: 1280px) {
  .ops-stream-intro,
  .ops-artifacts-heading { gap: 58px; }
  .ops-stream-intro h2,
  .ops-artifacts-heading h2 { font-size: 48px; }
  .ops-stream-gallery { min-height: 590px; }
  .ops-stream-panel { padding: 30px 24px; }
  .ops-stream-copy { padding-top: 58px; }
  .ops-stream-copy h3 { font-size: 31px; }
  .ops-runway-layout { gap: 76px; }
  .ops-runway-steps article { grid-template-columns: 130px 1fr; gap: 38px; }
  .ops-runway-steps article > b { font-size: 106px; }
  .ops-closeout-grid { gap: 70px; }
}

@media (max-width: 980px) {
  .ops-stream-intro,
  .ops-artifacts-heading,
  .ops-closeout-grid { grid-template-columns: 1fr; gap: 30px; }
  .ops-stream-intro .ops-kicker { margin-bottom: 0; }
  .ops-stream-gallery { display: block; min-height: 0; }
  .ops-stream-panel { min-height: 220px; margin-top: 10px; transition: min-height 600ms cubic-bezier(.2,.78,.18,1), transform 360ms ease; }
  .ops-stream-panel.is-active { min-height: 520px; }
  .ops-stream-copy { width: min(620px, 76%); padding-top: 44px; }
  .ops-stream-panel:not(.is-active) .ops-stream-copy { padding-top: 26px; }
  .ops-stream-panel:not(.is-active) .ops-stream-copy small { margin-bottom: 10px; }
  .ops-stream-visual { width: 40%; }
  .ops-stream-hint { text-align: left; }
  .ops-runway-layout { grid-template-columns: 1fr; gap: 80px; }
  .ops-runway-guide { position: static; display: grid; grid-template-columns: 1fr 180px; gap: 24px 50px; padding: 0; }
  .ops-runway-guide > span { grid-column: 1 / -1; }
  .ops-runway-guide h2 { grid-column: 1; }
  .ops-runway-guide p { grid-column: 1; }
  .ops-runway-meter { grid-column: 2; grid-row: 2 / span 2; align-self: end; height: 170px; margin: 0; }
  .ops-runway-steps article { min-height: 390px; }
  .ops-artifact-wall { grid-template-columns: repeat(2,1fr); grid-auto-rows: 330px; }
  .ops-artifact-a,
  .ops-artifact-b,
  .ops-artifact-c,
  .ops-artifact-d,
  .ops-artifact-e { grid-column: auto; transform: none; }
  .ops-artifact-e { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
  .ops-closeout-contact { position: static; min-height: 520px; }
}

@media (max-width: 640px) {
  .ops-stream { padding-top: 84px; }
  .ops-stream-intro h2,
  .ops-artifacts-heading h2 { font-size: 36px; }
  .ops-stream-intro > p:last-child,
  .ops-artifacts-heading > p { font-size: 15px; }
  .ops-stream-panel { min-height: 188px; padding: 24px 20px; }
  .ops-stream-panel.is-active { min-height: 500px; }
  .ops-stream-copy,
  .ops-stream-panel.is-active .ops-stream-copy { width: 100%; padding-top: 32px; }
  .ops-stream-copy h3,
  .ops-stream-panel:not(.is-active) .ops-stream-copy h3 { font-size: 26px; }
  .ops-stream-copy p { max-width: 90%; font-size: 14px; }
  .ops-stream-visual { right: 18px; bottom: 22px; width: 68%; height: 150px; }
  .ops-stream-visual-content strong { font-size: 54px; }
  .ops-stream-visual-content i { height: 34px; }
  .ops-stream-visual-content i:nth-child(2) { top: 52px; }
  .ops-stream-visual-content i:nth-child(3) { top: 96px; }
  .ops-runway { padding: 90px 0; }
  .ops-runway-guide { display: block; }
  .ops-runway-guide h2 { font-size: 36px; }
  .ops-runway-meter { width: 100%; height: 2px; margin-top: 36px; }
  .ops-runway-meter i { width: var(--ops-progress, 33.333%); height: 100%; transition-property: width; }
  .ops-runway-steps article { grid-template-columns: 74px 1fr; gap: 20px; min-height: 350px; padding: 52px 0 64px; }
  .ops-runway-steps article.is-active { transform: none; }
  .ops-runway-steps article > b { font-size: 62px; }
  .ops-runway-steps h3 { font-size: 28px; }
  .ops-runway-steps p { font-size: 14px; }
  .ops-runway-steps ul { gap: 12px 18px; margin-top: 28px; }
  .ops-artifacts { padding: 88px 0 110px; }
  .ops-artifact-wall { grid-template-columns: 1fr; grid-auto-rows: 320px; gap: 16px; margin-top: 54px; }
  .ops-artifact-e { grid-column: auto; width: auto; }
  .ops-artifact { padding: 28px; }
  .ops-artifact h3 { font-size: 25px; }
  .ops-closeout { padding: 88px 0; }
  .ops-closeout-questions header h2,
  .ops-closeout-contact h2 { font-size: 35px; }
  .ops-closeout .ops-faq-list { margin-top: 42px; }
  .ops-closeout-contact { min-height: 480px; padding: 36px 26px; }
  .ops-closeout-route { height: 110px; margin: 36px 0 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .ops-stream-panel,
  .ops-stream-copy p,
  .ops-stream-copy ul,
  .ops-stream-visual,
  .ops-stream-visual-data i,
  .ops-runway-meter i,
  .ops-runway-steps article,
  .ops-artifact { transition: none !important; animation: none !important; }
}

/* Premium operations chapter: depth comes from composition and materials, not glow effects. */
.ops-stream {
  position: relative;
  padding-bottom: 136px;
  border-top: 1px solid rgba(20, 33, 43, .07);
  background: #f0f3f1;
}

.ops-stream::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 43, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 43, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 76%);
  mask-image: linear-gradient(to bottom, #000 0, transparent 76%);
}

.ops-stream .ops-shell { position: relative; z-index: 1; }
.ops-stream-intro { margin-bottom: 72px; }
.ops-stream-intro h2 { max-width: 990px; font-size: 60px; line-height: 1.18; }

.ops-stream-gallery {
  position: relative;
  min-height: 656px;
  padding: 58px 12px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: #10181e;
  box-shadow: 0 40px 100px rgba(14, 25, 31, .18);
  isolation: isolate;
}

.ops-stream-gallery::before {
  position: absolute;
  left: 24px;
  top: 0;
  display: flex;
  align-items: center;
  height: 58px;
  content: "FOX SPIRIT  /  OPERATIONS DESK";
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.ops-stream-gallery::after {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 57px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .1);
}

.ops-stream-panel {
  --ops-panel-accent: #c7d9cf;
  border-color: rgba(255, 255, 255, .08);
  border-radius: 3px;
  background: #172127;
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
  transform: translate3d(0, 0, 0);
  transition:
    flex-grow 720ms cubic-bezier(.18, .82, .17, 1),
    border-color 420ms ease,
    background-color 420ms ease,
    transform 520ms cubic-bezier(.18, .82, .17, 1);
}

.ops-stream-panel::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--ops-panel-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 620ms cubic-bezier(.18, .82, .17, 1);
}

.ops-stream-panel::after {
  position: absolute;
  right: 16px;
  top: 82px;
  bottom: 18px;
  z-index: 2;
  width: 1px;
  content: "";
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(20, 33, 43, .2) 20%, rgba(20, 33, 43, .2) 80%, transparent);
  transform: translateY(20px);
  transition: opacity 420ms ease 180ms, transform 620ms cubic-bezier(.18, .82, .17, 1) 180ms;
}

.ops-stream-panel.is-active {
  flex-grow: 2.65;
  border-color: rgba(255, 255, 255, .12);
  transform: translate3d(0, -4px, 0);
}

.ops-stream-panel.is-active::before { transform: scaleX(1); }
.ops-stream-panel.is-active::after { opacity: 1; transform: translateY(0); }
.ops-stream-panel:not(.is-active) { color: rgba(255, 255, 255, .82); }
.ops-stream-panel:not(.is-active) .ops-stream-index { border-bottom-color: rgba(255, 255, 255, .12); }
.ops-stream-panel:not(.is-active) .ops-stream-copy small { color: rgba(255, 255, 255, .46); }
.ops-stream-content { --ops-panel-accent: #6d9c83; }
.ops-stream-search { --ops-panel-accent: #f49788; }
.ops-stream-experience { --ops-panel-accent: #c79f72; }
.ops-stream-data { --ops-panel-accent: #789bb4; }
.ops-stream-content.is-active { color: var(--ops-ink); background: #e5eee8; }
.ops-stream-search.is-active { color: #fff; background: #17232c; }
.ops-stream-experience.is-active { color: var(--ops-ink); background: #f1eae2; }
.ops-stream-data.is-active { color: var(--ops-ink); background: #e5ecf0; }
.ops-stream-index { padding-bottom: 23px; }
.ops-stream-index b { font-size: 13px; letter-spacing: .6px; }
.ops-stream-index span { letter-spacing: 1.5px; }
.ops-stream-copy { padding-top: 70px; }
.ops-stream-copy h3 { max-width: 460px; font-size: 37px; line-height: 1.31; }
.ops-stream-copy p { max-width: 430px; }
.ops-stream-copy li { border-radius: 2px; background: rgba(255, 255, 255, .16); }
.ops-stream-search .ops-stream-copy li { background: rgba(255, 255, 255, .035); }

.ops-stream-visual {
  --ops-rx: 0deg;
  --ops-ry: 0deg;
  --ops-shift-x: 0px;
  --ops-shift-y: 0px;
  width: 49%;
  height: 224px;
  opacity: .12;
  transform: perspective(900px) translate3d(30px, 24px, 0) rotateX(0) rotateY(0) scale(.9);
  transition: opacity 520ms ease, transform 220ms cubic-bezier(.2, .72, .2, 1);
  will-change: transform;
}

.ops-stream-panel.is-active .ops-stream-visual {
  opacity: 1;
  transform: perspective(900px) translate3d(var(--ops-shift-x), var(--ops-shift-y), 0) rotateX(var(--ops-rx)) rotateY(var(--ops-ry)) scale(1);
}

.ops-stream-visual-content i { border-radius: 2px; box-shadow: 0 20px 44px rgba(32, 65, 52, .1); }
.ops-stream-visual-content i::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--ops-panel-accent);
  box-shadow: 16px 0 rgba(20, 33, 43, .11), 32px 0 rgba(20, 33, 43, .11);
}
.ops-stream-visual-device > i,
.ops-stream-visual-device > b { border-radius: 5px; }
.ops-stream-visual-data i { border-radius: 1px 1px 0 0; }
.ops-stream-hint { margin-top: 22px; color: #77838a; letter-spacing: .5px; }

.ops-runway {
  padding: 164px 0 172px;
  background: #0d151a;
}

.ops-runway::before { background: rgba(255, 255, 255, .08); }
.ops-runway::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 82px;
  height: 1px;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 1px, transparent 1px 48px);
}

.ops-runway-layout { gap: 126px; }
.ops-runway-guide { top: 132px; }
.ops-runway-guide > span { display: inline-flex; align-items: center; gap: 12px; letter-spacing: 1.4px; }
.ops-runway-guide > span::before { width: 34px; height: 1px; content: ""; background: currentColor; }
.ops-runway-guide h2 { max-width: 470px; font-size: 52px; line-height: 1.25; }
.ops-runway-guide p { max-width: 430px; }
.ops-runway-meter { width: 4px; height: 210px; background: rgba(255,255,255,.1); }
.ops-runway-meter i { width: 100%; box-shadow: 0 0 0 1px rgba(244,151,136,.12); }

.ops-runway-steps article {
  grid-template-columns: 192px minmax(0, 1fr);
  min-height: 470px;
  padding: 76px 48px 92px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, 0);
  transform: translate3d(0, 0, 0);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(.18, .82, .17, 1), background-color 420ms ease;
}

.ops-runway-steps article::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  content: "";
  background: #f49788;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 620ms cubic-bezier(.18, .82, .17, 1);
}

.ops-runway-steps article::after {
  position: absolute;
  right: 24px;
  top: 22px;
  content: "PHASE 0" attr(data-ops-phase);
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.ops-runway-steps article.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, .035);
  transform: translate3d(-24px, 0, 0);
}

.ops-runway-steps article.is-active::before { transform: scaleY(1); }
.ops-runway-steps article > b { font-size: 148px; -webkit-text-stroke-color: rgba(255,255,255,.25); }
.ops-runway-steps article.is-active > b { -webkit-text-stroke-color: #f49788; }
.ops-runway-steps h3 { max-width: 640px; font-size: 42px; }
.ops-runway-steps li { padding: 9px 14px 9px 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 2px; }
.ops-runway-steps li::before { left: 13px; }

.ops-artifacts {
  position: relative;
  padding-top: 164px;
  background: #edf0ed;
}

.ops-artifacts::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(20,33,43,.025) 1px, transparent 1px);
  background-size: 100% 54px;
}

.ops-artifacts > .ops-shell { position: relative; z-index: 1; }
.ops-artifacts-heading h2 { max-width: 830px; font-size: 58px; line-height: 1.2; }
.ops-artifact-wall {
  position: relative;
  grid-auto-rows: 365px;
  gap: 28px;
  margin-top: 94px;
  padding: 64px 44px 50px;
  border: 1px solid rgba(20, 33, 43, .1);
  background: #dde3df;
  box-shadow: inset 0 1px rgba(255,255,255,.7), 0 38px 100px rgba(20,33,43,.08);
}

.ops-artifact-wall::before {
  position: absolute;
  left: 44px;
  top: 26px;
  content: "FOX SPIRIT  /  OPERATIONS ARCHIVE";
  color: #758087;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
}

.ops-artifact {
  --ops-artifact-accent: #f16655;
  border: 0;
  border-top: 3px solid var(--ops-artifact-accent);
  border-radius: 2px;
  box-shadow: 0 24px 56px rgba(20, 33, 43, .12), 0 2px 0 rgba(20,33,43,.04);
}

.ops-artifact::before {
  position: absolute;
  right: 26px;
  top: 92px;
  content: "FOX / OPS";
  color: rgba(20, 33, 43, .22);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ops-artifact-a { --ops-artifact-accent: #f16655; }
.ops-artifact-b { --ops-artifact-accent: #7ba28d; }
.ops-artifact-c { --ops-artifact-accent: #b89265; }
.ops-artifact-d { --ops-artifact-accent: #799bb3; }
.ops-artifact-e { --ops-artifact-accent: #17232c; }
.ops-artifact:hover { box-shadow: 0 42px 90px rgba(20,33,43,.16), 0 2px 0 rgba(20,33,43,.04); }
.ops-artifact header b { color: var(--ops-artifact-accent); }
.ops-artifact h3 { font-size: 29px; }
.ops-paper-calendar i:nth-child(2),
.ops-paper-calendar i:nth-child(5) { background: color-mix(in srgb, var(--ops-artifact-accent) 14%, white); }
.ops-paper-lines i:nth-child(3) { background: color-mix(in srgb, var(--ops-artifact-accent) 26%, white); }
.ops-paper-bars i:last-child { background: var(--ops-artifact-accent); }

.ops-closeout { padding: 164px 0; }
.ops-closeout-questions header h2,
.ops-closeout-contact h2 { font-size: 51px; line-height: 1.26; }
.ops-closeout .ops-faq-list summary { transition: color 260ms ease, padding-left 360ms cubic-bezier(.18,.82,.17,1); }
.ops-closeout .ops-faq-list summary:hover { padding-left: 12px; color: var(--ops-coral); }
.ops-closeout-contact {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  background: #111b22;
  box-shadow: 0 44px 100px rgba(17, 27, 34, .2);
  isolation: isolate;
}

.ops-closeout-contact::before {
  position: absolute;
  right: -8px;
  bottom: -44px;
  z-index: -1;
  content: "OPS";
  color: rgba(255,255,255,.035);
  font-size: 190px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.ops-closeout-contact .ops-primary { box-shadow: 0 18px 44px rgba(241,102,85,.2); }

@media (max-width: 1280px) {
  .ops-stream-intro h2 { font-size: 52px; }
  .ops-stream-gallery { min-height: 624px; }
  .ops-stream-copy h3 { font-size: 33px; }
  .ops-runway-guide h2 { font-size: 46px; }
  .ops-runway-steps article { grid-template-columns: 138px 1fr; padding-inline: 34px; }
  .ops-runway-steps article > b { font-size: 112px; }
  .ops-runway-steps h3 { font-size: 37px; }
  .ops-artifacts-heading h2 { font-size: 50px; }
}

@media (max-width: 980px) {
  .ops-stream { padding-bottom: 108px; }
  .ops-stream-gallery { padding: 58px 10px 10px; }
  .ops-stream-panel { margin-top: 10px; }
  .ops-stream-panel:first-of-type { margin-top: 0; }
  .ops-stream-panel.is-active { transform: none; }
  .ops-stream-panel::after { display: none; }
  .ops-runway { padding-block: 120px; }
  .ops-runway-layout { gap: 66px; }
  .ops-runway-steps article { padding-inline: 30px; }
  .ops-runway-steps article.is-active { transform: translate3d(-10px,0,0); }
  .ops-artifact-wall { padding: 60px 28px 38px; }
  .ops-closeout { padding-block: 120px; }
}

@media (max-width: 640px) {
  .ops-stream { padding-top: 92px; padding-bottom: 88px; }
  .ops-stream-intro h2 { font-size: 37px; line-height: 1.22; }
  .ops-stream-gallery { padding: 50px 8px 8px; border-radius: 3px; }
  .ops-stream-gallery::before { left: 18px; height: 50px; content: "OPERATIONS DESK"; }
  .ops-stream-gallery::after { left: 18px; right: 18px; top: 49px; }
  .ops-stream-panel { margin-top: 8px; border-radius: 2px; }
  .ops-stream-copy h3,
  .ops-stream-panel:not(.is-active) .ops-stream-copy h3 { font-size: 27px; }
  .ops-stream-visual { will-change: auto; }
  .ops-runway { padding-block: 92px; }
  .ops-runway::after { top: 50px; }
  .ops-runway-guide { position: static; top: auto; padding-right: 0; }
  .ops-runway-guide h2 { font-size: 37px; }
  .ops-runway-meter { width: 100%; height: 2px; margin-top: 34px; }
  .ops-runway-meter i {
    width: var(--ops-progress, 33.333%);
    height: 100%;
    transition-property: width;
  }
  .ops-runway-steps article { grid-template-columns: 64px 1fr; min-height: 370px; padding: 48px 16px 58px 20px; }
  .ops-runway-steps article.is-active { transform: none; }
  .ops-runway-steps article > b { font-size: 58px; }
  .ops-runway-steps article::after { right: 12px; top: 16px; }
  .ops-runway-steps h3 { font-size: 29px; }
  .ops-runway-steps li { padding: 8px 11px 8px 25px; }
  .ops-runway-steps li::before { left: 11px; }
  .ops-artifacts { padding-top: 94px; }
  .ops-artifacts-heading h2 { font-size: 37px; }
  .ops-artifact-wall { grid-auto-rows: 330px; gap: 15px; margin-top: 58px; padding: 52px 12px 16px; }
  .ops-artifact-wall::before { left: 18px; top: 21px; content: "OPERATIONS ARCHIVE"; }
  .ops-artifact { padding: 27px; transform: none !important; }
  .ops-closeout { padding-block: 92px; }
  .ops-closeout-questions header h2,
  .ops-closeout-contact h2 { font-size: 36px; }
  .ops-closeout .ops-faq-list summary:hover { padding-left: 0; }
  .ops-closeout-contact::before { font-size: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  .ops-stream-panel::before,
  .ops-stream-panel::after,
  .ops-closeout .ops-faq-list summary { transition: none !important; }
  .ops-stream-panel.is-active .ops-stream-visual { transform: none !important; }
}
