:root {
  --ink: #071019;
  --ink-2: #0c1722;
  --ink-3: #132334;
  --paper: #f1efe9;
  --paper-2: #e7e3da;
  --paper-green: #e4e7dc;
  --text: #f5f2ea;
  --text-muted: rgba(245, 242, 234, 0.68);
  --text-dark: #101820;
  --text-dark-muted: rgba(16, 24, 32, 0.66);
  --line: rgba(245, 242, 234, 0.16);
  --line-dark: rgba(16, 24, 32, 0.17);
  --brass: #c4a268;
  --brass-bright: #e2bd78;
  --cyan: #77e5e5;
  --green: #9ec36f;
  --orange: #ff7a45;
  --xhs: #ccff4a;
  --page-pad: clamp(20px, 4.25vw, 72px);
  --section-pad: clamp(92px, 11vw, 176px);
  --max-width: 1580px;
  --header-h: 82px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family:
    "HarmonyOS Sans SC",
    "MiSans",
    "Source Han Sans SC",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  cursor: pointer;
}

button:active,
.button:active {
  transform: scale(0.97);
}

.header-cta:active {
  transform: translateY(0) scale(0.97);
}

a {
  color: inherit;
  text-decoration: none;
}

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

figure,
p,
h1,
h2,
h3,
h4,
dl,
dd,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

em {
  font-style: normal;
}

::selection {
  color: var(--ink);
  background: var(--brass-bright);
}

:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--text);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-progress {
  position: fixed;
  z-index: 210;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brass-bright);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 200;
  inset: 2px 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 0 var(--page-pad);
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition:
    height 260ms var(--ease),
    background 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(7, 16, 25, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(22px) saturate(130%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.24));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 46px);
}

.desktop-nav a {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--brass-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 136px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--brass-bright);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: var(--section-pad) var(--page-pad);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section-index,
.section-meta {
  font: 650 11px/1.2 "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-meta {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brass-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow i {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.source-note {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */

.hero {
  position: relative;
  min-height: max(100svh, 920px);
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: calc(var(--header-h) + 40px) var(--page-pad) clamp(36px, 5.5vw, 82px);
  isolation: isolate;
  background: #071019;
}

.hero-media,
.hero-fallback,
.hero-shade,
.hero-grid,
.hero-beam {
  position: absolute;
  inset: 0;
  z-index: -5;
}

.hero-media video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  position: absolute;
  top: calc(var(--header-h) + 52px);
  right: var(--page-pad);
  bottom: auto;
  left: var(--page-pad);
  z-index: 5;
  width: calc(100% - var(--page-pad) * 2);
  height: auto;
  aspect-ratio: 1936 / 516;
  opacity: 1;
  background: #071019 url("./assets/hero-ceo-pufferfish-poster.jpg") center / contain no-repeat;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.68);
  transition: opacity 900ms ease;
}

.hero-media.video-ready video {
  opacity: 1;
}

.hero-media.video-failed video {
  display: none;
}

.hero-fallback {
  background: url("./assets/hero-city.webp") center / cover no-repeat;
  filter: saturate(0.75) contrast(1.06) brightness(0.62);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-light-rays,
.hero-pointer-aura {
  position: absolute;
  pointer-events: none;
}

.hero-light-rays {
  z-index: 4;
  inset: -34% -18%;
  opacity: 0.24;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 7.5%,
    rgba(226, 189, 120, 0.02) 8.5%,
    rgba(226, 189, 120, 0.2) 9%,
    rgba(119, 229, 229, 0.05) 9.45%,
    transparent 11.5% 17%
  );
  filter: blur(0.8px);
  mask-image: linear-gradient(90deg, transparent 6%, black 28%, black 72%, transparent 95%);
  mix-blend-mode: screen;
  transform: rotate(-12deg);
  transform-origin: 50% 50%;
  transition:
    opacity 420ms ease,
    transform 520ms var(--ease);
  will-change: transform;
}

.hero-pointer-aura {
  z-index: 3;
  inset: 0;
  opacity: 0.62;
  background: radial-gradient(
    circle at var(--hero-x, 64%) var(--hero-y, 38%),
    rgba(226, 189, 120, 0.18),
    rgba(119, 229, 229, 0.055) 18%,
    transparent 44%
  );
  transition: opacity 320ms ease;
}

.hero.has-signal-pointer .hero-light-rays {
  opacity: 0.46;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(-0.8%, 0, 0);
  }
  55% {
    transform: scale(1.09) translate3d(0.7%, -0.7%, 0);
  }
  100% {
    transform: scale(1.06) translate3d(1%, 0.5%, 0);
  }
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0%, rgba(4, 11, 17, 0.54) 52%, rgba(4, 10, 15, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 8, 14, 0.3) 0%, rgba(4, 10, 16, 0.15) 44%, rgba(4, 9, 14, 0.92) 100%);
}

.hero-grid,
.contact-grid {
  z-index: 3;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: clamp(64px, 7vw, 112px) clamp(64px, 7vw, 112px);
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-beam {
  z-index: 4;
  inset: auto;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 189, 120, 0.9), transparent);
  transform-origin: center;
  box-shadow: 0 0 30px rgba(226, 189, 120, 0.45);
}

.hero-beam-one {
  top: 27%;
  left: -11%;
  rotate: -13deg;
}

.hero-beam-two {
  right: -16%;
  bottom: 24%;
  rotate: -13deg;
}

.hero-topline {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-h) + 22px);
  right: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.hero-video-spacer {
  display: none;
}

.bladefish-journey {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  width: 100%;
  max-width: none;
  padding-bottom: clamp(160px, 18vh, 230px);
}

.hero-title {
  display: block;
  margin-top: clamp(22px, 2.4vw, 38px);
  font-weight: 550;
}

.hero-title-anchor {
  display: block;
  min-width: 0;
}

.hero-title-anchor .hero-line {
  overflow: visible;
  font-size: clamp(64px, 7.2vw, 108px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.hero-title-values {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  margin-top: clamp(22px, 2.2vw, 34px);
  padding-top: clamp(16px, 1.6vw, 24px);
  border-top: 1px solid rgba(226, 189, 120, 0.38);
}

.hero-value {
  padding: 0 clamp(22px, 2.8vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-value:first-child {
  padding-left: 0;
}

.hero-value:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(110%);
  animation: titleEnter 1050ms var(--ease) forwards;
  will-change: opacity, filter, transform;
}

.hero-title-values .hero-line:nth-child(1) > span {
  animation-delay: 140ms;
}

.hero-title-values .hero-line:nth-child(2) > span {
  animation-delay: 240ms;
}

.hero-title-values .hero-line:nth-child(3) > span {
  animation-delay: 340ms;
}

.hero-title em {
  color: var(--brass-bright);
}

.hero-bottom {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: clamp(36px, 5vw, 72px);
  left: var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bottom > p {
  display: grid;
  max-width: 690px;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.16vw, 17px);
  line-height: 1.7;
}

.hero-bottom-label {
  padding-top: 5px;
  color: var(--brass-bright);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
}

.button {
  gap: 28px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
}

.button-primary {
  color: var(--ink);
  background: var(--brass-bright);
}

.button-primary i {
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.button-primary:hover i {
  transform: translate(4px, 4px);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: clamp(38px, 4.5vw, 68px);
  left: var(--page-pad);
  display: none;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font: 600 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter 760ms var(--ease) forwards;
}

.hero-topline {
  animation-delay: 80ms;
}

.hero-copy .eyebrow {
  animation-delay: 190ms;
}

.hero-bottom {
  animation-delay: 560ms;
}

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

@keyframes titleEnter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Company */

.company {
  background:
    radial-gradient(circle at 84% 21%, rgba(196, 162, 104, 0.12), transparent 28%),
    var(--ink);
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(70px, 9vw, 150px);
  padding: clamp(72px, 8vw, 126px) 0;
}

.company-copy h2,
.cases-intro h2,
.diagnosis-copy h2,
.engine-title h2,
.detail-head h2,
.region-intro h2,
.benefits-title h2,
.contact-main h2 {
  font-size: clamp(48px, 6.2vw, 98px);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.company-copy h2 {
  margin-top: 22px;
}

.lead {
  max-width: 720px;
  margin-top: 34px;
  color: var(--text-muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.9;
}

.company-lead-accent {
  position: relative;
  display: inline-block;
  margin-inline: 0.08em;
  color: #f4e4bf;
  font-weight: 760;
  letter-spacing: -0.015em;
  text-shadow: 0 0 24px rgba(226, 189, 120, 0.14);
}

.company-lead-accent::after {
  position: absolute;
  z-index: -1;
  content: "";
  right: -0.06em;
  bottom: 0.2em;
  left: -0.06em;
  height: 0.32em;
  background: linear-gradient(90deg, rgba(226, 189, 120, 0.08), rgba(226, 189, 120, 0.38));
  transform: skewX(-14deg);
}

.dual-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 54px;
  background: var(--line);
  border: 1px solid var(--line);
}

.dual-origin article {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.025);
  transition: background 240ms ease;
}

.dual-origin article:hover {
  background: rgba(196, 162, 104, 0.08);
}

.dual-origin span {
  color: var(--brass);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.dual-origin h3 {
  margin-top: 54px;
  font-size: 26px;
  font-weight: 560;
}

.dual-origin p {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.dual-card-summary,
.dual-card-details em {
  display: none;
}

@media (min-width: 1181px) {
  .dual-origin {
    position: relative;
    isolation: isolate;
    display: block;
    height: 340px;
    margin-top: 58px;
    border: 0;
    background: transparent;
    perspective: 1300px;
  }

  .dual-origin::before {
    position: absolute;
    z-index: 0;
    content: "";
    inset: 42px 22px 12px;
    border: 1px solid rgba(226, 189, 120, 0.09);
    background:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.66;
    transform: rotate(-2deg);
  }

  .dual-origin .dual-card {
    --card-x: 0px;
    --card-y: 0px;
    --card-rotate: 0deg;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    width: min(500px, calc(100% - 72px));
    min-height: 0;
    height: 246px;
    padding: 0;
    border: 1px solid rgba(226, 189, 120, 0.18);
    border-radius: 20px;
    background: #10263d;
    box-shadow:
      0 24px 54px rgba(0, 0, 0, 0.28),
      inset 0 1px rgba(255, 255, 255, 0.05);
    outline: none;
    transform:
      translate3d(var(--card-x), var(--card-y), 0)
      perspective(1000px)
      rotateX(1deg)
      rotateY(-3deg)
      rotateZ(var(--card-rotate));
    transform-origin: 50% 50%;
    transition:
      z-index 0s 160ms,
      border-color 420ms ease,
      box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dual-origin .dual-card::before {
    position: absolute;
    z-index: 0;
    content: "";
    inset: 0;
    background:
      radial-gradient(circle at 78% 25%, rgba(226, 189, 120, 0.22), transparent 28%),
      linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.045) 47%, transparent 48%);
    opacity: 0.64;
    transition: opacity 420ms ease;
  }

  .dual-origin .dual-card--owner {
    --card-x: 0px;
    --card-y: 4px;
    --card-rotate: -4.5deg;
    z-index: 1;
    background:
      linear-gradient(145deg, rgba(31, 72, 111, 0.98), rgba(8, 26, 43, 0.98));
  }

  .dual-origin .dual-card--service {
    --card-x: 72px;
    --card-y: 76px;
    --card-rotate: 4deg;
    z-index: 2;
    background:
      linear-gradient(145deg, rgba(24, 61, 68, 0.98), rgba(5, 22, 31, 0.99));
  }

  .dual-origin .dual-card > .dual-card-summary {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    padding: 0;
    color: rgba(245, 239, 226, 0.88);
    text-align: right;
    transition:
      opacity 300ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dual-card-summary strong {
    position: absolute;
    inset: 0 0 0 68%;
    display: grid;
    place-items: center;
    color: rgba(245, 239, 226, 0.84);
    font-family: inherit;
    font-size: clamp(72px, 7vw, 96px);
    font-weight: 720;
    line-height: 0.9;
    letter-spacing: 0.08em;
    text-align: center;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    text-orientation: upright;
    writing-mode: vertical-rl;
  }

  .dual-origin .dual-card > .dual-card-details {
    position: absolute;
    z-index: 3;
    inset: 0 auto 0 0;
    display: flex;
    width: 68%;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
    border-right: 1px solid rgba(226, 189, 120, 0.17);
    background:
      linear-gradient(90deg, rgba(2, 10, 17, 0.96), rgba(4, 15, 24, 0.88));
    opacity: 0.08;
    transform: perspective(1500px) rotateY(-84deg);
    transform-origin: left center;
    transition:
      opacity 260ms ease,
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .dual-card-details span {
    color: var(--brass-bright);
  }

  .dual-card-details h3 {
    margin-top: 26px;
    color: #f3eee4;
    font-size: 27px;
  }

  .dual-card-details p {
    margin-top: 13px;
    color: rgba(232, 238, 244, 0.68);
    font-size: 13px;
    line-height: 1.72;
  }

  .dual-card-details em {
    display: block;
    margin-top: auto;
    color: rgba(226, 189, 120, 0.62);
    font: 600 9px/1 "Bahnschrift", sans-serif;
    font-style: normal;
    letter-spacing: 0.14em;
  }

  .dual-origin .dual-card:hover,
  .dual-origin .dual-card:focus-visible {
    --card-x: 30px;
    --card-y: 24px;
    --card-rotate: 0deg;
    z-index: 8;
    border-color: rgba(226, 189, 120, 0.44);
    box-shadow:
      0 34px 72px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(226, 189, 120, 0.07),
      0 0 48px rgba(129, 174, 194, 0.12);
    transition-delay: 0s;
  }

  .dual-origin .dual-card:hover::before,
  .dual-origin .dual-card:focus-visible::before {
    opacity: 1;
  }

  .dual-origin .dual-card:hover .dual-card-summary,
  .dual-origin .dual-card:focus-visible .dual-card-summary {
    opacity: 1;
    transform: translateX(14px);
  }

  .dual-origin .dual-card:hover .dual-card-summary strong,
  .dual-origin .dual-card:focus-visible .dual-card-summary strong {
    color: #f1d69f;
    text-shadow:
      0 0 28px rgba(226, 189, 120, 0.2),
      0 14px 34px rgba(0, 0, 0, 0.34);
  }

  .dual-origin:has(.dual-card:hover) .dual-card:not(:hover) .dual-card-summary,
  .dual-origin:has(.dual-card:focus-visible) .dual-card:not(:focus-visible) .dual-card-summary {
    opacity: 0.06;
  }

  .dual-origin .dual-card:hover .dual-card-details,
  .dual-origin .dual-card:focus-visible .dual-card-details {
    opacity: 1;
    transform: perspective(1500px) rotateY(0deg);
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .dual-origin .dual-card,
  .dual-card-summary,
  .dual-card-details {
    transition: none;
  }
}

/* WebGL ribbon layout overrides — kept last to supersede the retired card layout. */

@media (min-width: 1181px) {
  .year-ribbon--webgl .year-ribbon__ghost {
    top: auto;
    right: -0.03em;
    bottom: 0.05em;
    opacity: calc(0.16 + var(--ribbon-progress, 0) * 0.08);
    font-size: clamp(118px, 13vw, 198px);
    letter-spacing: -0.06em;
    -webkit-text-stroke-color: rgba(226, 189, 120, 0.15);
    transform: translate3d(calc(var(--ribbon-progress, 0) * -34px), 0, 0);
  }

  .year-ribbon--webgl .year-ribbon__viewport {
    z-index: 4;
    inset: 62px 0 126px;
    overflow: hidden;
    perspective: none;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 23%, #000 38%, #000 96%, transparent 100%);
  }

  .year-ribbon--webgl .year-ribbon__track {
    position: absolute;
    z-index: 36;
    top: auto;
    right: clamp(500px, 44vw, 590px);
    bottom: 35px;
    left: clamp(42px, 4vw, 62px);
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: none;
    transform-style: flat;
  }

  .year-ribbon--webgl .year-ribbon__track::before,
  .year-ribbon--webgl .year-ribbon__track::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 1px;
    pointer-events: none;
  }

  .year-ribbon--webgl .year-ribbon__track::before {
    right: 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .year-ribbon--webgl .year-ribbon__track::after {
    width: calc(var(--ribbon-progress, 0) * 100%);
    background: linear-gradient(90deg, var(--brass-bright), #fff0c6);
    box-shadow: 0 0 16px rgba(226, 189, 120, 0.35);
  }

  .year-ribbon--webgl .year-ribbon__track > li {
    position: relative;
    inset: auto;
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .year-ribbon--webgl .year-ribbon__status {
    z-index: 34;
    right: clamp(40px, 4vw, 62px);
    bottom: 28px;
    left: clamp(40px, 4vw, 62px);
    width: auto;
    grid-template-columns: minmax(300px, 360px) minmax(24px, 1fr) auto minmax(180px, 240px) auto;
    gap: 18px;
    padding-top: 0;
    border-top: 0;
    background: none;
  }

  .year-ribbon--webgl .year-ribbon__status::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: min(470px, 45%);
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.28), rgba(226, 189, 120, 0.08));
    pointer-events: none;
  }

  .year-ribbon--webgl .year-ribbon__status-index {
    grid-column: 3;
    align-self: end;
    padding-top: 18px;
  }

  .year-ribbon--webgl .year-ribbon__status-copy {
    display: contents;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > strong {
    grid-column: 4;
    align-self: end;
    overflow: hidden;
    margin: 0;
    padding-bottom: 4px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 590;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 16px 18px 16px 20px;
    color: rgba(255, 255, 255, 0.82);
    border-left: 2px solid rgba(226, 189, 120, 0.72);
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.09), rgba(7, 16, 25, 0.42) 78%, transparent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    font-size: clamp(15px, 1.15vw, 17px);
    font-style: normal;
    line-height: 1.62;
    text-overflow: clip;
    white-space: normal;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em::before {
    display: block;
    margin-bottom: 8px;
    color: var(--brass-bright);
    content: "MILESTONE NOTE";
    font: 650 9px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.18em;
  }

  .year-ribbon--webgl .year-ribbon__controls {
    grid-column: 5;
    align-self: end;
    padding-bottom: 1px;
  }

  .year-ribbon--webgl .year-ribbon__controls button {
    width: 38px;
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .year-ribbon--webgl {
    height: auto;
    min-height: 0;
  }

  .year-ribbon--webgl .year-ribbon__sticky {
    position: relative;
    top: auto;
    height: 760px;
    min-height: 760px;
    max-height: none;
    padding: 0;
  }

  .year-ribbon--webgl .year-ribbon__viewport {
    position: absolute;
    inset: 62px 0 126px;
  }

  .year-ribbon--webgl .year-ribbon__track {
    display: grid;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
  }
}

/* Layered 3D metric orbit, adapted from the supplied circular progress reference. */

.metric-orbit-display {
  display: none;
}

@media (min-width: 1181px) {
  .company-metrics .metric-focus {
    --metric-orbit-progress: 16.6667%;
    --metric-number-scale: 1;
  }

  .company-metrics .metric-focus[data-number-density="medium"] {
    --metric-number-scale: 0.86;
  }

  .company-metrics .metric-focus[data-number-density="compact"] {
    --metric-number-scale: 0.7;
  }

  .company-metrics .metric-focus::after {
    opacity: 0.44;
  }

  .company-metrics .metric-focus-meta {
    position: relative;
    z-index: 30;
  }

  .company-metrics .metric-orbit-display {
    position: absolute;
    z-index: 5;
    top: 66px;
    left: 50%;
    display: block;
    width: min(390px, 88%);
    aspect-ratio: 1;
    perspective: 720px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .company-metrics .metric-orbit-display::before {
    position: absolute;
    content: "";
    inset: 11%;
    border-radius: 50%;
    opacity: 0.52;
    background: radial-gradient(circle, rgba(226, 189, 120, 0.16), rgba(119, 229, 229, 0.035) 46%, transparent 70%);
    filter: blur(8px);
    transform: translateY(18%);
  }

  .company-metrics .metric-orbit-plane {
    position: absolute;
    inset: 0;
    transform: rotateX(56deg) rotateZ(-5deg) scale(0.88);
    transform-style: preserve-3d;
    transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .company-metrics .metric-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
    will-change: transform, filter, opacity;
  }

  .company-metrics .metric-orbit-ring--main {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(226, 189, 120, 0.24);
    background: rgba(4, 14, 22, 0.78);
    box-shadow:
      0 0 0 15px rgba(226, 189, 120, 0.025),
      0 24px 72px rgba(0, 0, 0, 0.42),
      inset 0 0 48px rgba(226, 189, 120, 0.035);
    transform: translate3d(-50%, -50%, 72px);
    animation: metricOrbitMain 3s ease-in-out infinite;
  }

  .company-metrics .metric-orbit-ring--main::before {
    position: absolute;
    content: "";
    inset: -11px;
    padding: 11px;
    border-radius: inherit;
    background: conic-gradient(
      from -90deg,
      #ffe8b1 0%,
      #b9853d var(--metric-orbit-progress),
      rgba(119, 229, 229, 0.11) var(--metric-orbit-progress),
      rgba(255, 255, 255, 0.045) 100%
    );
    filter: drop-shadow(0 0 15px rgba(226, 189, 120, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .company-metrics .metric-orbit-ring--main > i {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 18px;
    margin-left: -1px;
    background: rgba(5, 17, 26, 0.88);
    box-shadow: 0 0 0 1px rgba(226, 189, 120, 0.06);
    transform: rotate(calc(var(--orbit-i) * 60deg)) translateY(-158px);
    transform-origin: center 0;
  }

  .company-metrics .metric-orbit-ring--second {
    width: 236px;
    height: 236px;
    border: 7px solid rgba(119, 229, 229, 0.12);
    border-top-color: rgba(226, 189, 120, 0.45);
    border-right-color: rgba(226, 189, 120, 0.2);
    box-shadow: inset 0 0 32px rgba(119, 229, 229, 0.05);
    transform: translate3d(-50%, -50%, 25px);
    animation: metricOrbitSecond 3s ease-in-out infinite;
    animation-delay: 180ms;
  }

  .company-metrics .metric-orbit-ring--third {
    width: 156px;
    height: 156px;
    border: 2px solid rgba(226, 189, 120, 0.62);
    box-shadow: 0 0 24px rgba(226, 189, 120, 0.08), inset 0 0 22px rgba(226, 189, 120, 0.04);
    transform: translate3d(-50%, -50%, -18px);
    animation: metricOrbitThird 3s ease-in-out infinite;
    animation-delay: 330ms;
  }

  .company-metrics .metric-orbit-ring--base {
    width: 330px;
    height: 330px;
    border: 34px solid rgba(119, 229, 229, 0.035);
    box-shadow: inset 0 0 0 1px rgba(119, 229, 229, 0.07), 0 0 0 1px rgba(226, 189, 120, 0.06);
    transform: translate3d(-50%, -50%, -72px);
    animation: metricOrbitBase 3s ease-in-out infinite;
    animation-delay: 520ms;
  }

  .company-metrics .metric-orbit-ring--core {
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255, 235, 190, 0.48);
    background: conic-gradient(from 210deg, rgba(226, 189, 120, 0.7) 0 var(--metric-orbit-progress), rgba(6, 18, 27, 0.94) 0);
    box-shadow: 0 0 28px rgba(226, 189, 120, 0.12), inset 0 0 22px rgba(0, 0, 0, 0.5);
    transform: translate3d(-50%, -50%, 108px);
    animation: metricOrbitCore 3s ease-in-out infinite;
    animation-delay: 650ms;
  }

  .company-metrics .metric-focus > strong {
    position: absolute;
    z-index: 22;
    top: 226px;
    left: 50%;
    display: flex;
    width: auto;
    min-height: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    font-size: clamp(72px, 6.4vw, 96px);
    line-height: 0.82;
    transform: translate(-50%, -50%);
  }

  .company-metrics .metric-number-lockup {
    position: relative;
    inset: auto;
    display: flex;
    width: max-content;
    align-items: flex-end;
    justify-content: center;
    transform: scaleX(var(--metric-number-scale));
    transform-origin: center;
  }

  .company-metrics #metricFocusNumber {
    padding-block: 0.08em 0.12em;
    padding-inline-end: 0.1em;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.44)) drop-shadow(0 0 22px rgba(226, 189, 120, 0.12));
  }

  .company-metrics .metric-focus > strong::before,
  .company-metrics .metric-focus > strong::after {
    display: none;
  }

  .company-metrics .metric-focus h4 {
    position: absolute;
    z-index: 24;
    right: 32px;
    bottom: 82px;
    left: 32px;
    margin: 0;
    font-size: clamp(23px, 1.9vw, 29px);
    text-align: center;
  }

  .company-metrics .metric-focus > p {
    position: absolute;
    z-index: 24;
    right: 38px;
    bottom: 28px;
    left: 38px;
    max-width: none;
    margin: 0;
    font-size: 10.5px;
    line-height: 1.62;
    text-align: center;
  }

  .company-metrics .metric-signal-bars,
  .company-metrics .metric-focus-progress {
    display: none;
  }

  .company-metrics .metric-focus.is-switching {
    opacity: 0.72;
    transform: perspective(1100px) translate3d(0, 5px, 0) rotateY(4deg) rotateX(0.5deg);
  }

  .company-metrics .metric-focus.is-switching .metric-orbit-plane {
    transform: rotateX(62deg) rotateZ(7deg) scale(0.82);
  }

  .company-metrics .metric-focus.is-switching .metric-orbit-ring {
    filter: brightness(1.35) saturate(1.14);
  }

  @keyframes metricOrbitMain {
    0%, 100% { transform: translate3d(-50%, -50%, 72px); }
    50% { transform: translate3d(-50%, -47%, 86px); }
  }

  @keyframes metricOrbitSecond {
    0%, 100% { transform: translate3d(-50%, -50%, 25px); }
    50% { transform: translate3d(-50%, -43%, 39px); }
  }

  @keyframes metricOrbitThird {
    0%, 100% { transform: translate3d(-50%, -50%, -18px); }
    50% { transform: translate3d(-50%, -38%, -4px); }
  }

  @keyframes metricOrbitBase {
    0%, 100% { transform: translate3d(-50%, -50%, -72px); }
    50% { transform: translate3d(-50%, -44%, -58px); }
  }

  @keyframes metricOrbitCore {
    0%, 100% { transform: translate3d(-50%, -50%, 108px) scale(1); }
    50% { transform: translate3d(-50%, -45%, 122px) scale(1.06); }
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .company-metrics .metric-orbit-plane,
  .company-metrics .metric-orbit-ring {
    transition: none !important;
    animation: none !important;
  }
}

/* Continuous WebGL silk ribbon — replaces the former 3D card deck */

.year-ribbon__webgl {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.34));
}

.year-ribbon__depth-grid {
  position: absolute;
  inset: 8% 3% 3%;
  opacity: 0.34;
  background:
    linear-gradient(rgba(119, 229, 229, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 229, 229, 0.08) 1px, transparent 1px);
  background-size: 7.5% 12%;
  mask-image: radial-gradient(ellipse at 61% 52%, #000 2%, transparent 68%);
  transform: perspective(900px) rotateX(64deg) translateY(33%);
  transform-origin: center 74%;
  pointer-events: none;
}

.year-ribbon__silk-label {
  position: absolute;
  top: 64px;
  right: 54px;
  color: rgba(226, 189, 120, 0.62);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.year-ribbon__silk-label::before {
  display: block;
  width: 1px;
  height: 54px;
  margin: 0 auto 16px;
  content: "";
  background: linear-gradient(rgba(226, 189, 120, 0.7), transparent);
}

.year-ribbon__milestone {
  position: relative;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: #071019;
  cursor: pointer;
  transition:
    width 360ms cubic-bezier(0.16, 1, 0.3, 1),
    color 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.year-ribbon__milestone > span {
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.04em;
}

.year-ribbon__milestone > strong,
.year-ribbon__milestone > small {
  display: none;
}

.year-ribbon__milestone:hover,
.year-ribbon__milestone:focus-visible {
  color: #fff6d9;
  border-color: rgba(226, 189, 120, 0.72);
  outline: none;
  transform: translateY(-3px);
}

.year-ribbon__milestone[aria-current="true"] {
  width: 44px;
  color: #071019;
  border-color: var(--brass-bright);
  border-radius: 99px;
  background: linear-gradient(90deg, #b98b42, #f0d49c);
  box-shadow: 0 0 26px rgba(226, 189, 120, 0.28);
}

.year-ribbon__status-index {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.year-ribbon__status-index > span {
  color: #f2d49a;
  font: 700 clamp(62px, 6vw, 88px)/0.74 "Bahnschrift", sans-serif;
  letter-spacing: -0.08em;
  text-shadow: 0 0 36px rgba(226, 189, 120, 0.16);
}

.year-ribbon__status-index > em {
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.4);
  font: 620 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.year-ribbon.is-webgl-fallback .year-ribbon__viewport::before {
  position: absolute;
  content: "";
  top: 30%;
  left: 24%;
  width: 72%;
  height: 28%;
  border-radius: 50% 8% 50% 8%;
  background: linear-gradient(110deg, #6f4e1f, #f0d59a 24%, #8d6129 52%, #f4dfac 74%, #503716);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
  transform: rotate(-9deg) skewX(-18deg);
}

@media (min-width: 1181px) {
  .year-ribbon__ghost {
    top: auto;
    right: -0.03em;
    bottom: 0.05em;
    opacity: calc(0.16 + var(--ribbon-progress, 0) * 0.08);
    font-size: clamp(118px, 13vw, 198px);
    letter-spacing: -0.06em;
    -webkit-text-stroke-color: rgba(226, 189, 120, 0.15);
    transform: translate3d(calc(var(--ribbon-progress, 0) * -34px), 0, 0);
  }

  .year-ribbon__viewport {
    z-index: 4;
    inset: 62px 0 126px;
    overflow: hidden;
    perspective: none;
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 23%, #000 38%, #000 96%, transparent 100%);
  }

  .year-ribbon__track {
    position: absolute;
    z-index: 36;
    right: clamp(500px, 44vw, 590px);
    bottom: 35px;
    left: clamp(42px, 4vw, 62px);
    display: grid;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
    width: auto;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: none;
    transform-style: flat;
  }

  .year-ribbon__track::before,
  .year-ribbon__track::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 1px;
    pointer-events: none;
  }

  .year-ribbon__track::before {
    right: 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .year-ribbon__track::after {
    width: calc(var(--ribbon-progress, 0) * 100%);
    background: linear-gradient(90deg, var(--brass-bright), #fff0c6);
    box-shadow: 0 0 16px rgba(226, 189, 120, 0.35);
  }

  .year-ribbon__track > li {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .year-ribbon__status {
    z-index: 34;
    right: clamp(40px, 4vw, 62px);
    bottom: 28px;
    left: auto;
    width: min(470px, 41%);
    grid-template-columns: auto minmax(180px, 1fr) auto;
    gap: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(226, 189, 120, 0.28);
    background: linear-gradient(90deg, transparent, rgba(7, 16, 25, 0.5));
  }

  .year-ribbon__status-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    align-self: end;
    padding-bottom: 3px;
  }

  .year-ribbon__status-copy > strong {
    overflow: hidden;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 590;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon__status-copy > em {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon__controls {
    align-self: end;
    padding-bottom: 1px;
  }

  .year-ribbon__controls button {
    width: 38px;
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .year-ribbon {
    height: auto;
    min-height: 0;
  }

  .year-ribbon__sticky {
    position: relative;
    top: auto;
    height: 760px;
    min-height: 760px;
    max-height: none;
    padding: 0;
  }

  .year-ribbon__viewport {
    position: absolute;
    inset: 62px 0 126px;
  }

  .year-ribbon__track {
    display: grid;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
  }

  .year-ribbon__milestone,
  .year-ribbon__hint i {
    transition: none;
    animation: none !important;
  }
}

/* 14-year scroll-driven ribbon */

.year-ribbon,
.year-ribbon * {
  box-sizing: border-box;
}

.year-ribbon {
  position: relative;
  color: var(--text);
}

.year-ribbon__sticky {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 32%, rgba(119, 229, 229, 0.08), transparent 30%),
    radial-gradient(circle at 32% 82%, rgba(226, 189, 120, 0.1), transparent 34%),
    #071019;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.year-ribbon__sticky::before,
.year-ribbon__sticky::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.year-ribbon__sticky::before {
  inset: 0;
  opacity: 0.48;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.year-ribbon__sticky::after {
  right: -12%;
  bottom: -28%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 229, 229, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(119, 229, 229, 0.05), inset 0 0 80px rgba(226, 189, 120, 0.025);
}

.year-ribbon__canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.year-ribbon__intro {
  position: absolute;
  z-index: 30;
  top: clamp(34px, 4vw, 58px);
  left: clamp(30px, 4vw, 62px);
  width: min(390px, 34%);
}

.year-ribbon__intro h3 {
  margin-top: 22px;
  font-size: clamp(46px, 5.2vw, 80px);
  font-weight: 540;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.year-ribbon__intro h3 span {
  display: block;
}

.year-ribbon__intro h3 span + span {
  margin-top: 8px;
  color: var(--brass-bright);
  padding-left: 0.8em;
}

.year-ribbon__intro > p:not(.section-index) {
  max-width: 380px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.year-ribbon__hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: rgba(226, 189, 120, 0.78);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.year-ribbon__hint i {
  width: 30px;
  height: 1px;
  background: var(--brass-bright);
  box-shadow: 0 0 12px rgba(226, 189, 120, 0.46);
  animation: yearRibbonHintGlow 3s ease-in-out infinite;
}

@keyframes yearRibbonHintGlow {
  0%, 100% { opacity: 0.42; transform: scaleX(0.6); transform-origin: left; }
  50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

.year-ribbon__ghost {
  position: absolute;
  z-index: 0;
  top: -0.22em;
  right: -0.06em;
  color: transparent;
  opacity: calc(0.28 + var(--ribbon-progress, 0) * 0.14);
  font: 720 clamp(260px, 31vw, 470px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.11em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.2);
  text-shadow: 0 0 70px rgba(226, 189, 120, 0.035);
  transform: translate3d(calc(var(--ribbon-progress, 0) * -26px), calc(var(--ribbon-progress, 0) * 14px), 0);
  pointer-events: none;
}

.year-ribbon__viewport {
  position: absolute;
  z-index: 5;
  inset: 120px 0 108px;
  overflow: visible;
  perspective: 1380px;
  perspective-origin: 50% 57%;
}

.year-ribbon__orbit {
  position: absolute;
  z-index: 0;
  top: 64%;
  left: 50%;
  width: min(1120px, 90%);
  height: 250px;
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(226, 189, 120, 0.05), transparent 64%);
  box-shadow: 0 0 80px rgba(226, 189, 120, 0.035), inset 0 0 48px rgba(119, 229, 229, 0.028);
  transform: translate(-50%, -50%) rotateX(72deg);
  pointer-events: none;
}

.year-ribbon__track {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform-style: preserve-3d;
}

.year-ribbon__track > li {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.year-ribbon__card {
  position: absolute;
  z-index: var(--ribbon-z-index, 1);
  top: 59%;
  left: 62%;
  display: grid;
  width: clamp(286px, 25vw, 350px);
  height: clamp(350px, 48vh, 430px);
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  overflow: hidden;
  color: #13191d;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 4px;
  background: #eae6dd;
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(9, 18, 25, 0.06);
  opacity: var(--ribbon-opacity, 0);
  filter: brightness(var(--ribbon-brightness, 0.3)) saturate(var(--ribbon-saturation, 0.72));
  transform: var(--ribbon-transform, translate3d(-50%, -50%, -900px));
  transform-style: preserve-3d;
  cursor: pointer;
  pointer-events: var(--ribbon-pointer, none);
  transition:
    border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
    scale 300ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.year-ribbon__card:hover,
.year-ribbon__card:focus-visible {
  border-color: rgba(226, 189, 120, 0.9);
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(226, 189, 120, 0.16),
    inset 0 0 0 1px rgba(226, 189, 120, 0.42);
  outline: none;
  scale: 1.035;
}

.year-ribbon__card[aria-current="true"] {
  border-color: rgba(226, 189, 120, 0.94);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(226, 189, 120, 0.15),
    inset 0 0 0 1px rgba(226, 189, 120, 0.48);
}

.year-ribbon__card::after {
  position: absolute;
  z-index: 4;
  content: "";
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.3) 46%, transparent 68%);
  transform: translateX(-130%);
  transition: opacity 300ms ease;
  pointer-events: none;
}

.year-ribbon__card[aria-current="true"]::after {
  opacity: 0.48;
  animation: yearRibbonSweep 3s ease-in-out infinite;
}

@keyframes yearRibbonSweep {
  0%, 25% { transform: translateX(-130%); }
  68%, 100% { transform: translateX(130%); }
}

.year-ribbon__card-index {
  position: absolute;
  z-index: 6;
  top: 16px;
  right: 17px;
  display: grid;
  width: 35px;
  aspect-ratio: 1;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(5, 12, 17, 0.58);
  backdrop-filter: blur(10px);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.08em;
}

.year-ribbon__card figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(226, 189, 120, 0.24), transparent 36%),
    linear-gradient(145deg, #1d2a33, #071019 70%);
}

.year-ribbon__card figure::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 12, 17, 0.62));
  pointer-events: none;
}

.year-ribbon__card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.year-ribbon__card figure.is-contain img {
  padding: 22px;
  object-fit: contain;
}

.year-ribbon__card figure.is-product img {
  padding: 28px 42px 8px;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.34));
}

.year-ribbon__card figure.is-logo img {
  filter: brightness(0) invert(1);
}

.year-ribbon__card--type figure {
  display: flex;
  align-items: flex-end;
  padding: 28px 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(119, 229, 229, 0.16), transparent 34%),
    #0a151e;
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.year-ribbon__card--type figure > span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font: 650 clamp(32px, 3.1vw, 46px)/0.88 "Bahnschrift", sans-serif;
  letter-spacing: -0.065em;
  text-align: left;
}

.year-ribbon__card-copy {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 20px 24px 22px;
  text-align: left;
}

.year-ribbon__card-copy em {
  color: #8b672c;
  font: 680 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.year-ribbon__card-copy strong {
  margin-top: 10px;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 590;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.year-ribbon__card-copy small {
  margin-top: 10px;
  color: rgba(19, 25, 29, 0.64);
  font-size: 10px;
  line-height: 1.55;
}

.year-ribbon__status {
  position: absolute;
  z-index: 30;
  right: clamp(28px, 3.4vw, 52px);
  bottom: 28px;
  left: clamp(28px, 3.4vw, 52px);
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(360px, 1.45fr) auto;
  align-items: end;
  gap: 30px;
}

.year-ribbon__status-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 16px;
  align-items: baseline;
}

.year-ribbon__status-copy > span {
  grid-row: 1 / 3;
  color: var(--brass-bright);
  font: 680 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.year-ribbon__status-copy > strong {
  font-size: 17px;
  font-weight: 580;
}

.year-ribbon__status-copy > em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.year-ribbon__progress {
  position: relative;
  display: flex;
  height: 19px;
  align-items: center;
  justify-content: space-between;
}

.year-ribbon__progress::before,
.year-ribbon__progress > i {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 100%;
  height: 1px;
}

.year-ribbon__progress::before {
  background: rgba(255, 255, 255, 0.14);
}

.year-ribbon__progress > i {
  z-index: 1;
  background: linear-gradient(90deg, var(--brass-bright), #fff2c9);
  box-shadow: 0 0 16px rgba(226, 189, 120, 0.34);
  transform: scaleX(var(--ribbon-progress, 0));
  transform-origin: left;
}

.year-ribbon__progress > span {
  position: relative;
  z-index: 2;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: #071019;
}

.year-ribbon__controls {
  display: flex;
  gap: 8px;
}

.year-ribbon__controls button {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.year-ribbon__controls button:hover,
.year-ribbon__controls button:focus-visible {
  color: #071019;
  border-color: var(--brass-bright);
  background: var(--brass-bright);
  outline: none;
  transform: translateY(-2px);
}

.year-ribbon__controls button:disabled {
  color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
  cursor: not-allowed;
  transform: none;
}

@media (min-width: 1181px) {
  .company-method {
    gap: clamp(100px, 9vw, 148px);
  }

  .year-ribbon {
    height: 320vh;
    min-height: 2400px;
  }

  .year-ribbon__sticky {
    position: sticky;
    top: 68px;
    height: calc(100vh - 68px);
    min-height: 720px;
    max-height: 940px;
  }
}

@media (max-width: 1180px) {
  .year-ribbon__sticky {
    min-height: 920px;
  }

  .year-ribbon__intro {
    width: calc(100% - 60px);
  }

  .year-ribbon__viewport {
    top: 280px;
    right: 18px;
    bottom: 150px;
    left: 18px;
    overflow-x: auto;
    perspective: none;
  }

  .year-ribbon__track {
    position: relative;
    display: flex;
    width: max-content;
    gap: 16px;
    align-items: end;
  }

  .year-ribbon__track > li {
    position: relative;
    inset: auto;
    width: 286px;
    height: 430px;
  }

  .year-ribbon__card {
    top: auto;
    left: auto;
    width: 286px;
    height: 410px;
    opacity: 1;
    filter: none;
    transform: none !important;
    pointer-events: auto;
  }

  .year-ribbon__ghost,
  .year-ribbon__orbit,
  .year-ribbon__progress {
    display: none;
  }

  .year-ribbon__status {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .year-ribbon {
    height: auto;
    min-height: 0;
  }

  .year-ribbon__sticky {
    position: relative;
    top: auto;
    height: auto;
    max-height: none;
    padding: 310px 34px 120px;
  }

  .year-ribbon__viewport {
    position: relative;
    inset: auto;
    perspective: none;
  }

  .year-ribbon__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .year-ribbon__track > li {
    position: relative;
    inset: auto;
    min-height: 328px;
  }

  .year-ribbon__card {
    top: auto;
    left: auto;
    width: 100%;
    height: 328px;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .year-ribbon__card-copy {
    min-height: 116px;
  }

  .year-ribbon__ghost,
  .year-ribbon__orbit,
  .year-ribbon__progress {
    display: none;
  }
}

.company-visual {
  position: relative;
  align-self: stretch;
  min-height: 700px;
}

.company-photo {
  position: absolute;
  inset: 0 12% 14% 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.company-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 10, 15, 0.86));
}

.company-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.company-visual:hover .company-photo img {
  transform: scale(1.035);
}

.company-photo span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.group-logo-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(410px, 72%);
  padding: 26px 26px 18px;
  color: var(--text-dark);
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.group-logo-panel img {
  width: min(190px, 70%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.group-logo-panel p {
  margin-top: 14px;
  padding-top: 12px;
  color: var(--text-dark-muted);
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.metric-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(620px, 1.72fr);
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(42px, 5vw, 76px);
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  background:
    radial-gradient(circle at 9% 12%, rgba(196, 162, 104, 0.12), transparent 26%),
    linear-gradient(145deg, #f4f1e9, #e9e5da);
}

.metric-stage::before {
  position: absolute;
  z-index: -1;
  content: "ASSET";
  left: -0.035em;
  bottom: -0.18em;
  color: transparent;
  opacity: 0.42;
  font: 700 clamp(96px, 14vw, 220px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(16, 24, 32, 0.08);
  pointer-events: none;
}

.metric-stage-title {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-block: 6px;
}

.metric-stage-title h3 {
  margin-top: 20px;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 580;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

@media (min-width: 1181px) {
  .metric-stage-title h3 span {
    display: block;
  }
}

.metric-stage-title > p:last-child {
  margin-top: 24px;
  color: var(--text-dark-muted);
  font-size: 13px;
  line-height: 1.7;
}

.metric-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 48px;
  color: rgba(16, 24, 32, 0.52);
  font: 650 10px/1.3 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-hint i {
  position: relative;
  width: 32px;
  height: 1px;
  background: #9b6f2c;
}

.metric-hint i::after {
  position: absolute;
  content: "";
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9b6f2c;
  box-shadow: 0 0 0 5px rgba(155, 111, 44, 0.12);
}

.metric-observatory {
  --metric-x: 34%;
  --metric-y: 36%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: calc(var(--radius-lg) - 7px);
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 22%, rgba(119, 229, 229, 0.09), transparent 30%),
    linear-gradient(145deg, #101d29, #071019 68%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(4, 10, 16, 0.18);
}

.metric-observatory::after {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(226, 189, 120, 0.07) 50%, transparent 62%);
  background-size: 220% 100%;
  animation: metricScan 8s linear infinite;
}

.metric-observatory-glow {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  background: radial-gradient(
    340px circle at var(--metric-x) var(--metric-y),
    rgba(226, 189, 120, 0.17),
    rgba(119, 229, 229, 0.045) 42%,
    transparent 72%
  );
  transition: opacity 320ms ease;
}

@keyframes metricScan {
  from { background-position: 160% 0; }
  to { background-position: -120% 0; }
}

.metric-focus {
  position: absolute;
  z-index: 4;
  top: 8%;
  bottom: 8%;
  left: 6%;
  display: flex;
  width: 39%;
  flex-direction: column;
  padding-left: clamp(18px, 2vw, 32px);
  border-left: 1px solid rgba(226, 189, 120, 0.56);
  transition:
    opacity 180ms ease,
    transform 360ms var(--ease);
}

.metric-focus.is-switching {
  opacity: 0.28;
  transform: translate3d(0, 10px, 0);
}

.metric-focus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  color: var(--brass-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.metric-focus-meta em {
  color: rgba(255, 255, 255, 0.42);
}

.metric-focus > strong {
  display: flex;
  align-items: flex-end;
  margin-top: clamp(38px, 5vw, 68px);
  color: var(--brass-bright);
  font: 520 clamp(70px, 8.5vw, 128px)/0.78 "Bahnschrift", sans-serif;
  letter-spacing: -0.075em;
  text-shadow: 0 0 42px rgba(226, 189, 120, 0.15);
}

.metric-focus > strong small {
  margin: 0 0 0.08em 0.08em;
  font-size: 0.38em;
  letter-spacing: -0.04em;
}

.metric-focus h4 {
  margin-top: 26px;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 560;
  line-height: 1.2;
}

.metric-focus > p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.75;
}

.metric-focus-progress {
  overflow: hidden;
  width: 100%;
  height: 2px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.12);
}

.metric-focus-progress i {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--brass-bright), var(--cyan));
  box-shadow: 0 0 16px rgba(226, 189, 120, 0.42);
  animation: metricSignal 3.6s var(--ease) infinite alternate;
}

@keyframes metricSignal {
  from { transform: translateX(-30%); }
  to { transform: translateX(210%); }
}

.metric-constellation {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.metric-constellation path {
  fill: none;
  stroke: rgba(226, 189, 120, 0.22);
  stroke-width: 0.18;
  vector-effect: non-scaling-stroke;
}

.metric-constellation .metric-constellation-pulse {
  stroke: rgba(119, 229, 229, 0.72);
  stroke-width: 0.24;
  stroke-dasharray: 2.5 16;
  animation: constellationFlow 7s linear infinite;
}

@keyframes constellationFlow {
  to { stroke-dashoffset: -56; }
}

.metric-map {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.metric-node {
  position: absolute;
  display: grid;
  grid-template-columns: 26px 1fr;
  width: clamp(136px, 13vw, 176px);
  min-height: 72px;
  align-items: center;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(8, 18, 28, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(2, 7, 12, 0.22);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 280ms ease,
    transform 320ms var(--ease);
}

.metric-node:nth-child(1) { left: 52%; top: 14%; }
.metric-node:nth-child(2) { left: 81%; top: 22%; }
.metric-node:nth-child(3) { left: 66%; top: 43%; }
.metric-node:nth-child(4) { left: 85%; top: 51%; }
.metric-node:nth-child(5) { left: 60%; top: 73%; }
.metric-node:nth-child(6) { left: 81%; top: 82%; }

.metric-node span {
  grid-row: 1 / 3;
  align-self: stretch;
  padding-top: 5px;
  color: var(--brass-bright);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.1em;
}

.metric-node strong {
  padding-left: 10px;
  font: 540 clamp(20px, 2vw, 29px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.045em;
}

.metric-node em {
  padding: 6px 0 0 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.metric-node:hover,
.metric-node:focus-visible {
  color: #fff;
  border-color: rgba(226, 189, 120, 0.58);
  background: rgba(28, 42, 54, 0.92);
  box-shadow: 0 16px 44px rgba(2, 7, 12, 0.35), 0 0 0 1px rgba(226, 189, 120, 0.12);
  transform: translate(-50%, -50%) scale(1.045);
}

.metric-node.is-active {
  color: var(--ink);
  border-color: var(--brass-bright);
  background: var(--brass-bright);
  box-shadow: 0 18px 44px rgba(226, 189, 120, 0.2);
  transform: translate(-50%, -50%) scale(1.06);
}

.metric-node.is-active span,
.metric-node.is-active em {
  color: rgba(7, 16, 25, 0.66);
  border-color: rgba(7, 16, 25, 0.18);
}

.proof-marquee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 22px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.proof-signal-label {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 195px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 20px 24px 20px 0;
  color: var(--brass-bright);
  border-right: 1px solid var(--line);
  background: var(--ink);
  font: 650 9px/1.2 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.proof-signal-label span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.proof-signal-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(119, 229, 229, 0.08), 0 0 16px rgba(119, 229, 229, 0.55);
  animation: signalBlink 1.8s ease-in-out infinite;
}

.proof-signal-label em {
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
}

@keyframes signalBlink {
  50% { opacity: 0.38; transform: scale(0.72); }
}

.proof-window {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.proof-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  padding: 22px 0;
  animation: proofSignalFlow 34s linear infinite;
  will-change: transform;
}

.proof-marquee:hover .proof-track,
.proof-marquee:focus-within .proof-track {
  animation-play-state: paused;
}

.proof-group {
  display: flex;
  align-items: center;
  gap: 56px;
}

@keyframes proofSignalFlow {
  to { transform: translateX(calc(-50% - 28px)); }
}

.proof-group span {
  position: relative;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 13px;
}

.proof-group span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -31px;
  width: 6px;
  height: 1px;
  background: rgba(226, 189, 120, 0.38);
}

.proof-group strong {
  margin-right: 8px;
  color: var(--text);
  font: 550 22px/1 "Bahnschrift", sans-serif;
}

.group-honors {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(86px, 9vw, 140px);
  padding: clamp(34px, 5vw, 78px);
  border: 1px solid rgba(226, 189, 120, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 8%, rgba(226, 189, 120, 0.17), transparent 29%),
    radial-gradient(circle at 88% 76%, rgba(119, 229, 229, 0.08), transparent 31%),
    linear-gradient(145deg, #101b25, #08121c 58%, #071019);
}

.group-honors::before {
  position: absolute;
  z-index: -1;
  content: "HONORS";
  top: 32px;
  right: -0.04em;
  color: transparent;
  opacity: 0.32;
  font: 700 clamp(90px, 15vw, 230px)/0.8 "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.24);
  pointer-events: none;
}

.honors-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: end;
}

.honors-lockup {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: clamp(24px, 4vw, 62px);
  border-right: 1px solid rgba(226, 189, 120, 0.22);
}

.honors-lockup img {
  width: clamp(108px, 11vw, 158px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

.honors-lockup p {
  display: grid;
  gap: 7px;
}

.honors-lockup strong {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.honors-lockup span {
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.2em;
}

.honors-heading-copy {
  padding-top: 110px;
}

.group-honors .honors-heading-copy h3 {
  max-width: 970px;
  margin-top: 24px;
  font-size: clamp(44px, 5.9vw, 88px);
  font-weight: 540;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.honors-heading-copy > p:last-child {
  max-width: 720px;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
}

.honors-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(62px, 7vw, 104px);
  border-block: 1px solid rgba(226, 189, 120, 0.22);
}

.honors-facts article {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 22px;
  border-right: 1px solid rgba(226, 189, 120, 0.18);
}

.honors-facts article:last-child {
  border-right: 0;
}

.honors-facts strong {
  color: var(--brass-bright);
  font: 520 clamp(32px, 3.3vw, 52px)/1 "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: -0.045em;
}

.honors-facts em {
  margin-left: 5px;
  font-size: 0.48em;
  letter-spacing: 0;
}

.honors-facts span {
  color: var(--text-muted);
  font-size: 13px;
}

.honors-panorama {
  margin-top: clamp(46px, 6vw, 88px);
}

.honors-panorama-open,
.honor-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  background: #d79d39;
}

.honors-panorama-open {
  display: block;
  border-radius: var(--radius-md);
}

.honors-panorama-open::after,
.honor-stage::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 11, 17, 0.58));
  opacity: 0;
  transition: opacity 260ms ease;
}

.honors-panorama-open img {
  width: 100%;
  aspect-ratio: 1708 / 746;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.honors-panorama-open > span,
.honor-stage > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--text);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.honors-panorama-open:hover::after,
.honor-stage:hover::after,
.honors-panorama-open:focus-visible::after,
.honor-stage:focus-visible::after {
  opacity: 1;
}

.honors-panorama-open:hover img {
  transform: scale(1.018);
}

.honors-panorama-open:hover > span,
.honor-stage:hover > span,
.honors-panorama-open:focus-visible > span,
.honor-stage:focus-visible > span {
  opacity: 1;
  transform: none;
}

.honors-panorama figcaption {
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.honor-laurels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.honor-laurels li {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(245, 242, 234, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.honor-laurels li:nth-child(4n) {
  border-right: 0;
}

.honor-laurels span {
  flex: 0 0 auto;
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
}

.honor-explorer {
  margin-top: clamp(64px, 8vw, 118px);
}

.honor-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(4, 10, 16, 0.58);
  transition: opacity 220ms ease, transform 360ms var(--ease);
}

.honor-panel.is-switching {
  opacity: 0.44;
  transform: translateY(10px);
}

.honor-panel-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 64px);
}

.honor-panel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.honor-panel-meta em {
  color: var(--text-muted);
}

.honor-panel-copy h4 {
  margin-top: clamp(42px, 5vw, 76px);
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 550;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.honor-panel-copy > p {
  max-width: 560px;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

#honorHighlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin-top: 30px;
}

#honorHighlights li {
  position: relative;
  padding-left: 16px;
  color: rgba(245, 242, 234, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

#honorHighlights li::before {
  position: absolute;
  content: "";
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-bright);
}

.honor-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 38px;
}

.honor-nav button {
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.honor-nav button:hover {
  color: var(--ink);
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}

.honor-nav span {
  min-width: 58px;
  text-align: center;
  color: var(--text-muted);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.honor-stage {
  min-height: 610px;
  border-left: 1px solid rgba(226, 189, 120, 0.18);
  background:
    radial-gradient(circle at 72% 30%, rgba(226, 189, 120, 0.22), transparent 28%),
    #0d1721;
}

.honor-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 620ms var(--ease), filter 420ms ease;
}

.honor-stage:hover img {
  transform: scale(1.018);
}

.honor-panel[data-tone="paper"] .honor-stage {
  background: #ede9e2;
}

.honor-panel[data-tone="rose"] .honor-stage {
  background: #f3b4be;
}

.honor-panel[data-tone="blue"] .honor-stage {
  background: #082b61;
}

.honor-panel[data-tone="gold"] .honor-stage {
  background: #c5904c;
}

.honor-tabs {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) rgba(255, 255, 255, 0.05);
  margin-top: 18px;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.honor-tabs button {
  flex: 0 0 174px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 6px 8px;
  padding: 18px 14px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  border: 0;
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.honor-tabs button:first-child {
  border-radius: 14px 0 0 14px;
}

.honor-tabs button:last-child {
  border-right: 0;
  border-radius: 0 14px 14px 0;
}

.honor-tabs button:hover,
.honor-tabs button.is-active {
  color: var(--text);
  background: rgba(226, 189, 120, 0.12);
}

.honor-tabs button span {
  grid-row: 1 / 3;
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
}

.honor-tabs button strong {
  font-size: 14px;
}

.honor-tabs button em {
  color: var(--text-muted);
  font-size: 10px;
}

.honor-lightbox {
  width: min(1380px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  color: var(--text);
  background: #071019;
  border: 1px solid rgba(226, 189, 120, 0.35);
  border-radius: 22px;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.62);
}

.honor-lightbox::backdrop {
  background: rgba(1, 6, 10, 0.82);
  backdrop-filter: blur(14px);
}

.honor-lightbox form {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 0;
}

.honor-lightbox form button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--text);
  border: 0;
  border-radius: 50%;
  font-size: 26px;
}

.honor-lightbox figure {
  display: grid;
  place-items: center;
  min-height: 60vh;
  padding: 22px;
}

.honor-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
}

.honor-lightbox figcaption {
  width: 100%;
  padding: 14px 4px 2px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.company-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: clamp(58px, 7vw, 100px);
  padding-top: clamp(92px, 10vw, 150px);
}

.company-method-copy h3 {
  margin-top: 24px;
  max-width: 650px;
  font-size: clamp(36px, 4.7vw, 72px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.company-method-copy > p:last-child {
  margin-top: 30px;
  max-width: 570px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
}

.department-system {
  align-self: start;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-top: 1px solid var(--line);
}

.department-system summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  list-style: none;
}

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

.department-system summary i {
  position: relative;
  width: 24px;
  height: 24px;
}

.department-system summary i::before,
.department-system summary i::after {
  position: absolute;
  content: "";
  top: 11px;
  left: 3px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.department-system summary i::after {
  transform: rotate(90deg);
}

.department-system[open] summary i::after {
  transform: rotate(0);
}

.department-system ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.department-system li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 5px 16px;
  min-height: 98px;
  align-content: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.department-system li:nth-child(even) {
  border-right: 0;
}

.department-system span {
  grid-row: 1 / 3;
  color: var(--brass);
  font: 550 11px/1 "Bahnschrift", sans-serif;
}

.department-system strong {
  font-size: 15px;
  font-weight: 600;
}

.department-system em {
  color: var(--text-muted);
  font-size: 12px;
}

.department-card-face--front {
  display: contents;
}

.department-card-face--back {
  display: none;
}

.company > .source-note {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Cases */

.cases {
  color: var(--text-dark);
  background: var(--paper);
}

.cases .section-head,
.xhs-detail .section-head,
.douyin-detail .section-head {
  border-color: var(--line-dark);
}

.cases .section-meta {
  color: var(--text-dark-muted);
}

.cases-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  padding: clamp(72px, 8vw, 122px) 0 clamp(52px, 6vw, 86px);
}

.cases-intro .eyebrow {
  color: #906529;
}

.cases-intro h2 {
  margin-top: 22px;
}

.cases-intro > p {
  max-width: 540px;
  padding-bottom: 8px;
  color: var(--text-dark-muted);
  font-size: 17px;
  line-height: 1.85;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.case-tabs button {
  min-height: 46px;
  padding: 0 22px;
  color: var(--text-dark-muted);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.case-tabs button:hover,
.case-tabs button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.case-stage {
  --case-accent: var(--brass-bright);
  --case-accent-soft: rgba(226, 189, 120, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 680px;
  overflow: hidden;
  color: var(--text);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.case-stage[data-case="rio"] {
  --case-accent: #7ee0d7;
  --case-accent-soft: rgba(126, 224, 215, 0.13);
}

.case-stage[data-case="pidan"] {
  --case-accent: #e8a47e;
  --case-accent-soft: rgba(232, 164, 126, 0.13);
}

.case-stage[data-case="marvis"] {
  --case-accent: #c8db8c;
  --case-accent-soft: rgba(200, 219, 140, 0.13);
}

.case-signal {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.8vw, 58px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 48%, var(--case-accent-soft), transparent 34%),
    #0b1620;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.case-signal::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  opacity: 0.42;
  background: linear-gradient(115deg, transparent 0 48%, var(--case-accent-soft) 48.2% 48.4%, transparent 48.6%);
}

.case-signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font: 650 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.case-signal-head i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--case-accent);
  font-style: normal;
}

.case-signal-head b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--case-accent) 12%, transparent);
  animation: caseSignalPulse 1.8s ease-in-out infinite;
}

@keyframes caseSignalPulse {
  50% { opacity: 0.42; scale: 0.72; }
}

.case-number {
  position: relative;
  z-index: 2;
  margin-top: clamp(66px, 8vw, 118px);
  color: transparent;
  font: 420 clamp(112px, 13vw, 208px)/0.72 "Bahnschrift", sans-serif;
  letter-spacing: -0.085em;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--case-accent) 78%, white 8%);
  text-shadow: 0 0 72px var(--case-accent-soft);
  transition: opacity 180ms ease, filter 180ms ease, transform 420ms var(--ease);
}

.case-signal-field {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -9%;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--case-accent) 22%, transparent);
  border-radius: 50%;
  transform: translateY(-44%);
}

.case-signal-field > i {
  position: absolute;
  inset: calc(var(--ring, 0) * 11%);
  border: 1px solid color-mix(in srgb, var(--case-accent) 15%, transparent);
  border-radius: 50%;
}

.case-signal-field > i:nth-child(1) { --ring: 1; }
.case-signal-field > i:nth-child(2) { --ring: 2; }
.case-signal-field > i:nth-child(3) { --ring: 3; }
.case-signal-field > i:nth-child(4) { --ring: 4; }

.case-signal-field > span {
  position: absolute;
  inset: 50% 50% 50% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--case-accent));
  box-shadow: 16px 0 22px var(--case-accent-soft);
  transform-origin: right;
  animation: caseRadarSweep 8s linear infinite;
}

.case-signal-field > span::after {
  position: absolute;
  content: "";
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--case-accent);
  box-shadow: 0 0 22px var(--case-accent);
  transform: translateY(-50%);
}

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

.case-signal-route {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.case-signal-route i {
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.case-signal-route i::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--case-accent), transparent);
  animation: caseRouteFlow 2.8s ease-in-out infinite;
}

.case-signal-route i:nth-of-type(2)::after { animation-delay: 240ms; }
.case-signal-route i:nth-of-type(3)::after { animation-delay: 480ms; }

@keyframes caseRouteFlow {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.case-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(38px, 4vw, 68px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0%, var(--case-accent-soft), transparent 36%),
    var(--ink-2);
}

.case-content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.case-content-head > span {
  color: rgba(255, 255, 255, 0.35);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.case-label {
  color: var(--case-accent);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 360ms var(--ease);
}

.case-content h3 {
  margin-top: clamp(58px, 6vw, 92px);
  font-size: clamp(60px, 7vw, 108px);
  font-weight: 520;
  letter-spacing: -0.065em;
  transition: opacity 180ms ease, filter 180ms ease, transform 420ms var(--ease);
}

.case-content > #caseSummary {
  max-width: 600px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  transition: opacity 180ms ease, transform 420ms var(--ease);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 42px;
  background: transparent;
}

.case-metrics div {
  position: relative;
  min-width: 0;
  min-height: 142px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 220ms ease, background 220ms ease, transform 320ms var(--ease);
}

.case-metrics div:hover {
  border-color: color-mix(in srgb, var(--case-accent) 45%, transparent);
  background: var(--case-accent-soft);
  transform: translateY(-8px);
}

.case-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.34);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.case-metrics strong {
  display: block;
  margin-top: 28px;
  overflow-wrap: anywhere;
  color: var(--case-accent);
  font: 500 clamp(25px, 2.7vw, 42px)/1 "Bahnschrift", sans-serif;
}

.case-metrics span {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
}

.case-metrics i {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.case-metrics i::after {
  display: block;
  width: calc(34% + var(--metric-i) * 22%);
  height: 100%;
  content: "";
  background: var(--case-accent);
  box-shadow: 0 0 10px var(--case-accent-soft);
  transition: width 420ms var(--ease);
}

.case-metrics div:hover i::after { width: 100%; }

.case-stage.is-switching .case-number,
.case-stage.is-switching .case-label,
.case-stage.is-switching .case-content h3,
.case-stage.is-switching .case-content > #caseSummary,
.case-stage.is-switching .case-metrics {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(12px);
}

.case-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.case-nav button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.case-nav button:hover {
  color: var(--ink);
  background: var(--brass-bright);
}

.case-nav span {
  color: var(--text-muted);
  font: 600 11px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.growth-model {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  padding-top: clamp(80px, 9vw, 132px);
}

.growth-model h3 {
  margin-top: 20px;
  max-width: 420px;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 570;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.growth-model ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.growth-model li {
  min-height: 180px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.growth-model li span {
  color: #9b6f2c;
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.growth-model li strong {
  display: block;
  margin-top: 48px;
  font-size: 19px;
}

.growth-model li em {
  display: block;
  margin-top: 10px;
  color: var(--text-dark-muted);
  font-size: 12px;
}

/* Diagnosis */

.diagnosis {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.025) 58%),
    var(--ink);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 8vw, 130px);
  padding-top: clamp(74px, 8vw, 122px);
}

.diagnosis-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.diagnosis-copy h2 {
  margin-top: 22px;
}

.diagnosis-copy > p:nth-of-type(2) {
  max-width: 560px;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
}

.diagnosis-response {
  margin-top: 54px;
  padding: 28px;
  background: rgba(196, 162, 104, 0.1);
  border: 1px solid rgba(196, 162, 104, 0.34);
  border-radius: var(--radius-md);
}

.diagnosis-response span {
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.diagnosis-response strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 540;
  line-height: 1.65;
}

.diagnosis-list {
  border-top: 1px solid var(--line);
}

.diagnosis-list button {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 92px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  font-size: clamp(18px, 2vw, 28px);
  transition:
    color 200ms ease,
    padding 260ms var(--ease),
    background 200ms ease;
}

.diagnosis-list button span {
  color: var(--brass);
  font: 550 11px/1 "Bahnschrift", sans-serif;
}

.diagnosis-list button i {
  font-style: normal;
  font-size: 18px;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 200ms ease,
    transform 200ms var(--ease);
}

.diagnosis-list button:hover,
.diagnosis-list button.is-active {
  padding-inline: 22px;
  color: #fff;
  background: rgba(196, 162, 104, 0.08);
}

.diagnosis-list button:hover i,
.diagnosis-list button.is-active i {
  opacity: 1;
  transform: translate(0);
}

/* Engine overview */

.engine-overview {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background: #03080e;
  isolation: isolate;
}

.engine-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.engine-backdrop::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 60% 55%, black, transparent 70%);
}

.engine-backdrop span {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.engine-backdrop span:nth-child(1) {
  top: 12%;
  right: 9%;
}

.engine-backdrop span:nth-child(2) {
  top: 22%;
  right: 14%;
  width: 31vw;
  height: 31vw;
}

.engine-backdrop span:nth-child(3) {
  top: 31%;
  right: 19%;
  width: 20vw;
  height: 20vw;
}

.engine-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.engine-title {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  margin-top: clamp(58px, 7vw, 100px);
}

.engine-title h2 {
  grid-column: 1;
  margin-top: 20px;
}

.engine-explorer {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(52px, 7vw, 110px);
  margin-top: auto;
  padding-top: 76px;
}

.engine-rail {
  align-self: end;
  border-top: 1px solid var(--line);
}

.engine-rail button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 7px 16px;
  width: 100%;
  min-height: 102px;
  align-content: center;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition:
    color 220ms ease,
    background 220ms ease,
    padding 260ms var(--ease);
}

.engine-rail button:hover,
.engine-rail button.is-active {
  padding-inline: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.engine-rail button span {
  grid-row: 1 / 3;
  color: var(--brass);
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.engine-rail button strong {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 560;
}

.engine-rail button em {
  font-size: 12px;
}

.engine-display {
  position: relative;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(36px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 122, 69, 0.2), transparent 38%),
    var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: background 380ms ease;
}

.engine-display[data-active="geo"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 229, 229, 0.2), transparent 38%),
    var(--ink-2);
}

.engine-display[data-active="xhs"] {
  background:
    radial-gradient(circle at 100% 0%, rgba(204, 255, 74, 0.17), transparent 38%),
    var(--ink-2);
}

.engine-display-index {
  position: absolute;
  top: -16px;
  right: 26px;
  color: rgba(255, 255, 255, 0.05);
  font: 400 clamp(160px, 19vw, 310px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.08em;
}

.engine-display > p:first-of-type {
  position: relative;
  color: var(--orange);
  font: 650 11px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.engine-display[data-active="geo"] > p:first-of-type {
  color: var(--cyan);
}

.engine-display[data-active="xhs"] > p:first-of-type {
  color: var(--xhs);
}

.engine-display h3 {
  position: relative;
  margin-top: 18px;
  font-size: clamp(40px, 5.3vw, 82px);
  font-weight: 520;
  letter-spacing: -0.055em;
}

.engine-display > p:nth-of-type(2) {
  position: relative;
  max-width: 620px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.engine-display ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.engine-display li {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.engine-display a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: fit-content;
  min-width: 210px;
  margin-top: 38px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}

.engine-display a span {
  font-size: 19px;
}

/* Detail shared */

.engine-detail {
  position: relative;
}

.detail-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(70px, 9vw, 150px);
  padding-bottom: clamp(74px, 8vw, 126px);
}

.detail-head h2 {
  margin-top: 24px;
}

.detail-head h2 span {
  color: var(--brass);
}

.detail-head > p {
  max-width: 560px;
  padding-bottom: 8px;
  color: var(--text-dark-muted);
  font-size: 17px;
  line-height: 1.85;
}

/* Douyin */

.douyin-detail {
  color: var(--text-dark);
  background: var(--paper);
}

.funnel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(50px, 6vw, 90px);
  color: var(--text);
  background: #1b1612;
  border-radius: var(--radius-lg);
}

.funnel-copy .eyebrow {
  color: var(--orange);
}

.funnel-copy h3 {
  margin-top: 22px;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.funnel-copy > p:last-child {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.funnel ol {
  display: grid;
  align-content: center;
  gap: 10px;
}

.funnel li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 12px 22px;
  background: rgba(255, 122, 69, 0.08);
  border: 1px solid rgba(255, 122, 69, 0.26);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 16px 50%);
  transform-origin: left;
}

.funnel li:nth-child(1) {
  width: 100%;
}

.funnel li:nth-child(2) {
  width: 92%;
}

.funnel li:nth-child(3) {
  width: 83%;
}

.funnel li:nth-child(4) {
  width: 74%;
}

.funnel li:nth-child(5) {
  width: 65%;
}

.funnel li span {
  color: var(--orange);
  font: 600 22px/1 "Bahnschrift", sans-serif;
}

.funnel li strong {
  font-size: clamp(15px, 1.6vw, 20px);
}

.funnel li em {
  color: var(--text-muted);
  font-size: 11px;
  white-space: nowrap;
}

.cycle {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(56px, 8vw, 130px);
  padding-top: clamp(92px, 10vw, 150px);
}

.cycle-copy h3 {
  margin-top: 20px;
  max-width: 620px;
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.cycle-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.cycle-tabs button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--text-dark-muted);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  cursor: pointer;
}

.cycle-tabs button:hover,
.cycle-tabs button.is-active {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}

.cycle-panel {
  position: relative;
  min-height: 420px;
  padding: clamp(34px, 4.2vw, 64px);
  color: var(--text);
  background: #17120f;
  border-radius: var(--radius-lg);
}

.cycle-panel > span {
  color: var(--orange);
  font: 600 11px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.cycle-panel h4 {
  margin-top: 56px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 540;
  letter-spacing: -0.04em;
}

.cycle-panel > p {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.cycle-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
}

.cycle-panel li {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: #17120f;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: center;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(92px, 10vw, 150px);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-matrix article {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-matrix span {
  color: var(--orange);
  font: 600 12px/1 "Bahnschrift", sans-serif;
}

.service-matrix h3 {
  margin-top: 76px;
  font-size: clamp(21px, 2.3vw, 30px);
  font-weight: 560;
  line-height: 1.25;
}

.service-matrix p {
  margin-top: 20px;
  color: var(--text-dark-muted);
  font-size: 14px;
  line-height: 1.8;
}

.live-proof {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.63fr));
  gap: 8px;
  margin-top: clamp(92px, 10vw, 150px);
  min-height: 540px;
}

.live-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: var(--text);
  background: #17120f;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.live-proof-copy h3 {
  margin-top: 26px;
  font-size: clamp(31px, 3.7vw, 54px);
  font-weight: 540;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.live-proof-copy > p:last-child {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.live-proof figure {
  overflow: hidden;
}

.live-proof figure:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.live-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms var(--ease);
}

.live-proof figure:hover img {
  transform: scale(1.035);
}

/* GEO */

.geo-detail {
  color: var(--text);
  background:
    radial-gradient(circle at 80% 9%, rgba(119, 229, 229, 0.11), transparent 26%),
    #06121c;
}

.geo-detail .detail-head > p {
  color: var(--text-muted);
}

.geo-detail .detail-head h2 span {
  color: var(--cyan);
}

.geo-simulator {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: clamp(48px, 6vw, 86px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.simulator-copy .eyebrow {
  color: var(--cyan);
}

.simulator-copy h3 {
  margin-top: 22px;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.simulator-copy > p:last-of-type {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.prompt-chips button {
  min-height: 44px;
  padding: 0 17px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.prompt-chips button:hover,
.prompt-chips button.is-active {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.ai-window {
  overflow: hidden;
  color: var(--text-dark);
  background: #f4f7f5;
  border-radius: var(--radius-md);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.ai-window-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.74);
  background: #0e202b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-window-top > span {
  display: flex;
  gap: 6px;
}

.ai-window-top i {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.ai-window-top p {
  font: 600 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.ai-window-top em {
  justify-self: end;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 999px;
  font-size: 9px;
}

.ai-window form {
  padding: 24px 24px 18px;
}

.ai-window label {
  display: block;
  margin-bottom: 9px;
  color: var(--text-dark-muted);
  font-size: 11px;
  font-weight: 650;
}

.ai-window form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.ai-window input {
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 14px;
}

.ai-window form button {
  min-height: 50px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--cyan);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.ai-answer {
  margin: 0 24px 20px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 14px;
}

.ai-answer.is-generating {
  opacity: 0.4;
}

.ai-answer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark-muted);
  font-size: 11px;
}

.ai-answer-meta span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 8px;
  font: 700 10px/1 "Bahnschrift", sans-serif;
}

.ai-answer > p:nth-child(2) {
  margin-top: 18px;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.85;
}

.ai-citations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.ai-citations span {
  padding: 6px 9px;
  color: var(--text-dark-muted);
  background: #edf1ef;
  border-radius: 6px;
  font-size: 9px;
}

.simulator-note {
  padding: 0 24px 20px;
  color: rgba(16, 24, 32, 0.46);
  font-size: 10px;
}

.geo-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.geo-values article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.geo-values span {
  color: var(--cyan);
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.geo-values h3 {
  margin-top: 58px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 540;
}

.geo-values p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.benchmark {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  gap: clamp(56px, 8vw, 130px);
  padding-top: clamp(92px, 11vw, 168px);
}

.benchmark-visual {
  position: relative;
  min-height: 760px;
}

.benchmark-visual img:first-child {
  width: 78%;
  height: 82%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.benchmark-visual img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 46%;
  object-fit: cover;
  border: 8px solid #06121c;
  border-radius: var(--radius-md);
}

.benchmark-visual span {
  position: absolute;
  top: 26px;
  left: 26px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 999px;
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.benchmark-copy {
  align-self: center;
}

.benchmark-copy h3 {
  margin-top: 22px;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.benchmark-copy > p:nth-of-type(2) {
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}

.benchmark-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.benchmark-copy dl div {
  min-height: 116px;
  padding: 20px 14px;
  background: #06121c;
}

.benchmark-copy dt {
  color: var(--cyan);
  font: 500 clamp(25px, 2.8vw, 40px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.04em;
}

.benchmark-copy dd {
  margin-top: 13px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.4;
}

.benchmark-copy .source-note {
  margin-top: 24px;
}

/* Xiaohongshu */

.xhs-detail {
  color: var(--text-dark);
  background:
    radial-gradient(circle at 75% 8%, rgba(158, 195, 111, 0.18), transparent 25%),
    var(--paper-green);
}

.xhs-detail .detail-head h2 span {
  color: #456a2d;
}

.platform-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--text);
  background: #162115;
  border-radius: var(--radius-lg);
}

.platform-scale div {
  min-height: 230px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.platform-scale div:nth-child(3) {
  border-right: 0;
}

.platform-scale strong {
  display: block;
  color: var(--xhs);
  font: 500 clamp(42px, 6vw, 84px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.06em;
}

.platform-scale span {
  display: block;
  margin-top: 44px;
  color: var(--text-muted);
  font-size: 14px;
}

.platform-scale > p {
  grid-column: 1 / -1;
  padding: 16px 24px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
}

.xhs-loop {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 130px);
  padding-top: clamp(92px, 10vw, 150px);
}

.xhs-loop-copy .eyebrow {
  color: #456a2d;
}

.xhs-loop-copy h3 {
  margin-top: 22px;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.xhs-loop-copy > p:last-child {
  margin-top: 28px;
  color: var(--text-dark-muted);
  font-size: 16px;
  line-height: 1.85;
}

.xhs-loop ol {
  counter-reset: xhs-step;
}

.xhs-loop li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  border-top: 1px solid var(--line-dark);
}

.xhs-loop li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.xhs-loop li span {
  color: #456a2d;
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.xhs-loop li strong {
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 560;
}

.xhs-loop li em {
  color: var(--text-dark-muted);
  font-size: 12px;
}

.weighting {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  margin-top: clamp(92px, 10vw, 150px);
  padding: clamp(46px, 6vw, 86px);
  color: var(--text);
  background: #162115;
  border-radius: var(--radius-lg);
}

.weighting-chart {
  display: grid;
  place-items: center;
  min-height: 500px;
}

.weight-orbit {
  position: relative;
  width: min(380px, 32vw);
  aspect-ratio: 1;
  border: 1px solid rgba(204, 255, 74, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(204, 255, 74, 0.035),
    0 0 0 96px rgba(204, 255, 74, 0.02);
}

.weight-orbit::before,
.weight-orbit::after {
  position: absolute;
  content: "";
  inset: 17%;
  border: 1px solid rgba(204, 255, 74, 0.2);
  border-radius: 50%;
}

.weight-orbit::after {
  inset: 34%;
  background: rgba(204, 255, 74, 0.08);
}

.weight-core {
  position: absolute;
  z-index: 2;
  inset: 39%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--xhs);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.weight-orbit i {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--xhs);
  background: #162115;
  border: 1px solid rgba(204, 255, 74, 0.42);
  border-radius: 50%;
  font: 600 18px/1 "Bahnschrift", sans-serif;
}

.weight-40 {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.weight-30 {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

.weight-20 {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.weight-10 {
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
}

.weighting-copy h3 {
  margin-top: 22px;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.weighting-copy ul {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.weighting-copy li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.weighting-copy li strong {
  color: var(--xhs);
  font: 550 24px/1 "Bahnschrift", sans-serif;
}

.weighting-copy li span {
  color: var(--text-muted);
  font-size: 13px;
}

.weighting-copy .source-note {
  margin-top: 22px;
}

.xhs-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: clamp(92px, 10vw, 150px);
}

.xhs-cases article {
  overflow: hidden;
  color: var(--text);
  background: #162115;
  border-radius: var(--radius-lg);
}

.xhs-cases figure {
  height: 430px;
  overflow: hidden;
}

.xhs-cases img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.xhs-cases article:hover img {
  transform: scale(1.035);
}

.xhs-cases article > div {
  padding: clamp(30px, 4vw, 58px);
}

.xhs-cases article > div > p {
  color: var(--xhs);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.xhs-cases h3 {
  margin-top: 24px;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 540;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.xhs-cases dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.14);
}

.xhs-cases dl div {
  min-height: 100px;
  padding: 16px 12px;
  background: #162115;
}

.xhs-cases dt {
  color: var(--xhs);
  font: 550 clamp(23px, 2.8vw, 38px)/1 "Bahnschrift", sans-serif;
}

.xhs-cases dd {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.4;
}

/* Guancheng */

.guancheng {
  background:
    radial-gradient(circle at 15% 45%, rgba(196, 162, 104, 0.1), transparent 26%),
    var(--ink);
}

.region-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(70px, 9vw, 150px);
  padding: clamp(74px, 8vw, 126px) 0;
}

.region-intro h2 {
  margin-top: 22px;
}

.region-intro > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
}

.region-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  min-height: 720px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.region-stage {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.region-stage::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 10, 15, 0.94));
}

.region-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 300ms ease,
    transform 900ms var(--ease);
}

.region-stage.is-switching img {
  opacity: 0;
  transform: scale(1.03);
}

.region-overlay {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 42px;
  left: 40px;
}

.region-overlay > p:first-child {
  color: var(--brass-bright);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.region-overlay h3 {
  margin-top: 16px;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 520;
  letter-spacing: -0.065em;
}

.region-overlay > p:last-child {
  max-width: 610px;
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.region-tabs {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.region-tabs button {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 7px 14px;
  min-height: 150px;
  align-content: center;
  padding: 22px 28px;
  color: rgba(255, 255, 255, 0.44);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.region-tabs button:hover,
.region-tabs button.is-active {
  color: #fff;
  background: rgba(196, 162, 104, 0.08);
}

.region-tabs span {
  grid-row: 1 / 3;
  color: var(--brass);
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.region-tabs strong {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 540;
}

.region-tabs em {
  font-size: 12px;
}

.synergy {
  padding-top: clamp(92px, 10vw, 150px);
}

.synergy-title {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
  align-items: end;
}

.synergy-title h3 {
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.synergy ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.synergy li {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.synergy li span {
  color: var(--brass);
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.synergy li strong {
  display: block;
  margin-top: 76px;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 540;
}

.synergy li p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* Benefits */

.benefits {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  isolation: isolate;
  background: #050b11;
}

.benefits-media {
  position: absolute;
  z-index: -1;
  inset: 0;
}

.benefits-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.35);
}

.benefits-media div {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 16, 0.97) 0%, rgba(4, 10, 16, 0.78) 53%, rgba(4, 10, 16, 0.88)),
    linear-gradient(180deg, rgba(4, 10, 16, 0.74), rgba(4, 10, 16, 0.96));
}

.benefits-shell {
  min-height: 100svh;
}

.benefits-title {
  padding: clamp(70px, 8vw, 120px) 0 56px;
}

.benefits-title h2 {
  margin-top: 22px;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 66px minmax(250px, 0.7fr) minmax(300px, 1.3fr);
  gap: 24px;
  min-height: 128px;
  align-items: center;
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 260ms var(--ease),
    background 220ms ease;
}

.benefit-list article:hover {
  padding-inline: 24px;
  background: rgba(196, 162, 104, 0.08);
}

.benefit-list span {
  color: var(--brass);
  font: 600 11px/1 "Bahnschrift", sans-serif;
}

.benefit-list h3 {
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 540;
}

.benefit-list p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.benefits .source-note {
  margin-top: 28px;
}

/* Contact */

.contact {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: calc(var(--header-h) + 34px) var(--page-pad) 28px;
  isolation: isolate;
  background: #071019;
}

.contact-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 72%);
}

.contact-glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(226, 189, 120, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 80px rgba(226, 189, 120, 0.018),
    0 0 0 160px rgba(226, 189, 120, 0.012),
    0 0 140px rgba(226, 189, 120, 0.13);
}

.contact-word {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  font: 800 min(32vw, 540px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.11em;
  transform: translate(-51%, -50%);
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
  font: 600 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.contact-main {
  display: grid;
  align-content: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 0;
  text-align: center;
}

.contact-main h2 {
  margin-top: 24px;
  font-size: clamp(54px, 7.4vw, 116px);
}

.contact-main > p:nth-of-type(2) {
  max-width: 690px;
  margin-top: 34px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
}

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

.contact-link {
  display: inline-flex;
  min-width: 270px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--brass-bright);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

/* Business contact reveal — adapted from the supplied cut-panel card. */
body.is-business-contact-open {
  overflow: hidden;
}

.business-contact-dialog {
  width: min(520px, calc(100vw - 24px));
  max-width: none;
  overflow: visible;
  padding: 72px 100px;
  color: var(--text);
  background: transparent;
  border: 0;
  opacity: 0;
  transform: scale(0.95);
}

.business-contact-dialog[open] {
  animation: business-dialog-in 300ms var(--ease) forwards;
}

.business-contact-dialog.is-closing {
  animation: business-dialog-out 280ms ease forwards;
}

.business-contact-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 52%, rgba(208, 166, 91, 0.16), transparent 34%),
    rgba(2, 9, 14, 0.86);
  backdrop-filter: blur(10px);
  animation: business-backdrop-in 300ms ease forwards;
}

.business-contact-dialog.is-closing::backdrop {
  animation: business-backdrop-out 280ms ease forwards;
}

.business-contact-dialog__close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 3px;
  color: var(--brass-bright);
  background: rgba(5, 18, 27, 0.78);
  border: 1px solid rgba(226, 188, 113, 0.42);
  border-radius: 50%;
  cursor: pointer;
  font: 300 27px/1 "Bahnschrift", sans-serif;
  opacity: 0;
  transform: rotate(-16deg) scale(0.78);
  transition: color 200ms ease, background 200ms ease, opacity 260ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-dialog__close {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition-delay: 160ms;
}

.business-contact-dialog.is-revealed .business-contact-dialog__close:hover,
.business-contact-dialog.is-revealed .business-contact-dialog__close:focus-visible {
  color: var(--ink);
  background: var(--brass-bright);
  transform: rotate(8deg) scale(1.05);
  transition-delay: 0ms;
}

.business-contact-card {
  position: relative;
  width: 300px;
  height: 390px;
  margin: 0 auto;
  isolation: isolate;
}

.business-contact-card__shadow {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226, 188, 113, 0.84);
  box-shadow: rgba(208, 166, 91, 0.38) 0 32px 80px;
  opacity: 0.2;
  transform: scale(0.84);
  transition: opacity 420ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.business-contact-card__main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(0deg, #57411f 0%, #e4bb6c 54%, #6e5125 100%);
  box-shadow: rgba(208, 166, 91, 0.3) 0 8px 30px;
  clip-path: polygon(0 0, 100% 0, 100% 42px, 100% calc(100% - 42px), calc(100% - 42px) 100%, 42px 100%, 0 calc(100% - 42px));
  transform: translateY(18px) scale(0.94) translateZ(0);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.business-contact-card__main::after {
  position: absolute;
  z-index: 6;
  content: "";
  inset: -28% -70%;
  opacity: 0;
  background: linear-gradient(108deg, transparent 42%, rgba(255, 244, 211, 0.28) 49%, transparent 56%);
  pointer-events: none;
  transform: translateX(-38%);
}

.business-contact-card__top {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 150px solid #030b11;
  border-right: 150px solid transparent;
  border-left: 150px solid transparent;
  transition: top 500ms cubic-bezier(0.16, 1, 0.3, 1) 70ms;
}

.business-contact-card__side {
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 101%;
  background:
    linear-gradient(145deg, #02080d, #071722 72%, #0d202b);
  clip-path: polygon(0% 0%, 50% 0, 95% 45%, 100% 100%, 0% 100%);
  transform: translateX(-50%);
  transition: left 500ms cubic-bezier(0.16, 1, 0.3, 1) 80ms,
    right 500ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.business-contact-card__side--left {
  left: 0;
}

.business-contact-card__side--right {
  right: 0;
  transform: translateX(50%) scale(-1, 1);
}

.business-contact-card__title {
  position: absolute;
  z-index: 2;
  top: 68px;
  left: 50%;
  display: grid;
  width: 80%;
  justify-items: center;
  gap: 7px;
  color: #061018;
  opacity: 0;
  text-align: center;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 300ms ease 320ms, transform 300ms cubic-bezier(0.16, 1, 0.3, 1) 320ms;
}

.business-contact-card__title span {
  font: 700 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.22em;
}

.business-contact-card__title strong {
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.business-contact-card__title p {
  color: rgba(6, 16, 24, 0.66);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.business-contact-card__buttons {
  position: absolute;
  z-index: 5;
  bottom: 10px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.business-contact-card__buttons button {
  position: absolute;
  left: 50%;
  display: grid;
  width: 142px;
  height: 40px;
  grid-template-columns: 22px auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--brass-bright);
  background: #030b11;
  border: 1px solid rgba(226, 188, 113, 0.26);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -260px);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease,
    color 200ms ease,
    background 200ms ease;
}

.business-contact-card__buttons button:nth-child(1) { bottom: 102px; transition-delay: 260ms; }
.business-contact-card__buttons button:nth-child(2) { bottom: 56px; transition-delay: 180ms; }
.business-contact-card__buttons button:nth-child(3) { bottom: 10px; transition-delay: 100ms; }

.business-contact-card__buttons svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.business-contact-card__buttons span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.business-contact-card__buttons button:hover,
.business-contact-card__buttons button:focus-visible {
  color: #061018;
  background: var(--brass-bright);
}

.business-contact-card__buttons button:hover svg,
.business-contact-card__buttons button:focus-visible svg {
  transform: scale(1.16);
}

.business-contact-card__status {
  position: absolute;
  z-index: 4;
  top: 178px;
  left: 50%;
  width: 82%;
  margin: 0;
  color: rgba(6, 16, 24, 0.72);
  opacity: 0;
  text-align: center;
  transform: translateX(-50%) translateY(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 280ms ease 380ms, transform 280ms cubic-bezier(0.16, 1, 0.3, 1) 380ms;
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__shadow {
  opacity: 1;
  transform: scale(1);
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__main {
  transform: translateY(0) scale(1.04) translateZ(0);
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__main::after {
  animation: business-contact-sheen 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__top {
  top: -98px;
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__side--left {
  left: -72px;
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__side--right {
  right: -72px;
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__title,
.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__status {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__buttons button {
  opacity: 1;
  transform: translate(-50%, 0);
}

.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__buttons button:nth-child(1) { transition-delay: 360ms; }
.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__buttons button:nth-child(2) { transition-delay: 420ms; }
.business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__buttons button:nth-child(3) { transition-delay: 480ms; }

.business-contact-dialog.is-closing .business-contact-card__shadow,
.business-contact-dialog.is-closing .business-contact-card__main,
.business-contact-dialog.is-closing .business-contact-card__top,
.business-contact-dialog.is-closing .business-contact-card__side,
.business-contact-dialog.is-closing .business-contact-card__title,
.business-contact-dialog.is-closing .business-contact-card__status,
.business-contact-dialog.is-closing .business-contact-card__buttons button,
.business-contact-dialog.is-closing .business-contact-dialog__close {
  transition-duration: 240ms;
  transition-delay: 0ms;
}

@keyframes business-dialog-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes business-dialog-out {
  to { opacity: 0; transform: scale(0.97); }
}

@keyframes business-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes business-backdrop-out {
  to { opacity: 0; }
}

@keyframes business-contact-sheen {
  0% { opacity: 0; transform: translateX(-38%); }
  24% { opacity: 1; }
  100% { opacity: 0; transform: translateX(38%); }
}

@media (max-width: 560px) {
  .business-contact-dialog {
    width: calc(100vw - 16px);
    padding: 66px 28px 54px;
  }

  .business-contact-dialog__close {
    top: 14px;
    right: 18px;
  }

  .business-contact-card {
    width: 252px;
    height: 350px;
  }

  .business-contact-card__top {
    border-top-width: 126px;
    border-right-width: 126px;
    border-left-width: 126px;
  }

  .business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__top { top: -72px; }
  .business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__side--left { left: -48px; }
  .business-contact-dialog.is-revealed:not(.is-closing) .business-contact-card__side--right { right: -48px; }
  .business-contact-card__title strong { font-size: 31px; }
  .business-contact-card__status { top: 164px; }
}

@media (prefers-reduced-motion: reduce) {
  .business-contact-dialog,
  .business-contact-dialog::backdrop,
  .business-contact-card *,
  .business-contact-dialog__close {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}

.contact-actions > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}

.contact-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 42px;
  padding-top: 20px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.contact-footer div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-footer strong {
  color: var(--text);
  font-size: 14px;
}

.toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 40px));
  padding: 16px 20px;
  color: var(--ink);
  background: var(--text);
  border-radius: 12px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms var(--ease);
  font-size: 13px;
  line-height: 1.6;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop cursor companion */
.cursor-pufferfish {
  --puffer-tilt: 0deg;
  --puffer-bank-yaw: 0deg;
  --puffer-front-yaw: 62deg;
  --puffer-back-yaw: 0deg;
  --puffer-front-alpha: 0;
  --puffer-back-alpha: 1;
  --puffer-turn-blur: 0px;
  --puffer-turn-progress: 1;
  --puffer-pitch: 0deg;
  --puffer-depth-x: 0px;
  --puffer-turn-edge: 0;
  --puffer-shine-x: 65%;
  position: fixed;
  z-index: 190;
  top: 0;
  left: 0;
  display: none;
  width: 58px;
  height: 52px;
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
  perspective: 460px;
  transform: translate3d(-120px, -120px, 0) translate(-50%, -50%) rotate(var(--puffer-tilt));
  transform-style: preserve-3d;
  transform-origin: center;
  transition: opacity 280ms ease;
  will-change: transform, opacity;
  contain: layout style;
}

.cursor-pufferfish::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 7px 6px 5px;
  border-radius: 50%;
  opacity: calc(0.18 + var(--puffer-turn-edge) * 0.72);
  background:
    radial-gradient(circle at var(--puffer-shine-x) 28%, rgba(255, 238, 189, 0.82), transparent 36%),
    radial-gradient(circle at 48% 56%, rgba(165, 112, 44, 0.78), rgba(49, 30, 12, 0.22) 72%);
  box-shadow: inset -8px -6px 16px rgba(33, 20, 8, 0.34), 0 0 18px rgba(226, 189, 120, 0.2);
  filter: blur(calc(1px + var(--puffer-turn-edge) * 0.8px));
  transform: translateZ(-12px) scale(calc(0.93 + var(--puffer-turn-edge) * 0.07));
  transition: opacity 120ms linear;
}

.cursor-pufferfish.is-visible {
  opacity: 0.92;
}

.cursor-pufferfish__swim {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 8px rgba(226, 189, 120, 0.18));
  transform: rotateY(var(--puffer-bank-yaw)) rotateX(var(--puffer-pitch)) translateZ(7px);
  transform-origin: center;
  transform-style: preserve-3d;
  animation: puffer-breathe 2.8s ease-in-out infinite;
  will-change: transform;
}

.cursor-pufferfish__swim::before,
.cursor-pufferfish__swim::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  -webkit-mask: url("./assets/cursor-pufferfish-user-v1-transparent.png") center / contain no-repeat;
  mask: url("./assets/cursor-pufferfish-user-v1-transparent.png") center / contain no-repeat;
}

.cursor-pufferfish__swim::before {
  z-index: 0;
  opacity: calc(var(--puffer-turn-edge) * 0.42);
  background: #2d1c0d;
  filter: blur(1.4px);
  transform: translate3d(var(--puffer-depth-x), 2.5px, -14px) scale(0.985);
}

.cursor-pufferfish__swim::after {
  z-index: 3;
  opacity: calc(var(--puffer-turn-edge) * 0.52);
  background: radial-gradient(
    circle at var(--puffer-shine-x) 28%,
    rgba(255, 248, 221, 0.78) 0%,
    rgba(255, 226, 158, 0.22) 24%,
    transparent 52%
  );
  mix-blend-mode: screen;
  transform: translateZ(12px);
  transition: background-position 120ms linear;
}

.cursor-pufferfish img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  object-fit: contain;
  backface-visibility: hidden;
  filter: blur(var(--puffer-turn-blur));
  transform-origin: center;
  will-change: opacity, transform, filter;
}

.cursor-pufferfish__face--front {
  opacity: var(--puffer-front-alpha);
  transform: rotateY(var(--puffer-front-yaw)) translateZ(7px);
}

.cursor-pufferfish__face--back {
  opacity: var(--puffer-back-alpha);
  transform: rotateY(var(--puffer-back-yaw)) scaleX(-1) translateZ(7px);
}

.cursor-pufferfish__tail {
  transform-box: fill-box;
  transform-origin: right center;
  animation: puffer-tail 520ms ease-in-out infinite alternate;
}

.cursor-pufferfish__fin {
  transform-box: fill-box;
  transform-origin: top center;
  animation: puffer-fin 680ms ease-in-out infinite alternate;
}

.cursor-pufferfish__bubbles circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: puffer-bubble 1.8s ease-out infinite;
}

.cursor-pufferfish__bubbles circle:last-child {
  animation-delay: 620ms;
}

.cursor-pufferfish__echo {
  position: absolute;
  z-index: 0;
  inset: 8px 4px 3px 10px;
  border: 1px solid rgba(226, 189, 120, 0.16);
  border-radius: 50%;
  opacity: 0.46;
  transform: translateZ(-22px) rotateX(58deg);
  transform-style: preserve-3d;
  animation: puffer-echo 2.8s ease-out infinite;
}

@keyframes puffer-breathe {
  0%, 100% { scale: 0.97; }
  50% { scale: 1.02; }
}

@keyframes puffer-tail {
  from { rotate: -8deg; }
  to { rotate: 13deg; }
}

@keyframes puffer-fin {
  from { rotate: -4deg; }
  to { rotate: 11deg; }
}

@keyframes puffer-bubble {
  0%, 18% { opacity: 0; translate: 0 2px; scale: 0.65; }
  34% { opacity: 0.8; }
  82%, 100% { opacity: 0; translate: 7px -8px; scale: 1.08; }
}

@keyframes puffer-echo {
  0%, 46% { opacity: 0; scale: 0.76; }
  68% { opacity: 0.35; }
  100% { opacity: 0; scale: 1.18; }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-pufferfish {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-pufferfish {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle i {
    position: absolute;
    width: 16px;
    height: 1px;
    background: currentColor;
    transition:
      transform 220ms ease,
      top 220ms ease;
  }

  .menu-toggle i:first-of-type {
    top: 19px;
  }

  .menu-toggle i:last-of-type {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    top: 22px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    top: 22px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 180;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-h) + 60px) var(--page-pad) 38px;
    color: var(--text);
    background:
      radial-gradient(circle at 80% 20%, rgba(196, 162, 104, 0.18), transparent 30%),
      var(--ink);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 280ms ease,
      transform 280ms var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu nav {
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    min-height: 78px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(24px, 5vw, 42px);
  }

  .mobile-menu nav span {
    color: var(--brass);
    font: 600 10px/1 "Bahnschrift", sans-serif;
  }

  .mobile-menu > p {
    color: var(--text-muted);
    font: 600 10px/1.6 "Bahnschrift", sans-serif;
    letter-spacing: 0.12em;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-bottom {
    align-items: flex-start;
  }

  .hero-bottom > p {
    max-width: 450px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .company-intro,
  .benchmark {
    grid-template-columns: 1fr 0.82fr;
    gap: 60px;
  }

  .company-visual {
    min-height: 620px;
  }

  .honor-panel {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    min-height: 560px;
  }

  .honor-stage {
    min-height: 560px;
  }

  .metric-stage {
    grid-template-columns: 1fr;
  }

  .metric-stage-title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .metric-stage-title .section-index,
  .metric-hint {
    grid-column: 1 / -1;
  }

  .metric-stage-title > p:last-child {
    align-self: end;
    margin: 0;
  }

  .metric-hint {
    margin-top: 4px;
    padding-top: 0;
  }

  .company-method {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .diagnosis-layout {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .case-stage {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .engine-explorer {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 44px;
  }

  .funnel,
  .geo-simulator,
  .weighting {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
  }

  .service-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-proof {
    grid-template-columns: repeat(3, 1fr);
  }

  .live-proof-copy {
    grid-column: 1 / -1;
    min-height: 300px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .live-proof figure:last-child {
    border-radius: 0 0 var(--radius-md) 0;
  }

  .benchmark-visual {
    min-height: 650px;
  }

  .region-explorer {
    grid-template-columns: 1fr 0.7fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
    --page-pad: 22px;
    --section-pad: 96px;
    --radius-lg: 24px;
    --radius-md: 18px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy {
    padding-bottom: 250px;
  }

  .hero-title {
    font-size: clamp(50px, 10.6vw, 88px);
  }

  .hero-bottom {
    flex-direction: column;
    gap: 22px;
  }

  .hero-bottom > p {
    max-width: 640px;
  }

  .company-intro,
  .company-method,
  .cases-intro,
  .growth-model,
  .diagnosis-layout,
  .engine-title,
  .detail-head,
  .funnel,
  .cycle,
  .geo-simulator,
  .benchmark,
  .xhs-loop,
  .weighting,
  .region-intro,
  .synergy-title {
    grid-template-columns: 1fr;
  }

  .company-intro {
    gap: 70px;
  }

  .company-visual {
    min-height: 700px;
  }

  .honors-heading {
    grid-template-columns: 1fr;
  }

  .honors-lockup {
    min-height: 180px;
    flex-direction: row;
    align-items: flex-end;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(226, 189, 120, 0.22);
  }

  .honors-lockup img {
    width: 116px;
  }

  .honors-heading-copy {
    padding-top: 0;
  }

  .honors-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .honors-facts article:nth-child(3) {
    border-right: 0;
  }

  .honors-facts article:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(226, 189, 120, 0.18);
  }

  .honor-laurels {
    grid-template-columns: repeat(2, 1fr);
  }

  .honor-laurels li:nth-child(2n) {
    border-right: 0;
  }

  .honor-laurels li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .honor-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .honor-panel-copy {
    min-height: 520px;
  }

  .honor-stage {
    min-height: 520px;
    border-top: 1px solid rgba(226, 189, 120, 0.18);
    border-left: 0;
  }

  .company-method {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .department-system ol {
    grid-template-columns: 1fr;
  }

  .department-system li {
    border-right: 0;
  }

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

  .case-content {
    min-height: 520px;
  }

  .growth-model ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .diagnosis-copy {
    position: static;
  }

  .engine-title {
    display: block;
  }

  .engine-explorer {
    grid-template-columns: 1fr;
  }

  .engine-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .engine-rail button {
    grid-template-columns: 1fr;
    min-height: 130px;
    padding: 20px;
    border-right: 1px solid var(--line);
  }

  .engine-rail button span {
    grid-row: auto;
  }

  .engine-display {
    min-height: 520px;
  }

  .detail-head {
    gap: 36px;
  }

  .detail-head > p {
    max-width: 680px;
  }

  .funnel,
  .geo-simulator,
  .weighting {
    gap: 50px;
  }

  .cycle {
    gap: 44px;
  }

  .geo-values {
    grid-template-columns: 1fr;
  }

  .geo-values article {
    min-height: 190px;
  }

  .geo-values h3 {
    margin-top: 34px;
  }

  .benchmark {
    gap: 64px;
  }

  .benchmark-visual {
    min-height: 740px;
  }

  .weight-orbit {
    width: min(440px, 70vw);
  }

  .xhs-cases {
    grid-template-columns: 1fr;
  }

  .region-explorer {
    grid-template-columns: 1fr;
  }

  .region-stage {
    min-height: 680px;
  }

  .region-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .region-tabs button {
    min-height: 150px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .synergy-title {
    gap: 24px;
  }

  .synergy ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-list article {
    grid-template-columns: 48px 1fr;
  }

  .benefit-list p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
    --section-pad: 82px;
    --header-h: 68px;
    --radius-lg: 20px;
    --radius-md: 15px;
  }

  .site-header {
    gap: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

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

  .site-header.is-scrolled {
    height: 60px;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: calc(var(--header-h) + 50px);
    padding-bottom: 28px;
  }

  .hero-media video,
  .hero-fallback {
    object-position: 58% center;
  }

  .hero-fallback {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 8, 13, 0.52), rgba(3, 9, 14, 0.58) 28%, rgba(3, 8, 13, 0.92) 76%, #03080d),
      linear-gradient(90deg, rgba(2, 8, 13, 0.74), transparent);
  }

  .hero-grid {
    background-size: 64px 64px;
  }

  .hero-topline {
    top: calc(var(--header-h) + 15px);
  }

  .hero-topline span:last-child {
    display: none;
  }

  .hero-copy {
    align-self: center;
    padding: 90px 0 310px;
  }

  .hero-copy .eyebrow {
    font-size: 10px;
  }

  .hero-title {
    margin-top: 16px;
    font-size: clamp(46px, 14.2vw, 68px);
    line-height: 0.99;
  }

  .hero-bottom {
    right: 18px;
    bottom: 26px;
    left: 18px;
    gap: 18px;
    padding-top: 16px;
  }

  .hero-bottom > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .button-primary {
    grid-column: 1 / -1;
  }

  .section-head {
    padding-bottom: 17px;
  }

  .section-meta {
    max-width: 170px;
    font-size: 9px;
    line-height: 1.4;
    text-align: right;
  }

  .company-copy h2,
  .cases-intro h2,
  .diagnosis-copy h2,
  .engine-title h2,
  .detail-head h2,
  .region-intro h2,
  .benefits-title h2,
  .contact-main h2 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  .lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .company-intro {
    padding-block: 58px 76px;
  }

  .dual-origin {
    grid-template-columns: 1fr;
  }

  .dual-origin article {
    min-height: 210px;
  }

  .dual-origin h3 {
    margin-top: 42px;
  }

  .company-visual {
    min-height: 520px;
  }

  .company-photo {
    inset: 0 8% 16% 0;
  }

  .group-logo-panel {
    width: 84%;
    padding: 18px;
  }

  .group-logo-panel img {
    width: 112px;
  }

  .metric-stage {
    padding: 26px 18px;
  }

  .metric-stage-title {
    grid-template-columns: 1fr;
  }

  .metric-stage-title h3 {
    font-size: 34px;
  }

  .metric-hint {
    display: none;
  }

  .metric-observatory {
    min-height: 610px;
    border-radius: 18px;
  }

  .metric-focus {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 330px;
    margin: 18px;
    padding: 24px;
    border: 1px solid rgba(226, 189, 120, 0.2);
    border-radius: 16px;
    background: rgba(7, 16, 25, 0.7);
  }

  .metric-focus > strong {
    margin-top: 42px;
    font-size: clamp(74px, 22vw, 104px);
  }

  .metric-focus > p {
    font-size: 12px;
  }

  .metric-constellation {
    display: none;
  }

  .metric-map {
    position: relative;
    inset: auto;
    display: flex;
    gap: 10px;
    margin-top: 4px;
    padding: 16px 18px 22px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .metric-map::-webkit-scrollbar {
    display: none;
  }

  .metric-node,
  .metric-node:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 154px;
    width: 154px;
    min-height: 86px;
    transform: none;
    scroll-snap-align: center;
  }

  .metric-node:hover,
  .metric-node:focus-visible,
  .metric-node.is-active {
    transform: translateY(-3px);
  }

  .proof-marquee {
    grid-template-columns: 1fr;
  }

  .proof-signal-label {
    min-width: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-track,
  .proof-group {
    gap: 34px;
  }

  .proof-track {
    animation-duration: 27s;
  }

  .group-honors {
    margin-top: 72px;
    padding: 30px 16px 22px;
  }

  .group-honors::before {
    top: 32px;
    font-size: 92px;
  }

  .honors-heading {
    gap: 42px;
  }

  .honors-lockup {
    min-height: 138px;
    padding-bottom: 20px;
  }

  .honors-lockup img {
    width: 88px;
  }

  .honors-lockup strong {
    font-size: 15px;
  }

  .honors-heading-copy h3 {
    margin-top: 19px;
    font-size: clamp(38px, 11.5vw, 48px);
  }

  .honors-heading-copy > p:last-child {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.75;
  }

  .honors-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
  }

  .honors-facts article {
    min-height: 126px;
    padding: 22px 14px;
  }

  .honors-facts article:nth-child(odd) {
    border-right: 1px solid rgba(226, 189, 120, 0.18);
  }

  .honors-facts article:nth-child(even) {
    border-right: 0;
  }

  .honors-facts article:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(226, 189, 120, 0.18);
  }

  .honors-facts article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .honors-panorama {
    margin-top: 42px;
  }

  .honors-panorama-open > span,
  .honor-stage > span {
    right: 12px;
    bottom: 12px;
    opacity: 1;
    transform: none;
  }

  .honor-laurels {
    grid-template-columns: 1fr;
  }

  .honor-laurels li,
  .honor-laurels li:nth-child(odd) {
    min-height: 66px;
    border-right: 0;
  }

  .honor-explorer {
    margin-top: 58px;
  }

  .honor-panel {
    border-radius: var(--radius-md);
  }

  .honor-panel-copy {
    min-height: 540px;
    padding: 26px 20px;
  }

  .honor-panel-copy h4 {
    margin-top: 44px;
    font-size: 38px;
  }

  .honor-panel-copy > p {
    font-size: 14px;
    line-height: 1.75;
  }

  #honorHighlights {
    grid-template-columns: 1fr;
  }

  .honor-stage {
    min-height: 300px;
  }

  .honor-tabs button {
    flex-basis: 152px;
    min-height: 86px;
  }

  .honor-lightbox {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 16px;
  }

  .honor-lightbox figure {
    min-height: 50vh;
    padding: 12px;
  }

  .honor-lightbox img {
    max-height: calc(100vh - 100px);
  }

  .company-method-copy h3,
  .funnel-copy h3,
  .cycle-copy h3,
  .simulator-copy h3,
  .benchmark-copy h3,
  .xhs-loop-copy h3,
  .weighting-copy h3,
  .synergy-title h3 {
    font-size: 38px;
  }

  .department-system summary {
    min-height: 72px;
    font-size: 16px;
  }

  .department-system li {
    min-height: 86px;
    padding-inline: 8px;
  }

  .cases-intro {
    gap: 28px;
    padding-block: 58px 44px;
  }

  .cases-intro > p,
  .detail-head > p,
  .region-intro > p {
    font-size: 15px;
  }

  .case-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

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

  .case-tabs button {
    flex: 0 0 auto;
  }

  .case-content {
    min-height: 500px;
    padding: 30px 22px;
  }

  .case-content h3 {
    font-size: 54px;
  }

  .case-metrics div {
    min-height: 104px;
    padding-inline: 8px;
  }

  .case-metrics strong {
    font-size: 27px;
  }

  .case-metrics span {
    font-size: 10px;
  }

  .growth-model ol {
    grid-template-columns: 1fr 1fr;
  }

  .growth-model li {
    min-height: 150px;
    padding: 18px;
  }

  .growth-model li strong {
    margin-top: 35px;
    font-size: 16px;
  }

  .diagnosis-layout {
    gap: 48px;
  }

  .diagnosis-response {
    margin-top: 36px;
    padding: 22px;
  }

  .diagnosis-list button {
    grid-template-columns: 34px 1fr auto;
    min-height: 78px;
    font-size: 17px;
  }

  .engine-shell {
    min-height: auto;
  }

  .engine-explorer {
    padding-top: 48px;
  }

  .engine-rail {
    grid-template-columns: 1fr;
  }

  .engine-rail button {
    grid-template-columns: 38px 1fr;
    min-height: 82px;
    border-right: 0;
  }

  .engine-rail button span {
    grid-row: 1 / 3;
  }

  .engine-display {
    min-height: 530px;
    padding: 28px 22px;
  }

  .engine-display-index {
    font-size: 170px;
  }

  .engine-display h3 {
    font-size: 46px;
  }

  .engine-display > p:nth-of-type(2) {
    font-size: 15px;
  }

  .detail-head {
    gap: 28px;
    padding-bottom: 58px;
  }

  .funnel,
  .geo-simulator,
  .weighting {
    padding: 28px 20px;
  }

  .funnel ol {
    gap: 7px;
  }

  .funnel li {
    grid-template-columns: 44px 1fr;
    min-height: 74px;
    padding: 10px 18px;
  }

  .funnel li:nth-child(n) {
    width: 100%;
  }

  .funnel li em {
    grid-column: 2;
    white-space: normal;
    line-height: 1.4;
  }

  .cycle-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .cycle-tabs button {
    flex: 0 0 auto;
  }

  .cycle-panel {
    min-height: 440px;
    padding: 28px 22px;
  }

  .cycle-panel h4 {
    margin-top: 44px;
    font-size: 38px;
  }

  .cycle-panel ul {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .cycle-panel li {
    min-height: 60px;
  }

  .service-matrix {
    grid-template-columns: 1fr;
  }

  .service-matrix article {
    min-height: 260px;
  }

  .service-matrix h3 {
    margin-top: 52px;
    font-size: 26px;
  }

  .live-proof {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .live-proof-copy {
    min-height: 330px;
    padding: 28px 22px;
  }

  .live-proof figure {
    height: 380px;
  }

  .live-proof figure:last-child {
    grid-column: 1 / -1;
    height: 440px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .geo-simulator {
    gap: 42px;
  }

  .prompt-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .prompt-chips button {
    flex: 0 0 auto;
  }

  .ai-window form > div {
    grid-template-columns: 1fr;
  }

  .ai-window form button {
    min-height: 46px;
  }

  .ai-window input {
    font-size: 13px;
  }

  .ai-window-top {
    grid-template-columns: 1fr auto;
  }

  .ai-window-top > span {
    display: none;
  }

  .geo-values article {
    min-height: 180px;
    padding: 24px;
  }

  .benchmark-visual {
    min-height: 530px;
  }

  .benchmark-visual img:first-child {
    width: 86%;
  }

  .benchmark-visual img:nth-child(2) {
    width: 53%;
    height: 42%;
  }

  .benchmark-copy dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-scale {
    grid-template-columns: 1fr;
  }

  .platform-scale div {
    min-height: 155px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .platform-scale strong {
    font-size: 52px;
  }

  .platform-scale span {
    margin-top: 24px;
  }

  .xhs-loop li {
    grid-template-columns: 34px 1fr;
  }

  .xhs-loop li em {
    grid-column: 2;
  }

  .weighting-chart {
    min-height: 380px;
  }

  .weight-orbit {
    width: 250px;
  }

  .weight-orbit i {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .weighting-copy li {
    grid-template-columns: 56px 1fr;
  }

  .xhs-cases figure {
    height: 360px;
  }

  .xhs-cases article > div {
    padding: 28px 22px;
  }

  .xhs-cases h3 {
    font-size: 32px;
  }

  .region-intro {
    gap: 28px;
    padding-block: 58px;
  }

  .region-stage {
    min-height: 530px;
  }

  .region-overlay {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .region-overlay h3 {
    font-size: 62px;
  }

  .region-tabs {
    grid-template-columns: 1fr;
  }

  .region-tabs button {
    min-height: 100px;
    border-right: 0;
  }

  .synergy ol {
    grid-template-columns: 1fr;
  }

  .synergy li {
    min-height: 230px;
  }

  .synergy li strong {
    margin-top: 54px;
  }

  .benefit-list article {
    grid-template-columns: 38px 1fr;
    min-height: 160px;
    align-content: center;
  }

  .benefit-list h3 {
    font-size: 22px;
  }

  .contact {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 24px);
  }

  .contact-main {
    padding-block: 54px;
  }

  .contact-main h2 {
    font-size: clamp(46px, 13.8vw, 64px);
  }

  .contact-main > p:nth-of-type(2) {
    font-size: 15px;
  }

  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-link {
    width: 100%;
  }

  .contact-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .contact-footer > p:first-of-type {
    display: none;
  }

  .toast {
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: none;
  }
}

/* React Bits-inspired interaction layer */

.bits-blur-title > .bits-blur-line {
  display: block;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms var(--ease),
    filter 860ms var(--ease),
    transform 860ms var(--ease);
  will-change: opacity, filter, transform;
}

.bits-blur-title > .bits-blur-line:nth-child(2) {
  transition-delay: 110ms;
}

.bits-blur-title > .bits-blur-line:nth-child(3) {
  transition-delay: 190ms;
}

.bits-blur-title.is-bits-visible > .bits-blur-line {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.detail-head h2 > .bits-blur-line {
  color: inherit;
}

.xhs-detail .detail-head h2 > .bits-blur-line {
  color: inherit;
}

.bits-spotlight {
  --bits-x: 50%;
  --bits-y: 50%;
  --bits-spotlight-color: rgba(226, 189, 120, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bits-spotlight::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    460px circle at var(--bits-x) var(--bits-y),
    var(--bits-spotlight-color),
    transparent 66%
  );
  transition: opacity 480ms ease;
}

.bits-spotlight > * {
  position: relative;
  z-index: 1;
}

.xhs-detail .bits-spotlight {
  --bits-spotlight-color: rgba(92, 141, 55, 0.18);
}

.bits-spotlight:hover::before,
.bits-spotlight:focus-within::before {
  opacity: 0.88;
}

.bits-glare {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.bits-glare::after {
  position: absolute;
  z-index: 3;
  content: "";
  inset: -18%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(255, 255, 255, 0.035) 44%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(226, 189, 120, 0.12) 54%,
    transparent 64%
  );
  background-size: 240% 240%;
  background-position: -150% -150%;
  mix-blend-mode: screen;
  transition: background-position 920ms var(--ease);
}

.bits-glare:hover::after,
.bits-glare:focus-within::after {
  background-position: 145% 145%;
}

.bits-magnetic {
  will-change: transform;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta.bits-magnetic {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: none), (pointer: coarse) {
  .hero-light-rays,
  .hero-pointer-aura,
  .bladefish-journey,
  .bits-glare::after,
  .bits-spotlight::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-enter {
    opacity: 1;
    transform: none;
  }

  .hero-line > span {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .bits-blur-title > .bits-blur-line {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-light-rays,
  .hero-pointer-aura,
  .bits-glare::after,
  .bits-spotlight::before {
    display: none;
  }
}

/* Desktop-only interactive information systems */

.department-hub {
  display: none;
}

.department-brief {
  display: none;
}

.department-signal {
  display: none;
}

.department-puffer3d {
  display: none;
}

@media (min-width: 1181px) {
  .is-ui-surface {
    --ui-x: 50%;
    --ui-y: 50%;
    --ui-glow: rgba(226, 189, 120, 0.12);
    position: relative;
    isolation: isolate;
  }

  .is-ui-surface > .ui-cursor-glow {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(420px circle at var(--ui-x) var(--ui-y), var(--ui-glow), transparent 72%);
    transition: opacity 320ms ease;
  }

  .is-ui-surface:hover > .ui-cursor-glow,
  .is-ui-surface:focus-within > .ui-cursor-glow {
    opacity: 1;
  }

  .is-ui-surface > :not(.ui-cursor-glow) {
    position: relative;
    z-index: 1;
  }

  .reveal.is-visible .ui-sequence-item,
  .reveal.is-visible.ui-sequence-item {
    animation: uiSequenceIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--ui-i, 0) * 60ms);
  }

  @keyframes uiSequenceIn {
    from {
      opacity: 0;
      filter: blur(4px);
    }
    to {
      opacity: 1;
      filter: blur(0);
    }
  }
}

@media (min-width: 900px) {
  .department-system.is-ui-surface {
    --ui-x: 50%;
    --ui-y: 50%;
    position: relative;
    isolation: isolate;
  }

  .department-system.is-ui-surface > .ui-cursor-glow {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(420px circle at var(--ui-x) var(--ui-y), var(--ui-glow), transparent 72%);
    transition: opacity 320ms ease;
  }

  .department-system.is-ui-surface:hover > .ui-cursor-glow,
  .department-system.is-ui-surface:focus-within > .ui-cursor-glow {
    opacity: 1;
  }

  .department-system.is-ui-surface > :not(.ui-cursor-glow) {
    z-index: 1;
  }

  /* 01 / Department 3D orbit */

  .company-method {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: clamp(58px, 6vw, 92px);
    align-items: start;
  }

  .company-method-copy {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    align-items: end;
    column-gap: clamp(64px, 8vw, 132px);
    padding-bottom: clamp(38px, 4vw, 58px);
    border-bottom: 1px solid rgba(226, 189, 120, 0.22);
  }

  .company-method-copy .section-index {
    grid-column: 1 / -1;
  }

  .company-method-copy h3 {
    max-width: 860px;
    font-size: clamp(48px, 5.3vw, 82px);
    line-height: 1.02;
  }

  .company-method-copy > p:last-child {
    max-width: 540px;
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.85;
  }

  .department-system {
    --ui-glow: rgba(226, 189, 120, 0.14);
    --department-duration: 28s;
    --department-radius: clamp(348px, 29vw, 390px);
    --department-stage-offset: 190px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 850px;
    padding: 0 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(226, 189, 120, 0.22);
    border-radius: 30px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
      radial-gradient(circle at 59% 46%, rgba(226, 189, 120, 0.11), transparent 30%),
      linear-gradient(145deg, #101c27, #08121b 72%);
    background-size: 48px 48px, 48px 48px, auto, auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 90px rgba(2, 7, 12, 0.22);
    perspective: 1480px;
    perspective-origin: 58% 52%;
  }

  .department-system::before {
    position: absolute;
    z-index: 0;
    content: "11";
    top: 74px;
    right: 34px;
    color: transparent;
    font: 800 clamp(126px, 13vw, 176px)/0.86 "Bahnschrift", sans-serif;
    letter-spacing: -0.08em;
    -webkit-text-stroke: 1px rgba(226, 189, 120, 0.09);
    text-stroke: 1px rgba(226, 189, 120, 0.09);
    pointer-events: none;
  }

  .department-system:not([open]) {
    min-height: 86px;
  }

  .department-system summary {
    min-height: 84px;
    padding-inline: 8px;
    color: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(226, 189, 120, 0.2);
    font: 650 11px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .department-system summary::before {
    content: "COLLABORATION NETWORK";
    color: var(--brass-bright);
  }

  .department-system summary > span {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
  }

  .department-system > .department-brief {
    position: absolute;
    z-index: 6;
    top: 126px;
    left: 46px;
    display: grid;
    width: min(48%, 520px);
    padding-left: 20px;
    border-left: 1px solid rgba(226, 189, 120, 0.42);
    pointer-events: none;
  }

  .department-brief > span {
    color: var(--brass-bright);
    font: 650 9px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.16em;
  }

  .department-brief > strong {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(52px, 5.4vw, 78px);
    font-weight: 560;
    line-height: 0.92;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .department-brief > p {
    margin-top: 34px;
    max-width: 420px;
    color: var(--text-muted);
    font-size: var(--section-subtitle-size, clamp(17px, 1.55vw, 22px));
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0;
  }

  .department-system > .department-signal {
    position: absolute;
    z-index: 6;
    top: 128px;
    right: 46px;
    display: block;
    width: min(31%, 330px);
    padding: 0 0 14px;
    border-top: 1px solid rgba(226, 189, 120, 0.34);
    border-bottom: 1px solid rgba(119, 229, 229, 0.12);
    pointer-events: none;
  }

  .department-signal > header,
  .department-signal > footer {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.46);
    font: 650 8px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.14em;
  }

  .department-signal > header {
    justify-content: space-between;
    padding: 13px 0 11px;
  }

  .department-signal > header i {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brass-bright);
  }

  .department-signal > header i::before {
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
    background: var(--brass-bright);
    box-shadow: 0 0 10px rgba(226, 189, 120, 0.7);
    animation: departmentSignalPulse 1.8s ease-in-out infinite;
  }

  .department-signal > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  }

  .department-signal > div p {
    display: grid;
    gap: 5px;
    padding: 14px 12px 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.055);
  }

  .department-signal > div p:last-child {
    border-right: 0;
  }

  .department-signal > div strong {
    color: rgba(245, 242, 234, 0.94);
    font: 580 clamp(25px, 2.25vw, 34px)/0.9 "Bahnschrift", sans-serif;
    letter-spacing: -0.05em;
  }

  .department-signal > div em {
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    line-height: 1.2;
  }

  .department-signal > footer {
    justify-content: space-between;
    padding-top: 13px;
  }

  .department-signal > footer i {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.2), rgba(226, 189, 120, 0.7));
  }

  @keyframes departmentSignalPulse {
    0%, 100% { opacity: 0.45; transform: scale(0.84); }
    50% { opacity: 1; transform: scale(1.18); }
  }

  .department-system > .department-hub {
    position: absolute;
    z-index: 1;
    top: calc(43% + var(--department-stage-offset));
    left: 62%;
    display: block;
    width: 310px;
    height: 230px;
    padding: 0;
    overflow: visible;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .department-puffer3d {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 20px rgba(226, 189, 120, 0.16));
    pointer-events: none;
  }

  .department-system > ol.department-card-3d {
    position: relative;
    z-index: 3;
    top: var(--department-stage-offset);
    display: block;
    width: min(100%, 1060px);
    height: 508px;
    margin-inline: auto;
    padding: 0;
    transform-style: preserve-3d;
    transform-origin: 62% 54%;
    animation: departmentAutoRun3d var(--department-duration) linear infinite;
    will-change: transform;
  }

  .department-system ol::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 54%;
    left: 62%;
    width: calc(var(--department-radius) * 2.14);
    height: calc(var(--department-radius) * 0.54);
    border: 1px solid rgba(119, 229, 229, 0.14);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(119, 229, 229, 0.045), transparent 68%);
    box-shadow: 0 0 58px rgba(119, 229, 229, 0.055), inset 0 0 30px rgba(226, 189, 120, 0.035);
    transform: translate(-50%, -50%) rotateX(72deg);
    pointer-events: none;
  }

  .department-system li {
    position: absolute;
    top: 54%;
    left: 62%;
    display: block;
    width: clamp(178px, 15.4vw, 202px);
    min-height: 116px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform:
      translate(-50%, -50%)
      rotateY(calc(var(--department-i) * 32.7272727deg))
      translateZ(var(--department-radius));
    transform-style: preserve-3d;
    animation: departmentDepthLight var(--department-duration) linear infinite;
    animation-delay: var(--department-delay);
    transition: filter 260ms ease, opacity 260ms ease;
    will-change: transform, filter, opacity;
  }

  .department-card-face {
    position: absolute;
    inset: 0;
    display: grid;
    min-height: 116px;
    grid-template-columns: 26px 1fr;
    gap: 6px 10px;
    align-content: center;
    padding: 17px 17px 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px 5px 22px 5px;
    background:
      linear-gradient(135deg, rgba(226, 189, 120, 0.08), transparent 42%),
      rgba(7, 17, 26, 0.9);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), inset 3px 0 0 rgba(226, 189, 120, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    backface-visibility: hidden;
    backdrop-filter: blur(15px);
    transition: border-color 220ms ease, background 220ms ease, box-shadow 280ms ease, transform 320ms var(--ease);
  }

  .department-card-face::before {
    position: absolute;
    content: "";
    inset: -42% 44% 56% -20%;
    opacity: 0.58;
    background: radial-gradient(circle, rgba(119, 229, 229, 0.24), transparent 68%);
    pointer-events: none;
  }

  .department-card-face::after {
    position: absolute;
    content: "";
    top: 12px;
    right: 12px;
    width: 18px;
    height: 1px;
    background: rgba(226, 189, 120, 0.5);
    box-shadow: 0 0 12px rgba(226, 189, 120, 0.2);
    pointer-events: none;
  }

  .department-card-face--front { transform: rotateY(0deg); }
  .department-card-face--back { transform: rotateY(180deg); }

  .department-system li:hover,
  .department-system li:focus-visible {
    filter: brightness(1.16) saturate(1.08) !important;
    opacity: 1 !important;
    outline: none;
  }

  .department-system li:hover .department-card-face,
  .department-system li:focus-visible .department-card-face,
  .department-system li.is-active .department-card-face {
    color: #fff;
    border-color: rgba(226, 189, 120, 0.72);
    background:
      linear-gradient(135deg, rgba(226, 189, 120, 0.18), transparent 46%),
      rgba(22, 35, 45, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 28px rgba(226, 189, 120, 0.08);
  }

  .department-system li:hover .department-card-face--front,
  .department-system li:focus-visible .department-card-face--front {
    transform: rotateY(0deg) translateZ(8px) scale(1.035);
  }

  .department-system li:hover .department-card-face--back,
  .department-system li:focus-visible .department-card-face--back {
    transform: rotateY(180deg) translateZ(8px) scale(1.035);
  }

  .department-system:is(:hover, :focus-within) .department-card-3d,
  .department-system:is(:hover, :focus-within) .department-card-3d > li {
    animation-play-state: paused;
  }

  .department-system li span { color: var(--brass-bright); }
  .department-system li strong { font-size: 14px; }
  .department-system li em { font-size: 10px; line-height: 1.45; }

  @keyframes departmentAutoRun3d {
    from { transform: rotateX(-14deg) rotateY(-360deg); }
    to { transform: rotateX(-14deg) rotateY(0deg); }
  }

  @keyframes departmentDepthLight {
    0%, 100% { filter: brightness(1.08) saturate(1.03); opacity: 1; }
    20%, 80% { filter: brightness(0.66) saturate(0.9); opacity: 0.78; }
    43%, 57% { filter: brightness(0.24) saturate(0.68); opacity: 0.42; }
  }

  .department-hub.is-switching {
    animation: departmentHubSwitch 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes departmentHubSwitch {
    0% { filter: brightness(0.72); transform: translate(-50%, -50%) scale(0.94); }
    58% { filter: brightness(1.22); transform: translate(-50%, -50%) scale(1.035); }
    100% { filter: none; transform: translate(-50%, -50%) scale(1); }
  }
}

@media (min-width: 1181px) {

  /* 02 / Growth signal path */

  .growth-model {
    --ui-glow: rgba(145, 111, 47, 0.11);
    grid-template-columns: minmax(300px, 0.4fr) minmax(760px, 1.6fr);
    align-items: center;
    gap: clamp(46px, 5vw, 86px);
    margin-top: clamp(72px, 8vw, 118px);
    padding: clamp(54px, 6vw, 88px);
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: 32px;
    background:
      radial-gradient(circle at 76% 24%, rgba(196, 162, 104, 0.13), transparent 32%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(231, 227, 218, 0.5));
  }

  .growth-model::after {
    position: absolute;
    content: "06 STEPS";
    right: -0.035em;
    bottom: -0.2em;
    color: transparent;
    opacity: 0.38;
    font: 700 clamp(92px, 11vw, 168px)/0.8 "Bahnschrift", sans-serif;
    letter-spacing: -0.08em;
    -webkit-text-stroke: 1px rgba(16, 24, 32, 0.08);
    pointer-events: none;
  }

  .growth-model h3 {
    max-width: 330px;
    font-size: clamp(38px, 4.1vw, 62px);
  }

  .growth-model ol {
    --growth-progress: 10%;
    position: relative;
    display: grid;
    min-height: 350px;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    padding: 42px 0;
    border: 0;
  }

  .growth-model ol::before,
  .growth-model ol::after {
    position: absolute;
    z-index: 0;
    content: "";
    top: 50%;
    left: 3%;
    height: 2px;
    border-radius: 999px;
  }

  .growth-model ol::before {
    right: 3%;
    background: rgba(16, 24, 32, 0.13);
  }

  .growth-model ol::after {
    width: var(--growth-progress);
    background: linear-gradient(90deg, #9b6f2c, var(--orange));
    box-shadow: 0 0 18px rgba(155, 111, 44, 0.2);
    transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .growth-model li {
    position: relative;
    z-index: 2;
    min-height: 150px;
    padding: 20px 14px;
    border: 0;
    border-radius: 18px;
    background: rgba(244, 241, 233, 0.72);
    box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
    cursor: default;
    transition: background 220ms ease, box-shadow 260ms ease, scale 320ms var(--ease);
  }

  .growth-model li:nth-child(odd) { transform: translateY(-54px); }
  .growth-model li:nth-child(even) { transform: translateY(54px); }

  .growth-model li::before {
    position: absolute;
    content: "";
    left: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid var(--paper);
    border-radius: 50%;
    background: #9b6f2c;
    box-shadow: 0 0 0 6px rgba(155, 111, 44, 0.12);
    transform: translateX(-50%);
  }

  .growth-model li:nth-child(odd)::before { bottom: -61px; }
  .growth-model li:nth-child(even)::before { top: -61px; }

  .growth-model li:hover,
  .growth-model li.is-active {
    background: #f7f3e9;
    box-shadow: 0 22px 50px rgba(16, 24, 32, 0.14);
    scale: 1.045;
  }

  .growth-model li strong { margin-top: 34px; font-size: 18px; }

  /* 03 / Facts and laurels */

  .honors-facts {
    --ui-glow: rgba(226, 189, 120, 0.13);
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(226, 189, 120, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.022);
  }

  .honors-facts article {
    min-height: 190px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 19px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
    transition: translate 300ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .honors-facts article::after {
    position: absolute;
    content: "";
    right: 22px;
    bottom: 24px;
    left: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--brass-bright) 0 38%, rgba(255, 255, 255, 0.1) 38%);
    transform-origin: left;
    transition: transform 420ms var(--ease);
  }

  .honors-facts article:nth-child(even) { translate: 0 16px; }

  .honors-facts article:hover {
    translate: 0 -8px;
    border-color: rgba(226, 189, 120, 0.42);
    background: linear-gradient(145deg, rgba(226, 189, 120, 0.12), rgba(255, 255, 255, 0.025));
  }

  .honors-facts article:hover::after { transform: scaleX(1.8); }

  .honor-laurels {
    --ui-glow: rgba(226, 189, 120, 0.11);
    gap: 12px;
    padding: 18px;
    border: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.018);
  }

  .honor-laurels li {
    min-height: 76px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(4, 10, 16, 0.48);
    transition: translate 260ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .honor-laurels li:nth-child(4n) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .honor-laurels li:nth-child(4n + 2),
  .honor-laurels li:nth-child(4n + 4) { translate: 0 8px; }

  .honor-laurels li:hover {
    translate: 8px 0;
    color: #fff;
    border-color: rgba(226, 189, 120, 0.48);
    background: rgba(226, 189, 120, 0.09);
  }

  /* 04 / Platform telemetry and service deck */

  .platform-scale {
    --ui-glow: rgba(204, 255, 74, 0.12);
    gap: 14px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(204, 255, 74, 0.15);
    background:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      #162115;
    background-size: 48px 48px, 48px 48px, auto;
  }

  .platform-scale div {
    min-height: 250px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(8, 22, 12, 0.68);
    transition: translate 300ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .platform-scale div:nth-child(3) { border-right: 1px solid rgba(255, 255, 255, 0.1); }

  .platform-scale div::after {
    position: absolute;
    content: "";
    right: 32px;
    bottom: 34px;
    left: 32px;
    height: 36px;
    opacity: 0.5;
    background:
      linear-gradient(90deg, transparent 0 9%, var(--xhs) 9% 12%, transparent 12% 27%, var(--xhs) 27% 31%, transparent 31% 48%, var(--xhs) 48% 54%, transparent 54% 72%, var(--xhs) 72% 78%, transparent 78% 100%);
    clip-path: polygon(0 76%, 12% 60%, 28% 72%, 50% 25%, 72% 48%, 100% 0, 100% 100%, 0 100%);
    transform-origin: bottom;
    transition: transform 420ms var(--ease), opacity 220ms ease;
  }

  .platform-scale div:hover {
    translate: 0 -10px;
    border-color: rgba(204, 255, 74, 0.36);
    background: rgba(20, 42, 20, 0.82);
  }

  .platform-scale div:hover::after { opacity: 0.85; transform: scaleY(1.22); }

  .platform-scale > p {
    margin-top: 8px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
  }

  .service-matrix {
    --ui-glow: rgba(92, 141, 55, 0.14);
    gap: 16px;
    padding: 24px 0 32px;
    border: 0;
  }

  .service-matrix article {
    min-height: 370px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 18px 48px rgba(47, 67, 31, 0.08);
    transition: translate 340ms var(--ease), border-color 220ms ease, box-shadow 300ms ease;
  }

  .service-matrix article:nth-child(even) { translate: 0 26px; }

  .service-matrix article::after {
    position: absolute;
    content: "";
    top: -30%;
    right: -45%;
    width: 90%;
    height: 160%;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 74, 0.18), transparent);
    transform: rotate(18deg) translateX(70%);
    transition: transform 560ms var(--ease);
  }

  .service-matrix article:hover {
    translate: 0 -12px;
    border-color: rgba(69, 106, 45, 0.34);
    box-shadow: 0 28px 70px rgba(47, 67, 31, 0.16);
  }

  .service-matrix article:hover::after { transform: rotate(18deg) translateX(-135%); }

  /* 05 / Decision circuit and weight controller */

  .xhs-loop {
    --ui-glow: rgba(92, 141, 55, 0.11);
    align-items: center;
    padding: clamp(72px, 8vw, 118px) clamp(48px, 6vw, 90px);
    border: 1px solid rgba(69, 106, 45, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.28);
  }

  .xhs-loop ol {
    position: relative;
    padding-left: 38px;
  }

  .xhs-loop ol::before {
    position: absolute;
    content: "";
    top: 34px;
    bottom: 34px;
    left: 12px;
    width: 2px;
    background: linear-gradient(var(--xhs), rgba(69, 106, 45, 0.12));
  }

  .xhs-loop li {
    min-height: 92px;
    grid-template-columns: 46px 0.72fr 1.28fr;
    margin-bottom: 12px;
    padding: 18px 22px;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 12px 30px rgba(47, 67, 31, 0.06);
    transition: translate 300ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .xhs-loop li:last-child { margin-bottom: 0; border-bottom: 1px solid rgba(16, 24, 32, 0.1); }

  .xhs-loop li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -33px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--paper-green);
    border-radius: 50%;
    background: #456a2d;
    box-shadow: 0 0 0 7px rgba(69, 106, 45, 0.11);
    transform: translateY(-50%);
  }

  .xhs-loop li:hover {
    translate: 12px 0;
    border-color: rgba(69, 106, 45, 0.32);
    background: rgba(255, 255, 255, 0.82);
  }

  .weighting-copy ul {
    display: grid;
    gap: 10px;
    border: 0;
  }

  .weighting-copy li {
    position: relative;
    min-height: 70px;
    padding: 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
    transition: translate 280ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .weighting-copy li::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--xhs) 0 var(--weight-width, 40%), rgba(255, 255, 255, 0.08) var(--weight-width, 40%));
  }

  .weighting-copy li:hover,
  .weighting-copy li:focus-visible,
  .weighting-copy li.is-active {
    translate: 10px 0;
    border-color: rgba(204, 255, 74, 0.36);
    background: rgba(204, 255, 74, 0.07);
    outline: none;
  }

  .weight-orbit i {
    transition: scale 320ms var(--ease), color 220ms ease, background 220ms ease, box-shadow 260ms ease;
  }

  .weight-orbit i.is-active {
    color: var(--ink);
    background: var(--xhs);
    box-shadow: 0 0 32px rgba(204, 255, 74, 0.3);
    scale: 1.16;
  }

  /* 06 / Local asset constellation */

  .synergy {
    --ui-glow: rgba(226, 189, 120, 0.12);
    margin-top: clamp(82px, 9vw, 138px);
    padding: clamp(60px, 7vw, 104px);
    overflow: hidden;
    border: 1px solid rgba(226, 189, 120, 0.17);
    border-radius: 30px;
    background:
      radial-gradient(circle at 50% 68%, rgba(226, 189, 120, 0.1), transparent 26%),
      rgba(255, 255, 255, 0.018);
  }

  .synergy-title {
    grid-template-columns: 0.42fr 1.58fr;
  }

  .synergy ol {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 210px;
    margin-top: 64px;
    padding: 26px 0;
    border: 0;
  }

  .synergy ol::before {
    position: absolute;
    z-index: 2;
    content: "LOCAL\A ASSET";
    top: 50%;
    left: 50%;
    display: grid;
    width: 154px;
    aspect-ratio: 1;
    place-items: center;
    color: var(--brass-bright);
    border: 1px solid rgba(226, 189, 120, 0.44);
    border-radius: 50%;
    background: #0d1923;
    box-shadow: 0 0 0 22px rgba(226, 189, 120, 0.03), 0 25px 60px rgba(0, 0, 0, 0.2);
    font: 650 11px/1.45 "Bahnschrift", sans-serif;
    letter-spacing: 0.14em;
    text-align: center;
    white-space: pre;
    transform: translate(-50%, -50%);
  }

  .synergy li {
    position: relative;
    z-index: 1;
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(10, 22, 31, 0.74);
    transition: translate 300ms var(--ease), border-color 220ms ease, background 220ms ease;
  }

  .synergy li:nth-child(odd) { text-align: right; }

  .synergy li::after {
    position: absolute;
    content: "";
    top: 50%;
    width: 106px;
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.18), rgba(226, 189, 120, 0.58));
  }

  .synergy li:nth-child(odd)::after { left: 100%; }
  .synergy li:nth-child(even)::after { right: 100%; transform: scaleX(-1); }

  .synergy li:hover {
    translate: 0 -8px;
    border-color: rgba(226, 189, 120, 0.46);
    background: rgba(26, 39, 49, 0.92);
  }

  .synergy li strong { margin-top: 42px; }

  /* 07 / Project value cards and diagnostic scanner */

  .benefit-list {
    --ui-glow: rgba(226, 189, 120, 0.12);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 0 34px;
    border: 0;
  }

  .benefit-list article {
    display: flex;
    min-width: 0;
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(5, 12, 18, 0.68);
    backdrop-filter: blur(14px);
    transition: translate 320ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 280ms ease;
  }

  .benefit-list article:nth-child(even) { translate: 0 24px; }

  .benefit-list article::after {
    position: absolute;
    content: "";
    right: -44px;
    bottom: -44px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(226, 189, 120, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(226, 189, 120, 0.025);
    transition: scale 420ms var(--ease), border-color 220ms ease;
  }

  .benefit-list article:hover {
    padding: 26px;
    translate: 0 -14px;
    border-color: rgba(226, 189, 120, 0.46);
    background: rgba(18, 29, 38, 0.92);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  }

  .benefit-list article:hover::after { scale: 1.28; border-color: rgba(226, 189, 120, 0.38); }

  .benefit-list span {
    color: rgba(226, 189, 120, 0.7);
    font-size: 38px;
    letter-spacing: -0.06em;
  }

  .benefit-list h3 {
    margin-top: 72px;
    font-size: clamp(19px, 1.65vw, 25px);
    line-height: 1.28;
  }

  .benefit-list p {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.75;
  }

  .diagnosis-list {
    --ui-glow: rgba(226, 189, 120, 0.11);
    display: grid;
    gap: 11px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.018);
  }

  .diagnosis-list button {
    min-height: 82px;
    padding-inline: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: rgba(7, 16, 25, 0.72);
    font-size: clamp(17px, 1.55vw, 23px);
  }

  .diagnosis-list button:hover,
  .diagnosis-list button.is-active {
    padding-inline: 28px;
    border-color: rgba(226, 189, 120, 0.34);
    background: linear-gradient(90deg, rgba(196, 162, 104, 0.15), rgba(196, 162, 104, 0.035));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .ui-sequence-item {
    animation: none !important;
  }

  .ui-sequence-item {
    opacity: 1 !important;
    translate: none !important;
  }

  .is-ui-surface > .ui-cursor-glow {
    display: none;
  }
}

/* Desktop hero rhythm and company asset relocation */
@media (min-width: 1181px) {
  .hero {
    display: block;
    min-height: max(100svh, 920px);
    padding: calc(var(--header-h) + 52px) var(--page-pad) clamp(164px, 12vw, 198px);
  }

  .hero-video-spacer {
    display: block;
    width: 100%;
    aspect-ratio: 1936 / 516;
  }

  .hero-copy {
    margin-top: clamp(38px, 3.6vw, 58px);
    padding-bottom: 0;
  }

  .bladefish-journey {
    --fish-flight: 0;
    position: absolute;
    z-index: 7;
    top: 0;
    left: 0;
    display: block;
    width: clamp(92px, 7vw, 112px);
    aspect-ratio: 380 / 150;
    opacity: 0;
    pointer-events: none;
    filter:
      drop-shadow(0 0 1.4px rgba(1, 6, 10, 0.98))
      drop-shadow(0 4px 5px rgba(0, 0, 0, 0.78))
      drop-shadow(0 10px 14px rgba(0, 0, 0, 0.48))
      drop-shadow(0 0 13px rgba(174, 213, 232, 0.28));
    transform: translate3d(-180px, -180px, 0) translate(-50%, -50%);
    transform-origin: 50% 50%;
    will-change: transform, opacity;
  }

  .bladefish-journey::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 50%;
    left: -26%;
    width: 46%;
    height: 2px;
    opacity: calc(var(--fish-flight) * 0.72);
    background: linear-gradient(90deg, transparent, rgba(174, 213, 232, 0.12), rgba(255, 239, 196, 0.74));
    box-shadow: 0 0 12px rgba(174, 213, 232, 0.35);
    transform: translateY(-50%);
  }

  .bladefish-pose {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
    transition: opacity 180ms ease;
  }

  .bladefish-pose.is-active {
    opacity: 1;
  }

  .bladefish-ripple {
    position: absolute;
    z-index: -1;
    bottom: 17%;
    left: 50%;
    width: 38px;
    height: 9px;
    border: 1px solid rgba(226, 189, 120, 0.68);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }

  .bladefish-journey.is-landing .bladefish-ripple {
    animation: bladefishLanding 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes bladefishLanding {
    0% { opacity: 0.84; transform: translateX(-50%) scale(0.45); }
    100% { opacity: 0; transform: translateX(-50%) scale(2.25); }
  }

  .hero-title-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hero-value,
  .hero-value:first-child,
  .hero-value:last-child {
    position: relative;
    isolation: isolate;
    display: block;
    min-width: 0;
    padding: 0 clamp(18px, 2.2vw, 34px);
    text-align: center;
  }

  .hero-value > span {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #050708;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
      color 300ms ease,
      filter 360ms ease,
      text-shadow 360ms ease,
      letter-spacing 420ms var(--ease),
      transform 420ms var(--ease);
  }

  .hero-value em {
    color: inherit;
  }

  /* Light projection interaction adapted from Uiverse.io by kamehame-ha. */
  .hero-value::before {
    position: absolute;
    z-index: 0;
    content: "";
    top: calc(-1 * clamp(18px, 1.8vw, 26px));
    left: 50%;
    width: min(280px, 88%);
    height: clamp(94px, 8.4vw, 128px);
    opacity: 0;
    clip-path: polygon(49% 0, 51% 0, 84% 100%, 16% 100%);
    background: linear-gradient(
      180deg,
      rgba(226, 189, 120, 0.58) 0%,
      rgba(226, 189, 120, 0.15) 44%,
      rgba(226, 189, 120, 0) 100%
    );
    filter: blur(1px);
    pointer-events: none;
    transform: translateX(-50%) scaleX(0.72);
    transform-origin: 50% 0;
    transition:
      opacity 320ms ease,
      transform 520ms var(--ease),
      clip-path 520ms var(--ease);
  }

  .hero-value::after {
    position: absolute;
    z-index: 3;
    content: "";
    top: calc(-1 * clamp(22px, 2vw, 30px));
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 1;
    background: #030506;
    box-shadow:
      0 0 0 5px rgba(0, 0, 0, 0.16),
      0 0 14px rgba(0, 0, 0, 0.56);
    pointer-events: none;
    transform: translateX(-50%) scale(0.72);
    transition:
      background-color 260ms ease,
      box-shadow 320ms ease,
      opacity 260ms ease,
      transform 420ms var(--ease);
  }

  .hero-value:hover::before,
  .hero-value.is-fish-lit::before {
    opacity: 1;
    clip-path: polygon(48.5% 0, 51.5% 0, 92% 100%, 8% 100%);
    transform: translateX(-50%) scaleX(1);
  }

  .hero-value:hover::after,
  .hero-value.is-fish-lit::after {
    opacity: 1;
    background: #fff2cf;
    box-shadow:
      0 0 0 5px rgba(226, 189, 120, 0.09),
      0 0 22px rgba(226, 189, 120, 0.86);
    transform: translateX(-50%) scale(1);
  }

  .hero-value:hover > span,
  .hero-value.is-fish-lit > span {
    color: #f1d69f;
    -webkit-text-stroke-color: rgba(255, 242, 207, 0.2);
    filter: drop-shadow(0 0 14px rgba(226, 189, 120, 0.34));
    letter-spacing: -0.035em;
    text-shadow: 0 0 28px rgba(226, 189, 120, 0.22);
    transform: translateY(-2px);
  }

  .hero-value:hover em,
  .hero-value.is-fish-lit em {
    color: inherit;
  }

  .hero-bottom {
    justify-content: flex-start;
  }

  .hero-bottom > p {
    display: block;
    width: min(820px, 72%);
    max-width: none;
  }

  .company.section-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
    column-gap: clamp(48px, 5vw, 78px);
    padding-top: clamp(54px, 5.2vw, 78px);
  }

  .company.section-shell > * {
    grid-column: 1 / -1;
  }

  .company > .section-head {
    grid-row: 1;
  }

  .company > .company-intro {
    display: contents;
  }

  .company .company-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    margin: clamp(48px, 5vw, 76px) 0 clamp(82px, 7vw, 112px);
  }

  .company .company-copy h2 {
    display: grid;
    width: 100%;
    min-height: 1.95em;
    align-content: space-between;
    margin-top: 0;
    line-height: 0.92;
  }

  .company .company-copy h2 span {
    display: block;
  }

  .company .company-copy h2 > span:last-of-type,
  .company .company-copy h2 > .bits-blur-line:last-child {
    justify-self: end;
    text-align: right;
  }

  .company > .company-metrics {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
    min-width: 0;
    margin: clamp(48px, 5vw, 76px) 0 clamp(82px, 7vw, 112px);
    overflow: visible;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .company > .company-metrics::before {
    display: none;
  }

  .company-metrics .metric-observatory {
    min-height: 660px;
    border-radius: 28px;
  }

  .company-metrics .metric-focus {
    top: 9%;
    bottom: 9%;
    left: 5%;
    width: 43%;
    padding-left: 18px;
  }

  .company-metrics .metric-focus > strong {
    margin-top: 46px;
    font-size: clamp(62px, 5.8vw, 88px);
  }

  .company-metrics .metric-focus h4 {
    margin-top: 22px;
    font-size: clamp(19px, 1.7vw, 25px);
  }

  .company-metrics .metric-focus > p {
    margin-top: 14px;
    font-size: 11.5px;
    line-height: 1.65;
  }

  .company-metrics .metric-node,
  .company-metrics .metric-node:nth-child(n) {
    grid-template-columns: 22px 1fr;
    width: 126px;
    min-height: 62px;
    padding: 9px 10px;
    border-radius: 15px;
  }

  .company-metrics .metric-node:nth-child(1) { left: 68%; top: 14%; }
  .company-metrics .metric-node:nth-child(2) { left: 86%; top: 28%; }
  .company-metrics .metric-node:nth-child(3) { left: 69%; top: 43%; }
  .company-metrics .metric-node:nth-child(4) { left: 87%; top: 57%; }
  .company-metrics .metric-node:nth-child(5) { left: 69%; top: 73%; }
  .company-metrics .metric-node:nth-child(6) { left: 86%; top: 86%; }

  .company-metrics .metric-node strong {
    padding-left: 8px;
    font-size: 19px;
  }

  .company-metrics .metric-node em {
    padding: 5px 0 0 8px;
    font-size: 9px;
  }

  .company-method-copy {
    grid-template-columns: minmax(248px, 0.56fr) minmax(0, 1.44fr);
    align-items: start;
    column-gap: clamp(50px, 6vw, 98px);
    padding-bottom: clamp(52px, 5vw, 72px);
  }

  .company-method-copy .section-index {
    margin-bottom: clamp(42px, 4.6vw, 66px);
  }

  .company-method-year {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: flex-end;
    gap: 18px;
    padding: 8px 0 4px;
  }

  .company-method-year::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 52px;
    height: 1px;
    background: var(--brass-bright);
    box-shadow: 0 0 18px rgba(226, 189, 120, 0.32);
  }

  .company-method-year strong {
    color: transparent;
    font: 700 clamp(138px, 12.2vw, 190px)/0.72 "Bahnschrift", sans-serif;
    letter-spacing: -0.09em;
    -webkit-text-stroke: 1px rgba(226, 189, 120, 0.72);
    text-shadow: 0 0 44px rgba(226, 189, 120, 0.08);
  }

  .company-method-year span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.44);
    font: 650 9px/1.55 "Bahnschrift", sans-serif;
    letter-spacing: 0.14em;
  }

  .company-method-narrative {
    min-width: 0;
    padding-left: clamp(42px, 4.4vw, 70px);
    border-left: 1px solid rgba(226, 189, 120, 0.2);
  }

  .company-method-copy .company-method-narrative h3 {
    max-width: none;
    margin: 0;
    font-size: clamp(48px, 4.8vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .company-method-narrative h3 span {
    display: block;
  }

  .company-method-narrative h3 span + span {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.64em;
    letter-spacing: -0.035em;
  }

  .company-method-narrative h3 em {
    color: var(--brass-bright);
    font-family: "Bahnschrift", sans-serif;
    font-size: 0.82em;
    font-style: normal;
    font-weight: 520;
    letter-spacing: -0.025em;
  }

  .company-method-copy .company-method-narrative p {
    max-width: 660px;
    margin: 34px 0 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
  }
}

@media (max-width: 1180px) {
  .company-intro {
    grid-template-columns: 1fr;
  }
}

/* Hero summary: a deliberate two-line statement with clearer reading rhythm. */
.hero-bottom > .hero-summary {
  display: flex;
  width: min(960px, 82%);
  max-width: none;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.42vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.hero-summary-line {
  display: block;
}

.hero-summary strong,
.hero-summary em {
  color: #f1d69f;
  font-style: normal;
  font-weight: 650;
}

@media (max-width: 1180px) {
  .hero-bottom > .hero-summary {
    width: min(760px, 100%);
    font-size: clamp(17px, 1.9vw, 20px);
  }
}

@media (max-width: 620px) {
  .hero-bottom > .hero-summary {
    gap: 2px;
    font-size: 16px;
    line-height: 1.65;
  }
}

/* Desktop core-asset data theater — selected concept C. */
@media (min-width: 1181px) {
  .company-metrics .metric-observatory {
    min-height: 660px;
    overflow: hidden;
    border-color: rgba(226, 189, 120, 0.28);
    border-radius: 30px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
      radial-gradient(circle at 78% 18%, rgba(119, 229, 229, 0.09), transparent 28%),
      linear-gradient(145deg, #0d202d, #06111a 72%);
    background-size: 48px 48px, 48px 48px, auto, auto;
    box-shadow:
      inset 0 1px rgba(255, 255, 255, 0.07),
      0 34px 78px rgba(2, 8, 13, 0.34);
    perspective: 1400px;
  }

  .company-metrics .metric-observatory::before {
    position: absolute;
    z-index: 0;
    content: "DATA THEATER";
    right: 26px;
    bottom: 62px;
    color: rgba(255, 255, 255, 0.026);
    font: 750 clamp(76px, 7vw, 108px)/0.78 "Bahnschrift", sans-serif;
    letter-spacing: -0.07em;
    pointer-events: none;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
  }

  .company-metrics .metric-observatory::after {
    opacity: 0.54;
    background:
      linear-gradient(115deg, transparent 36%, rgba(226, 189, 120, 0.08) 50%, transparent 64%),
      radial-gradient(ellipse at 75% 50%, rgba(119, 229, 229, 0.035), transparent 54%);
    background-size: 220% 100%, 100% 100%;
  }

  .company-metrics .metric-observatory-glow {
    z-index: 1;
    opacity: 0.66;
    background: radial-gradient(
      420px circle at var(--metric-x) var(--metric-y),
      rgba(226, 189, 120, 0.16),
      rgba(119, 229, 229, 0.05) 40%,
      transparent 70%
    );
  }

  .company-metrics .metric-focus {
    position: absolute;
    z-index: 4;
    top: 6%;
    bottom: 15%;
    left: 4%;
    overflow: hidden;
    width: 52%;
    padding: 34px 34px 30px;
    border: 1px solid rgba(226, 189, 120, 0.34);
    border-left-color: rgba(226, 189, 120, 0.62);
    border-radius: 25px;
    background:
      radial-gradient(circle at 82% 17%, rgba(226, 189, 120, 0.2), transparent 27%),
      linear-gradient(145deg, rgba(18, 44, 54, 0.97), rgba(5, 17, 26, 0.98));
    box-shadow:
      0 30px 68px rgba(0, 0, 0, 0.34),
      inset 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1100px) rotateY(3deg) rotateX(0.5deg);
    transform-origin: left center;
  }

  .company-metrics .metric-focus::after {
    position: absolute;
    z-index: -1;
    content: "CORE";
    right: -12px;
    bottom: -22px;
    color: rgba(255, 255, 255, 0.032);
    font: 780 126px/0.8 "Bahnschrift", sans-serif;
    letter-spacing: -0.08em;
    pointer-events: none;
  }

  .company-metrics .metric-focus.is-switching {
    opacity: 0.36;
    transform: perspective(1100px) translate3d(0, 8px, 0) rotateY(7deg) rotateX(1deg);
  }

  .company-metrics .metric-focus-meta {
    padding-bottom: 20px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .company-metrics .metric-focus > strong {
    margin-top: 42px;
    color: #f3d99c;
    font-size: clamp(84px, 7.2vw, 112px);
    font-weight: 650;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32), 0 0 38px rgba(226, 189, 120, 0.14);
  }

  .company-metrics .metric-focus h4 {
    margin-top: 28px;
    font-size: clamp(25px, 2vw, 31px);
  }

  .company-metrics .metric-focus > p {
    max-width: 390px;
    margin-top: 16px;
    color: rgba(231, 238, 239, 0.62);
    font-size: 12px;
    line-height: 1.72;
  }

  .metric-signal-bars {
    display: flex;
    height: 58px;
    align-items: flex-end;
    gap: 7px;
    margin-top: auto;
    opacity: 0.58;
  }

  .metric-signal-bars i {
    width: 100%;
    height: var(--signal-height);
    background: linear-gradient(180deg, var(--cyan), rgba(119, 229, 229, 0.04));
    box-shadow: 0 0 14px rgba(119, 229, 229, 0.08);
    transform-origin: bottom;
    animation: metricBarPulse 3.8s ease-in-out infinite alternate;
  }

  .metric-signal-bars i:nth-child(3n + 2) { animation-delay: -1.4s; }
  .metric-signal-bars i:nth-child(3n) { animation-delay: -2.6s; }

  @keyframes metricBarPulse {
    from { opacity: 0.28; transform: scaleY(0.64); }
    to { opacity: 0.9; transform: scaleY(1); }
  }

  .company-metrics .metric-focus-progress {
    margin-top: 16px;
  }

  .company-metrics .metric-constellation {
    z-index: 2;
    opacity: 0.16;
    filter: blur(0.2px);
    transform: scaleX(-1) translateX(-8%);
  }

  .company-metrics .metric-map {
    z-index: 6;
    inset: 7% 4% 13% auto;
    width: 43%;
    perspective: 1200px;
  }

  .company-metrics .metric-node,
  .company-metrics .metric-node:nth-child(n) {
    --theater-x: 0px;
    --theater-y: 0px;
    --theater-rotate: 0deg;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    z-index: 6;
    width: 88%;
    min-height: 102px;
    grid-template-columns: 44px 1fr;
    padding: 19px 21px;
    border-color: rgba(210, 228, 231, 0.18);
    border-radius: 20px;
    background:
      linear-gradient(135deg, rgba(16, 42, 54, 0.96), rgba(5, 17, 25, 0.98));
    box-shadow:
      0 24px 50px rgba(0, 0, 0, 0.34),
      inset 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    transform:
      translate3d(var(--theater-x), var(--theater-y), 0)
      rotateY(-7deg)
      rotateZ(var(--theater-rotate));
    transform-origin: right center;
    transition:
      color 260ms ease,
      border-color 320ms ease,
      background 320ms ease,
      box-shadow 420ms var(--ease),
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .company-metrics .metric-node:nth-child(1) { --theater-x: 0px; --theater-y: 0px; --theater-rotate: 1.8deg; z-index: 7; }
  .company-metrics .metric-node:nth-child(2) { --theater-x: 8px; --theater-y: 78px; --theater-rotate: -1.4deg; z-index: 6; }
  .company-metrics .metric-node:nth-child(3) { --theater-x: 2px; --theater-y: 156px; --theater-rotate: 1.2deg; z-index: 5; }
  .company-metrics .metric-node:nth-child(4) { --theater-x: 9px; --theater-y: 234px; --theater-rotate: -1.2deg; z-index: 4; }
  .company-metrics .metric-node:nth-child(5) { --theater-x: 4px; --theater-y: 312px; --theater-rotate: 1deg; z-index: 3; }
  .company-metrics .metric-node:nth-child(6) { --theater-x: 10px; --theater-y: 390px; --theater-rotate: -0.8deg; z-index: 2; }

  .company-metrics .metric-node span {
    padding-top: 4px;
    border-right-color: rgba(226, 189, 120, 0.26);
    font-size: 10px;
  }

  .company-metrics .metric-node strong {
    padding-left: 16px;
    font-size: clamp(24px, 2.1vw, 31px);
  }

  .company-metrics .metric-node em {
    padding: 9px 0 0 16px;
    color: rgba(229, 237, 239, 0.5);
    font-size: 10px;
  }

  .company-metrics .metric-node:hover,
  .company-metrics .metric-node:focus-visible {
    z-index: 12;
    border-color: rgba(226, 189, 120, 0.7);
    background: linear-gradient(135deg, rgba(29, 53, 58, 0.98), rgba(7, 23, 32, 0.99));
    box-shadow:
      0 32px 68px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(226, 189, 120, 0.1),
      0 0 36px rgba(119, 229, 229, 0.08);
    transform:
      translate3d(calc(var(--theater-x) - 12px), var(--theater-y), 64px)
      rotateY(0deg)
      rotateZ(0deg);
  }

  .company-metrics .metric-node.is-active {
    z-index: 11;
    color: #fff;
    border-color: rgba(226, 189, 120, 0.78);
    background:
      radial-gradient(circle at 84% 20%, rgba(226, 189, 120, 0.23), transparent 30%),
      linear-gradient(135deg, rgba(31, 50, 52, 0.99), rgba(8, 23, 31, 0.99));
    box-shadow:
      0 30px 66px rgba(0, 0, 0, 0.48),
      inset 0 1px rgba(255, 255, 255, 0.07),
      0 0 0 1px rgba(226, 189, 120, 0.1);
    transform:
      translate3d(calc(var(--theater-x) - 6px), var(--theater-y), 46px)
      rotateY(-1deg)
      rotateZ(0deg);
  }

  .company-metrics .metric-node.is-active span,
  .company-metrics .metric-node.is-active em {
    color: var(--brass-bright);
    border-color: rgba(226, 189, 120, 0.28);
  }

  .metric-theater-rail {
    position: absolute;
    z-index: 8;
    right: 4%;
    bottom: 3.8%;
    left: 4%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .metric-theater-rail span {
    position: relative;
    padding-top: 15px;
    color: rgba(227, 236, 238, 0.32);
    font: 650 9px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.14em;
    transition: color 260ms ease;
  }

  .metric-theater-rail span::before {
    position: absolute;
    content: "";
    top: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25343d;
    transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  }

  .metric-theater-rail span.is-active {
    color: var(--brass-bright);
  }

  .metric-theater-rail span.is-active::before {
    background: var(--brass-bright);
    box-shadow: 0 0 0 5px rgba(226, 189, 120, 0.08), 0 0 18px rgba(226, 189, 120, 0.42);
    transform: scale(1.18);
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .metric-signal-bars i {
    animation: none;
  }
}

/* Data theater impact entrance: oversized KPI, staged ignition and card fly-in. */
@media (min-width: 1181px) {
  .company-metrics .metric-focus > strong {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 210px;
    margin-top: 12px;
    align-items: flex-end;
    color: #f3d99c;
    font-size: clamp(188px, 16vw, 226px);
    font-weight: 680;
    line-height: 0.88;
    letter-spacing: -0.105em;
    transition: font-size 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .company-metrics .metric-focus {
    --metric-number-scale: 1;
  }

  .company-metrics .metric-focus[data-number-density="medium"] {
    --metric-number-scale: 0.8;
  }

  .company-metrics .metric-focus[data-number-density="compact"] {
    --metric-number-scale: 0.54;
  }

  .company-metrics .metric-number-lockup {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    display: flex;
    width: max-content;
    align-items: flex-end;
    white-space: nowrap;
    transform: scaleX(var(--metric-number-scale));
    transform-origin: left bottom;
    transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .company-metrics #metricFocusNumber {
    position: relative;
    z-index: 2;
    display: block;
    overflow: visible;
    padding-block: 0.08em 0.12em;
    padding-inline-end: 0.14em;
    color: transparent;
    background: linear-gradient(108deg, #ae7f35 0%, #ffe7ad 34%, #fff9e5 50%, #d4a755 68%, #8c6128 100%);
    background-position: 18% 50%;
    background-size: 240% 100%;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32)) drop-shadow(0 0 28px rgba(226, 189, 120, 0.1));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -0.075em;
    -webkit-text-fill-color: transparent;
  }

  .company-metrics .metric-focus > strong small {
    position: relative;
    z-index: 2;
    margin: 0 0 0.08em 0.12em;
    color: #f3d99c;
    font-size: 0.28em;
    line-height: 0.9;
    letter-spacing: -0.035em;
  }

  .company-metrics .metric-focus > strong::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 50%;
    left: 34%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(226, 189, 120, 0.13);
    border-radius: 50%;
    opacity: 0.2;
    background: radial-gradient(circle, rgba(255, 218, 145, 0.2), rgba(119, 229, 229, 0.055) 42%, transparent 70%);
    box-shadow: 0 0 64px rgba(226, 189, 120, 0.12), inset 0 0 50px rgba(226, 189, 120, 0.08);
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  .company-metrics .metric-focus > strong::after {
    position: absolute;
    z-index: 3;
    content: "";
    right: -18px;
    bottom: 12px;
    left: -18px;
    height: 1px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 185, 0.95) 46%, var(--cyan) 62%, transparent);
    box-shadow: 0 0 20px rgba(255, 224, 151, 0.7);
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left;
  }

  .company-metrics .metric-focus h4 {
    margin-top: 10px;
    font-size: clamp(27px, 2.15vw, 34px);
  }

  .company-metrics .metric-focus > p {
    margin-top: 10px;
  }

  .company-metrics .metric-signal-bars {
    height: 48px;
  }

  .company-metrics .metric-focus-progress {
    margin-top: 12px;
  }

  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-focus,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-node,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-theater-rail,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-constellation,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-observatory-glow {
    visibility: hidden;
    opacity: 0;
  }

  .company-metrics .metric-observatory.is-live .metric-focus {
    animation: metricFocusImpact 920ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .company-metrics .metric-observatory.is-live #metricFocusNumber {
    animation:
      metricNumberImpact 620ms 250ms cubic-bezier(0.2, 0.9, 0.2, 1.16) backwards,
      metricNumberShimmer 920ms 650ms ease-out 1;
  }

  .company-metrics .metric-observatory.is-live .metric-focus > strong::before {
    animation: metricNumberHalo 1100ms 180ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-focus > strong::after {
    animation: metricNumberStrike 720ms 390ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-focus-meta,
  .company-metrics .metric-observatory.is-live .metric-focus h4,
  .company-metrics .metric-observatory.is-live .metric-focus > p {
    animation: metricCopyLock 520ms 560ms ease-out backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-signal-bars,
  .company-metrics .metric-observatory.is-live .metric-focus-progress {
    animation: metricDeckRise 500ms 740ms ease-out backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-observatory-glow {
    animation: metricGlowIgnition 1380ms 80ms ease-out backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-constellation {
    animation: metricGridWake 720ms 320ms ease-out backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-node {
    animation: metricCardImpact 500ms cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .company-metrics .metric-observatory.is-live .metric-node:nth-child(1) { animation-delay: 420ms; }
  .company-metrics .metric-observatory.is-live .metric-node:nth-child(2) { animation-delay: 470ms; }
  .company-metrics .metric-observatory.is-live .metric-node:nth-child(3) { animation-delay: 520ms; }
  .company-metrics .metric-observatory.is-live .metric-node:nth-child(4) { animation-delay: 570ms; }
  .company-metrics .metric-observatory.is-live .metric-node:nth-child(5) { animation-delay: 620ms; }
  .company-metrics .metric-observatory.is-live .metric-node:nth-child(6) { animation-delay: 670ms; }

  .company-metrics .metric-observatory.is-live .metric-theater-rail {
    animation: metricRailIgnite 560ms 890ms ease-out backwards;
  }

  @keyframes metricFocusImpact {
    0% {
      opacity: 0;
      clip-path: inset(11% 42% 11% 42% round 25px);
      filter: blur(13px) brightness(0.18);
      transform: perspective(1100px) translate3d(24px, 42px, -260px) rotateY(22deg) scale(0.82);
    }
    64% {
      opacity: 1;
      clip-path: inset(0 round 25px);
      filter: blur(0) brightness(1.42);
      transform: perspective(1100px) translate3d(0, 0, 22px) rotateY(-1.5deg) scale(1.018);
    }
    100% {
      opacity: 1;
      clip-path: inset(0 round 25px);
      filter: none;
      transform: perspective(1100px) rotateY(3deg) rotateX(0.5deg);
    }
  }

  @keyframes metricNumberImpact {
    0% { opacity: 0; filter: blur(14px); transform: translateY(68%) scaleY(0.26) scaleX(0.88); }
    68% { opacity: 1; filter: blur(0); transform: translateY(-3%) scaleY(1.06) scaleX(1); }
    100% { opacity: 1; filter: blur(0); transform: none; }
  }

  @keyframes metricNumberShimmer {
    from { background-position: 170% 50%; }
    to { background-position: 18% 50%; }
  }

  @keyframes metricNumberHalo {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.24); }
    52% { opacity: 0.72; transform: translate(-50%, -50%) scale(1.18); }
    100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  }

  @keyframes metricNumberStrike {
    0% { opacity: 0; transform: scaleX(0); }
    46% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(1); }
  }

  @keyframes metricCopyLock {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }

  @keyframes metricDeckRise {
    from { opacity: 0; clip-path: inset(100% 0 0); transform: translateY(18px); }
    to { opacity: 1; clip-path: inset(0); transform: none; }
  }

  @keyframes metricGlowIgnition {
    0% { opacity: 0; transform: scale(0.72); }
    34% { opacity: 1; transform: scale(1.08); }
    100% { opacity: 0.66; transform: scale(1); }
  }

  @keyframes metricGridWake {
    from { opacity: 0; filter: blur(4px); }
    to { opacity: 0.16; filter: blur(0.2px); }
  }

  @keyframes metricCardImpact {
    0% {
      opacity: 0;
      filter: blur(10px) brightness(0.35);
      transform: translate3d(calc(var(--theater-x) + 210px), calc(var(--theater-y) + 26px), -260px) rotateY(-52deg) rotateZ(8deg) scale(0.76);
    }
    72% {
      opacity: 1;
      filter: blur(0) brightness(1.18);
      transform: translate3d(calc(var(--theater-x) - 8px), var(--theater-y), 22px) rotateY(2deg) rotateZ(0deg) scale(1.015);
    }
    100% {
      opacity: 1;
      filter: none;
      transform: translate3d(var(--theater-x), var(--theater-y), 0) rotateY(-7deg) rotateZ(var(--theater-rotate));
    }
  }

  @keyframes metricRailIgnite {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
  }
}

@media (min-width: 900px) and (prefers-reduced-motion: reduce) {
  .department-system {
    min-height: 760px;
    perspective: none;
  }

  .department-system > .department-hub {
    top: 190px;
  }

  .department-system .department-card-3d {
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 230px;
    padding-bottom: 30px;
    transform: none !important;
    animation: none !important;
  }

  .department-system .department-card-3d::before {
    display: none;
  }

  .department-system .department-card-3d > li {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 112px;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .department-system .department-card-face--front {
    position: relative;
    min-height: 112px;
    transform: none !important;
  }

  .department-system .department-card-face--back {
    display: none;
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {

  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-focus,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-node,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-theater-rail,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-constellation,
  .company-metrics .metric-observatory.theater-ready:not(.is-live) .metric-observatory-glow {
    visibility: visible;
    opacity: 1;
  }

  .company-metrics .metric-observatory.is-live .metric-focus,
  .company-metrics .metric-observatory.is-live #metricFocusNumber,
  .company-metrics .metric-observatory.is-live .metric-focus > strong::before,
  .company-metrics .metric-observatory.is-live .metric-focus > strong::after,
  .company-metrics .metric-observatory.is-live .metric-focus-meta,
  .company-metrics .metric-observatory.is-live .metric-focus h4,
  .company-metrics .metric-observatory.is-live .metric-focus > p,
  .company-metrics .metric-observatory.is-live .metric-signal-bars,
  .company-metrics .metric-observatory.is-live .metric-focus-progress,
  .company-metrics .metric-observatory.is-live .metric-observatory-glow,
  .company-metrics .metric-observatory.is-live .metric-constellation,
  .company-metrics .metric-observatory.is-live .metric-node,
  .company-metrics .metric-observatory.is-live .metric-theater-rail {
    animation: none;
  }
}

/* Final rigid-card WebGL ribbon overrides */

@media (min-width: 960px) {
  .year-ribbon--webgl {
    height: min(940px, calc(100svh - 68px));
    min-height: 700px;
  }

  .year-ribbon--webgl .year-ribbon__sticky {
    position: relative;
    top: auto;
    height: 100%;
    min-height: min(720px, calc(100svh - 68px));
    max-height: 940px;
    padding: 0;
    background:
      radial-gradient(circle at 74% 34%, rgba(226, 189, 120, 0.075), transparent 31%),
      radial-gradient(circle at 43% 78%, rgba(119, 229, 229, 0.055), transparent 32%),
      linear-gradient(145deg, #11171b 0%, #080f14 57%, #050b0f 100%);
  }

  .year-ribbon--webgl .year-ribbon__canvas {
    height: 100%;
    min-height: 0;
  }

  .year-ribbon--webgl .year-ribbon__intro {
    top: clamp(26px, 4vh, 50px);
    left: clamp(34px, 4vw, 62px);
    width: min(360px, 32%);
  }

  .year-ribbon--webgl .year-ribbon__intro h3 {
    margin-top: clamp(14px, 2.2vh, 22px);
    font-size: clamp(44px, 5vw, 76px);
  }

  .year-ribbon--webgl .year-ribbon__intro > p:not(.section-index) {
    max-width: 330px;
    margin-top: clamp(16px, 2.4vh, 24px);
    font-size: 12px;
    line-height: 1.72;
  }

  .year-ribbon--webgl .year-ribbon__hint {
    margin-top: clamp(14px, 2.2vh, 22px);
  }

  .year-ribbon--webgl .year-ribbon__webgl {
    filter: none;
  }

  .year-ribbon--webgl .year-ribbon__ghost {
    top: auto;
    right: -0.03em;
    bottom: 0.05em;
    opacity: calc(0.12 + var(--ribbon-progress, 0) * 0.055);
    font-size: clamp(118px, 13vw, 198px);
    letter-spacing: -0.06em;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.13);
    transform: translate3d(calc(var(--ribbon-progress, 0) * -34px), 0, 0);
  }

  .year-ribbon--webgl .year-ribbon__viewport {
    position: absolute;
    z-index: 4;
    inset: 42px 0 126px;
    overflow: hidden;
    perspective: none;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 96%, transparent 100%);
  }

  .year-ribbon--webgl .year-ribbon__viewport::after {
    position: absolute;
    z-index: -1;
    content: "";
    right: 4%;
    bottom: 8%;
    width: 72%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.34), transparent 69%);
    filter: blur(20px);
    transform: perspective(800px) rotateX(67deg);
    pointer-events: none;
  }

  .year-ribbon--webgl .year-ribbon__depth-grid {
    opacity: 0.18;
    mask-image: radial-gradient(ellipse at 68% 55%, #000 0%, transparent 63%);
  }

  .year-ribbon--webgl .year-ribbon__silk-label {
    top: 38px;
    right: clamp(34px, 3.6vw, 56px);
    color: rgba(255, 255, 255, 0.38);
  }

  .year-ribbon--webgl .year-ribbon__track {
    position: absolute;
    z-index: 36;
    top: auto;
    right: clamp(500px, 44vw, 590px);
    bottom: 35px;
    left: clamp(42px, 4vw, 62px);
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: none;
    transform-style: flat;
  }

  .year-ribbon--webgl .year-ribbon__track::before,
  .year-ribbon--webgl .year-ribbon__track::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 1px;
    pointer-events: none;
  }

  .year-ribbon--webgl .year-ribbon__track::before {
    right: 0;
    background: rgba(255, 255, 255, 0.12);
  }

  .year-ribbon--webgl .year-ribbon__track::after {
    width: calc(var(--ribbon-progress, 0) * 100%);
    background: linear-gradient(90deg, var(--brass-bright), #fff0c6);
    box-shadow: 0 0 16px rgba(226, 189, 120, 0.35);
  }

  .year-ribbon--webgl .year-ribbon__track > li {
    position: relative;
    inset: auto;
    display: flex;
    width: auto;
    height: auto;
    justify-content: center;
    pointer-events: auto;
    transform: none;
  }

  .year-ribbon--webgl .year-ribbon__status {
    z-index: 34;
    right: clamp(40px, 4vw, 62px);
    bottom: 28px;
    left: auto;
    width: min(470px, 41%);
    grid-template-columns: auto minmax(180px, 1fr) auto;
    gap: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(226, 189, 120, 0.28);
    background: linear-gradient(90deg, transparent, rgba(7, 16, 25, 0.5));
  }

  .year-ribbon--webgl .year-ribbon__status-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    align-self: end;
    padding-bottom: 3px;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > strong {
    overflow: hidden;
    margin: 0;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 590;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em {
    overflow: hidden;
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon--webgl .year-ribbon__controls {
    align-self: end;
    padding-bottom: 1px;
  }

  .year-ribbon--webgl .year-ribbon__controls button {
    width: 38px;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .year-ribbon--webgl .year-ribbon__ghost {
    bottom: 0.12em;
    font-size: clamp(104px, 12vw, 142px);
  }

  .year-ribbon--webgl .year-ribbon__viewport {
    inset: 28px 0 108px;
  }

  .year-ribbon--webgl .year-ribbon__track {
    right: 430px;
    bottom: 24px;
    left: 34px;
    gap: 2px;
  }

  .year-ribbon--webgl .year-ribbon__milestone {
    width: 24px;
    height: 24px;
  }

  .year-ribbon--webgl .year-ribbon__milestone[aria-current="true"] {
    width: 38px;
  }

  .year-ribbon--webgl .year-ribbon__status {
    right: 34px;
    bottom: 18px;
    left: 34px;
    width: auto;
    grid-template-columns: minmax(250px, 300px) minmax(18px, 1fr) auto minmax(150px, 200px) auto;
    gap: 15px;
    padding-top: 0;
  }

  .year-ribbon--webgl .year-ribbon__status-index > span {
    font-size: clamp(58px, 6vw, 72px);
  }

  .year-ribbon--webgl .year-ribbon__status-copy > strong {
    font-size: 21px;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em {
    padding: 13px 15px 13px 17px;
    font-size: 14px;
    line-height: 1.55;
  }

  .year-ribbon--webgl .year-ribbon__controls {
    gap: 5px;
  }

  .year-ribbon--webgl .year-ribbon__controls button {
    width: 34px;
  }
}

@media (min-width: 960px) and (prefers-reduced-motion: reduce) {
  .year-ribbon--webgl {
    height: auto;
    min-height: 0;
  }

  .year-ribbon--webgl .year-ribbon__sticky {
    position: relative;
    top: auto;
    height: 760px;
    min-height: 760px;
    max-height: none;
    padding: 0;
  }

  .year-ribbon--webgl .year-ribbon__viewport {
    position: absolute;
    inset: 62px 0 126px;
  }

  .year-ribbon--webgl .year-ribbon__track {
    display: grid;
    grid-template-columns: repeat(14, minmax(24px, 1fr));
  }
}

/* The timeline remains available to the autoplay controller but is not shown. */
@media (min-width: 960px) {
  .year-ribbon--webgl .year-ribbon__track {
    display: none;
  }
}

/* Split the active milestone into a readable note at left and the year lockup at right. */
@media (min-width: 960px) {
  .year-ribbon--webgl .year-ribbon__sticky,
  .year-ribbon--webgl .year-ribbon__canvas {
    overflow: clip;
    overscroll-behavior: none;
  }

  .year-ribbon--webgl .year-ribbon__status {
    z-index: 34;
    right: clamp(40px, 4vw, 62px);
    bottom: 28px;
    left: clamp(40px, 4vw, 62px);
    width: auto;
    grid-template-columns: minmax(300px, 360px) minmax(24px, 1fr) auto minmax(180px, 240px) auto;
    gap: 18px;
    padding-top: 0;
    border-top: 0;
    background: none;
  }

  .year-ribbon--webgl .year-ribbon__status::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: min(470px, 45%);
    height: 1px;
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.28), rgba(226, 189, 120, 0.08));
    pointer-events: none;
  }

  .year-ribbon--webgl .year-ribbon__status-index {
    grid-column: 3;
    align-self: end;
    padding-top: 18px;
  }

  .year-ribbon--webgl .year-ribbon__status-copy {
    display: contents;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > strong {
    grid-column: 4;
    align-self: end;
    overflow: hidden;
    margin: 0;
    padding-bottom: 4px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 590;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 16px 18px 16px 20px;
    color: rgba(255, 255, 255, 0.82);
    border-left: 2px solid rgba(226, 189, 120, 0.72);
    background: linear-gradient(90deg, rgba(226, 189, 120, 0.09), rgba(7, 16, 25, 0.42) 78%, transparent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    font-size: clamp(15px, 1.15vw, 17px);
    font-style: normal;
    line-height: 1.62;
    text-overflow: clip;
    white-space: normal;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em::before {
    display: block;
    margin-bottom: 8px;
    color: var(--brass-bright);
    content: "MILESTONE NOTE";
    font: 650 9px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.18em;
  }

  .year-ribbon--webgl .year-ribbon__controls {
    grid-column: 5;
    align-self: end;
    padding-bottom: 1px;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .year-ribbon--webgl .year-ribbon__status {
    right: 34px;
    bottom: 18px;
    left: 34px;
    grid-template-columns: minmax(250px, 300px) minmax(18px, 1fr) auto minmax(150px, 200px) auto;
    gap: 15px;
  }

  .year-ribbon--webgl .year-ribbon__status-copy > em {
    padding: 13px 15px 13px 17px;
    font-size: 14px;
    line-height: 1.55;
  }
}

/* Unified section typography — matches the company title scale across the site. */
:root {
  --section-title-size: clamp(48px, 6.2vw, 98px);
  --section-subtitle-size: clamp(17px, 1.55vw, 22px);
}

:is(
  .company-copy h2,
  .honors-heading-copy h3,
  .cases-intro h2,
  .diagnosis-copy h2,
  .detail-head h2,
  .xhs-loop-copy h3,
  .weighting-copy h3,
  .region-intro h2,
  .synergy-title h3,
  .benefits-title h2,
  .contact-main h2,
  .year-ribbon--webgl .year-ribbon__intro h3
) {
  font-size: var(--section-title-size);
}

:is(
  .company-copy .lead,
  .honors-heading-copy > p:last-child,
  .cases-intro > p,
  .diagnosis-copy > p:nth-of-type(2),
  .detail-head > p,
  .xhs-loop-copy > p:last-child,
  .region-intro > p,
  .contact-main > p:nth-of-type(2),
  .year-ribbon--webgl .year-ribbon__intro > p:not(.section-index)
) {
  font-size: var(--section-subtitle-size);
  line-height: 1.8;
}

@media (min-width: 960px) {
  .year-ribbon--webgl .year-ribbon__intro {
    width: min(430px, 37%);
  }
}

@media (max-width: 760px) {
  :root {
    --section-title-size: clamp(42px, 13vw, 58px);
    --section-subtitle-size: 16px;
  }

  .business-sectors-intro h2 .business-sectors-title-line {
    font-size: clamp(24px, 7.35vw, 34px);
  }

  .company-method,
  .company-method > .year-ribbon,
  .company-method > .department-system {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .year-ribbon--webgl .year-ribbon__intro {
    right: 18px;
    left: 18px;
    width: auto;
    max-width: none;
  }
}

/* Tighten the handoff from the department system into group honors. */
.company.section-shell {
  padding-bottom: clamp(44px, 4.2vw, 70px);
}

.honors-section.section-shell {
  padding-top: clamp(48px, 5vw, 82px);
}

.honors-section .group-honors {
  margin-top: clamp(54px, 6vw, 90px);
}

/* Standalone five-sector business system. */
.business-sectors-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(226, 189, 120, 0.09), transparent 28%),
    radial-gradient(circle at 14% 84%, rgba(119, 229, 229, 0.045), transparent 30%),
    var(--ink);
}

.business-sectors-section::before {
  position: absolute;
  z-index: -1;
  content: "05";
  top: clamp(140px, 15vw, 230px);
  right: -0.04em;
  color: transparent;
  opacity: 0.38;
  font: 760 clamp(180px, 24vw, 360px)/0.76 "Bahnschrift", sans-serif;
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.1);
  pointer-events: none;
}

.business-sectors-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(54px, 8vw, 128px);
  align-items: end;
  padding: clamp(72px, 8vw, 124px) 0 clamp(54px, 6vw, 88px);
}

.business-sectors-intro h2 {
  margin-top: 22px;
  font-size: var(--section-title-size);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.business-sectors-intro h2 span {
  color: var(--brass-bright);
}

.business-sectors-intro h2 .business-sectors-title-line {
  display: inline-block;
  font-size: clamp(34px, 4.25vw, 66px);
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.business-sectors-intro > p {
  max-width: 590px;
  padding-bottom: 7px;
  color: var(--text-muted);
  font-size: var(--section-subtitle-size);
  line-height: 1.8;
}

.business-sectors-stage {
  position: relative;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.24);
  border-radius: 32px;
  background: #0a151e;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.business-sectors-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  align-content: center;
  padding: clamp(26px, 3.2vw, 50px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 18% 16%, rgba(226, 189, 120, 0.1), transparent 36%),
    #09131c;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.business-sectors-list li {
  position: relative;
  display: grid;
  min-height: 96px;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px 5px 18px 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
  transition: border-color 240ms ease, background 240ms ease, transform 320ms var(--ease);
}

.business-sectors-list li::after {
  position: absolute;
  content: "";
  top: 15px;
  right: 15px;
  width: 22px;
  height: 1px;
  background: rgba(226, 189, 120, 0.58);
  box-shadow: 0 0 14px rgba(226, 189, 120, 0.2);
}

.business-sectors-list li:hover {
  border-color: rgba(226, 189, 120, 0.42);
  background: linear-gradient(135deg, rgba(226, 189, 120, 0.11), rgba(255, 255, 255, 0.02));
  transform: translateX(8px);
}

.business-sectors-list li > span {
  color: var(--brass-bright);
  font: 650 11px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.business-sectors-list li > div {
  display: grid;
  gap: 9px;
}

.business-sectors-list strong {
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 570;
  letter-spacing: -0.025em;
}

.business-sectors-list em {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.65;
}

.business-sectors-map {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 640px;
  place-items: center;
  padding: clamp(34px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.82), transparent 48%),
    #e9e5dd;
}

.business-sectors-map::before {
  position: absolute;
  content: "BUSINESS / 05";
  right: -0.03em;
  bottom: -0.08em;
  color: transparent;
  opacity: 0.5;
  font: 720 clamp(72px, 8vw, 126px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.07em;
  -webkit-text-stroke: 1px rgba(124, 85, 42, 0.11);
  pointer-events: none;
}

.business-sectors-map img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(75, 48, 24, 0.1));
  transition: transform 700ms var(--ease);
}

.business-sector-pentagons {
  position: absolute;
  z-index: 2;
  right: clamp(30px, 4.5vw, 72px);
  bottom: clamp(52px, 6vw, 88px);
  width: 250px;
  height: 250px;
  filter: drop-shadow(0 24px 32px rgba(28, 48, 58, 0.14));
  pointer-events: none;
}

.business-sector-pentagons::before,
.business-sector-pentagons::after {
  position: absolute;
  z-index: 8;
  left: 50%;
  color: rgba(61, 72, 73, 0.86);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.business-sector-pentagons::before {
  content: "05";
  top: 82px;
  font: 720 54px/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.06em;
}

.business-sector-pentagons::after {
  content: "FIVE SECTORS / ONE SYSTEM";
  top: 145px;
  width: 190px;
  font: 650 8px/1.2 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.business-pentagon {
  position: absolute;
  top: 50%;
  left: 50%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: translate(-50%, -50%);
  transform-origin: 50% 52%;
  transition: transform var(--pentagon-speed, 420ms) cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
}

.business-pentagon--1 {
  --pentagon-speed: 360ms;
  width: 250px;
  height: 250px;
  background: rgba(13, 35, 51, 0.13);
  box-shadow: inset 0 0 0 1px rgba(13, 35, 51, 0.2);
}

.business-pentagon--2 {
  --pentagon-speed: 430ms;
  width: 218px;
  height: 218px;
  background: rgba(42, 88, 112, 0.14);
  box-shadow: inset 0 0 0 1px rgba(42, 88, 112, 0.22);
}

.business-pentagon--3 {
  --pentagon-speed: 500ms;
  width: 186px;
  height: 186px;
  background: rgba(91, 140, 145, 0.17);
  box-shadow: inset 0 0 0 1px rgba(91, 140, 145, 0.24);
}

.business-pentagon--4 {
  --pentagon-speed: 570ms;
  width: 154px;
  height: 154px;
  background: rgba(196, 162, 104, 0.2);
  box-shadow: inset 0 0 0 1px rgba(157, 112, 58, 0.22);
}

.business-pentagon--5 {
  --pentagon-speed: 640ms;
  width: 122px;
  height: 122px;
  background: rgba(245, 232, 202, 0.9);
  box-shadow: inset 0 0 0 1px rgba(157, 112, 58, 0.24), 0 10px 24px rgba(111, 77, 42, 0.11);
}

.business-sectors-map:hover .business-pentagon--1 {
  transform: translate(-50%, -50%) scale(1.1) rotate(30deg);
}

.business-sectors-map:hover .business-pentagon--2 {
  transform: translate(-56%, -44%) scale(1.1) rotate(66deg);
}

.business-sectors-map:hover .business-pentagon--3 {
  transform: translate(-60%, -38%) scale(1.1) rotate(102deg);
}

.business-sectors-map:hover .business-pentagon--4 {
  transform: translate(-64%, -31%) scale(1.1) rotate(146deg);
}

.business-sectors-map:hover .business-pentagon--5 {
  transform: translate(-68%, -24%) scale(1.1) rotate(190deg);
}

.business-sectors-map:hover img {
  transform: scale(1.025);
}

.business-sectors-map figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(87, 59, 31, 0.62);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.business-sectors-stage.reveal li {
  opacity: 0;
  transform: translateY(18px);
}

.business-sectors-stage.reveal.is-visible li {
  animation: businessSectorIn 520ms var(--ease) both;
  animation-delay: calc(var(--sector-i) * 75ms);
}

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

@media (max-width: 980px) {
  .business-sectors-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .business-sectors-intro > p {
    max-width: 720px;
  }

  .business-sectors-stage {
    grid-template-columns: 1fr;
  }

  .business-sectors-map {
    min-height: 460px;
    order: -1;
  }
}

@media (max-width: 620px) {
  .business-sectors-intro {
    padding-block: 58px 44px;
  }

  .business-sectors-stage {
    border-radius: 20px;
  }

  .business-sectors-map {
    min-height: 330px;
    padding: 24px 18px 48px;
  }

  .business-sector-pentagons {
    right: 12px;
    bottom: 34px;
    scale: 0.66;
    transform-origin: right bottom;
  }

  .business-sectors-map figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
    font-size: 8px;
  }

  .business-sectors-list {
    padding: 14px;
  }

  .business-sectors-list li {
    min-height: 104px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 16px 14px;
  }

  .business-sectors-list em {
    font-size: 10px;
  }
}

/* Review pass: editorial honors header + six-step fan deck. */

.honors-heading {
  display: block;
  padding: clamp(8px, 1vw, 16px) 0 clamp(34px, 4vw, 58px);
  border-bottom: 1px solid rgba(226, 189, 120, 0.22);
}

.honors-heading-copy {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  grid-template-areas:
    "label"
    "title";
  gap: clamp(24px, 3vw, 46px);
  align-items: end;
  padding-top: 0;
}

.honors-heading-copy .eyebrow {
  grid-area: label;
}

.group-honors .honors-heading-copy h3 {
  grid-area: title;
  max-width: 760px;
  margin-top: 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.group-honors .honors-heading-copy > p:last-child {
  grid-area: body;
  max-width: 520px;
  margin-top: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(226, 189, 120, 0.34);
  font-size: 15px;
  line-height: 1.8;
}

@media (min-width: 1120px) {
  .growth-model {
    grid-template-columns: minmax(270px, 0.7fr) minmax(620px, 1.3fr);
    gap: clamp(24px, 3vw, 54px);
    min-height: 600px;
    padding: clamp(52px, 5vw, 76px);
    overflow: hidden;
    background:
      radial-gradient(circle at 76% 30%, rgba(196, 162, 104, 0.2), transparent 27%),
      radial-gradient(circle at 76% 88%, rgba(119, 229, 229, 0.09), transparent 24%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(231, 227, 218, 0.58));
  }

  .growth-model::after {
    right: -0.02em;
    bottom: -0.17em;
    opacity: 0.26;
  }

  .growth-model h3 {
    max-width: 300px;
    font-size: clamp(38px, 3.8vw, 56px);
  }

  .growth-model ol {
    position: relative;
    display: block;
    width: min(100%, 720px);
    min-height: 410px;
    margin-left: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    perspective: 1200px;
  }

  .growth-model ol::before {
    z-index: 0;
    content: "";
    inset: auto 8% 12px;
    width: auto;
    height: 82px;
    border: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(16, 24, 32, 0.22), transparent 68%);
    filter: blur(14px);
    transform: none;
  }

  .growth-model ol::after {
    z-index: 1;
    content: "01 — 06 / GROWTH SEQUENCE";
    top: auto;
    right: auto;
    bottom: -2px;
    left: 50%;
    width: auto;
    height: auto;
    color: rgba(16, 24, 32, 0.42);
    background: none;
    box-shadow: none;
    font: 650 9px/1 "Bahnschrift", sans-serif;
    letter-spacing: 0.2em;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .growth-model li {
    position: absolute;
    z-index: calc(2 + var(--fan-index, 0));
    bottom: 52px;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: 166px;
    min-height: 252px;
    padding: 25px 20px 54px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.96);
    border-radius: 15px;
    color: var(--ink);
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.52), transparent 38%),
      var(--fan-color, #d8e3ea);
    box-shadow: -7px 10px 24px rgba(16, 24, 32, 0.16);
    transform-origin: 50% calc(100% + 18px);
    cursor: default;
    scale: 1;
    transition:
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
      scale 240ms ease,
      box-shadow 260ms ease,
      filter 260ms ease;
  }

  .growth-model li::before {
    position: absolute;
    content: "";
    inset: auto 0 0;
    width: auto;
    height: 39px;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg, var(--brass) 0 32%, transparent 32%) 20px 19px / calc(100% - 40px) 1px no-repeat,
      rgba(251, 248, 240, 0.98);
    box-shadow: none;
    transform: none;
  }

  .growth-model li::after {
    position: absolute;
    content: "";
    top: 18px;
    right: 17px;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(16, 24, 32, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
  }

  .growth-model li:nth-child(1) { --fan-index: 1; --fan-color: #cedee9; transform: translateX(-50%) rotate(-4deg) translateY(7px); }
  .growth-model li:nth-child(2) { --fan-index: 2; --fan-color: #d8e3e7; transform: translateX(-50%) rotate(-2.5deg) translateY(5px); }
  .growth-model li:nth-child(3) { --fan-index: 3; --fan-color: #e2e4df; transform: translateX(-50%) rotate(-1deg) translateY(3px); }
  .growth-model li:nth-child(4) { --fan-index: 4; --fan-color: #e8dfce; transform: translateX(-50%) rotate(1deg) translateY(2px); }
  .growth-model li:nth-child(5) { --fan-index: 5; --fan-color: #e5d5bd; transform: translateX(-50%) rotate(2.5deg) translateY(1px); }
  .growth-model li:nth-child(6) { --fan-index: 6; --fan-color: #ddc39d; transform: translateX(-50%) rotate(4deg); }

  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(1) { transform: translateX(-50%) rotate(-45deg) translateY(-10px); }
  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(2) { transform: translateX(-50%) rotate(-27deg) translateY(-19px); }
  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(3) { transform: translateX(-50%) rotate(-9deg) translateY(-25px); }
  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(4) { transform: translateX(-50%) rotate(9deg) translateY(-25px); }
  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(5) { transform: translateX(-50%) rotate(27deg) translateY(-19px); }
  .growth-model ol:is(:hover, :focus-within, .is-expanded) li:nth-child(6) { transform: translateX(-50%) rotate(45deg) translateY(-10px); }

  .growth-model ol:is(:hover, :focus-within, .is-expanded) li {
    filter: saturate(1.04);
  }

  .growth-model ol li:hover,
  .growth-model ol li.is-active:hover {
    z-index: 30;
    scale: 1.09;
    background:
      linear-gradient(155deg, rgba(255, 255, 255, 0.68), transparent 38%),
      var(--fan-color);
    box-shadow: -10px 20px 42px rgba(16, 24, 32, 0.24);
  }

  .growth-model li.is-active {
    box-shadow: -7px 10px 24px rgba(16, 24, 32, 0.16);
    scale: 1;
  }

  .growth-model li span {
    color: #74501e;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .growth-model li strong {
    margin-top: auto;
    padding-top: 74px;
    font-size: 19px;
    line-height: 1.25;
  }

  .growth-model li em {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 1119px) {
  .honors-heading-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "body";
    gap: 22px;
  }

  .honors-heading-copy > p:last-child {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .group-honors .honors-heading-copy h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .group-honors .honors-heading-copy > p:last-child {
    padding-left: 16px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-model li {
    transition-duration: 1ms !important;
  }
}

/* XHS growth model: let the fan of cards sit directly on the section background. */
.xhs-detail .growth-model {
  width: min(100%, 1180px);
  min-height: 0;
  margin: clamp(42px, 5.5vw, 72px) auto 0;
  padding: clamp(18px, 2.5vw, 32px) 0 clamp(24px, 3vw, 40px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #f6f2e9;
  background: transparent;
  box-shadow: none;
}

.xhs-detail .growth-model h3 {
  color: #f6f2e9;
}

.xhs-detail .growth-model .section-index {
  color: var(--xhs-gold);
}

.xhs-detail .growth-model::before {
  color: rgba(246, 242, 233, 0.48);
}

.xhs-detail .growth-model::after {
  opacity: 0.1;
  -webkit-text-stroke-color: rgba(226, 189, 120, 0.24);
}

@media (min-width: 1120px) {
  .xhs-detail .growth-model {
    grid-template-columns: minmax(240px, 0.62fr) minmax(560px, 1.38fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
  }

  .xhs-detail .growth-model h3 {
    max-width: 300px;
    font-size: clamp(36px, 3.4vw, 50px);
  }

  .xhs-detail .growth-model ol {
    min-height: 350px;
  }

  .xhs-detail .growth-model ol::after {
    color: rgba(246, 242, 233, 0.38);
  }

  .xhs-detail .growth-model li {
    bottom: 40px;
  }
}

/* Group honors panorama: compact brand lockup expands into an archival frame. */
.honors-panorama-open {
  isolation: isolate;
  border: 1px solid rgba(226, 189, 120, 0.28);
  border-radius: clamp(16px, 1.7vw, 24px);
  background: #101b25;
  box-shadow:
    0 24px 64px rgba(1, 7, 12, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
  transition:
    border-color 520ms ease,
    border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.honors-panorama-open::before {
  position: absolute;
  z-index: 3;
  content: "";
  inset: 0;
  border: 1px solid rgba(236, 202, 138, 0.86);
  border-radius: 8px;
  opacity: 0;
  transform: rotate(1.8deg);
  transition:
    inset 560ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.honors-panorama-open::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 18, 0.62), transparent 22% 78%, rgba(5, 12, 18, 0.58)),
    linear-gradient(180deg, rgba(4, 10, 15, 0.08), rgba(4, 10, 15, 0.5));
  opacity: 0;
  transition: opacity 520ms ease;
  pointer-events: none;
}

.honors-panorama-open img {
  position: relative;
  z-index: 0;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.001);
  transition:
    filter 720ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.honors-panorama-open > .honors-panorama-lockup {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  display: flex;
  width: 68px;
  height: 68px;
  min-height: 0;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 8px;
  color: #f2d79d;
  border: 1px solid rgba(241, 207, 144, 0.76);
  border-radius: 50%;
  background: rgba(7, 16, 25, 0.76);
  box-shadow:
    0 16px 42px rgba(1, 6, 10, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(12px) saturate(120%);
  transform: translate(-50%, -50%) scale(0.82);
  transition:
    visibility 0s 180ms,
    opacity 260ms ease,
    width 720ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 520ms ease,
    box-shadow 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.honors-panorama-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border: 1px solid rgba(242, 213, 158, 0.72);
  border-radius: 50%;
  color: #f3d89f;
  font: 720 12px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.13em;
  text-indent: 0.13em;
}

.honors-panorama-mark::after {
  position: absolute;
  content: "";
  inset: 5px;
  border: 1px solid rgba(242, 213, 158, 0.22);
  border-radius: inherit;
}

.honors-panorama-wordmark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 0;
  flex: 0 0 auto;
  gap: 5px;
  overflow: hidden;
  padding-right: 0;
  color: #f7e8c8;
  background: transparent;
  border-radius: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    width 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms 100ms ease,
    padding-right 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.honors-panorama-wordmark strong {
  color: inherit;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.honors-panorama-wordmark em {
  color: rgba(242, 213, 158, 0.76);
  font: 620 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.2em;
}

.honors-panorama-trail {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    104deg,
    transparent 0 34%,
    rgba(244, 214, 157, 0.08) 40%,
    rgba(255, 238, 198, 0.58) 49%,
    rgba(244, 214, 157, 0.16) 57%,
    transparent 66% 100%
  );
  mix-blend-mode: screen;
  transform: translateX(-115%);
  pointer-events: none;
}

.honors-panorama-open > .honors-panorama-bottom {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 22px;
  left: 50%;
  display: block;
  width: auto;
  min-height: 0;
  padding: 2px 7px 2px 12px;
  color: rgba(246, 220, 170, 0.86);
  background: rgba(7, 16, 25, 0.58);
  border-radius: 2px;
  font: 650 8px/1.2 "Bahnschrift", sans-serif;
  letter-spacing: 0.62em;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition:
    letter-spacing 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.honors-panorama-open > .honors-panorama-action {
  z-index: 5;
  right: 24px;
  bottom: 22px;
  color: #f5e8ce;
  border: 1px solid rgba(242, 213, 158, 0.54);
  background: rgba(7, 16, 25, 0.82);
  box-shadow: 0 12px 28px rgba(2, 7, 11, 0.24);
}

.honors-panorama-open:is(:hover, :focus-visible) {
  border-color: rgba(242, 213, 158, 0.68);
  border-radius: 8px;
  box-shadow:
    0 34px 78px rgba(1, 7, 12, 0.4),
    0 0 0 1px rgba(226, 189, 120, 0.08);
  transform: translateY(-4px) scale(1.008);
}

.honors-panorama-open:is(:hover, :focus-visible)::before {
  inset: clamp(11px, 1.4vw, 18px);
  opacity: 1;
  transform: rotate(0);
}

.honors-panorama-open:is(:hover, :focus-visible)::after {
  opacity: 1;
}

.honors-panorama-open:is(:hover, :focus-visible) img {
  filter: saturate(0.78) contrast(1.08) brightness(0.76);
  transform: scale(1.028);
}

.honors-panorama-open:is(:hover, :focus-visible) > .honors-panorama-lockup {
  width: 268px;
  border-radius: 12px;
  background: rgba(7, 16, 25, 0.86);
  box-shadow:
    0 20px 54px rgba(1, 6, 10, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
  transition-delay: 0s;
}

.honors-panorama-open:is(:hover, :focus-visible) .honors-panorama-wordmark {
  width: 177px;
  padding-right: 8px;
  opacity: 1;
  transform: translateX(0);
}

.honors-panorama-open:is(:hover, :focus-visible) .honors-panorama-trail {
  animation: honorsPanoramaTrail 1050ms 80ms ease-in-out both;
}

.honors-panorama-open:is(:hover, :focus-visible) > .honors-panorama-bottom {
  letter-spacing: 0.28em;
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes honorsPanoramaTrail {
  0% { opacity: 0; transform: translateX(-115%); }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { opacity: 0; transform: translateX(115%); }
}

@media (max-width: 760px) {
  .honors-panorama-open::before {
    inset: 10px;
    opacity: 0.54;
    transform: none;
  }

  .honors-panorama-open > .honors-panorama-lockup {
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    padding: 5px;
    transform: none;
  }

  .honors-panorama-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 8px;
  }

  .honors-panorama-open > .honors-panorama-bottom {
    display: none;
  }

  .honors-panorama-open > .honors-panorama-action {
    right: 12px;
    bottom: 12px;
    min-height: 36px;
    padding-inline: 13px;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .honors-panorama-open,
  .honors-panorama-open::before,
  .honors-panorama-open::after,
  .honors-panorama-open img,
  .honors-panorama-lockup,
  .honors-panorama-wordmark,
  .honors-panorama-bottom,
  .honors-panorama-action {
    transition-duration: 1ms !important;
  }

  .honors-panorama-trail {
    animation: none !important;
  }
}

/* Department depth split: rear cards behind the puffer, front cards above it. */
@media (min-width: 900px) {
  .department-system {
    min-height: 720px;
    padding-bottom: 0;
  }

  .department-system > .department-hub--back {
    z-index: 1;
  }

  .department-system > .department-hub--front {
    z-index: 4;
    /* The foreground copy must include the complete silhouette. Any bottom
       crop opens a window where the rear orbit can cut through the model. */
    clip-path: none;
  }

  .department-system > .department-hub--back,
  .department-system > .department-hub--front {
    top: calc(39.5% + var(--department-stage-offset));
  }

  .department-puffer3d--front {
    filter: none;
  }

  .department-system li {
    /* Rear cards remain readable at the sides but disappear behind the
       sculpture instead of showing through its perforated silhouette. */
    animation-name: departmentDepthLightProtected;
  }

  @keyframes departmentDepthLightProtected {
    0%, 100% { filter: brightness(1.08) saturate(1.03); opacity: 1; }
    20%, 80% { filter: brightness(0.64) saturate(0.88); opacity: 0.72; }
    40%, 60% { filter: brightness(0.2) saturate(0.62); opacity: 0.16; }
    46%, 54% { filter: brightness(0.12) saturate(0.54); opacity: 0.06; }
  }
}

@media (min-width: 1181px) {

  .company.section-shell {
    padding-bottom: 0;
  }

  .business-sectors-section.section-shell {
    padding-top: clamp(24px, 2.6vw, 42px);
  }

  .business-sectors-intro {
    padding-top: clamp(42px, 4.6vw, 68px);
  }
}

/* Five nested business engines — content lives on the pentagon itself. */
.business-sectors-stage {
  display: block;
  min-height: 760px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 49%, rgba(226, 189, 120, 0.13), transparent 34%),
    linear-gradient(145deg, #101d28, #07111a 76%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.business-pentagon-system {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
}

.business-pentagon-system::before {
  position: absolute;
  z-index: -1;
  content: "05";
  right: 26px;
  bottom: -0.12em;
  color: transparent;
  opacity: 0.34;
  font: 760 clamp(140px, 19vw, 280px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.12);
  pointer-events: none;
}

.business-pentagon-scene {
  position: relative;
  width: min(74vw, 710px);
  aspect-ratio: 1;
  margin-top: -8px;
}

.business-pentagon-layers,
.business-pentagon-nodes {
  position: absolute;
  inset: 0;
}

.business-pentagon-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transform: translate(-50%, -50%);
  transform-origin: 50% 52%;
  transition:
    transform var(--sector-layer-speed, 520ms) cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms ease,
    opacity 300ms ease;
}

.business-pentagon-layer::after {
  position: absolute;
  content: "";
  inset: 4px;
  clip-path: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 34%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.business-pentagon-layer--1 {
  --sector-layer-speed: 440ms;
  width: 100%;
  height: 100%;
  background: rgba(17, 47, 64, 0.92);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
}

.business-pentagon-layer--2 {
  --sector-layer-speed: 500ms;
  width: 84%;
  height: 84%;
  background: rgba(35, 82, 102, 0.91);
}

.business-pentagon-layer--3 {
  --sector-layer-speed: 560ms;
  width: 68%;
  height: 68%;
  background: rgba(73, 126, 130, 0.92);
}

.business-pentagon-layer--4 {
  --sector-layer-speed: 620ms;
  width: 52%;
  height: 52%;
  background: rgba(181, 143, 82, 0.94);
}

.business-pentagon-layer--5 {
  --sector-layer-speed: 680ms;
  width: 37%;
  height: 37%;
  background: #ead5a9;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.2));
}

.business-pentagon-scene:hover .business-pentagon-layer--1 {
  transform: translate(-50%, -50%) rotate(-3.5deg) scale(1.015);
}

.business-pentagon-scene:hover .business-pentagon-layer--2 {
  transform: translate(-50%, -50%) rotate(3deg) scale(1.018);
}

.business-pentagon-scene:hover .business-pentagon-layer--3 {
  transform: translate(-50%, -50%) rotate(-4.5deg) scale(1.02);
}

.business-pentagon-scene:hover .business-pentagon-layer--4 {
  transform: translate(-50%, -50%) rotate(5deg) scale(1.024);
}

.business-pentagon-scene:hover .business-pentagon-layer--5 {
  transform: translate(-50%, -50%) rotate(-2deg) scale(1.03);
}

.business-pentagon-system[data-active-sector="0"] .business-pentagon-layer--1,
.business-pentagon-system[data-active-sector="1"] .business-pentagon-layer--2,
.business-pentagon-system[data-active-sector="2"] .business-pentagon-layer--3,
.business-pentagon-system[data-active-sector="3"] .business-pentagon-layer--4,
.business-pentagon-system[data-active-sector="4"] .business-pentagon-layer--5 {
  filter: brightness(1.2) saturate(1.1) drop-shadow(0 0 24px rgba(226, 189, 120, 0.16));
}

.business-pentagon-core {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  display: grid;
  width: 30%;
  min-height: 25%;
  place-content: center;
  justify-items: center;
  color: #17232b;
  text-align: center;
  transform: translate(-50%, -39%);
  pointer-events: none;
}

.business-pentagon-core > span {
  color: rgba(112, 73, 30, 0.8);
  font: 700 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.business-pentagon-core > strong {
  margin-top: 12px;
  font-size: clamp(21px, 2.25vw, 30px);
  font-weight: 690;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.business-pentagon-core > p {
  max-width: 200px;
  margin-top: 11px;
  color: rgba(23, 35, 43, 0.74);
  font-size: 10px;
  line-height: 1.55;
}

.business-pentagon-core > em {
  margin-top: 14px;
  color: rgba(112, 73, 30, 0.64);
  font: 650 7px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.15em;
}

.business-pentagon-nodes {
  z-index: 10;
  list-style: none;
  pointer-events: none;
}

.business-pentagon-nodes li {
  position: absolute;
  width: 170px;
  pointer-events: auto;
}

.business-pentagon-nodes li:nth-child(1) { top: 7%; left: 50%; translate: -50% 0; text-align: center; }
.business-pentagon-nodes li:nth-child(2) { top: 34%; right: -1%; text-align: left; }
.business-pentagon-nodes li:nth-child(3) { right: 8%; bottom: 8%; text-align: left; }
.business-pentagon-nodes li:nth-child(4) { bottom: 8%; left: 8%; text-align: right; }
.business-pentagon-nodes li:nth-child(5) { top: 34%; left: -1%; text-align: right; }

.business-pentagon-nodes button {
  position: relative;
  display: inline-grid;
  gap: 7px;
  padding: 9px 13px;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  background: none;
  text-align: inherit;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: color 220ms ease, transform 260ms var(--ease), text-shadow 220ms ease;
}

.business-pentagon-nodes button::before {
  position: absolute;
  content: "";
  top: 15px;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(226, 189, 120, 0.74);
  border-radius: 50%;
  background: #132736;
  box-shadow: 0 0 0 5px rgba(226, 189, 120, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, scale 220ms ease;
}

.business-pentagon-nodes li:nth-child(1) button::before { top: -2px; left: calc(50% - 3px); }
.business-pentagon-nodes li:nth-child(2) button::before,
.business-pentagon-nodes li:nth-child(3) button::before { left: -4px; }
.business-pentagon-nodes li:nth-child(4) button::before,
.business-pentagon-nodes li:nth-child(5) button::before { right: -4px; }

.business-pentagon-nodes button span {
  color: var(--brass-bright);
  font: 680 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.business-pentagon-nodes button strong {
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 610;
  white-space: nowrap;
}

.business-pentagon-nodes li.is-active button,
.business-pentagon-nodes button:hover,
.business-pentagon-nodes button:focus-visible {
  color: #fff;
  text-shadow: 0 0 22px rgba(226, 189, 120, 0.28);
  transform: translateY(-3px);
  outline: none;
}

.business-pentagon-nodes li.is-active button::before,
.business-pentagon-nodes button:hover::before,
.business-pentagon-nodes button:focus-visible::before {
  background: var(--brass-bright);
  box-shadow: 0 0 0 7px rgba(226, 189, 120, 0.12), 0 0 18px rgba(226, 189, 120, 0.6);
  scale: 1.16;
}

.business-pentagon-system > footer {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.17em;
}

@media (max-width: 980px) {
  .business-sectors-stage,
  .business-pentagon-system {
    min-height: 700px;
  }

  .business-pentagon-scene {
    width: min(88vw, 640px);
  }
}

@media (max-width: 620px) {
  .business-sectors-stage,
  .business-pentagon-system {
    min-height: 570px;
  }

  .business-pentagon-scene {
    width: min(96vw, 510px);
  }

  .business-pentagon-nodes li {
    width: 112px;
  }

  .business-pentagon-nodes button {
    gap: 4px;
    padding: 7px;
  }

  .business-pentagon-nodes button strong {
    font-size: 11px;
  }

  .business-pentagon-core {
    width: 34%;
    transform: translate(-50%, -36%);
  }

  .business-pentagon-core > strong {
    margin-top: 8px;
    font-size: 17px;
  }

  .business-pentagon-core > p {
    margin-top: 7px;
    font-size: 8px;
    line-height: 1.4;
  }

  .business-pentagon-core > em {
    display: none;
  }

  .business-pentagon-system > footer {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 7px;
  }
}

/* Remove the oversized empty handoff between business sectors and honors. */
.business-sectors-section.section-shell {
  padding-bottom: 0;
}

.honors-section.section-shell {
  padding-top: 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Honor Quest — pixel runner, question block, brand-emblem reveal and eight award states. */
.honor-arcade {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(226, 189, 120, 0.22);
  border-radius: 26px;
  color: var(--text);
  background:
    radial-gradient(circle at 19% 12%, rgba(119, 229, 229, 0.08), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(226, 189, 120, 0.12), transparent 34%),
    #06111a;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 26px 68px rgba(0, 0, 0, 0.24);
}

.honor-arcade::before {
  position: absolute;
  z-index: -1;
  content: "08";
  right: -0.04em;
  bottom: -0.2em;
  color: transparent;
  opacity: 0.22;
  font: 760 clamp(120px, 17vw, 240px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.18);
  pointer-events: none;
}

.honor-arcade__header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.honor-arcade__header span {
  color: var(--brass-bright);
}

.honor-arcade__header em {
  font-style: normal;
}

.honor-arcade__header > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.honor-arcade__header button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(226, 189, 120, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.honor-arcade__header button span,
.honor-arcade__header button i {
  color: inherit;
  font: 680 7px/1 "Bahnschrift", sans-serif;
  font-style: normal;
  letter-spacing: 0.12em;
}

.honor-arcade__header button:hover,
.honor-arcade__header button:focus-visible,
.honor-arcade__header button[aria-pressed="true"] {
  color: #f8e2b3;
  border-color: rgba(226, 189, 120, 0.58);
  background: rgba(226, 189, 120, 0.09);
  outline: none;
}

.honor-arcade__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, 0.82fr);
  min-height: 354px;
}

.honor-arcade__game {
  position: relative;
  min-width: 0;
  min-height: 354px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 31, 45, 0.92), rgba(5, 16, 25, 0.98));
  background-size: 18px 18px, 18px 18px, auto;
  background-position: 0 0, 0 0, 0 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  animation: honorWorldGridScroll 2.4s linear infinite;
  will-change: background-position;
}

.honor-arcade__game::after {
  position: absolute;
  z-index: 8;
  content: "";
  inset: 0;
  border: 1px solid transparent;
  background: radial-gradient(circle at 50% 47%, transparent 28%, rgba(0, 0, 0, 0.27) 100%);
  pointer-events: none;
  transition: border-color 220ms ease;
}

.honor-arcade__game:hover::after,
.honor-arcade__game:focus-visible::after {
  border-color: rgba(226, 189, 120, 0.34);
}

.honor-arcade__game:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: -4px;
}

.honor-arcade__hud {
  position: absolute;
  z-index: 9;
  top: 17px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.13em;
  pointer-events: none;
}

.honor-arcade__hud b {
  color: #fff;
  font-weight: 720;
}

.honor-arcade__hud i,
.honor-arcade__hud em {
  font-style: normal;
}

.honor-arcade__hud strong {
  color: var(--brass-bright);
  font-weight: 720;
}

.honor-arcade__world {
  position: absolute;
  inset: 42px 0 0;
  display: block;
  overflow: hidden;
}

.honor-arcade__world::before,
.honor-arcade__world::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 35px;
  left: 0;
  pointer-events: none;
  will-change: background-position;
}

.honor-arcade__world::before {
  z-index: 1;
  height: 112px;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(45, 88, 91, 0.38) 0 42%, transparent 43%) 0 100% / 300px 92px repeat-x;
  animation: honorSceneryFarScroll 12s linear infinite;
}

.honor-arcade__world::after {
  z-index: 2;
  height: 72px;
  opacity: 0.64;
  background:
    linear-gradient(90deg,
      rgba(19, 51, 61, 0.76) 0 34px,
      transparent 34px 54px,
      rgba(19, 51, 61, 0.76) 54px 96px,
      transparent 96px 132px,
      rgba(19, 51, 61, 0.76) 132px 188px,
      transparent 188px 240px) 0 100% / 240px 46px repeat-x;
  animation: honorSceneryNearScroll 6s linear infinite;
}

.honor-arcade__brickline {
  --honor-brick-travel: 110px;
  position: absolute;
  z-index: 4;
  top: 76px;
  left: calc(50% + var(--honor-brick-travel));
  display: grid;
  grid-template-columns: repeat(5, 44px);
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.22));
  animation: honorBricklineScroll 5.6s linear infinite;
  will-change: left;
}

.honor-pixel-brick,
.honor-pixel-block {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border: 3px solid #321e17;
  background-color: #a94b2e;
  box-shadow: inset 3px 3px rgba(255, 188, 111, 0.42), inset -3px -3px rgba(75, 30, 20, 0.55);
}

.honor-pixel-brick {
  background-image:
    linear-gradient(90deg, transparent 47%, #522719 47% 53%, transparent 53%),
    linear-gradient(#522719 0 7%, transparent 7% 47%, #522719 47% 54%, transparent 54% 94%, #522719 94%);
  background-size: 22px 22px;
}

.honor-pixel-block {
  z-index: 3;
  display: grid;
  place-items: center;
  border-color: #4f3215;
  color: #4b2d12;
  background: #e4aa43;
  box-shadow:
    inset 4px 4px rgba(255, 224, 137, 0.72),
    inset -4px -4px rgba(134, 78, 25, 0.62),
    0 0 22px rgba(226, 170, 67, 0.16);
  font: 800 27px/1 "Bahnschrift", sans-serif;
  font-style: normal;
}

.honor-pixel-block::before,
.honor-pixel-block::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  background: #6b451d;
  box-shadow: 32px 0 #6b451d, 0 32px #6b451d, 32px 32px #6b451d;
}

.honor-pixel-block::before { top: 3px; left: 3px; }
.honor-pixel-block::after { display: none; }

.honor-brand-emblem {
  position: absolute;
  z-index: 2;
  display: grid;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  place-items: center;
  opacity: 0;
  image-rendering: auto;
  transform: translate(-50%, 4px) scale(0.72);
  filter:
    drop-shadow(0 8px 10px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 9px rgba(226, 189, 120, 0.3));
}

.honor-brand-emblem::before,
.honor-brand-emblem::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 7px;
  border: 1px solid rgba(226, 189, 120, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 189, 120, 0.16), transparent 67%);
  box-shadow: 0 0 0 4px rgba(226, 189, 120, 0.045);
}

.honor-brand-emblem::after {
  inset: 2px;
  border-style: dashed;
  opacity: 0.42;
  background: none;
  box-shadow: none;
}

.honor-brand-emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.honor-runner {
  --honor-jump-offset-x: 0px;
  --honor-jump-return-x: 0px;
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  width: 61px;
  height: 76px;
  image-rendering: pixelated;
  transform: translateX(-50%);
  filter: drop-shadow(0 9px 0 rgba(0, 0, 0, 0.26));
  will-change: transform;
}

.honor-pixel-runner {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  transform-origin: 50% 100%;
  animation: honorMarioRun 360ms steps(2, end) infinite;
  will-change: transform;
}

.honor-runner::before,
.honor-runner::after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 3px;
  left: -5px;
  width: 7px;
  height: 4px;
  opacity: 0;
  background: #bd7a35;
  box-shadow: -7px 3px 0 rgba(189, 122, 53, 0.52);
  animation: honorRunnerDust 720ms steps(2, end) infinite;
}

.honor-runner::after {
  animation-delay: 360ms;
}

.honor-arcade__ground {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35px;
  border-top: 4px solid #bd7a35;
  background:
    linear-gradient(90deg, rgba(255, 210, 116, 0.18) 1px, transparent 1px),
    linear-gradient(#784226 0 48%, #562f20 48%);
  background-size: 18px 18px, auto;
  background-position: 0 0, 0 0;
  box-shadow: 0 -8px 28px rgba(226, 189, 120, 0.08);
  animation: honorGroundScroll 720ms linear infinite;
  will-change: background-position;
}

.honor-arcade__spark {
  position: absolute;
  z-index: 7;
  top: -6px;
  left: 50%;
  width: 5px;
  height: 5px;
  opacity: 0;
  background: #ffe5a5;
  box-shadow: 0 0 14px rgba(255, 215, 119, 0.72);
}

.honor-arcade__spark--1 { --spark-x: -22px; margin-left: -10px; }
.honor-arcade__spark--2 { --spark-x: 0; margin-left: 1px; }
.honor-arcade__spark--3 { --spark-x: 22px; margin-left: 12px; }

.honor-arcade.is-brick-hitting .honor-arcade__brickline,
.honor-arcade.is-arcade-paused .honor-arcade__brickline {
  animation-play-state: paused;
}

.honor-arcade.is-hitting .honor-runner {
  animation: honorMarioJump 620ms cubic-bezier(0.32, 0, 0.2, 1) both;
}

.honor-arcade.is-hitting .honor-pixel-block {
  animation: honorBlockBump 320ms cubic-bezier(0.34, 1.56, 0.64, 1) 210ms both;
}

.honor-arcade.is-hitting .honor-brand-emblem {
  animation: honorBrandEmblemPop 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 260ms both;
}

.honor-arcade.is-hitting .honor-arcade__spark {
  animation: honorSpark 420ms ease-out 250ms both;
}

.honor-arcade.is-hitting .honor-arcade__spark--2 { animation-delay: 285ms; }
.honor-arcade.is-hitting .honor-arcade__spark--3 { animation-delay: 320ms; }

.honor-arcade__reward {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(226, 189, 120, 0.12), rgba(255, 255, 255, 0.025));
}

.honor-arcade__reward::before {
  position: absolute;
  z-index: -1;
  content: attr(data-index);
  right: -0.02em;
  bottom: -0.12em;
  color: transparent;
  opacity: 0.32;
  font: 760 clamp(110px, 12vw, 170px)/0.75 "Bahnschrift", sans-serif;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.18);
}

.honor-arcade__reward.is-switching > * {
  animation: honorRewardIn 420ms ease-out both;
}

.honor-arcade__reward.is-switching > :nth-child(2) { animation-delay: 45ms; }
.honor-arcade__reward.is-switching > :nth-child(3) { animation-delay: 80ms; }
.honor-arcade__reward.is-switching > :nth-child(4) { animation-delay: 110ms; }
.honor-arcade__reward.is-switching > :nth-child(5) { animation-delay: 140ms; }

.honor-arcade__rewardmeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--brass-bright);
  font: 680 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.honor-arcade__rewardmeta em {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.honor-arcade__reward > p {
  margin-top: auto;
  padding-top: 48px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.honor-arcade__reward h4 {
  max-width: 390px;
  margin-top: 13px;
  color: #f5f2ea;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 610;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.honor-arcade__rule {
  width: 100%;
  height: 1px;
  margin-top: 27px;
  background: rgba(255, 255, 255, 0.12);
}

.honor-arcade__rule i {
  display: block;
  width: 28%;
  height: 1px;
  background: var(--brass-bright);
  transform-origin: left;
}

.honor-arcade__reward small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.honor-arcade__levels {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  padding: 1px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.honor-arcade__levels button {
  position: relative;
  min-height: 44px;
  border: 0;
  color: rgba(255, 255, 255, 0.42);
  background: #07131d;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.honor-arcade__levels button::before {
  position: absolute;
  content: "";
  inset: 0 auto auto;
  width: 0;
  height: 2px;
  background: var(--brass-bright);
  transition: width 300ms ease-out;
}

.honor-arcade__levels button span {
  font: 680 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.honor-arcade__levels button:hover,
.honor-arcade__levels button:focus-visible,
.honor-arcade__levels button[aria-selected="true"] {
  color: #f8e2b3;
  background: rgba(226, 189, 120, 0.09);
}

.honor-arcade__levels button[aria-selected="true"]::before {
  width: 100%;
}

.honor-arcade__levels button:focus-visible {
  z-index: 2;
  outline: 1px solid var(--brass-bright);
  outline-offset: -3px;
}

@keyframes honorMarioJump {
  0%, 100% { transform: translateX(-50%) translateY(0) scaleY(1); }
  12% { transform: translateX(-50%) translateY(3px) scaleY(0.94); }
  48% { transform: translateX(calc(-50% + var(--honor-jump-offset-x))) translateY(-82px) scaleY(1.03); }
  72% { transform: translateX(calc(-50% + var(--honor-jump-return-x))) translateY(-38px) scaleY(1); }
}

@keyframes honorMarioRun {
  0%, 100% { transform: translateY(0) rotate(-1.8deg) skewX(-1deg) scaleY(1); }
  50% { transform: translateY(-3px) rotate(1.8deg) skewX(1deg) scaleY(0.97); }
}

@keyframes honorRunnerDust {
  0%, 34% { opacity: 0; transform: translate(0, 0) scale(0.7); }
  35%, 64% { opacity: 0.68; }
  100% { opacity: 0; transform: translate(-18px, -7px) scale(1.25); }
}

@keyframes honorWorldGridScroll {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: -180px 0, -180px 0, 0 0; }
}

@keyframes honorSceneryFarScroll {
  from { background-position: 0 100%; }
  to { background-position: -300px 100%; }
}

@keyframes honorSceneryNearScroll {
  from { background-position: 0 100%; }
  to { background-position: -240px 100%; }
}

@keyframes honorGroundScroll {
  from { background-position: 0 0, 0 0; }
  to { background-position: -36px 0, 0 0; }
}

@keyframes honorBricklineScroll {
  0% { left: calc(50% + var(--honor-brick-travel)); opacity: 0; }
  7% { opacity: 1; }
  93% { opacity: 1; }
  100% { left: calc(50% - var(--honor-brick-travel)); opacity: 0; }
}

@keyframes honorBlockBump {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-11px); }
}

@keyframes honorBrandEmblemPop {
  0% { opacity: 0; transform: translate(-50%, 4px) scale(0.72); }
  62% { opacity: 1; transform: translate(-50%, -51px) scale(1.08); }
  100% { opacity: 1; transform: translate(-50%, -45px) scale(1); }
}

@keyframes honorSpark {
  0% { opacity: 0; transform: translate(0, 0) rotate(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--spark-x), -32px) rotate(135deg) scale(0.2); }
}

@keyframes honorRewardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .honor-arcade__layout {
    grid-template-columns: 1fr;
  }

  .honor-arcade__game {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .honor-arcade__reward {
    min-height: 250px;
  }

  .honor-arcade__levels {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 620px) {
  .honor-arcade {
    border-radius: 18px;
  }

  .honor-arcade__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 14px 16px;
  }

  .honor-arcade__header > div {
    width: 100%;
    justify-content: space-between;
  }

  .honor-arcade__game {
    min-height: 270px;
  }

  .honor-arcade__brickline {
    --honor-brick-travel: 85px;
    top: 64px;
    grid-template-columns: repeat(5, 34px);
  }

  .honor-pixel-brick,
  .honor-pixel-block {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }

  .honor-pixel-brick {
    background-size: 17px 17px;
  }

  .honor-pixel-block {
    font-size: 21px;
  }

  .honor-pixel-block::before {
    box-shadow: 24px 0 #6b451d, 0 24px #6b451d, 24px 24px #6b451d;
  }

  .honor-brand-emblem {
    top: 0;
    width: 52px;
    height: 52px;
  }

  .honor-runner {
    bottom: 32px;
    width: 48px;
    height: 60px;
  }

  .honor-arcade__hud em {
    display: none;
  }

  .honor-arcade__reward {
    min-height: 230px;
    padding: 28px 22px;
  }

  .honor-arcade__reward > p {
    padding-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .honor-arcade__game,
  .honor-arcade__brickline,
  .honor-arcade__world::before,
  .honor-arcade__world::after,
  .honor-arcade__ground,
  .honor-pixel-runner,
  .honor-runner::before,
  .honor-runner::after {
    animation: none !important;
  }

  .honor-arcade__brickline {
    left: 50%;
    opacity: 1;
  }

  .honor-arcade *,
  .honor-arcade *::before,
  .honor-arcade *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-delay: 0ms !important;
    transition-duration: 1ms !important;
  }
}

/* Honor Quest open stage — remove the nested card shells, keep the game and live copy. */
.honor-arcade {
  overflow: visible;
  margin-top: clamp(42px, 5vw, 70px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.honor-arcade::before {
  display: none;
}

.honor-arcade__header {
  min-height: 0;
  padding: 0 0 18px;
  border-bottom: 0;
}

.honor-arcade__header button {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.honor-arcade__header button:hover,
.honor-arcade__header button:focus-visible,
.honor-arcade__header button[aria-pressed="true"] {
  color: #f8e2b3;
  border-color: transparent;
  background: transparent;
}

.honor-arcade__layout {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 5.5vw, 88px);
  align-items: center;
}

.honor-arcade__game {
  border-right: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.honor-arcade__reward {
  min-height: 0;
  overflow: visible;
  padding: clamp(26px, 3.4vw, 52px) 0;
  background: transparent;
}

.honor-arcade__reward::before,
.honor-arcade__rewardmeta,
.honor-arcade__reward > p,
.honor-arcade__rule {
  display: none;
}

.honor-arcade__reward h4 {
  max-width: 440px;
  margin-top: 0;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.08;
}

.honor-arcade__reward small {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.honor-arcade__levels {
  gap: clamp(8px, 1.2vw, 18px);
  margin-top: 18px;
  padding: 0;
  border-top: 0;
  background: transparent;
}

.honor-arcade__levels button {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.honor-arcade__levels button::before {
  top: auto;
  bottom: 0;
  left: 50%;
  height: 1px;
  transform: translateX(-50%);
}

.honor-arcade__levels button:hover,
.honor-arcade__levels button:focus-visible,
.honor-arcade__levels button[aria-selected="true"] {
  color: #f8e2b3;
  background: transparent;
}

.honor-arcade__levels button[aria-selected="true"]::before {
  width: 28px;
}

@media (max-width: 980px) {
  .honor-arcade__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .honor-arcade__game {
    border-bottom: 0;
  }

  .honor-arcade__reward {
    min-height: 0;
    padding: 6px 0 12px;
  }

  .honor-arcade__levels {
    margin-top: 8px;
  }
}

@media (max-width: 620px) {
  .honor-arcade {
    border-radius: 0;
  }

  .honor-arcade__header {
    padding: 0 0 14px;
  }

  .honor-arcade__reward {
    min-height: 0;
    padding: 0 2px 10px;
  }

  .honor-arcade__reward h4 {
    font-size: clamp(30px, 10vw, 42px);
  }
}

/* Pentagon cover — closed brand face first, five business engines on reveal. */
.business-pentagon-cover {
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58%;
  height: 58%;
  place-items: center;
  padding: 0;
  border: 0;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  color: #f8edcf;
  background:
    radial-gradient(circle at 50% 43%, rgba(226, 189, 120, 0.18), transparent 38%),
    linear-gradient(145deg, #244e61, #102b3a 58%, #0c202d);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
  transform: translate(-50%, -47%) rotate(0deg) scale(1);
  transform-origin: 50% 52%;
  cursor: pointer;
  will-change: transform, opacity, filter;
  transition:
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 300ms ease,
    filter 300ms ease,
    visibility 0s linear 0s;
}

.business-pentagon-cover::before {
  position: absolute;
  content: "";
  inset: 7px;
  clip-path: inherit;
  border: 1px solid rgba(226, 189, 120, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(255, 255, 255, 0.018) 34px 35px);
  pointer-events: none;
}

.business-pentagon-cover::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--brass-bright);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 0 8px rgba(226, 189, 120, 0.08), 0 0 24px rgba(226, 189, 120, 0.34);
  transform: translateY(62px);
  pointer-events: none;
}

.business-pentagon-cover strong {
  position: relative;
  z-index: 2;
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.34);
}

.business-pentagon-cover:hover,
.business-pentagon-cover:focus-visible {
  color: #fff8e7;
  outline: none;
  filter: brightness(1.08) drop-shadow(0 30px 42px rgba(0, 0, 0, 0.38));
}

/* All five planes sit behind the cover until the system opens. */
.business-pentagon-layer--1 {
  opacity: 0.34;
  transform: translate(-53%, -48%) rotate(-7deg) scale(0.56);
}

.business-pentagon-layer--2 {
  opacity: 0.42;
  transform: translate(-47%, -53%) rotate(7deg) scale(0.65);
}

.business-pentagon-layer--3 {
  opacity: 0.48;
  transform: translate(-54%, -47%) rotate(-5deg) scale(0.79);
}

.business-pentagon-layer--4 {
  opacity: 0.54;
  transform: translate(-46%, -53%) rotate(6deg) scale(1.02);
}

.business-pentagon-layer--5 {
  opacity: 0.62;
  transform: translate(-51%, -47%) rotate(-3deg) scale(1.42);
}

.business-pentagon-core {
  opacity: 0;
  transform: translate(-50%, -29%) scale(0.9);
  transition:
    opacity 300ms ease,
    transform 420ms ease-out;
}

.business-pentagon-nodes {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 400ms ease-out,
    visibility 0s linear 400ms;
}

.business-pentagon-nodes li {
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 300ms ease,
    transform 400ms ease-out;
}

.business-pentagon-scene:hover .business-pentagon-cover,
.business-pentagon-system.is-expanded .business-pentagon-cover {
  visibility: hidden;
  opacity: 0;
  filter: blur(6px) brightness(1.14);
  transform: translate(-43%, -55%) rotate(14deg) scale(0.72);
  pointer-events: none;
  transition-delay: 0s, 0s, 0s, 300ms;
}

.business-pentagon-scene:hover .business-pentagon-layer--1,
.business-pentagon-system.is-expanded .business-pentagon-layer--1 {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-3.5deg) scale(1.015);
}

.business-pentagon-scene:hover .business-pentagon-layer--2,
.business-pentagon-system.is-expanded .business-pentagon-layer--2 {
  opacity: 1;
  transform: translate(-49%, -52%) rotate(3deg) scale(1.018);
}

.business-pentagon-scene:hover .business-pentagon-layer--3,
.business-pentagon-system.is-expanded .business-pentagon-layer--3 {
  opacity: 1;
  transform: translate(-52%, -48%) rotate(-4.5deg) scale(1.02);
}

.business-pentagon-scene:hover .business-pentagon-layer--4,
.business-pentagon-system.is-expanded .business-pentagon-layer--4 {
  opacity: 1;
  transform: translate(-48%, -52%) rotate(5deg) scale(1.024);
}

.business-pentagon-scene:hover .business-pentagon-layer--5,
.business-pentagon-system.is-expanded .business-pentagon-layer--5 {
  opacity: 1;
  transform: translate(-50%, -48%) rotate(-2deg) scale(1.03);
}

.business-pentagon-scene:hover .business-pentagon-core,
.business-pentagon-system.is-expanded .business-pentagon-core {
  opacity: 1;
  transform: translate(-50%, -39%) scale(1);
  transition-delay: 170ms;
}

.business-pentagon-scene:hover .business-pentagon-nodes,
.business-pentagon-system.is-expanded .business-pentagon-nodes {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition-delay: 130ms, 130ms, 0s;
}

.business-pentagon-scene:hover .business-pentagon-nodes li,
.business-pentagon-system.is-expanded .business-pentagon-nodes li {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(160ms + var(--sector-i) * 50ms);
}

@media (max-width: 620px) {
  .business-pentagon-cover {
    width: 66%;
    height: 66%;
  }

  .business-pentagon-cover strong {
    font-size: 34px;
  }

  .business-pentagon-cover::after {
    transform: translateY(45px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-pentagon-cover,
  .business-pentagon-layer,
  .business-pentagon-core,
  .business-pentagon-nodes,
  .business-pentagon-nodes li {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}

/* Brand video archive: a scoped, video-ready reinterpretation of the supplied retro TV. */
.brand-video-archive {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top: 1px solid rgba(226, 189, 120, 0.16);
  background:
    radial-gradient(circle at 17% 47%, rgba(198, 75, 29, 0.13), transparent 31%),
    radial-gradient(circle at 82% 28%, rgba(226, 189, 120, 0.08), transparent 28%),
    linear-gradient(180deg, #07111a 0%, #091823 52%, #071019 100%);
}

.brand-video-archive.section-shell {
  padding-top: clamp(52px, 5vw, 78px);
  padding-bottom: 0;
}

.honors-section.section-shell {
  padding-bottom: clamp(46px, 5vw, 76px);
}

.brand-video-archive::before {
  position: absolute;
  z-index: -1;
  content: "BROADCAST";
  top: clamp(120px, 15vw, 210px);
  left: 50%;
  color: transparent;
  font: 800 clamp(92px, 17vw, 250px) / 0.8 "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.055);
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.brand-video-archive::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 4%, #000 30%, #000 90%, transparent);
  pointer-events: none;
}

.brand-video-intro {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-top: clamp(48px, 7vw, 92px);
}

.brand-video-intro h2 {
  max-width: 850px;
  margin-top: 20px;
  color: #f4eee3;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.brand-video-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
  margin-top: clamp(62px, 8vw, 112px);
  padding-bottom: clamp(76px, 9vw, 130px);
}

.brand-tv-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.brand-tv-stage::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(226, 189, 120, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(226, 189, 120, 0.018),
    0 0 0 112px rgba(226, 189, 120, 0.012);
  transform: translateY(5%);
}

.brand-tv-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 76px;
  width: 76%;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  filter: blur(18px);
}

.brand-tv-live {
  position: absolute;
  z-index: 7;
  top: 46px;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(242, 228, 202, 0.72);
  font: 650 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.2em;
}

.brand-tv-live i,
.brand-video-console__head em i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c84e2b;
  box-shadow: 0 0 0 5px rgba(200, 78, 43, 0.12), 0 0 20px rgba(200, 78, 43, 0.55);
}

.brand-tv-device {
  position: relative;
  width: min(100%, 700px);
  padding-top: 104px;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.35));
}

.brand-tv-antenna {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 210px;
  height: 125px;
  transform: translateX(-50%);
}

.brand-tv-antenna > i {
  position: absolute;
  bottom: 11px;
  left: 50%;
  width: 7px;
  height: 142px;
  border: 1px solid #080b0d;
  border-radius: 8px;
  background: linear-gradient(90deg, #0e1114, #6a6c68 46%, #171a1c 55%, #07090a);
  box-shadow: 0 8px 13px rgba(0, 0, 0, 0.5);
  transform-origin: 50% 100%;
}

.brand-tv-antenna__left {
  transform: translateX(-50%) rotate(-37deg);
}

.brand-tv-antenna__right {
  transform: translateX(-50%) rotate(37deg);
}

.brand-tv-antenna > i::before {
  position: absolute;
  content: "";
  top: -5px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #080b0d;
  border-radius: 50%;
  background: #9c9b91;
  transform: translateX(-50%);
}

.brand-tv-antenna b {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90px;
  height: 46px;
  border: 3px solid #2b160a;
  border-radius: 50% 50% 16px 16px;
  background:
    radial-gradient(circle at 32% 25%, #ef9c4f 0 8%, transparent 9%),
    linear-gradient(145deg, #f47e19, #b84818 70%);
  box-shadow: inset -10px -8px 0 rgba(99, 37, 12, 0.24);
  transform: translateX(-50%);
}

.brand-tv-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 17px;
  padding: clamp(18px, 2.5vw, 27px);
  border: 3px solid #251306;
  border-radius: 34px 34px 27px 27px / 31px 31px 24px 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 193, 106, 0.75), transparent 3%),
    linear-gradient(145deg, #ef7d1b 0%, #cf571c 58%, #9e3719 100%);
  box-shadow:
    inset 5px 5px 0 rgba(255, 189, 89, 0.42),
    inset -9px -8px 0 rgba(95, 32, 12, 0.2),
    0 2px 0 #060809;
}

.brand-tv-body::after {
  position: absolute;
  z-index: 4;
  content: "";
  inset: 0;
  border-radius: inherit;
  opacity: 0.11;
  background-image:
    repeating-radial-gradient(#d96724 0 0.6px, transparent 0.7px 4px),
    repeating-linear-gradient(115deg, transparent 0 13px, rgba(53, 20, 7, 0.22) 14px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.brand-tv-curve {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 9px;
  width: 18px;
  height: 18px;
  fill: #241206;
  opacity: 0.78;
}

.brand-tv-display {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  padding: 12px;
  place-items: center;
  border: 3px solid #251306;
  border-radius: 27px 22px 24px 28px / 25px 28px 23px 30px;
  background: #5a2e17;
  box-shadow:
    inset 0 0 0 4px #a4481c,
    5px 6px 0 rgba(245, 151, 59, 0.58);
}

.brand-tv-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 4px solid #101315;
  border-radius: 23px 19px 21px 25px / 20px 25px 18px 27px;
  background: #080b0d;
  box-shadow:
    inset 0 0 48px #000,
    inset 0 0 0 2px rgba(255, 255, 255, 0.06),
    0 0 0 2px rgba(244, 157, 69, 0.2);
}

.brand-tv-screen::after {
  position: absolute;
  z-index: 5;
  content: "";
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.44) 100%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 19% 74%, rgba(255, 255, 255, 0.035));
  pointer-events: none;
}

.brand-tv-screen video,
.brand-tv-still {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050708;
}

.brand-tv-screen video[hidden],
.brand-tv-still[hidden],
.brand-tv-placeholder[hidden] {
  display: none;
}

.brand-tv-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #101316;
}

.brand-tv-testbars {
  position: absolute;
  inset: 0 0 26%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  filter: saturate(0.78) brightness(0.68);
}

.brand-tv-testbars i:nth-child(1) { background: #d8d7c8; }
.brand-tv-testbars i:nth-child(2) { background: #d5c51a; }
.brand-tv-testbars i:nth-child(3) { background: #1eb6ae; }
.brand-tv-testbars i:nth-child(4) { background: #38a638; }
.brand-tv-testbars i:nth-child(5) { background: #c335a8; }
.brand-tv-testbars i:nth-child(6) { background: #b72d2b; }
.brand-tv-testbars i:nth-child(7) { background: #294d9e; }

.brand-tv-placeholder::before {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 74% 0 0;
  background: linear-gradient(90deg, #075452 0 17%, #e3e0d7 17% 33%, #112b66 33% 50%, #555 50% 67%, #1c1c1c 67% 84%, #060606 84%);
}

.brand-tv-placeholder::after {
  position: absolute;
  z-index: 3;
  content: "";
  inset: 0;
  opacity: 0.2;
  background:
    repeating-radial-gradient(#fff 0 0.35px, transparent 0.6px 3px) 50% 0 / 1600px 1600px,
    repeating-conic-gradient(#fff 0 0.04%, transparent 0 0.08%) 60% 60% / 1600px 1600px;
  mix-blend-mode: overlay;
  animation: brandTvNoise 280ms steps(2, end) infinite;
}

.brand-tv-signal-copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: min(78%, 270px);
  padding: 14px 24px 15px;
  place-items: center;
  border: 1px solid rgba(255, 247, 226, 0.7);
  background: rgba(5, 8, 10, 0.82);
  box-shadow: 8px 8px 0 rgba(5, 8, 10, 0.28);
  transform: translate(-50%, -50%);
}

.brand-tv-signal-copy small,
.brand-tv-signal-copy em {
  color: rgba(255, 247, 226, 0.72);
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.22em;
}

.brand-tv-signal-copy strong {
  margin: 7px 0 8px;
  color: #fff8e8;
  font: 800 clamp(21px, 3vw, 34px) / 1 "Bahnschrift Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 #a74523;
}

.brand-tv-scanlines {
  position: absolute;
  z-index: 6;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(180deg, transparent 0 3px, #000 3px 4px);
  pointer-events: none;
}

.brand-tv-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  padding: 16px 10px 14px;
  border: 3px solid #251306;
  border-radius: 20px;
  background: linear-gradient(145deg, #eda35a, #c7712c);
  box-shadow: inset 3px 3px 0 rgba(255, 216, 157, 0.43), 4px 5px 0 rgba(115, 42, 13, 0.44);
}

.brand-tv-frequency {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(47, 23, 8, 0.35);
  color: #3e210f;
  text-align: center;
  font: 750 8px/1.2 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.brand-tv-frequency b {
  display: inline-block;
  margin-top: 3px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-tv-knob {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 3px solid #17100b;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #bca080 0 7%, transparent 8%),
    radial-gradient(circle, #846242 0 56%, #553922 57% 69%, #22150d 70%);
  box-shadow:
    inset 3px 3px 2px rgba(234, 205, 169, 0.33),
    -3px 2px 0 #5a351c,
    0 5px 8px rgba(59, 26, 9, 0.3);
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.brand-tv-knob i {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 22px;
  border-radius: 5px;
  background: #130c08;
  transform-origin: 50% 22px;
}

.brand-tv-knob--prev i { transform: translateX(-50%) rotate(-42deg); }
.brand-tv-knob--next i { transform: translateX(-50%) rotate(42deg); }

.brand-tv-knob:is(:hover, :focus-visible) {
  outline: none;
  filter: brightness(1.12);
  transform: rotate(13deg) scale(1.06);
}

.brand-tv-knob:active {
  transform: rotate(26deg) scale(0.96);
}

.brand-tv-speaker {
  display: grid;
  grid-template-columns: repeat(4, 7px);
  gap: 7px 8px;
  margin-top: auto;
  padding-top: 2px;
}

.brand-tv-speaker i {
  width: 7px;
  height: 7px;
  border: 1px solid #2d180c;
  border-radius: 50%;
  background: #4b2c19;
  box-shadow: inset 1px 1px 1px #1e110a, 1px 1px 0 rgba(255, 211, 148, 0.25);
}

.brand-tv-feet {
  display: flex;
  justify-content: space-between;
  width: 78%;
  margin: -2px auto 0;
  padding-inline: 38px;
}

.brand-tv-feet i {
  width: 66px;
  height: 18px;
  border: 3px solid #14100d;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(#4d443d, #211d1a);
}

.brand-video-console {
  position: relative;
  min-width: 0;
  padding: 8px 0;
}

.brand-video-console::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: -28px;
  width: 1px;
  background: linear-gradient(transparent, rgba(226, 189, 120, 0.35) 13% 87%, transparent);
}

.brand-video-console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 189, 120, 0.2);
  color: #d7b875;
  font: 650 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.brand-video-console__head em {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(238, 230, 213, 0.52);
  font-style: normal;
  font-size: 8px;
}

.brand-video-console h3 {
  margin: clamp(32px, 4vw, 48px) 0 18px;
  color: #f6f0e5;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 620;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.brand-video-channels {
  margin-top: 22px;
  border-top: 1px solid rgba(226, 189, 120, 0.16);
}

.brand-video-channels button {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 9px 4px;
  border: 0;
  border-bottom: 1px solid rgba(226, 189, 120, 0.13);
  color: rgba(239, 233, 221, 0.56);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, padding 320ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease;
}

.brand-video-channels button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -1px;
  width: 3px;
  height: 0;
  background: #dc742d;
  box-shadow: 0 0 18px rgba(220, 116, 45, 0.6);
  transform: translateY(-50%);
  transition: height 260ms ease;
}

.brand-video-channels button span {
  color: #d4b26e;
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.brand-video-channels button strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 570;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-video-channels button em {
  color: rgba(235, 230, 220, 0.32);
  font: 620 7px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.brand-video-channels button:is(:hover, :focus-visible),
.brand-video-channels button.is-active {
  padding-inline: 13px 8px;
  color: #fff7e9;
  outline: none;
  background: linear-gradient(90deg, rgba(214, 100, 34, 0.13), transparent 76%);
}

.brand-video-channels button.is-active::before {
  height: 56%;
}

.brand-video-channels button.is-active em {
  color: rgba(235, 230, 220, 0.56);
}

@keyframes brandTvNoise {
  from { transform: translate(0); }
  50% { transform: translate(-1px, 1px); }
  to { transform: translate(1px, -1px); }
}

@media (max-width: 980px) {
  .brand-video-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-video-intro h2 br {
    display: none;
  }

  .brand-video-deck {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .brand-tv-stage {
    min-height: 600px;
  }

  .brand-tv-device {
    width: min(92%, 670px);
  }

  .brand-video-console {
    width: min(100%, 670px);
    margin-inline: auto;
  }

  .brand-video-console::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .brand-video-archive::before {
    top: 150px;
    font-size: 84px;
  }

  .brand-video-intro {
    margin-top: 42px;
  }

  .brand-video-intro h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .brand-video-deck {
    gap: 34px;
    margin-top: 42px;
    padding-bottom: 72px;
  }

  .brand-tv-stage {
    min-height: 420px;
  }

  .brand-tv-stage::after {
    bottom: 45px;
  }

  .brand-tv-live {
    top: 26px;
    right: 0;
  }

  .brand-tv-device {
    width: 100%;
    padding-top: 72px;
  }

  .brand-tv-antenna {
    width: 150px;
    height: 88px;
  }

  .brand-tv-antenna > i {
    height: 96px;
  }

  .brand-tv-antenna b {
    width: 64px;
    height: 33px;
    border-width: 2px;
  }

  .brand-tv-body {
    grid-template-columns: minmax(0, 1fr) 62px;
    gap: 7px;
    padding: 10px;
    border-width: 2px;
    border-radius: 22px;
  }

  .brand-tv-display {
    padding: 6px;
    border-width: 2px;
    border-radius: 17px;
    box-shadow: inset 0 0 0 2px #a4481c, 3px 3px 0 rgba(245, 151, 59, 0.48);
  }

  .brand-tv-screen {
    border-width: 3px;
    border-radius: 14px;
  }

  .brand-tv-signal-copy {
    min-width: 78%;
    padding: 9px 10px 10px;
  }

  .brand-tv-signal-copy small,
  .brand-tv-signal-copy em {
    font-size: 6px;
  }

  .brand-tv-signal-copy strong {
    margin-block: 5px;
    font-size: 20px;
  }

  .brand-tv-controls {
    gap: 8px;
    padding: 8px 5px;
    border-width: 2px;
    border-radius: 13px;
  }

  .brand-tv-frequency {
    padding-bottom: 5px;
    font-size: 6px;
  }

  .brand-tv-frequency b {
    font-size: 11px;
  }

  .brand-tv-knob {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  .brand-tv-knob i {
    top: 3px;
    height: 15px;
    transform-origin: 50% 15px;
  }

  .brand-tv-knob--prev i { transform: translateX(-50%) rotate(-42deg); }
  .brand-tv-knob--next i { transform: translateX(-50%) rotate(42deg); }

  .brand-tv-speaker {
    grid-template-columns: repeat(3, 4px);
    gap: 5px;
  }

  .brand-tv-speaker i {
    width: 4px;
    height: 4px;
  }

  .brand-tv-speaker i:nth-child(n + 10) {
    display: none;
  }

  .brand-tv-feet {
    padding-inline: 20px;
  }

  .brand-tv-feet i {
    width: 42px;
    height: 12px;
    border-width: 2px;
  }

  .brand-video-console h3 {
    font-size: 44px;
  }

  .brand-video-channels button {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .brand-video-channels button em {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-tv-placeholder::after {
    animation: none;
  }

  .brand-tv-knob,
  .brand-video-channels button,
  .brand-video-channels button::before {
    transition-duration: 1ms !important;
  }
}

/* Brand portfolio — editorial cylinder experience inspired by aikawakenichi.com. */
.brand-video-archive {
  --brand-portfolio-ink: #f5f2ea;
  --brand-portfolio-paper: #071019;
  --brand-portfolio-accent: #dd2f73;
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top: 0;
  color: var(--brand-portfolio-ink);
  background:
    radial-gradient(circle at 50% 46%, rgba(226, 189, 120, 0.12), transparent 34%),
    radial-gradient(circle at 14% 24%, rgba(44, 94, 130, 0.2), transparent 29%),
    radial-gradient(circle at 86% 72%, rgba(196, 162, 104, 0.08), transparent 28%),
    linear-gradient(180deg, #071019 0%, #0c1722 54%, #071019 100%);
}

.brand-video-archive.section-shell {
  width: 100%;
  max-width: none;
  min-height: 920px;
  padding: clamp(86px, 7vw, 104px) clamp(22px, 4.4vw, 72px) clamp(30px, 3.8vw, 58px);
  scroll-margin-top: 0;
}

.brand-video-archive::before,
.brand-video-archive::after {
  display: none;
}

.brand-portfolio-note {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  color: var(--text);
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
}

.brand-portfolio-note p {
  margin: 0;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 430;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.brand-portfolio-note strong {
  font-weight: 520;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.brand-portfolio-note > span {
  margin-left: auto;
  color: rgba(226, 189, 120, 0.78);
  font: 680 9px/1 "Bahnschrift", "Arial Narrow", sans-serif;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.brand-video-deck {
  --brand-parallax-x: 0px;
  --brand-parallax-y: 0px;
  --brand-rotate-x: 0deg;
  --brand-rotate-y: 0deg;
  position: relative;
  display: block;
  min-height: clamp(760px, 86svh, 900px);
  margin: 0;
  padding: 0;
  outline: none;
  touch-action: pan-y;
}

.brand-video-deck:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 10px;
}

.brand-portfolio-word {
  position: absolute;
  z-index: 1;
  top: clamp(-104px, -9.5svh, -78px);
  left: 50%;
  width: max-content;
  margin: 0;
  color: #d6b267;
  background:
    linear-gradient(
      112deg,
      #77501b 0%,
      #c99e4a 17%,
      #ffe7a3 33%,
      #a87526 49%,
      #f4d27f 68%,
      #8d6122 84%,
      #d7b565 100%
    );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Didot, "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(190px, 27vw, 380px);
  font-weight: 500;
  line-height: 0.74;
  letter-spacing: -0.078em;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 239, 182, 0.18),
    0 12px 34px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(218, 170, 81, 0.12);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
  white-space: nowrap;
  transform: translate3d(calc(-50% + var(--brand-parallax-x) * -0.24), calc(var(--brand-parallax-y) * -0.15), 0);
  transform-origin: 50% 50%;
  transition: opacity 300ms ease, filter 450ms ease, letter-spacing 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  user-select: none;
}

.brand-portfolio-stage {
  position: absolute;
  z-index: 3;
  top: 61%;
  left: 50%;
  width: min(82vw, 1180px);
  perspective: 1500px;
  transform: translate(-50%, -41%);
  transform-style: preserve-3d;
}

.brand-portfolio-cylinder {
  position: relative;
  width: 100%;
  aspect-ratio: 1.94 / 1;
  margin-inline: auto;
  opacity: 1;
  filter: saturate(0.92) contrast(1.02);
  transform:
    translate3d(var(--brand-parallax-x), var(--brand-parallax-y), 0)
    rotateX(var(--brand-rotate-x))
    rotateY(var(--brand-rotate-y));
  transform-style: preserve-3d;
  transform-origin: 50% 52%;
  transition: opacity 360ms ease, filter 560ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-box-reflect: below clamp(12px, 1.5vw, 23px) linear-gradient(to bottom, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16) 34%, transparent 80%);
  will-change: transform, filter;
}

.brand-portfolio-webgl {
  position: absolute;
  z-index: 7;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.18));
  transition: opacity 420ms ease;
  pointer-events: none;
}

.brand-video-deck.is-webgl .brand-portfolio-webgl {
  opacity: 1;
}

.brand-video-deck.is-webgl .brand-portfolio-cylinder {
  transform: none;
}

.brand-video-deck.is-webgl .brand-portfolio-face {
  visibility: hidden;
  opacity: 0;
}

.brand-video-deck.is-webgl .brand-portfolio-cylinder::before,
.brand-video-deck.is-webgl .brand-portfolio-cylinder::after {
  display: none;
}

.brand-video-deck.is-webgl.is-switching .brand-portfolio-cylinder {
  opacity: 1;
  filter: saturate(0.94) contrast(1.02);
  transform: none;
}

.brand-portfolio-cylinder::before,
.brand-portfolio-cylinder::after {
  position: absolute;
  z-index: 8;
  content: "";
  top: 4.5%;
  bottom: 4.5%;
  width: 8%;
  opacity: 0.74;
  pointer-events: none;
}

.brand-portfolio-cylinder::before {
  left: 5.7%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), transparent 36%, rgba(0, 0, 0, 0.18));
  mix-blend-mode: soft-light;
}

.brand-portfolio-cylinder::after {
  right: 5.7%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.32), transparent 42%, rgba(0, 0, 0, 0.22));
  mix-blend-mode: soft-light;
}

.brand-portfolio-face {
  position: absolute;
  top: 3%;
  bottom: 3%;
  overflow: hidden;
  background: #d8d8d4;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.16);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.brand-portfolio-face--front {
  z-index: 4;
  right: 8.1%;
  left: 8.1%;
  border-radius: 4.4% / 8.5%;
  clip-path: polygon(3.2% 0.5%, 96.8% 0.5%, 100% 4.7%, 100% 95.3%, 96.8% 99.5%, 3.2% 99.5%, 0 95.3%, 0 4.7%);
  transform: translateZ(18px);
}

.brand-portfolio-face--left,
.brand-portfolio-face--right {
  z-index: 3;
  width: 14.6%;
  opacity: 0.94;
  filter: brightness(0.88) saturate(0.82);
}

.brand-portfolio-face--left {
  left: 0.8%;
  border-radius: 55% 5% 5% 55% / 8% 3% 3% 8%;
  transform: rotateY(58deg) translateZ(-3px);
  transform-origin: 100% 50%;
}

.brand-portfolio-face--right {
  right: 0.8%;
  border-radius: 5% 55% 55% 5% / 3% 8% 8% 3%;
  transform: rotateY(-58deg) translateZ(-3px);
  transform-origin: 0 50%;
}

.brand-portfolio-face video,
.brand-portfolio-face img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 420ms ease, filter 700ms ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.brand-portfolio-face--left video,
.brand-portfolio-face--left img,
.brand-portfolio-face--right video,
.brand-portfolio-face--right img {
  width: 690%;
  max-width: none;
}

.brand-portfolio-face--left video,
.brand-portfolio-face--left img {
  right: auto;
  left: 0;
}

.brand-portfolio-face--right video,
.brand-portfolio-face--right img {
  right: 0;
  left: auto;
}

/* Edge and restricted-GPU fallback: preserve the three-surface composition. */
.brand-video-deck.is-webgl-fallback .brand-portfolio-cylinder::before,
.brand-video-deck.is-webgl-fallback .brand-portfolio-cylinder::after {
  display: none;
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face {
  top: 5%;
  bottom: 5%;
  width: 66%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(22px, 3vw, 40px);
  opacity: 1;
  clip-path: none;
  box-shadow:
    0 34px 76px rgba(0, 0, 0, 0.19),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    opacity 520ms ease,
    filter 700ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face--front {
  z-index: 5;
  right: auto;
  left: 17%;
  transform: translateZ(94px);
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face--left,
.brand-video-deck.is-webgl-fallback .brand-portfolio-face--right {
  z-index: 2;
  width: 52%;
  opacity: 0.76;
  filter: brightness(0.72) saturate(0.78);
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face--left {
  left: -1%;
  transform: translate3d(-19%, 0, -120px) rotateY(54deg) scale(0.9);
  transform-origin: 100% 50%;
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face--right {
  right: -1%;
  transform: translate3d(19%, 0, -120px) rotateY(-54deg) scale(0.9);
  transform-origin: 0 50%;
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-face--left :is(video, img),
.brand-video-deck.is-webgl-fallback .brand-portfolio-face--right :is(video, img) {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.brand-video-deck.is-webgl-fallback .brand-portfolio-caption {
  top: 9%;
  right: 18.5%;
}

.brand-video-deck.is-video .brand-portfolio-face video,
.brand-video-deck.is-image .brand-portfolio-face img {
  opacity: 1;
}

.brand-video-deck .brand-portfolio-face.is-video video,
.brand-video-deck .brand-portfolio-face.is-image img {
  opacity: 1;
}

.brand-video-deck .brand-portfolio-face.is-video img,
.brand-video-deck .brand-portfolio-face.is-image video {
  opacity: 0;
}

.brand-video-deck.is-transitioning .brand-portfolio-face video,
.brand-video-deck.is-transitioning .brand-portfolio-face img {
  filter: blur(12px) brightness(1.12);
  transform: scale(1.09);
}

.brand-portfolio-glare {
  position: absolute;
  z-index: 6;
  inset: 0;
  opacity: 0.62;
  background:
    radial-gradient(circle at calc(54% + var(--brand-parallax-x) * 0.08) 32%, rgba(255, 255, 255, 0.35), transparent 21%),
    linear-gradient(101deg, rgba(255, 255, 255, 0.18), transparent 18% 78%, rgba(255, 255, 255, 0.12));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.brand-portfolio-emboss {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 70%;
  color: rgba(255, 255, 255, 0.58);
  font-family: Didot, "Bodoni MT", "Noto Serif SC", serif;
  font-size: clamp(36px, 5.2vw, 82px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.06em;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62),
    0 -1px 0 rgba(0, 0, 0, 0.18),
    0 10px 26px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%) translateZ(36px);
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.brand-video-deck.is-transitioning .brand-portfolio-emboss {
  opacity: 0;
}

.brand-portfolio-caption {
  position: absolute;
  z-index: 11;
  top: 8%;
  right: 10.6%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  color: #fff;
  font-family: "Microsoft YaHei UI", "PingFang SC", sans-serif;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.brand-portfolio-caption span {
  font: 700 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.brand-portfolio-caption strong {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.brand-portfolio-dock-wrap {
  position: absolute;
  z-index: 15;
  bottom: clamp(14px, 2.8svh, 30px);
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.brand-portfolio-dock {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 56px;
  padding: 5px 7px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff;
  background: rgba(42, 42, 42, 0.88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(0.72);
}

.brand-portfolio-thumb {
  position: relative;
  display: grid;
  overflow: hidden;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.48), transparent 34%),
    radial-gradient(circle at 65% 30%, color-mix(in srgb, var(--brand-portfolio-accent) 52%, white), var(--brand-portfolio-accent) 42%, #181818 100%);
  transition: background 450ms ease, transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-portfolio-thumb::after {
  position: absolute;
  content: "";
  inset: -30%;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 46%;
  animation: brandPortfolioThumbOrbit 6s linear infinite;
}

.brand-portfolio-thumb b {
  position: relative;
  z-index: 1;
  font: 520 15px/1 "Noto Serif SC", "Songti SC", serif;
}

.brand-portfolio-current {
  min-width: 112px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  color: #fff;
  background: transparent;
  font: 700 12px/1 "Microsoft YaHei UI", "PingFang SC", sans-serif;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
}

.brand-portfolio-current:focus-visible,
.brand-portfolio-arrow:focus-visible,
.brand-portfolio-mode:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.brand-portfolio-arrow,
.brand-portfolio-mode {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-portfolio-arrow i {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.brand-portfolio-arrow--prev i {
  transform: translateX(1px) rotate(-135deg);
}

.brand-portfolio-arrow--next i {
  transform: translateX(-1px) rotate(45deg);
}

.brand-portfolio-arrow:is(:hover, :focus-visible) {
  color: #111;
  background: #fff;
  transform: scale(1.09);
}

.brand-portfolio-mode {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(42, 42, 42, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.brand-portfolio-mode span,
.brand-portfolio-mode span::after {
  position: absolute;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

.brand-portfolio-mode span {
  width: 19px;
  height: 19px;
  border-right-color: transparent;
  animation: brandPortfolioMode 4.5s linear infinite;
}

.brand-portfolio-mode span::after {
  content: "";
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-left-color: transparent;
}

.brand-portfolio-mode[aria-pressed="true"] span {
  border-style: dashed;
  animation-play-state: paused;
}

.brand-portfolio-categories {
  display: none;
}

.brand-portfolio-cursor {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: none !important;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 0;
  color: #fff;
  background: rgba(10, 10, 10, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%) scale(0.5);
  place-items: center;
  font: 700 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
  pointer-events: none;
  transition: opacity 180ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.brand-video-deck.is-pointer-active .brand-portfolio-cursor {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.brand-video-deck.is-pointer-down .brand-portfolio-cursor {
  background: var(--brand-portfolio-accent);
  transform: translate(-50%, -50%) scale(0.82);
}

.brand-video-deck.is-pointer-active {
  cursor: auto;
}

.brand-portfolio-stage {
  cursor: grab;
}

.brand-video-deck.is-pointer-down .brand-portfolio-stage {
  cursor: grabbing;
}

.brand-video-deck button {
  cursor: pointer;
}

body.is-brand-portfolio-hover .cursor-pufferfish {
  opacity: 0 !important;
}

body:has(.brand-video-deck.is-pointer-active) .cursor-pufferfish {
  opacity: 0 !important;
}

.brand-video-deck.is-switching .brand-portfolio-cylinder {
  opacity: 0.36;
  filter: blur(10px) saturate(1.2);
  transform:
    translate3d(calc(var(--brand-parallax-x) - 22px), var(--brand-parallax-y), -90px)
    rotateX(var(--brand-rotate-x))
    rotateY(calc(var(--brand-rotate-y) - 9deg))
    scale(0.88);
}

.brand-video-deck.is-switching .brand-portfolio-word {
  opacity: 1;
  filter: none;
  letter-spacing: -0.078em;
  transform: translate3d(calc(-50% + var(--brand-parallax-x) * -0.24), calc(var(--brand-parallax-y) * -0.15), 0);
}

.brand-video-deck:not(.is-ready) .brand-portfolio-cylinder {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 72px, -120px) rotateY(-12deg) scale(0.82);
}

.brand-video-deck:not(.is-ready) .brand-portfolio-word {
  opacity: 0;
  letter-spacing: -0.15em;
  transform: translate3d(-50%, 28px, 0) scaleX(0.88);
}

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

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

@media (max-width: 900px) {
  .brand-video-archive.section-shell {
    min-height: 850px;
    padding-inline: clamp(20px, 4.5vw, 42px);
  }

  .brand-video-deck {
    min-height: clamp(735px, 88svh, 830px);
  }

  .brand-portfolio-stage {
    width: min(96vw, 900px);
  }

  .brand-portfolio-word {
    font-size: clamp(154px, 27vw, 250px);
  }
}

@media (max-width: 620px) {
  .brand-video-archive.section-shell {
    min-height: 800px;
    padding: 84px 18px 24px;
  }

  .brand-portfolio-note {
    justify-content: center;
    text-align: center;
  }

  .brand-portfolio-note p {
    font-size: 12px;
  }

  .brand-portfolio-note > span {
    display: none;
  }

  .brand-video-deck {
    min-height: clamp(700px, 90svh, 770px);
  }

  .brand-portfolio-word {
    top: clamp(60px, 8svh, 78px);
    font-size: clamp(128px, 31vw, 190px);
    letter-spacing: -0.085em;
  }

  .brand-portfolio-stage {
    top: 58%;
    width: calc(100vw - 8px);
  }

  .brand-video-deck.is-webgl-fallback .brand-portfolio-face--front {
    left: 8%;
    width: 84%;
  }

  .brand-video-deck.is-webgl-fallback .brand-portfolio-face--left,
  .brand-video-deck.is-webgl-fallback .brand-portfolio-face--right {
    width: 64%;
    opacity: 0.58;
  }

  .brand-video-deck.is-webgl-fallback .brand-portfolio-face--left {
    left: -18%;
  }

  .brand-video-deck.is-webgl-fallback .brand-portfolio-face--right {
    right: -18%;
  }

  .brand-video-deck.is-webgl-fallback .brand-portfolio-caption {
    right: 10%;
  }

  .brand-portfolio-cylinder {
    aspect-ratio: 1.87 / 1;
    -webkit-box-reflect: below 14px linear-gradient(to bottom, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14) 34%, transparent 78%);
  }

  .brand-portfolio-emboss {
    font-size: clamp(28px, 9.4vw, 48px);
  }

  .brand-portfolio-caption {
    top: 9%;
    right: 9%;
    gap: 7px;
    padding: 5px;
  }

  .brand-portfolio-caption strong {
    font-size: 9px;
  }

  .brand-portfolio-dock-wrap {
    bottom: 4px;
    gap: 7px;
  }

  .brand-portfolio-dock {
    height: 52px;
    gap: 4px;
    padding: 4px 5px;
  }

  .brand-portfolio-thumb {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-portfolio-current {
    min-width: 92px;
    height: 40px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .brand-portfolio-arrow {
    width: 33px;
    height: 33px;
  }

  .brand-portfolio-mode {
    width: 52px;
    height: 52px;
  }

  .brand-portfolio-cursor {
    display: none;
  }

  .brand-video-deck.is-pointer-active,
  .brand-video-deck.is-pointer-active :is(button, .brand-portfolio-stage) {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-portfolio-cylinder,
  .brand-portfolio-word,
  .brand-portfolio-face video,
  .brand-portfolio-face img,
  .brand-portfolio-arrow,
  .brand-portfolio-thumb,
  .brand-portfolio-cursor {
    transition-duration: 1ms !important;
  }

  .brand-portfolio-mode span,
  .brand-portfolio-thumb::after {
    animation: none;
  }

  .brand-portfolio-cursor {
    display: none;
  }
}

/* Xiaohongshu full-service command center — aligned with the site's navy/brass system. */

.xhs-detail {
  --xhs: #ee7166;
  --xhs-signal: #ee7166;
  --xhs-signal-soft: rgba(238, 113, 102, 0.13);
  --xhs-gold: var(--brass-bright);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 7%, rgba(238, 113, 102, 0.1), transparent 26%),
    radial-gradient(circle at 12% 38%, rgba(226, 189, 120, 0.07), transparent 30%),
    linear-gradient(180deg, #08141e 0%, #071019 56%, #091722 100%);
}

.xhs-detail::before {
  position: absolute;
  z-index: -2;
  content: "";
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    linear-gradient(rgba(226, 189, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 189, 120, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.xhs-detail::after {
  position: absolute;
  z-index: -1;
  content: "XHS / FULL SERVICE";
  top: 72px;
  right: -0.03em;
  pointer-events: none;
  color: transparent;
  opacity: 0.52;
  font: 760 clamp(82px, 11vw, 176px)/0.82 "Bahnschrift", sans-serif;
  letter-spacing: -0.065em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(226, 189, 120, 0.09);
}

.xhs-detail > * {
  position: relative;
  z-index: 1;
}

.xhs-detail .detail-head {
  position: relative;
  padding-top: 24px;
  padding-bottom: clamp(72px, 8vw, 116px);
  border-top: 1px solid rgba(226, 189, 120, 0.24);
}

.xhs-detail .detail-head::before {
  position: absolute;
  content: "SYSTEM ONLINE  /  XHS-04.2";
  top: 22px;
  right: 0;
  color: rgba(245, 242, 234, 0.44);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.xhs-detail .detail-head::after {
  position: absolute;
  content: "";
  top: 20px;
  right: 186px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xhs-signal);
  box-shadow: 0 0 0 5px rgba(238, 113, 102, 0.08), 0 0 18px rgba(238, 113, 102, 0.52);
  animation: xhsStatusPulse 2.8s ease-in-out infinite;
}

.xhs-detail .detail-head .section-index {
  color: var(--xhs-gold);
}

.xhs-detail .detail-head h2 {
  color: #f6f2e9;
  text-wrap: balance;
}

.xhs-detail .detail-head h2 span,
.xhs-detail .detail-head h2 > .bits-blur-line:nth-child(n + 2) {
  color: var(--xhs-gold);
}

.xhs-detail .detail-head h2 > .bits-blur-line:first-child {
  color: #f6f2e9;
}

.xhs-detail .detail-head > p {
  color: rgba(245, 242, 234, 0.66);
}

.platform-scale {
  gap: clamp(12px, 1.5vw, 18px);
  padding: 0;
  overflow: visible;
  color: var(--text);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.platform-scale div {
  --telemetry-accent: 226, 189, 120;
  position: relative;
  isolation: isolate;
  min-height: 264px;
  padding: 62px clamp(28px, 3vw, 38px) 38px;
  overflow: hidden;
  border: 1px solid rgba(var(--telemetry-accent), 0.2);
  border-radius: 22px;
  background-image:
    linear-gradient(112deg, transparent 0 39%, rgba(var(--telemetry-accent), 0.12) 50%, transparent 61%),
    radial-gradient(circle at 82% 18%, rgba(var(--telemetry-accent), 0.12), transparent 34%),
    linear-gradient(155deg, rgba(18, 37, 51, 0.94), rgba(5, 15, 23, 0.97));
  background-position: -80% 0, 0 0, 0 0;
  background-size: 38% 100%, auto, auto;
  background-repeat: no-repeat;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transform: translateY(0) scale(1);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    box-shadow 420ms ease,
    background-position 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-scale div:nth-of-type(2) { --telemetry-accent: 238, 113, 102; }
.platform-scale div:nth-of-type(3) { --telemetry-accent: 118, 213, 208; }
.platform-scale div:nth-of-type(n) { border-right: 1px solid rgba(var(--telemetry-accent), 0.2); }

.platform-scale div::before {
  position: absolute;
  content: "01 / DAILY OUTPUT";
  top: 27px;
  left: 30px;
  padding-left: 15px;
  color: rgba(var(--telemetry-accent), 0.72);
  background: radial-gradient(circle, rgb(var(--telemetry-accent)) 0 2px, transparent 2.5px) left center / 7px 7px no-repeat;
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.17em;
}

.platform-scale div:nth-of-type(2)::before { content: "02 / IMPRESSIONS"; }
.platform-scale div:nth-of-type(3)::before { content: "03 / USER REACH"; }

.platform-scale div::after {
  position: absolute;
  content: "";
  right: 30px;
  bottom: 24px;
  left: 30px;
  height: 42px;
  opacity: 0.42;
  background: linear-gradient(180deg, rgba(var(--telemetry-accent), 0.5), rgba(var(--telemetry-accent), 0.02));
  clip-path: polygon(0 80%, 13% 69%, 27% 75%, 43% 36%, 57% 58%, 74% 21%, 87% 45%, 100% 31%, 100% 100%, 0 100%);
  filter: drop-shadow(0 -2px 5px rgba(var(--telemetry-accent), 0.3));
  transform-origin: bottom;
  animation: xhsTelemetry 4.2s ease-in-out infinite;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-scale div:nth-of-type(2)::after { animation-delay: -1.4s; }
.platform-scale div:nth-of-type(3)::after { animation-delay: -2.8s; }

.platform-scale strong {
  display: flex;
  align-items: baseline;
  gap: 0.04em;
  color: var(--xhs-gold);
  font: 520 clamp(44px, 5.6vw, 80px)/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.065em;
  text-shadow: 0 0 34px rgba(226, 189, 120, 0.14);
}

.platform-scale strong > span,
.platform-scale strong > small {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.platform-scale strong > small {
  font-size: 0.56em;
  letter-spacing: -0.03em;
}

.platform-scale div > span {
  display: block;
  margin-top: 34px;
  color: rgba(245, 242, 234, 0.66);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.platform-scale > p {
  padding: 3px 0 3px 18px;
  margin: 2px 0 0;
  color: rgba(245, 242, 234, 0.42);
  border: 0;
  border-left: 1px solid rgba(226, 189, 120, 0.34);
  border-radius: 0;
  background: transparent;
}

.service-matrix {
  position: relative;
  gap: 12px;
  margin-top: clamp(72px, 8vw, 112px);
  padding: 52px 0 14px;
  border: 0;
}

.service-matrix::before {
  position: absolute;
  content: "DELIVERY MODULES  /  04 CONNECTED NODES";
  top: 0;
  left: 0;
  color: var(--xhs-gold);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.service-matrix::after {
  position: absolute;
  content: "";
  top: 25px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 189, 120, 0.54), rgba(226, 189, 120, 0.08) 74%, transparent);
}

.service-matrix article {
  position: relative;
  min-height: 342px;
  padding: 30px 28px 34px;
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.14);
  border-radius: 3px 24px 3px 24px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(19, 40, 56, 0.76), rgba(5, 16, 24, 0.82)),
    #091722;
  box-shadow: none;
  translate: none;
  transition: transform 340ms var(--ease), border-color 240ms ease, background 300ms ease, box-shadow 320ms ease;
}

.service-matrix article:nth-child(even) {
  translate: none;
}

.service-matrix article::before {
  position: absolute;
  content: "";
  top: 30px;
  right: 28px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xhs-signal);
  box-shadow: 0 0 16px rgba(238, 113, 102, 0.5);
}

.service-matrix article::after {
  position: absolute;
  content: "";
  top: -35%;
  right: -65%;
  width: 70%;
  height: 180%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(226, 189, 120, 0.12), transparent);
  transform: rotate(16deg) translateX(0);
  transition: transform 650ms var(--ease);
}

.service-matrix span {
  color: var(--xhs-gold);
  font: 650 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.13em;
}

.service-matrix h3 {
  margin-top: 90px;
  color: #f6f2e9;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 570;
}

.service-matrix p {
  color: rgba(245, 242, 234, 0.58);
}

.xhs-loop {
  --xhs-path-step: 0;
  position: relative;
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  margin-top: clamp(74px, 8vw, 118px);
  padding: clamp(56px, 6vw, 86px);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 12%, rgba(238, 113, 102, 0.09), transparent 27%),
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    rgba(4, 14, 22, 0.72);
  background-size: auto, 48px 48px, 48px 48px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.xhs-loop-copy .eyebrow {
  color: var(--xhs-gold);
}

.xhs-loop-copy .eyebrow i {
  background: var(--xhs-signal);
  box-shadow: 0 0 14px rgba(238, 113, 102, 0.5);
}

#xiaohongshu .xhs-loop-copy h3 {
  color: #f6f2e9;
  font-size: clamp(36px, 3.4vw, 52px);
}

.xhs-loop-copy > p:last-child {
  color: rgba(245, 242, 234, 0.58);
}

.xhs-loop ol {
  position: relative;
  padding-left: 38px;
}

.xhs-loop ol::before {
  position: absolute;
  content: "";
  top: 34px;
  bottom: 34px;
  left: 12px;
  width: 1px;
  background: rgba(226, 189, 120, 0.2);
}

.xhs-loop ol::after {
  position: absolute;
  content: "";
  top: 34px;
  left: 11px;
  width: 3px;
  height: 62px;
  border-radius: 99px;
  background: linear-gradient(transparent, var(--xhs-signal), var(--xhs-gold), transparent);
  box-shadow: 0 0 18px rgba(238, 113, 102, 0.44);
  animation: xhsPathScan 5.4s ease-in-out infinite;
}

.xhs-loop li {
  position: relative;
  grid-template-columns: 46px 0.78fr 1.22fr;
  min-height: 88px;
  margin-bottom: 10px;
  padding: 16px 20px;
  color: var(--text);
  border: 1px solid rgba(226, 189, 120, 0.1);
  border-radius: 4px 16px 4px 16px;
  background: rgba(8, 24, 35, 0.66);
  box-shadow: none;
  translate: none;
  transition: transform 320ms var(--ease), border-color 240ms ease, background 240ms ease, box-shadow 300ms ease;
}

.xhs-loop li:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(226, 189, 120, 0.1);
}

.xhs-loop li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -33px;
  width: 10px;
  height: 10px;
  border: 2px solid #08141e;
  border-radius: 50%;
  background: rgba(226, 189, 120, 0.5);
  box-shadow: 0 0 0 5px rgba(226, 189, 120, 0.06);
  transform: translateY(-50%);
  transition: background 220ms ease, box-shadow 260ms ease, scale 260ms var(--ease);
}

.xhs-loop li:is(:hover, .is-current) {
  transform: translateX(9px);
  translate: none;
  border-color: rgba(226, 189, 120, 0.35);
  background: linear-gradient(90deg, rgba(238, 113, 102, 0.09), rgba(226, 189, 120, 0.045));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.xhs-loop li:is(:hover, .is-current)::before {
  background: var(--xhs-signal);
  box-shadow: 0 0 0 6px rgba(238, 113, 102, 0.1), 0 0 22px rgba(238, 113, 102, 0.52);
  scale: 1.18;
}

.xhs-loop li span {
  color: var(--xhs-gold);
}

.xhs-loop li strong {
  color: #f6f2e9;
}

.xhs-loop li em {
  color: rgba(245, 242, 234, 0.5);
}

.weighting {
  position: relative;
  margin-top: clamp(74px, 8vw, 118px);
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(226, 189, 120, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 25% 50%, rgba(226, 189, 120, 0.08), transparent 29%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #07131d;
  background-size: auto, 52px 52px, 52px 52px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.weighting::before {
  position: absolute;
  content: "LOCAL GROWTH SIGNALS  /  INTERACTIVE";
  top: 26px;
  right: 30px;
  color: rgba(245, 242, 234, 0.32);
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.weighting-chart {
  min-height: 460px;
}

.weight-orbit {
  border-color: rgba(226, 189, 120, 0.34);
  background: radial-gradient(circle, rgba(238, 113, 102, 0.06), transparent 62%);
  box-shadow:
    0 0 0 48px rgba(226, 189, 120, 0.026),
    0 0 0 96px rgba(226, 189, 120, 0.014),
    inset 0 0 68px rgba(0, 0, 0, 0.28);
}

.weight-orbit::before {
  inset: -7%;
  border: 1px dashed rgba(226, 189, 120, 0.28);
  animation: xhsOrbitSpin 18s linear infinite;
}

.weight-orbit::after {
  inset: 30%;
  border-color: rgba(238, 113, 102, 0.26);
  background: radial-gradient(circle, rgba(238, 113, 102, 0.12), rgba(226, 189, 120, 0.035));
}

.weight-core {
  inset: 38%;
  color: #071019;
  background: var(--xhs-gold);
  box-shadow: 0 0 0 9px rgba(226, 189, 120, 0.07), 0 0 40px rgba(226, 189, 120, 0.2);
  animation: xhsCorePulse 3s ease-in-out infinite;
}

.weight-orbit i {
  color: var(--xhs-gold);
  border-color: rgba(226, 189, 120, 0.4);
  background: #07131d;
}

.weight-orbit i.is-active {
  color: #071019;
  background: var(--xhs-gold);
  box-shadow: 0 0 34px rgba(226, 189, 120, 0.28);
}

.weighting-copy .section-index,
.weighting-copy li strong {
  color: var(--xhs-gold);
}

#xiaohongshu .weighting-copy h3 {
  color: #f6f2e9;
  font-size: clamp(36px, 3.4vw, 52px);
}

.weighting-copy li {
  border-color: rgba(226, 189, 120, 0.1);
  border-radius: 4px 13px 4px 13px;
  background: rgba(255, 255, 255, 0.022);
}

.weighting-copy li::after {
  background: linear-gradient(90deg, var(--xhs-gold) 0 var(--weight-width, 40%), rgba(255, 255, 255, 0.06) var(--weight-width, 40%));
}

.weighting-copy li:is(:hover, :focus-visible, .is-active) {
  border-color: rgba(226, 189, 120, 0.38);
  background: linear-gradient(90deg, rgba(226, 189, 120, 0.09), rgba(238, 113, 102, 0.035));
}

.weighting-copy li span,
.weighting-copy .source-note {
  color: rgba(245, 242, 234, 0.55);
}

.xhs-cases {
  position: relative;
  gap: 18px;
  margin-top: clamp(74px, 8vw, 118px);
  padding-top: 48px;
}

.xhs-cases::before {
  position: absolute;
  content: "SELECTED CASE SIGNALS  /  02";
  top: 0;
  left: 0;
  color: var(--xhs-gold);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.xhs-cases::after {
  position: absolute;
  content: "";
  top: 24px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 189, 120, 0.5), rgba(226, 189, 120, 0.08), transparent);
}

.xhs-cases article {
  position: relative;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: 4px 26px 4px 26px;
  background: #081722;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  transition: transform 360ms var(--ease), border-color 260ms ease, box-shadow 320ms ease;
}

.xhs-cases figure {
  position: relative;
  height: 390px;
  overflow: hidden;
}

.xhs-cases figure::before {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-140%);
  transition: transform 780ms var(--ease);
}

.xhs-cases figure::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(7, 16, 25, 0.86), transparent 44%),
    linear-gradient(90deg, rgba(238, 113, 102, 0.08), transparent 36%);
}

.xhs-cases img {
  filter: saturate(0.86) contrast(1.04);
  transition: transform 850ms var(--ease), filter 420ms ease;
}

.xhs-cases article > div {
  padding: clamp(28px, 3.5vw, 48px);
  background: linear-gradient(145deg, rgba(17, 37, 52, 0.86), rgba(5, 16, 24, 0.92));
}

.xhs-cases article > div > p,
.xhs-cases dt {
  color: var(--xhs-gold);
}

.xhs-cases h3 {
  color: #f6f2e9;
}

.xhs-cases dl {
  background: rgba(226, 189, 120, 0.14);
}

.xhs-cases dl div {
  background: #081722;
}

.xhs-cases dd {
  color: rgba(245, 242, 234, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .platform-scale div:hover {
    border-color: rgba(var(--telemetry-accent), 0.52);
    background-position: 170% 0, 0 0, 0 0;
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.3),
      0 0 38px rgba(var(--telemetry-accent), 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-7px) scale(1.012);
    translate: none;
  }

  .platform-scale div:hover::after {
    opacity: 0.72;
    transform: scaleY(1.08) translateY(-2px);
  }

  .service-matrix article:hover {
    border-color: rgba(226, 189, 120, 0.4);
    background: linear-gradient(145deg, rgba(26, 51, 68, 0.9), rgba(7, 19, 29, 0.88));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
    transform: translateY(-8px);
    translate: none;
  }

  .service-matrix article:hover::after {
    transform: rotate(16deg) translateX(-230%);
  }

  .xhs-cases article:hover {
    border-color: rgba(226, 189, 120, 0.42);
    box-shadow: 0 34px 82px rgba(0, 0, 0, 0.26);
    transform: translateY(-7px);
  }

  .xhs-cases article:hover figure::before {
    transform: translateX(360%);
  }

  .xhs-cases article:hover img {
    filter: saturate(1) contrast(1.06);
    transform: scale(1.045);
  }
}

@keyframes xhsStatusPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes xhsTelemetry {
  0%, 100% { opacity: 0.3; transform: scaleY(0.82) translateY(2px); }
  50% { opacity: 0.56; transform: scaleY(1) translateY(0); }
}

@keyframes xhsPathScan {
  0% { top: 34px; opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { top: calc(100% - 96px); opacity: 0; }
}

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

@keyframes xhsCorePulse {
  0%, 100% { box-shadow: 0 0 0 9px rgba(226, 189, 120, 0.07), 0 0 34px rgba(226, 189, 120, 0.16); }
  50% { box-shadow: 0 0 0 14px rgba(226, 189, 120, 0.035), 0 0 48px rgba(226, 189, 120, 0.28); }
}

@media (max-width: 1180px) {
  .xhs-detail .detail-head::before,
  .xhs-detail .detail-head::after {
    display: none;
  }

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

  .service-matrix article {
    min-height: 300px;
  }

  .xhs-loop {
    grid-template-columns: 1fr;
  }

  .weighting {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .xhs-detail::after {
    top: 72px;
    font-size: 72px;
  }

  .xhs-detail .detail-head {
    padding-top: 18px;
  }

  .platform-scale {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 0;
  }

  .platform-scale div,
  .platform-scale div:nth-of-type(3) {
    min-height: 210px;
    border: 1px solid rgba(var(--telemetry-accent), 0.2);
    border-radius: 18px;
  }

  .platform-scale div > span {
    margin-top: 24px;
  }

  .service-matrix {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .service-matrix article {
    min-height: 250px;
  }

  .service-matrix h3 {
    margin-top: 58px;
  }

  .xhs-loop {
    margin-top: 64px;
    padding: 34px 22px;
    border-radius: 20px;
  }

  .xhs-loop ol {
    padding-left: 28px;
  }

  .xhs-loop li {
    grid-template-columns: 34px 1fr;
    padding: 16px;
  }

  .xhs-loop li em {
    grid-column: 2;
  }

  .xhs-loop li::before {
    left: -23px;
  }

  .weighting {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
    padding: 54px 22px 32px;
    border-radius: 20px;
  }

  .weighting::before {
    top: 22px;
    left: 22px;
    right: auto;
  }

  .weighting-chart {
    min-height: 360px;
  }

  .weight-orbit {
    width: min(300px, 74vw);
  }

  .xhs-cases {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .xhs-cases figure {
    height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xhs-detail .detail-head::after,
  .platform-scale div::after,
  .xhs-loop ol::after,
  .weight-orbit::before,
  .weight-core {
    animation: none !important;
  }

  .xhs-loop li.is-current,
  .platform-scale div,
  .service-matrix article,
  .xhs-cases article {
    transform: none !important;
    transition-duration: 1ms !important;
  }
}

/* Nationwide enterprise network — 3D globe adapted from the supplied Uiverse prototype. */
.client-network.weighting {
  min-height: 680px;
  grid-template-columns: minmax(440px, 0.9fr) minmax(0, 1.1fr);
  background:
    radial-gradient(circle at 22% 48%, rgba(76, 155, 186, 0.14), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(226, 189, 120, 0.06), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    #06121c;
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

.client-network.weighting::before {
  content: "CLIENT NETWORK  /  NATIONWIDE COVERAGE";
}

.client-network .weighting-copy {
  position: relative;
  z-index: 3;
}

.client-globe-chart {
  position: relative;
  z-index: 2;
  min-height: 540px;
  perspective: 900px;
}

.client-globe-stage {
  position: relative;
  width: min(470px, 39vw);
  min-width: 410px;
  aspect-ratio: 1;
  transform-style: preserve-3d;
}

.client-globe-stage::before,
.client-globe-stage::after {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 4%;
  border: 1px solid rgba(143, 207, 229, 0.14);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-12deg);
}

.client-globe-stage::after {
  inset: 10% -2%;
  border-color: rgba(226, 189, 120, 0.18);
  transform: rotateY(68deg) rotateZ(17deg);
}

.client-globe-stage > p {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  margin: 0;
  color: rgba(245, 242, 234, 0.42);
  text-align: center;
  font: 650 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.22em;
}

.client-globe {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 76%;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 27%, rgba(176, 232, 247, 0.3), transparent 16%),
    radial-gradient(circle at 58% 62%, #0b3c54, #061a2a 56%, #02070c 100%);
  border: 1px solid rgba(174, 227, 242, 0.4);
  border-radius: 50%;
  box-shadow:
    0 0 26px rgba(124, 211, 238, 0.22),
    0 0 86px rgba(48, 132, 163, 0.18),
    -8px 0 16px rgba(195, 244, 255, 0.42) inset,
    18px 3px 34px rgba(0, 0, 0, 0.78) inset,
    -34px -4px 48px rgba(124, 211, 238, 0.22) inset,
    160px 0 74px rgba(0, 0, 0, 0.54) inset;
  transform: translate(-50%, -50%) rotateX(-7deg) rotateY(-10deg);
  transform-style: preserve-3d;
  transition: transform 400ms var(--ease), box-shadow 400ms ease;
}

.client-globe-stage:hover .client-globe {
  box-shadow:
    0 0 34px rgba(124, 211, 238, 0.3),
    0 0 110px rgba(48, 132, 163, 0.24),
    -8px 0 16px rgba(195, 244, 255, 0.46) inset,
    18px 3px 34px rgba(0, 0, 0, 0.76) inset,
    -34px -4px 48px rgba(124, 211, 238, 0.25) inset,
    160px 0 74px rgba(0, 0, 0, 0.5) inset;
  transform: translate(-50%, -50%) rotateX(-4deg) rotateY(-4deg) scale(1.025);
}

.client-globe__map {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 200%;
  height: 100%;
  fill: rgba(226, 189, 120, 0.48);
  filter: drop-shadow(0 0 8px rgba(226, 189, 120, 0.16));
}

.client-globe__map-strip {
  animation: clientEarthRotate 30s linear infinite;
}

.client-globe__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 32px, rgba(170, 226, 241, 0.12) 33px 34px),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(170, 226, 241, 0.1) 44px 45px);
  box-shadow: inset -52px 0 58px rgba(0, 0, 0, 0.48);
  mask-image: radial-gradient(circle, #000 0 70%, transparent 73%);
}

.client-globe__network {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--xhs-gold);
  stroke: rgba(226, 189, 120, 0.62);
  stroke-width: 1.2;
}

.client-globe__node-group {
  opacity: 0.42;
  transition: opacity 280ms ease, filter 280ms ease;
}

.client-globe__node-group path {
  fill: none;
  stroke-dasharray: 5 5;
}

.client-globe__node-group circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: clientNodePulse 3s ease-in-out infinite;
}

.client-globe__node-group:nth-child(2) circle { animation-delay: -0.7s; }
.client-globe__node-group:nth-child(3) circle { animation-delay: -1.4s; }
.client-globe__node-group:nth-child(4) circle { animation-delay: -2.1s; }

.client-globe__node-group.is-active {
  opacity: 1;
  filter: drop-shadow(0 0 7px rgba(226, 189, 120, 0.72));
}

.client-globe__hub {
  position: absolute;
  z-index: 5;
  top: 42%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #071019;
  background: var(--xhs-gold);
  border: 5px solid rgba(7, 16, 25, 0.76);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(226, 189, 120, 0.1), 0 0 32px rgba(226, 189, 120, 0.3);
  transform: translate(-50%, -50%);
  font: 800 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.08em;
}

.client-globe-star {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  animation: clientStarTwinkle 3s ease-in-out infinite;
}

.client-globe-star:nth-of-type(1) { top: 8%; left: 7%; animation-duration: 3s; }
.client-globe-star:nth-of-type(2) { top: 22%; right: 4%; animation-duration: 2s; }
.client-globe-star:nth-of-type(3) { top: 50%; left: -2%; animation-duration: 4s; }
.client-globe-star:nth-of-type(4) { right: 0; bottom: 23%; animation-duration: 3.4s; }
.client-globe-star:nth-of-type(5) { bottom: 8%; left: 16%; animation-duration: 1.8s; }
.client-globe-star:nth-of-type(6) { top: 2%; right: 30%; animation-duration: 4s; }
.client-globe-star:nth-of-type(7) { right: 13%; bottom: 7%; animation-duration: 2.5s; }

.client-globe-label {
  position: absolute;
  z-index: 6;
  padding: 7px 10px;
  color: rgba(245, 242, 234, 0.78);
  background: rgba(5, 17, 26, 0.78);
  border: 1px solid rgba(226, 189, 120, 0.23);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.client-globe-label--north { top: 13%; left: 18%; }
.client-globe-label--east { top: 39%; right: 2%; }
.client-globe-label--south { right: 18%; bottom: 14%; }
.client-globe-label--west { bottom: 26%; left: 1%; }

.client-network .weighting-copy li {
  grid-template-columns: minmax(88px, 108px) 1fr;
}

.client-network .weighting-copy li strong {
  font-size: clamp(18px, 2vw, 25px);
}

@keyframes clientEarthRotate {
  from { transform: translateX(0); }
  to { transform: translateX(-420px); }
}

@keyframes clientStarTwinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(45deg); }
}

@keyframes clientNodePulse {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.25); }
}

/*
 * Client globe: faithfully restore the supplied Uiverse texture animation.
 * The real-world map texture moves beneath a shaded circular mask to produce
 * the rotating-earth illusion; the section's star field remains around it.
 */
.client-globe-stage::before,
.client-globe-stage::after {
  display: none;
}

.client-globe {
  --client-earth-shadow:
    0 0 20px rgba(255, 255, 255, 0.2),
    -5px 0 8px #c3f4ff inset,
    15px 2px 25px #000 inset,
    -24px -2px 34px #c3f4ff99 inset,
    250px 0 44px #00000066 inset,
    150px 0 38px #000000aa inset;
  width: min(250px, 70%);
  height: auto;
  aspect-ratio: 1;
  background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAAAAAAD/2wBDACYaHSEdGCYhHyErKCYtOV8+OTQ0OXVTWEVfinmRj4h5hYOYq9u6mKLPpIOFvv/Bz+Lp9fj1lLf////u/9vw9ez/2wBDASgrKzkyOXA+PnDsnYWd7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Oz/wAARCAE5AfQDASIAAhEBAxEB/8QAGgAAAwEBAQEAAAAAAAAAAAAAAgMEAQAFBv/EADoQAAIBAwIFAwIFAgUFAQADAAECEQADIRIxBCJBUWETcYEykRRCUqGxI8EFYnLR8DOCkuHxQxVTY//EABgBAQEBAQEAAAAAAAAAAAAAAAABAgME/8QAIBEBAQEAAwEBAAMBAQAAAAAAAAERAiExEkETUXEDYf/aAAwDAQACEQMRAD8A9T1Adg32rZPtWavI+9bA8VpAy3dftRDP5vtSmuDaPtXBWI5dSjyaYhx0jd/3riyD89TlXH029fzWAOufTtp96Yaf61rb1Kw3rQ/P+1KD92n2U0epTnQ3wKuAhxFo7GfisPE2huY94rAQThG9sAULBQPox4IpkDBftMJUz8Vmv/QPegV7cxoB/eiKof8A8ZpgFr4XdlHwaAcWn6x8LTQkbWVH2rpYHCn7U6AjiVPU/wDjW+uP1D5FFqJEQD70GknMADsBFAYuk7H7LXa26k/+NcGYefijWf8AgqANTxgH/wAazXc/Sf8AwpuOprGmOWKKSbrgTA/8TWes/wClaZqHWJ8Zro1dvmqhfrxuq/eu9YxISfY1rLp3VfkCsVo2Fv8AiqM9c/8A9bV3rx/+T/aiJU/UFHkNShYXJV1z3n/enSGi8D+UzRqxP5alNoz/ANa17ATWCyx+niAPmmQV6u4rdY61J6fELtdDfNDr4lTzIGHjemGrda9x962QdiKlW8mrmLp4KmqF0ESp/aKij0jxW6B0iksLUwXAPvXemoEy0eDQO0e1ZpHilBViSG+WrtNsn64PioGEe1cQImaDQnVprilsDOP+6qO1Cd5rp7A/ehLWx9Pp/LUOt5hTY+9A2T2H3rA+Y5fvS9dwQSLQ8zXfiAMMLRH+qiGF4MHT967VPQfcVO13hyZ9FSfDVnqWelhfk1cDjdUd/g0QugiQ0fNJFwDK2bcdxXeuZghR4j/1QMN8D89aL6H84oBfH6Y/7aI3kjNsfagaHU9Qfmt1Cdh96Ut2ye3/AI0X9IjlVDUUZYfoP3rNX/8Am3waGF/T+9CSqnKAe5oDNwdVYe9YbqdA1Z6w2BU0J4gLgqtMB+snUH70QvWz3+9Bbu+ocLjvpxWu4Xe1PkUB+qld6qePvSg9o/lK0RNro0e1MDPUH+X71nqp1FK1WRktq+KIC0/0zUyBnqp0/it9W33H2oBbQ400JtocTHtTIG60/UK6khE6XG+9dTBIeKukSBB7QKKzxF0nnIj2rbic35vcCsXUJ2MdDW+kVAh1lTFMXaovWB6Ed4NN9UEjH71nFVD3rPSU5k/egt3J/KBFZdukJIYKo3JzUxR+mi5E/c1zagOWKSpvMNXqrpO2JrR62row77UGM7A5kewqch9wQx7RVbFozbn2M1i20YfTHvVlTE/rNbXntftWWuKRjpKaT3BptxdLAKRnoKWbNtxGgT3HStdIpV8YIIrifJFQCwVIKOwHWMU4LciRcvDsGG9TIacbkGAwohdM5AIpDawCXtK4HWCDXWmRtgV8MaYKCysOvxQZGzVhxRCQNqhodRHU12onua6u22qprQW2j96wgjOPvXAEVsGJCE+1F1mqGkAVpdWHMs/NCCMyo+ZrdYGNGr5NBk2JyF+4oh6PRT8Ut3Trailm1auNKgr/AKRQURaO6P8A+NZpsloCtPaK62giAHI7kYpn07H9qi4XptHKhj8U1Vjv80vUQ+ogrPmuLmcKfcGgYdUYJqN7xW7pchx/mUVR6hIgjHkVLxNkMZClT52pIU1b1m6IkKR0Bx+9M3H9Ncd1ivPWxJyG+BNV8Pw628uAD071bJENlQOYE+9CSp+m18laZqVR9LHzFGus7KAP8xqauEAtP/TSPIrtJnCLnuKpz4/iu001cTi23VU+1ELafpXzijM94odQiAfim1HC2o2An/SKE236KnvprIA5rhI6RWszRI5E+5P+1Bg4ePqcjwKNURTAT5oFa3Opyy/5ZrvUDNB5VO0GnZ0J7kYEg9MVi3gejTQNw7ESpB7VhssowsE+Jq9BhuADJNL/ABABjB96A8OWySQfesW3peDme9XIhwdGyUFYSs8oIrhaBPYe9NW1AgMY8VAvUZzntTxKrLYFYtsJ596wyNgKlVzC0RLKtLe2pUemo+cURtyMA/FC9twOVT96DEtEzJJHaSKMWQNrYHvmpmLkEGB7rRW72kQY+KuVFOhh+VPtQXLZK8qKD3mlniiozDe4Io0vi4JE+RU7Ur036KCaaL11bcent13ojeQDr9xQ/iB00/ar6jA11iCAZ9q66HccyKvk4NMF8gA8p9gaWRdvOeXSvmgEWrjCdaV1A1u4CdJePaupqYaLzIDrU+DRq9q5iAf2NKJ/TDL+k5ikkgDUDHijat7VttomkPZIBIyPFLW6ymdQgdTVKuHTnI+KCeGAkN9jT0vLEODMUGoAn8w7daFoJlRimmHWgtsQhHpk7bgU9Au6mPFQA5wKIcQRiRioPQrCpI3n5qMcXJgdKf6pUDUMHY96mGmAMP0x96xrcn6iPbFctxWyGo8UAC2BsI75zWBVGYgzTY81kVNUkl5AgnOykUItXGuarhGiPpmRW3CgYMQ6kdQKWblu7I9VWB6DV/vVRO7XLbEKDp7EdKqtkNaDCYPep7o9Jiq2f+e1O4e4XTSTLDcRWmKYq6jR/wBNBLGZ2oCwt2yxHKKga63EXfGwFT1Y9A3URslQPFcLiXCAA4z0xSV4VNOWnzSL1tLbaVE+ZpkV6JdUHM4juxpfrNq/phWBOJevM0ZzE1VwqQZW6yxvimYapLv1VB/3H/asN5UGp3UD3NNVgRGpm8kUFx7TLBAbrtUUPqI41C8n/bBrLiyQpuEE7cu9TOigFovqv+oCkEIBLKQO+qasiLXdbWTcUt5eP2pB4vnEPv8ApQ/yTU6i3MgR5OKciocBZO21XEGt/wBQx/U94mjTh2uGeb5NErpYJIEv17Um5xV0neJ7Vm8msWJZW2p1QJ6k1xu2VEhgenKK8m9xRAAkt7nArEXRl31E1P8AR6n4m1OzT3NGrl8gGPtXli4Z3ptu4yiVP96ar0DcCgSRG2aW18wcrEdDk+1JRzIlmjsaaDbIL+mogwwjpVRqkuDv8mmi3jaKS922qkWwVnqKS11j9LEeNWaCi9ZY8w3japnVhkiTTLXFMmG5h5qlXt3TA3q7iYiFu4d9KjfJFPQoluG0knqM1Pdtm2xIyJ3oQVjrNVDjdGAq/vTV4joRUgHiPbFEHYY1Y81ehWLtpsGiGjp/FRlh1g/FbgbE1MNXACiORSVb00BuH2pLcUGeNOOgms4uqGuKlIucSFMaTPY4pPq88sCR2ihI1NJA7fFWCq3d1gsGhR36UxHBGGDDxSbNq0qmTq8UbXLekDpttQH6iiZbBxWPbRxI0k+01LdKs2Xke9FbVDEOZ6AUwb6DfpI9tqw2Lh3EeZmmG+qmJON60XptmO8Sau0yFLaKiGEHuaM2wxBYwegArrxuFeXIMQdqU+ldJWPUAgsTimmHniLds6YyOtYeJaJ0iNgamfXcIySfBmuJ0WxLEnsRU6OzzeYHKgGuqX1T2rqbDKp5QeYhpG0UF0DVKmR2pHqw8HV70dt4MgzntU1XBZ2FOI0EDdgJNZaUBA5EdKwQ8yd/3q6MYjJXoY7xWoTGrHvFEq6CSRMUBTSCy7desVFOKW2WSnyBUN+zHMN53mmBocGSCcxt801nUjmGfAmgmNzVYUG22pd2OK1eMa3iZ7SJph15Akidlz9xvSmtW2GxX22q7E+RfioYFWwd6us8QGEEj3ryrdokw2zdR1pyAKYmI7Hapasj1VuoRvFHIPWvOVyhzBEYP+9NNwrGRt0FPRXQlUGdI94paXRoy2Z3mDRJq3JBG80QF8ADSpXU3V2wKWeFthAblwKe4wKHjFD8wH01Ot6RpfmUbZqyIO4LOnSL5j/QaXbcWzg6xttFY40EsBg9DSmddQOBmqituJaNielLBdj2Hk1OXIwSI3it9aQObPSgsSzbwTc+FFHr9Mf0/SUdyTJrzyzHm39jBoWZ99hvE0HoniQiS7hyezRU9/iy4gQoqInIHWhck5GBtNXDVLXzqIDEntNBdF5AWMHqSBtRHhlt2muMWJXMjFFbH4izDrAjDT+9YvJUfqv+oiquE4opq15MdqnuWmtHmBicHoaK1avOJRQJ6mt2yxJqj1dTTBAJiT3rTOSYxXXLTPp1BSQMg9DQNZuu2bgA/wAo3rj03tT3WDMCqwCMVRbLsdLswIE/SKxeF0OG1ExmIqlQSIwPereUvUSBt2oJLPI89a1FVcIvyTRhJOTRaVEQMT96are4Bmd+9EnKfjbuKWxEkgx7VjPAgEk+cRTUES0EAwPHalyZ3/esJ61qnbvTVEJKnIjzTLOgZYGOsGkPJPb2oZINX6hiq86hAgbUR1qYk+9DJ70Shm2FWVMaGIGduldMYmZo0QTklvCj+9MVih5bBB7jJqpgEtsSMR770TMll8QSPmuYastdjw9KuIU3GB+YbGpeS465edzuAPaglgpwCpMSaE71pk7MCO1Z+qY0M8zrIPijF30ztPfzSciRMVhMZJppiuxxJDqGVQD9RJinlV4kF1kKBAkRXnodX1HTJ+wqgMuUyQMkjE+9WUUKthGVVy5/N/eivM+vRbUT+qkorTzaY6TWG22AA3vFUBpcTq+1cgDCWACDMT36UbsmnSWJj/kTStRbqJG0dKaYdecuoAaE6YqV7oJ/UfAgCiuF7ilSZnqaWU5SSdtwKswd6pyFBidxQo7MTj96w9oEdia7WEJ0IgjqTNMiaxjcnlcgdtNdXalYkvJPvXUyGtt3lcREkd9xTUy/71HaWL+e2artkgEgEzWOUyrO1CmSVJAHvAoyvMDIWDmaRqKzIydiacmllALcsSfFVY1LunG4O9YCNQ0zM70okhuUYitW4Y2x1rO9tYdIksCFJPwKU7rmMGehxXE5xGe2KwgYDCDV1kAuANLuABgSJpgbUAVuJHeSaTdRArPpAEZih0MlqQoneBQNNpoNzlYd5z9qAkySwNdDadTgAHbNZAIHbxUHaniJkVhe4BgY8muLKuZCjuaD1keRiAMk4qxNZ+KAEjJ7GrbT3MEEgHYHavMZ7InQpMj2HvQhric4JHmt4a9i5dS6wEBbi5UzGalfmElRIzEVH65IEk42g04X1Nogy0kZ61ZEa+ogAZHilvIXIx280RAwwneRPTxQnDSCJjvVQKhsEYH81yIDzawo280WiTzbdhREBFGCf70GaQgwhM9CcUBPTBPatLFnBAAAPU70Uu7EsQevvQAQoEDB796AntuDMiibAyoH96WSAMb1UFcZmbmcv8zVVtuIYLotgKfzE6qjCsRIUke1HYZ7d1SoIz2rPKTFi0WdZm/DnoBgCm/TgEDoIoWYkTGKzWMEkAR3xXDutiB6zPvXKZPQGlo6XEJQgkdAIzQWrgZiCNLjcGphqg75FcDB7GsD4iKwAkb1AZjeawsTSb970UEDmO1JtcVykXDnoQtbk5WabFWnNZEGJqa1eDMfUuMewIgVWiM55QTSywlBGaYFFJ4ktYWdJmevSu4X1bv9RrxgH6QMU+eta38OYClkE1TpDGpbNy414gppUCpFccHNdOKawUmCc0PpjoZpKAljiTWy22o+1bpzvjxWrbLGAPirtOgAd6etsWlMNDMMjxWC31I5R+9axVgdX1U8M0s2wfJodJRt4opg5BnuKINJzHzU0woyZ6igKxmMmq/RkTkRua4WweoqpiZVxtTkJGwE00WsTQxpJ6U1ccXIG8fNYxcpqdjpOwJrok4msKjrk1fpnANBoc0emK4iR1qagE3jrQLcDi9LYBgEd6C8WKlLWSTBM0qyrmw+lQ2QCCM/Fbk61nRlyUnAn7UtiOgrV1L9XJ2neuAWZyK6INAI5lJPWBXUS8SqKFVMe011QLtfXgSoXOKrssBeOtRB6AdPFQKNLQWgHBq1XW5J2IJjzWee+tcT7h5o0hc401oGSoEr1JrkAKlHyvQjMVtu6FVkkTMz3FY1uwp7skKByjFaaBhmU/fpTOmaxQMZ7Vp8Z9zWMa4NO2aMj0sVI2FaY04MYxFYpxG9aD9qstCgGkkMfk1l11tqWf8A+0zSCZH2qDjGl1AcN3jvV4zal6DeueodJUKAd94oLVr1CwnbrFYiydRwvUzFPN1SCiCZjJx8V3zGSltAOdZ5V+oigRgpJgT0kVTxCLb4YCIZyDSE0aCSwB2jvVGF9SAFcgQDFcAxHKrQR96YWVVaDH6Rn71od8B3wR0xjzQYj4CtgiiuoTBiR4oSLe8EeWp1omYYQNvIqCe2xBGCQDmDRnNuTzT1rXTTcGoAnc9iO9YrMNm9t8fagxSIzt0okD7lSoPWtIKTIAIXMjJ/vQlOUxk46YoAJM5IPvXQg3WuYQD37djWLcO0KfeiLbCkW11AyBTznmC47VDZvuWVdIjxTDdvn6bQXse1cbxuussxl66NRQKADgk1KXgQmB3qheEZsu+TvRfgfLGewrcvGM2WkuzWbo0MDyiYGKPVb4idSlbkYIzNZf4cWlXTJJ6f+qBy5T/phO5URNXJe4nh3DXMshfVtpmjuXxafTBJqFWKsCNxTXuNdM8oA2ExFS8OzVN2x69wN9IjeZol4BFA1yT4NIt8WUUAiYFOHHMLBlBOwJb/AIamcp0vQX4EBuVyB5zTbNo2k06if2o7SveTVmOviteyyAnUJHes22+tZGK7JgH4ORSfxa+vpVVEmCw/mjSSYOPegb/DySSsgdYzV43+0v8A4qUkKA33ArQAJg70sKYE5jArjIHWsOjnkjFcokgMaxQTvTrBb1OUCBvAFIld+HO3XzFGLCrlobxOKewV4l9x96VpNsgGCPetpMYw5pU6R2iuLJsyJPeK4yWiYz1NZoyeZZ/1VntroIFsGYPvitNu0STzfaKLSYwy5812gwcH4FU2N5SgQao74rRaUdpNLDEMwKAnuBBFd6mJEE1E010dMxONxSnYxE/FcbzsNyB4oe5pbE0tr4spzH2AyTWNdWVDMA5/KTmgvm3a/qsIO3JjV7155vH1fUSVI7nV/Na48djNq69eW0MnmOwiak/EONXNrnuSB9qo4iG4bn+qJE7zUiWXddQGPOK1xkztmhdzcYsxyf8AkVTea5atIVICsIiNsVtrhkVQ10ie04pfEH1+JVEIOwHaau7UK5i3OSWIwSaJlZbmiDPYVl1QpicjeBArNR3G81saQ6cpLA9jiuo2uKsaGGRJ1AEz7muqDXsG1AuyAdiM0y5aCW+RixAkEGRFU8Xp/CLa1Auu53jNRopB0u3KDHf4qeh3D8SPTcuCdOcbxVQe3etFiqsNMg9a8sP6d1SRKj9OMU4X9BBUn0mJjGVNYvHL06S7FaqoUQTvNETilBulF0B6VybdO9YJNBfYrblNyQKnaxc1iSdZ71vjx1zqssB9TKD5MUQYBZBkHOK8+7OqC5Yjc0SsFvKwXlXcKavx0mm3Lj3bhtBtCgx5NBfsKqKbYIOxB/mi4llW8rqRDCQf70oX9I0lRGxg1vj4lGlkOAbrmQYx0FYStt0ULAB1HO9Dcu2ysKrE7yTtSoJInrma0h1wtel2xJiIwtKlnYEnwIHSmMhNnJ+k/T3oeRnWBA05B6Gg5CQYTMHOKIEqxYvBxhYmKWHIQiIPetXDRt70Dw4XJkHyN6zWSx9NcdcTSIAPc91py3baCLeo5mG2oNNzAS6ueh7UDDSZHMo6jpWsy5IQBu8z+1AiTq1Y0jp3oD1sFAccvTqR7dqDXzNpEg7E71qIG5hnuK0Wi2cnt5oBBVSNShjH5TQAbDHzTQCsQomrE4NUCs6zc7TgVLyxZNDaspyqoljgmrk4fSAPpPtW2lCLqAM96NGDNAmBXF0avDiZIDUwWFAIH70q4+lSA2SayzcLZ3A3nrVCr/DW3PMBt7EVPc4HUvJE+a9BwrOZHjeuKou/70lsT15Nn/D2a4VuKygCZGxo7n+G5JtsV8MJr1gqPkMa3lGCwmr9VMjxf/4xwJN1Z6ACawf4c++sHO0RXssVU8oAPQ1Hxl64FYnJAytX7p8mWHVLaqLcsNzRPb1A9O0dKk4fiEeHckLHaqBfV/pA0/vXO2tkOhUgEZ7ijtsLkpdeEjBGwp+kNiRFefeuXeHuEXF1ICOZcR8VePaVeLSgw+rTGGkUL2VSNR5fGakPFhhyux6ZG1ZqJ21H4q24TtW9tVgpI65pRMuCcKO1CrHsQetH9Zhois61jg+htVssD2JxVOsXbfKRMSyHMVO2kYFCq62AG/TxVlSw4hhlhHnvXSPHemEhLAD3C0mCJ2pJW3+VwR5Bq4mj080aST4rnL2iCoKjwaWrorAzMdIrn4uSVdQwPbpTU1zMW3O46npXaYUZz1pKkk9Ypg3gmKzQSgA0RyMUERBmtLYmoAuhWlDsRBFeQ66XKzMHeN69S64RGuHYDYda8264eDnUcsfNdv8AmzycDpdWdRBG3cU27ebURb+naaWSOUqxIAGD0NcR6jHSOcmAo6963kZAzMzSxJI706zqRTdG+ynse9LdVDQjagwjIyD7VwMKbbCJPXpVHb5ZiW81gUExq60egOx9NWbPaiPDXFHPC+C2aDllRCsI9q6jR0CgG5c/7RiuoCwpVdQAIkAf8/5FAzSoEjqNJ6jpQqzMCG0BiPqIjHiu06Ms5PTsM+9RQQSdJIMztnbamLavLaANstbIkjsaosH0xhrd0dlgVlziGj6NIMZnegn4W4wYWyZXp4qwbeakB0qGzqUQI6R/9ol4kGA40nv0rny473GpT7cC7bLEAAmCdp6VJxLv+IeSJBIxVnLctkGCD2pP4RCSTcJ+KceUnqWJxausuoIY3msTSVOtyPA61TxDBLBG04FSbmtcbrKhbaM4Nm9Ljo4ikm2wIR0YN0xvRFECqRcmfqGnIojcLtpa67p0Bj+KvakR80YjSGBOqcCMVTqs3SEHDwTuZ0xU7qtskFiWGDEEferLqYIk8+qCD5zWl7iGEc6SJB8UkKSBAmqrPCu7hGIIAk5kL/tQTgk3JLRO5rGJD4Mx1Br0P8SsIiTbCrBkwe9QBCTyjV7UgK1bNwnBgbkVS/CXEtEA6Qc6Tuar4Lg2VJuHSAZIjeu4lVuhn1KF2mdqmmPKSdypOIkDatIK5YMPfFExUHlZiAZAnrTLKq0kvG5O81Qq2hIPQb0TXdI0g1pEbBiDtiJ9qS+CcR4oLOAt+rda6/MEIgdz0r0gJbmgHpXlf4Y2niSemkye1eqtxVbB33Jrjz9dOPjmQwZOOwrrZj8kUwXEnLCuZ16Gsa0WwUkEjNDpecRp80LaS3T70TtC7T7U1TAumGjPjrWM4JDNgAYFbYDm1Fz470bqoG01EJt3SXYKeUeN6Y3MATM+KWiBCWXA7UxDIJoObK9zU3EEMNR22qg7RSHwuYgUHmQbN0AQUc9RtV1k6QAzZjbtU/E2vUBg5mQehpfCXicEnUNjXS9zU8uPUtycnatv2UvLpcSJneK62y+mCe2a43BHiuap7nCp6JtqsJM4rzuJs/h2UK+SJicivSvcbbtKVUFn7dvevKcPcuFiZYmYmu3CVjlYAMRkEz71dwl57iuWElAM96gII3EUbaktxsGg4O9dLxlZlseizhgSDnauRypBHTvUvBn+mw7GapRScmuFmV1l2KXvC5YaSAx770j1VUczRO00q44tjMknYDc1IbzawzAGPykYFanG8mLcW+qj4U53o2SFVu9QPeLOrDBHUVcjF7KE4nYVOXHEl1oNHBYz2rFWQKC+j6GVTkjesxTNaEGLi8u5nalNxVkHSpL/AOkVHbYLZe2bYDsYLN0+KFQSWCmYE4rpOETTXum5cT1UItqfpmk3X9S+z4AY9q0EC4qqsNMb7Uy/psnREtOoEYitzJUYgtJdALErOQFNZ6SO8rcUL1JxFIZtRJySTOTXCCeYwPatIuuW+EUIQxOMsrbn5qa61ksPSVh3LGZpIBY4BJ8UbeoUWQdI2ximAjfuxGvHZcD9q7QxIe5gRIB60r8tMVRI1cx6CgYb5/KgbyVmupluwugTH3rqgWtxmH9Yak7msYp6IXTzdM7eTQKYPc7ZrZ1nmIgbVQBl3lmz3rQwDGJmNyYoyjlJW2xHeJpYEk6ht0oDeSIBkdR3oWwxZtz0FFayGMxAyQK5LbXFLjYYzUCwSuxI9qOxeay0jKncGsFsk5kDvFZsI/tTILBxCnSGGnVtkGu4oA2dhMx7VGELHlExuaqBDWvSurt9LKZM+1YvHPGtSkwSCKJYMDSF/wAxk1S1myTat6xqIPOBAPv5qmzaCBcBmOxYbCtXliY882m1RE1sW1DAnPTTtNezbsAuTCyTMAbD+9KvcJaVv+iq53B3qfS/LyAY/aiRtTBSSE3IFWX7AIOjSp7bVHoKvpICknM9KssqWYc9w8QujoFgE0zhnt2w1kA3LjGB0BqVtSFh9Q6mis8hZ1ABAxPSriPWvXw+sTpQCJB3+K8p7bXLui3LH3oNTOwUSPc1zAkwpkAZMUwX2/wlhCt4lnKj8sxSn4qwoK2wxEQMATUhVljUDByJ600j00xoJI3A6Uwa91rjBjAA2WMUi5JYkiJpyXGwCiXB1GmP3Ga7iNDEabXpmNg2oUg7g3ChxAnGetU+riKgRLkzbBMbkbVcypoUq6kxDAdDXPnx/W+PIQuHrRi5mkbVsma5419KBcAOTRK41SKlMnatyBTDVoumYms/FNqYEbVGWjrXSSJj5imGqm4gMcmhW8QQAZFS+RWqzdKfK7FhugDfFTXrpJ5TQyzY3rNBjO/ak4mtQs2OlJcBbq3BiBDVbZti2NbCRE57UllXUVKkDse3mt+M7pY47SCBzfxSjxFy44AuBVOCdhVNq1YU/Qv2mkccwJVEgBckVeOb0XS7oHqkIy3B0Y9qEJcIJUjsQDmO/tSgYmtDkgKWMdprrjmMKzAqo1kAZGf+CutFCyrcgAbkjxtXa99LaFPQSZrPShdZMKdp/N7UDbSvZuAlSEfAkRNXcsAgjGTXmO1y5AY/TgSdqrHEK9tEUy74PjvXPnx71qVLDgrcBkk4PmgaSxPWaawKFrbGY+kk0sNAMgGe9dIzTEt+ogCkBhMz1roZXTUTKnEmgtkFgCYnrWMFF2EaVnc1B6i3kQhCQDEieua13LdMd6g4oRd1TqDDlNGOMK2Su7TjH81y+OumtZxkLcVgBJWphqIMdBJondrhliTS9q68ZkZMsMUvKw6GdulOvWhcd2QktO28+xoGVfSLqV5sGTke1Osa2tWwFGpZhien81Lf1YmVtNuEEMcEn+1LIgwZmjvL6d51zg0bO1yyJkkGMwa0haNoBgDOJjatd2do3A2iqOHtWLkAzJWDJ69KVdtPaYcrAjuIpoXIGnE96fwdv1+LtqTk5JNLthR9YOrz0piIRc12mUMMhZ39qlFP4f1HuEysNETMV1b+IQ5bWCcmFH966oqDGYWB19qK3ABMjuCeleld4S0y67av3xkVBdUqQXmScBsn7VdRTY4lfUUPLIMcmwNNuJY4i4SP6aHfFQXLvpsAiskZy00+3xYKhW0g0wdxHCm2g9PU9o/mA6ii4d2scOBjPRhmT1pqOBazlTlgDis4srdRXsprZVgx0FRQ2la8xW6ueojpVL8Lw2lmVVwuc4qS3xMcM3pOVuAAMX/tQ+qt1FtkPqJ5iNj8UQPEJbFqFTAzqBxSFvBUK20A1CGJyaddIsYsvrBXBjYf2qQKT4rUDbagsS2817KQACwjrHepP8PsBucDwvt5r0btjXpUEKsbd65crtahT3YcHeexpdy6boMQF99zQPbYSXme8TTuFFtmIJBIyDUUhRqkkQR22oLiK2lrtrPQzFVta5nUsRGcCcVKyExrhcbdT8UzAN7hbdy0GtFsHJPXxSbFuwZN25B7KJpygK07jrNTtYZnYrDKR06fFalZwN22gckEmT+1Y+pRrWAOkRWiJ0uCrDOf4qi3whvLAXQRnUx6VrQhnIsDUupiRzzJxSVdgI0gj2os2rpQ8yg5HQ117ScohCjvNVDFvC4ArWhqn6hvFV3xYS2NOpHIzI6V5s7ECCKaOILf9VQ5/wAxIqKaVtH/AKV0wT9BU796M+itouGAcYAXp7ih4fibNljcNpdQOBJNLbiFa8zC2NROGZtu2KYKGvW7SKdM3OoLf2pbcQ557lkqoEAzAouHspdZ71xmKJu3UnvUjXHucpuMyTiTU+YaMX7jEAHTPan2eLW2vMGcg4IiKkIAnSfFcIhgd+lX5hr0NQcHmUO0SYkjx/FUfh7SJpVw9xtpO1RWCy2x6eJ6gVtxHDQ5zg1zUZh7pGqJPUQKf+GeSWYEHqCIqQAF4LQp3MVZw7IF9JyCCZGdzGfirKA4eyru7sx9Mdx0oipNzVbj68AZn70T2Xd/6NzkP+alG4bPEujJqiSxJ3oNvXDOliW0mBNILljLGSase3aFsl5BzAG/zXm37oQGBntUu1fDy4VCUEkAmDXnKNbEsxk+Jk1vqFgdZJboe1Yhi4Dgidj1rpx44zbrSqL3PcHFAxEmBFbu2THmsJ3EzW0aqgkSQB1ozcLE82F2nFKraA5wJjrmjW3cGlkXMghpEClAwBRazq1AgnrI3qA9TNcm5BBwcTjxW+gdSqHUE9Cf2oFcajPKpOwGKIvbjSLY3kUGG0yNzAiDuOlHatJdUAlluedjS2BJO4gTBNGzaNMbadwSM96lFFoKVayyEAflJmPY+9RldLNBwpPzVqMLgyOZcHpBpTaRxDNcTWI22BOwNY43taQukNnNO4ewSNVzC76Y3plhUAMhfUVjkZpv/M05cvwkS8R6Ru7ENuegpVu66XNSxMRkdKdcX1L5/pkhVnBjUKB0Cf8A5GTsNUx8VqeYEsZMkyTXAAEGZnoDR7WIjmLV34dypdSpAzvV0clz0Lp1IDIj2q61/iKXkFviLQc7dp/2rzvTMEntOM1wPLAAmd+tM0e3xP8Ah6suuyRn9Rn96867baw+loHtRWOMvWdIuDUnkbV6d27ZuWZJGiN27eKng8cXD3B966iv2AtyFlRGzGDXVUWWeLcWbnrIxExM1IyEu98IRbB5Z716d69bs2dOmIEDr8YryeIv+s4YAADAHapApjqaT3ya5bbNEAmdsb1jGWxV2m6/puqGQMFYHtP2rQjXVBClj0Iiaaoe2MYaYDA1Uipw1lTcYi7BPeut2w7AhxO8nEVNEiK6NzyJIyTHXvVljhyES4RpdpjtB8066ba31uELoRdMHAM9ql4riXYaFblGyrEUFVlOHtDRcIIjcDFT8TYsoNVlwy7x2qK5cZ4DT5rAIwRMdRTB63BQtvlyHWRnaqbMOksWLyQJNeVwtxbd5VDSj4E4g16L3fRaSgaZNc7MbDcRrgKIIJOd4obFt2S4QRJXlMfemXeIttBB1CJC6Zg96nVxMLIzjxUDLLMsqSArbgiQa65YJP8ATKE9Qp2o3ZTbBOSBB5s/alrduKAFKoh6ximBT23Vgrb+21Ekpmd+4ow5DqVEMBzNMhq0IXsyDmdompgwqt1gDaTJ3C0F3h9S6bZ0FdhOK49ASSexFMUGdx8VO2pI8u7auWrgDwDvIrnJgM0sT3NVcVcB4gIw5QIM9T70i+qat4gSZzPiu02ztzvpTABgVjI2Gaw6SD0I2810kNrWFMyKK4Gy9wSW2M1UAFBEagD2NGFlRHMZ6UJCwCJgHNapKNAeI65oD9ZfTdFGjUZnfHal2/rABAzuaxgJ5FaPajNi6qByuCYjrQbeZS7aCIkxj96V5qq0i310BlW5MknrXXuEu20iJjJA3oO4a96dwKMjbNenxT22t6dUsfAM/PSvIUjUvUjpG9etbs27g9QDBGANge1Y5RqE27OsQokjxRM3oaxcRWuHY9qoa4LSaWBBBw460q/dS6nRjBjBkVAdm4lgFUEkj71124guQbahxMkrNKtJoI1AzkEHAGKAurFQYxIIyRUVl1wNRChl75Ge/ivOUhbpPEWywJ6yK9MOqjlQGJ3yD5qDiXN5yArEqSWmtcGaHiUsQHsMMzy5wKmpyBCpBB1RygCZoHGx0x8YrpEBTLbqkygY9J6VtoIZ1KT/AN0U8W7PQZI2kEfegWosXFOo+m3sTNGLdhZVjqPTTkmtt8ItxuUkAYMkR96tt8DbAMK7eUFS1XnXkBJCWCmdyZpLIy7qR71654Sw5ILlH35hFTXuDldQIJHnBikqIM0+w+idQERtGTXIAL2i4IEdBEVbxPC2nS21toJ5c4Aq6IyLaoWB1Qdz/tThD2VKiIP7VIHdDpnAO001eJbRoKoQQZMZ96BgIRpQMR1HitvOHs/0yGJO0ZipxdbTvttR8O0XC2oqW2jas2fpoBcZLjRAPWBijXimEyAfbFVXWtpJW5bdj3Xp5IpYtG+ZW3I2JU4FT32KXZvHnDGOXBJz7Cl3ypbXbP1bx0pjcN6ZBMxEyCCDQjSQ2oaAOpAB+BTrdCw4mfSBJ6mTRWrhBOm3qDHaetCzieUH5NCXJiIEdq1gt4e7ZgW01Kex60TWLbHKj3GDUnDIzPqVQxXIWYqkXggIuowcDIGa52WXpSr9p0Xllh3A2obXr2VMs1u2ckzE060WvWyr7mcLgx381KLLKwIZSNwRWpvlHeldu88MwPU9a6ii+6jlZgBAIMYrq0jj6ttmtsSpGCCaWQF6ya245dyxySetZ5OTVRwAI6A9qc1xTbAJMqCARShgeZ2owAxMqAe21AKX3U7k/NGb2n6d+xG1AEEaiuPBrlU6pUbd6A9bYkySJntQSrHYjsJogx1CVB8U305MvOckrk0GLwjPiCG7VycMSdJKhgMLqyasNhPTFzSLg3BJ/vWHi1wGAI8ipohILn0gMgmPftV9i4L/AA664LDDUl0V3mVE/Y+9ZcR0s60OUGCMEVLNWdKhYBhVfS3SScmgOpG0sIZehpfD8R6kq0SomQP+Zq4onELDmLijcb1yrefqR2DNlSPHau0xqGvpsOtXpw5Nso8EjYmpblh7Txk9QwGxohABHXNPDAgAIFB6igYAMep23msPjFTWsE1wxBzHWlcRxBtW4BILY1Dp7Vu+JqbimGtF6ASavHupfC7beoTqgwD9Rk0H03Mc2k9NqzqzyCZrEYqZU8x813c2zAzufFNlnREOCnRh9opDSG5p9qcLksG1EMNmJ/aoGRrQQFDYwh/mjS0BAcaSTtG1St9Mg7HAO9XcGUdCjKG7EeKigUKrDBk9RQcRce3dhSQwwSDXo6Ftg6UJuE48ea8/i09Jxr5ycmcTSBCjROoQYwKdY4t7WZDZzJqcwVJBg9qyMTqG21VDSBcvcmJPWvZtsq8OpZmCgadMzPmvF4Z1t3wzbfxXrWnKiGYAE48Vjl61J0XfYuusnqRt06VKSwO9U3NEAZMd6QVBEg5FZqsDd+tOtkHRIBA2AME0j+a3VB2HzU0UEMyRoMgAT1Fee2ocW6KwGpoknHzTLnFv9NtsRBM4NTH6uacnNdOM/WbVFywFvQtxdawTpOx70xi7W7q6Sy/UWnINPtWlZSVgBVnakcPeVeJaCChJw+JjzUltMRMdLYEd60Mp+qas4jhla5rkWg2QPqFQsulokEdxXSIat0lkUAwOwya9VrpRUCrLETpDbVLwl+1w41i0CwBk0u7xQvcQX0gA7gioKbYN2I17yWjAz2qg2NZaCjA/VJiT3rzTcKmQSTMkZzT14tTbyV1dv/dMVQ3AqTqdwAegqe8Q9uNxP0DtFMbjBcxqHtOalvKxzpJM9+lSCMiCRR2VLOIE09OGVx1BP2qqxwRtMtyDyiSSd6tqYmtcLcN4powDDA7CuvqisbaQSm0V6N5v6Bh8HfVJFeQ31fVk43qTsaq6yeaCF/NWqyoxBTWvUTSSZJ236Vonoa0K7V4I+i2rKH2ESPtQXlF1QVWH1FSsbeKC5xNy4YJnEBQKt4XhWKIIOvfesW4smom4VxoAXJ3O4qz0EIIYavenm26nTpz2FZp+K5Xla18vN4jTauKLXKV3gmaLhh63ql5JIg5qy9ZW4IYA+aGzYFkNBmTO1a++k+UjWkU/mDAA43HkUl3knOqe4qviQwIdJkYMdqmCi79UIf1bA1043YhJJO9dRMukxIPtXVpHHxW2hNwDPxRG2VyRIG8UAkHG5oCxpnYjEdz3rGbVmMmtA1HOJ8VnpvMaT22oNQ9yK1ebEGK0pyjTnuOorgRkDHvQbqhYjE9q5bmjrA7DFcLTs3IGIAnvXGy88wHsaBlu8VA0sQJ6U9LK3l+vbOOnmplQ4GnfvRhmsPn7A7VBXZtqpIK6iD0PSguIpEA6e4M11niNaEGQ4XPkd6DiiVuXCesHHSorrctedoGFCwBEVaFuCLmr6Rg/2qWwQ2pg5dQZkiKZ6zKAFMT+9c763PHoC4ttFVmJaNz1oLlwMg5wucZivP8AVciWhveuZmcySZjFNiCYgMTLH3oWYb0s6gMihDJrm4wgD6SdzUzaa1ryic5FCbtp2i6OU7N+mp3bW8xiIAGTQ7jH2rpOOMn8TwdzhnDCGttswzSLiFR0jvVacW9tNBAe3H0npQXUmyt1Mox+x7GqJnlhMgwKxSQaLTPTMT70IEtWkMEiP4NMRtGVJOcRiaWn1Q370wrqYBdjuRtNQVX+KZQsiSRM96guO1xpMmqrzg20UcwAnOM0gjlABKk9ZxQKho2P2rSjKJIIFNK3UQyuDjUDFDcv3GVUJhRsJoA0Np1FTp2mKv4Zi3DBtmVonvUKluh+Jqrhbo9P02gfpjvWeU2NcfVA1QdRmaCYo1OM7UpyCxFcnSuYjSABkUJH+1ZSrrSVXUQIzFWTWLSASjypgg4ow/qXF15z0FZcQpgjPcdaADrOa7/jD0XulLDAYMRUJUqxUENHaididJdzB7DamNZi3ba2wYncatzWeMyLeyg1y0rW4jM7ZrrRBmSBA3Oa5iGPMCD1oMBYg5rSGAMbcT4g0uCBBkfxW6ogg46CZo1H9P68kyRE0AjWxiSYFEl3TIZZ/kVy6naFXp2oiAR/UDavBmis9VQOXHcEVUilCDAYLGQ2PaoyEnZ1zmc0StctAsjcpFQenaXUpws9CTBpssBp9TTG2ARUvCcda0BXQB4yTsatco9oQVznJrNEl8apU3FjweledetaMiIOwmavvoSpzA7xMGvO06X550/5a1EbbtszMwUHSJI6VYvD23XXoZP8vT/5UvqRaBVSBMaviquCu6rcSeXBz0rPPc6a4+nWwEEKqr7CKot3fT5h9qSSJxWg4rz67K2vK2FAII2OKWbTsoxEn7UmCdjTE4i4uCQRtBrU5f2zZ/TDbZOVhSzyY3FVK2sGZEbUi+p1RWa1CDA2qTiFZSXXI7ETFVRuKxgAM1rjcc+URDh3uDUpEHtXVju9u46qxUTsK6vQ5q+I4O96YKwY3UUlOCusQWQgbV6fqzWi5ynEz2NTarxzZYNBEeTiuAu2+uVP071fetl9i+M6TmK30UaCQW8f/KuiNOJsx/UsDVO6mJrfxFjSALJZhuSTVT8EGLAHB7D+9CvA7xOMxtREovcPPNw0ezEURXhHgo7qf0nMfNOvcLpUkDVmonWgpPCoGhkuEMcMCCKaLIRB/SIUiGa4IqazxBQEESp3ESDVbB7LB0b+g/fOk1BLdPpXYUYCkb9DWtcN200gx9RbvHSqJtsGx6mkYC4jv8Uu2HW8QbZVGyB0xVG8MNHDspENOa1vqxWpAVgPihyDXC+uv4MQBFaNsbUBNLuu6AG2d+lJNZ0x3C5I1dh3qcWrlx/6aEmckD+TW2zNzVcyYnJiR2ouI4m40W0aBEEKIrrJjOse0lkf1HVX/TOpv2oFVX2DA9yBFBI5VABE7964LJ+qI85rQJ7ZmOvSRE0Vi8LRZGBNt8OOoofUgc3MvWmXLYVRcEkeO1B1+yAguW21LvU11PTfBlWEiruFYLcW0xlTlT0IoeKtcpQAgatSH36UEI37imSHH1cw26e1B9cYClcHzmjdTpMCCuSKo5izfWx5d4M9aFV6hgP9Q3rg+ASQIFcxWALYIxzZ3NAx7ruyLcgKPyqBmjCa49JdTr9QJ5j7Cp2OFGo7bREVqhkMgwag5o3Bz1ERFYqs2RuDimtfL/Vbtse5GTWhbcElTbBxIOoexoGrdYopMiRXFqUq+jc03XBXspyRVjWuGuIwUMjTvJEe9Y+WvpLcuhB3Y7CstvZZh6qsr9XVv7V1zhLqtqtrIicVOZ1QZDecVqSRm1Rd4a4rldWpMFWnGdsVO6MjQeuZG1UcPxDoCoaARB8e1WcUlu7b9S2ouM2xmIq7g8uSIM5FOttCkhiB+kzFElsXOXTBG++a9BEWzaPplyp/KpGPuKWo8gtJJP5t65CS4iJnrtTuItDVKIQNs0pkZBDCPNUYZaVkRvXIrIVcCRO4zWFTA87ZrJIwKoct2FGApB3jMVh0OZmCd5xS9WVI6CmhlJJHLNQYGAkMCJ7U2AIKsvNjIwfegCkEqxx0xg1qrpvBYJB7ZqDmtENzIV8gTRar9vCmQOlW8HatMp9S6STgANVR4WxEDVq6Zqarxm4h8hwRq7msDW1uK31L1gRVnE8NoIUspAyekVI6lV7DeNoqor4mxZbhSOHONWrJ3qLhGKXxjcQa21fuWSNIGn9JE1Xeshit6yChYZEYqXzFG8KJWsW6F+s6R3NTXjdgBmC7nBpJaZ1MzdhXP+Nv7XPxlnpqY+BWJxtt20kaSe9RKpJlSAd96EkR1kVr+OJ9165vQsA5rjdLQJ2ETXm277dckCBVaMGAMQCK53jjc5aKebahdhnVGO9EXCiftUnFPIAx5FSTazypFzSzltW+dq6tF1QI0T811elzO9V/P3o14hhiTHalgHVGTTEt6mAPXY9qgt4dvUBKtnp/86V34h7c+qhEGJqMF+GeRg/83r00C3rcsuR0NRQJxCvOg/ejd7kQqe+amvKRJ08wM460K3IVjrGo9JoDu+o6EHAqG5bCnuT0iqbrEkwCRAyTUrLDY61UL2r0f8NJuW7loiRuKgKiDODXo/4SQrOrCCRialWIdfpXZM6TKNHam2WAW4jNBtgwQN+lN/xHhCrs9sSGOr270m3bYW9JGXwI3Oab0GWeprrkaSwBMdBk1yYFBxN46DbUEedq5SbXTyE3b3MFQsAN8QZpds+oSHJjEz2pUw2Z/vWo0Ag5JrtJI52ntc1EgBVU9IyaFlhi25/k0kOwERIph5iACIHX3qowBWyd5+1EogdRnrWEaPnJo4xIM95oDNq4i6rQDhsYqmzYZbBFxSuxOYxU1m9csvyEROxq4f4gLo0X7P8A3DNShPCC56xXRGkSkZx1g1bd4dbiQu6MSPnpU6cYUeBcDIRAgAR7063xan6s/wCYGs3VQ3OAPqsVnedppVyy6mGh574Ir1W4mwWMPB8ijS5aKnUVMb4mrpjwm4VlElgPeksjKYK56V9C9pGXWpgeNqma2oOrA9lGaujx9LQTpNOs8T6QhrauOzVebxkyoM4IYY+1ATYdYuWQROCpgimiY3+HuiGs+m3Qq1Lu2YEoxYdiIMf3r0bfCcI4JRioP5XiiezctnPoFei4Ej5po8XY/wC1MUuxjUfk1678Lw963y2lV4xDbe8VH+Fu2WC6dQbaCY/amjbfEcRauI1xmdfzdcU3iOJ4O7GtS5HWKmucPdCgsjLGJIpbJpVsrynPmgpI4O4x5tIiBRJwV62jG28+DiomInVbUqO0zmvW/wAOOrgzpeWEyD0qVAcDa9Ry10MrJg+adxDMtzTpGk41f2oHuC05UMAxH0nvW6znBHeaisa8qMAwnHTINcfw5BDBVB3mhu3EtyEA+1SO3qMS37RVRnE8LoGtLcp4NZat2GQaiy98ZBo0Ny3lCY3iqk9LihDKFuDqBVHn3bVtG5XLINwRBrLcKiSE55EkTFW3rEAq66YnS3Q/+6newY0sCsmVJFABtMogyCf3rHYEZGryaotWCbUlsqYM9qX6NzWIGo7Y6UCEAmVMHtNXW+K0f9TlMZ80r8Hfa6LRUqWBPMMClXUuWGCPAkSJMip6KL943hrXIAjGajaHbnYnO5NHbJtkkqQerUxFLnkUPOSFOftVG2HVGAgMhGQcirrZF4KUEEYAio7tpkaFAaczEGl2btzh3OW3yvWoouKtvIZskjealZSWGxJ6CvVN31FDEqwYxBE9Kl/E2Ux+ESZwQaIBbdlkQ+sVbZgw29qG9w7W4aNaHZhtV/DcbZuOEa2ik7EqK9H0wbZOkT4xNNxcfNMgiQG+dqK2xUQJ8aTvVPFWUS5GkITmO1ToHa4LarLE9OtX1BAXbijSx0ncFqnIAYjMA1VdtXeHkAiCdwQf+GhtuqKcKzfxUhS3tyQQQARiYFdRNoczqtjxBrqor4O2Ll7IwFNZct3bVw2n1EETynFbwN023eBqldqe/EvuDBPWBNAhbJOAnN3bAHsKtTTZtBQdh1qR+LuFdh/FTa3dj/UUe7RTBRfvBpEb0FhdVxUYmCdzS1XrOqdop9qN4E9Y3pSKOItFLZVSfaKjdCBJECrTdkGTIO+KmugENEk96kE24IO4NHaZ0Iu7aTuKU0g4G9XWE9ay1tjpYbA1RWx9W2IO+xqYMjcRbxCgAdo7jxTeEUqgtvOrpQ8XYKsbiH3U1lonYSdqRdLsRpHLuBRlzIEQexO9daYW5JGtD0napItvRbhbiyRJmDHSkXEtoY0tt2irNVpiVRiFO2YIrfw/JObncTmtsIFDNy6dUjr0reZDIGe9Wra0MQVhencUxbJY5Bj2mqPPILACInMHFGNSAgie9O4m16UFl1LP0mkm5ADWg3p9iJigwMsYzTUCHfB9qQ5QnUrET0HStS442hh96B13hrg5tOpf1CgVTbOHimW7oflU6GjOcGityNlVx4AP8VAEEtuCTWglYyQPFUqllxhdLdiKF7LrOn9qAbd0oeUsJG24rvU6f+qAAzBAmihisHbyKDAx+PPStdRMlceIrltjqRHirV4VSkqDHY4oqBhBGmR71p9TTOqREirTwS6DCEGMQ2KBeFJYgELI2bepoiGoNkSdwYyPtV/DPedTKSRkNnP/ALpL8M5y2B0Pf2orRucPc0lge4nalGXL1wMW1NB/Kw/4RS+KVDZD+mM5JP8ANXlEdfUC5IzUl9XvOqhToQSF7nzUggWy93mCcverP8LtMLjvBCxEVUlogL0LDboBR3FHDp/TJB2icVdEXGw14DIalXTPKrkhcA11wuXLE58UEnAGogVUZckiG5x56Ua2TEyKHQ0/SZog5GX9vNAwKFWZyOkb1lrQ7AQVbxXTI6fFajC25Oj5maCu3dKgW7v9ROpO9Hc4ZdP9NZU5xup7j/akLcD/AEkT/FH+I9MgQQTgBRUxSp9C4uvUB3AMGg12vVJVgqT9h2NWLeJUhlBB7x/FJa1w7TrtquNwKBFu/N5lS4xQLCgtg0q7ZW4S7GGPWmtwAgNaeAe5x96eiBgRdlWAjU0Gfmgkkrw7qFOpIHxSLY19NJ9quexrGnM9IMGphZggHDCiG27rqpR2YgEEZ7UN+0L0suZM5MEU5LaMgk596FrBBlHWPNFDZuPYQroFwTMEgkV3orcMki03fof9q4m5b6qRQi9p6ZojW/w9gpjmY5BU1Zw/F3FTTdQyOhGaHg7yS2dIp9zhhkhtI/ap/qk3H4fiTDSG7HBrLNheGLFYJP5jmsa2shbihvP/ALqjRotBVIdowxoPN4+09tka2RobeO53pVnh34hgqgqozJ7V6b2fXt8ygMBOKltKS4UbTgVYMHDoZABGnH011PfhnuNOsDpG1dU0efaGmJ3296YwDfG1GV6SDHShMdK2ySbTM2Wo0tKOWC58VsmYMx9qarFMAADrFBqD08BFB7STW+swwVEeKE3kLZGT1BirEsKyDTn2NSql9UTzAiguurrAmmPw7IGgYFIYaWOINBoUFQW2GDFE6tZdSJDbgnFLDeenvTHuq1rSQSZxjags4a+LpGIIG1OvGWXEggg+K8lDpgmYGZG4qxLxvLpB5/OJqYunvZTrilXFtAaWcQfzDBo0utGl5le1Ia+UulWXUD+ZcUQTWhAIi4PImhFoO0FDnEKaxFFxgULqfGxp44e7cB/qMGB3bpVCxw2NCqxnInApg4e6pEsIAzDRT7a8Qoi4yN5WhuWy7STgfNZ1cIulr39PRC9M0i3Yu2gQmUmrRptid/FC2pzKR7TV1EZ4UN/UMjME023wFt/qAnoe9W21KLBBPvS7lyyridIxmpq4BOBtgiQY871lzhks3JFgsIwy7im/iE0whkDoK1eIUiCYPY07XpPctC4pJmB9xQLaa2wzMEYqktbYQTk9qBVUYW6wB/K1VkkFUBuMoMkwKcLrushAVH6qG+moxqB7xWIugeizEq2zDp7igZauWmTUEVWGw7+1a/FAGAxBjNZctFUPp3Cqnt2qcWRqMvPsN6i6aeJdt465Fbw1x2YgGBMkmuFpY65/UaIW1gjUtXobxF0C4oYyFM7VI/O4YklydztTTaeDDRPShXhiSJuFT5EURVaNshYwRRsuk6k+R0qVbekHVcn2pyMA0Y099VTF0u4zOeVip7Gpb151EEz4NXl1EzDewpVy3ZvNzg+KsR52ssZMrXQT9Jcj3iq7nDKAfTf4NTMjqvNlaqMJKgz9gaUxjpRQMkk52rihO0mgK0QQQSRTQTkfFDass4xAC9aIiOkmg5E1GVwR8U10uBVaBHeaXaaLkkxVDkC3FFCra9lx5NOVU3uEewqQLGYON4NOkESG9xOaYaoYoDqSV6V2gXDC7eNqBbYIEODNOtpGQ2anigSxG/TuelKv8OGdjkT1qzV0PSgulNJB/Y1B5DhkbSGx71tvruT70y/6SEkA/JmhDiJUZrSCCKTkfc1ly1bP0sV+aZa4Z7il2wKFrIUmcr4oAslrFwMpDf3r1bYBthkBAYTBO1QWwuiOk1SlzEEgDbapYSjnU8YDV2prcgzilsCeaPJNMtuGwTJHc/3qKzSWyTB96SYQ4XaYNW8oXtUtyILRSFLuPDcoAHuc11KLz2rq1iaNQrAApH8il3LJ/Jn33qgoynvXKCD9FB5zq4MEZoeYdP2r1Sqn6lx7Ul7VonDQfNXUedVNm84UDUYFMNgHYfNaOEc5A+KCsMb/AA5I36RUN22bZ2OKoso9uYjG8mnyCJaCBWVeaF1bADtRHh2jUBgbntVoe10AB/00l7jsYJkDoKCUIZ5dJ8GuBKY2I7inC/dQkZg5yK0Xdci5LL7ZFUHwj+qYddR87/eh46ycuCYn7UC3Bauh7Tah5Ga9EXFe2GH0moIuHUogSNsiKq9QqMHlHVhml3Wj6cGlMbpH6varmpuDPHANBJB/atZ3IlTM1MbcnUw0n704EASJI+1MNdN4qZTPeKSL7IdIVlP2qnU+4kCsLK+LmfMUCTf1iH9Ro2yKWHg4AHgiqmeyygEz7xSCeHzAbxBoFs+r8x9gIoWAXYgHzmqrd/Qp9Gyfc0Xpm8QXSI80COHHMWd4WqHQHSyyAdlJyaIWCTLYUdKJrYa4pOAuaitRdFpicadiaLUtxQWAXHSsZdaiSVXtUysysVywnBFJNVUEVZgnTvWMAy6kAkHAOKUt2AVaR5rtFwkuhB/y9KYmjAuFofSF6kGTRNYtRLaiO80vVdE+okDxTVaBDRFBJetvbnQrBfeRShdddmI+f7VfbZQIViRXXbNp8sBNNEI4lpyqn4ijN5Dumk+Kqt2rdudIrGS2zS4nxFUIRwxgNTemVmu9G0DK8vtWsqRyhvvFAB9oriAylSRBogpMnTPaDSm1AkFT9iaI30VCwEU0r0AzCdvGKJdZOxA70xbTn6QCPOKowlEt6QPgVO8sJx8VYOGkbkHztQNw7oNp9qglSRcBOwOZqj6gOtCbZ6CugjvVGOcHFLBOIIJpwtlxvRjhl6tTQFu5JjmnxTfUI6tWqidBRBFHtQTtxFzUYUn3FA3qvnPsKrZgBgQKQ7Mx5JFAleFcnKx81XY4NAAWOrwKUtu4WBZtu1WpJETFSrHMMQDAqa+krApt7UtR3rhJIyPFJCm/h1UA+poJ6VgtIrZu6j4pSAucuB5piqky10n4qoqFlQkAQe5ogqgZ37yKm1sTysI/1Gjsq6kl2LexrOLpxdQJGfc1LduPcMDTHim3FD5BIpDIFBMn2irAvR7Cuogy/pb9q6qi8gGhI7GK4GN64sO1RQNr6EfJrgJHOi/FECO9cdJ3zQCLQnGK5kcZVVn3ogw6YHiuZlODOaBYN1jzIPvRgCIZSI+1EqiMMCKMDHSpoUVAwF+KFkJEC3/aqAIrJHUCmiX0n3iK08MCJIIP7VQXIOBNCXY7UE34Vdzc+y5p4UBAqECO9EDdA2X7VvNH0KDQJNtgTpEjvOTQ+hcgQKpFwjBUVhuDoufeKdmJhYY9vmtazdj6lgU8luwj71mmchRPg1dMTm3eMAssVxsXDgH9qrQONwPvRFgN5n2qaYi/CsMGfvTF4eIJI/mn6idlJ+KOI3AmmmJiEUZyR2FMSQMKfkUZI+a3PegAqSc7dqEkhvpxRkkCYH3oSGPaKBbFmbqBXAaTjPck0yI7VkHuaoxraOohVY+GiuTUuCqgdBvXKoBmD8UXIcZqApAG9Lu6WENEUJt/oafeuCtEFB9qo1WAAgTjcGhe4D9D6fBFGF04Az7VpV+oX5WoBtgsOYrPisKN0WR4NboEzpM+KZkjK00KKv0Qn5rDrjdQe001VPWQPegcsDysftV0DmNoPhqNVwMkHyJpeq5/9FcC+5j7UBs1xM6hHsKJWdiCCPmlg5yw+00cKREn4FA0TGYmuKk70I0jq1bCHdprKlvbjagKYzP2p8IvauMnY4q6hIKAQJn2oXMEY+aafMGsI7CqOUmJAEd4rQCwwAfMxQOGJABx2iiVWX2ioBZIIJArgUAyINcVSeYGfmt9JWyJ+1VGiCMUxDHShCxitgdTUURTUN6nuWDrJAmmnT+ofNZqQ4J+xpBP6Qg6wBXC3amCx9xVXLGT96AhP+CrpgVsqolDWqur9I+K2Y2LV2f1n5oCLTjaOtDoY7hftXA9zJog3TFQAbTdIHutdRk+RXVexpcEbj7UM+f2rK470Rs1wNd1oxQBjua6O2qmUQqapMN+ljRgHsRTDQmmgSveuiOpraEb0HT/AJo+KElpw4+RRnagNUEA5/NPxWaH6afvWDeibpUGhT1j4rtOKEVvSg0qP1EfArNJ6E/auFGN6gVzLu371wYnr+9P60LVZQrU3cV2o7av3ohvWmqgAVG5BrdY7itND1oNJHiuAmuFMWopZQfqodI/XT+lYaahOkfrNbAH5q25tSDVDSJ2A+9coPUfY0la01UUDHSt+4+amXemVMXTNUd6zX3mu7UYqKHWO9YW8kfIrTuaBtqGuJn87fauGjqCfcUo/VXdaqGhLJOxH7UcKBgn70rpXCop0DrJ9zXAqMQKXW0wHy/8FZI7D7Vx2oDvQES3QCsAJ3P7Vwoqo6B1roE711D1qDSortu1cayqjTq8fahIJohW9KKCD2/atWR/8ojWURuofprixO8fNYdqyorSs9BXG1P5f3rl3pp2qWqT6X+U/eu9M9J+9N6UBq6F+m36R966irqqP//Z");
  background-size: cover;
  background-position: left center;
  border: 0;
  box-shadow: var(--client-earth-shadow);
  transform: translate(-50%, -50%);
  animation: clientEarthTextureRotate 30s linear infinite;
  transition: left 300ms linear;
  will-change: background-position;
}

.client-globe-stage:hover .client-globe {
  box-shadow: var(--client-earth-shadow);
  transform: translate(-50%, -50%);
}

.client-globe__map,
.client-globe__grid,
.client-globe__network,
.client-globe__hub,
.client-globe-label {
  display: none;
}

@keyframes clientEarthTextureRotate {
  from { background-position: 0 0; }
  to { background-position: 400px 0; }
}

@media (max-width: 1180px) {
  .client-network.weighting {
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  }

  .client-globe-stage {
    width: min(420px, 38vw);
    min-width: 340px;
  }
}

@media (max-width: 760px) {
  .client-network.weighting {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .client-globe-chart {
    min-height: 390px;
  }

  .client-globe-stage {
    width: min(360px, 82vw);
    min-width: 0;
    margin: 0 auto;
  }

  .client-globe-label {
    padding: 6px 8px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-globe,
  .client-globe__map-strip,
  .client-globe__node-group circle,
  .client-globe-star {
    animation: none !important;
  }

  .client-globe,
  .client-globe__node-group {
    transition-duration: 1ms !important;
  }
}

/* Platform telemetry: make the daily-new cadence unmistakable. */
.platform-scale div::before {
  content: "01 / DAILY NEW NOTES";
}

.platform-scale div:nth-of-type(2)::before {
  content: "02 / DAILY NEW IMPRESSIONS";
}

.platform-scale div:nth-of-type(3)::before {
  content: "03 / DAILY NEW REACH";
}

.platform-scale__daily {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 24px;
  display: inline-flex;
  height: 28px;
  align-items: center;
  overflow: hidden;
  color: rgb(var(--telemetry-accent));
  border: 1px solid rgba(var(--telemetry-accent), 0.34);
  border-radius: 999px;
  background: rgba(var(--telemetry-accent), 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 0 22px rgba(var(--telemetry-accent), 0.07);
  font-style: normal;
}

.platform-scale__daily b,
.platform-scale__daily small {
  display: inline-flex;
  height: 100%;
  align-items: center;
  font: 700 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.platform-scale__daily b {
  padding: 0 10px 0 12px;
}

.platform-scale__daily small {
  padding: 0 9px;
  color: #071019;
  background: rgb(var(--telemetry-accent));
  letter-spacing: 0.08em;
}

.platform-scale div > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(245, 242, 234, 0.78);
  font-weight: 650;
}

.platform-scale div > span::before {
  content: "↗";
  color: rgb(var(--telemetry-accent));
  font: 700 13px/1 "Bahnschrift", sans-serif;
}

.platform-scale > p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-scale > p > strong {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: #071019;
  border-radius: 4px;
  background: var(--xhs-gold);
  font: 750 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

@media (max-width: 480px) {
  .platform-scale div::before {
    content: "01 / DAILY";
  }

  .platform-scale div:nth-of-type(2)::before {
    content: "02 / DAILY";
  }

  .platform-scale div:nth-of-type(3)::before {
    content: "03 / DAILY";
  }

  .platform-scale__daily {
    right: 18px;
  }

  .platform-scale > p {
    align-items: flex-start;
  }
}

/* Local brand operating model: editorial hierarchy and restrained step interaction. */
.guancheng .synergy {
  --synergy-gold: #e2bd78;
  --synergy-gold-soft: rgba(226, 189, 120, 0.2);
  --synergy-panel: rgba(8, 19, 28, 0.78);
  margin-top: clamp(76px, 8vw, 120px);
  padding: clamp(46px, 5.5vw, 78px);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(226, 189, 120, 0.055), transparent 32%),
    rgba(255, 255, 255, 0.012);
}

.guancheng .synergy > .ui-cursor-glow {
  display: none;
}

.guancheng .synergy-title {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 4.8vw, 78px);
  align-items: center;
}

.guancheng .synergy-title h3 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(42px, 4.45vw, 68px);
  font-weight: 520;
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.guancheng .synergy-title h3 span {
  display: block;
}

.guancheng .synergy-title h3 span:last-child {
  margin-top: 0.08em;
  color: var(--synergy-gold);
}

.advantage-dog-stage {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(190px, 17vw, 236px);
  place-items: center;
  perspective: 900px;
}

.advantage-dog-stage::before {
  position: absolute;
  content: "";
  width: min(94%, 430px);
  height: 72%;
  border: 1px solid rgba(226, 189, 120, 0.1);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(226, 189, 120, 0.11), transparent 68%);
  filter: blur(1px);
  transform: translateY(12%);
}

.advantage-dog-stage .dog {
  --dog-fur: #f7f5ee;
  --dog-fur-light: #fffdf7;
  --dog-fur-shadow: #d2d4cf;
  --dog-ink: #142525;
  position: relative;
  isolation: isolate;
  width: min(100%, 440px);
  aspect-ratio: 2.35 / 1;
  transform-origin: 50% 82%;
  animation: advantageDogRest 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog::before {
  position: absolute;
  z-index: 0;
  content: "";
  right: 3%;
  bottom: 5%;
  left: 2%;
  height: 12%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(5px);
  transform-origin: center;
  animation: advantageDogShadow 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__body {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 12%;
  width: 69%;
  height: 57%;
  border-radius: 42% 44% 36% 33% / 48% 52% 34% 39%;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(155deg, var(--dog-fur-light), var(--dog-fur) 54%, var(--dog-fur-shadow));
  box-shadow: inset -12px -12px 22px rgba(116, 124, 121, 0.13), inset 7px 8px 13px rgba(255, 255, 255, 0.64);
  transform-origin: 52% 88%;
  animation: advantageDogBody 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__tail {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: -9%;
  width: 34%;
  aspect-ratio: 1;
  box-sizing: border-box;
  border: clamp(17px, 2vw, 28px) solid var(--dog-fur-light);
  border-bottom-color: var(--dog-fur-shadow);
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(4px 7px 6px rgba(0, 0, 0, 0.1));
  transform: rotate(16deg);
  transform-origin: 24% 78%;
  animation: advantageDogTail 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__head,
.advantage-dog-stage .dog__head-c {
  position: absolute;
  left: 3%;
  bottom: 11%;
  width: 37%;
  height: 72%;
  transform-origin: 82% 88%;
  animation: advantageDogHead 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__head {
  z-index: 5;
  border-radius: 48% 45% 42% 44% / 45% 48% 48% 43%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(145deg, var(--dog-fur-light), var(--dog-fur) 58%, var(--dog-fur-shadow));
  box-shadow: inset -8px -9px 16px rgba(112, 119, 116, 0.12);
}

.advantage-dog-stage .dog__head-c {
  z-index: 3;
}

.advantage-dog-stage .dog__ear-l,
.advantage-dog-stage .dog__ear-r {
  position: absolute;
  top: -25%;
  width: 43%;
  height: 52%;
  overflow: hidden;
  clip-path: polygon(50% 0, 100% 100%, 0 90%);
  background: linear-gradient(145deg, #fffefa 15%, #dedfd9 78%);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.advantage-dog-stage .dog__ear-l::after,
.advantage-dog-stage .dog__ear-r::after {
  position: absolute;
  content: "";
  inset: 28% 27% 12%;
  clip-path: polygon(50% 0, 100% 100%, 0 88%);
  background: rgba(176, 181, 175, 0.36);
}

.advantage-dog-stage .dog__ear-l {
  left: 7%;
  transform: rotate(-9deg);
  transform-origin: 70% 88%;
  animation: advantageDogEarLeft 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__ear-r {
  right: 2%;
  transform: rotate(8deg);
  transform-origin: 30% 88%;
  animation: advantageDogEarRight 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__snout {
  position: absolute;
  left: -11%;
  bottom: 4%;
  width: 72%;
  height: 43%;
  border-radius: 54% 46% 48% 52% / 58% 44% 52% 42%;
  background: linear-gradient(155deg, #efeee8, #c8cbc6);
  box-shadow: inset -5px -5px 9px rgba(105, 114, 111, 0.1);
  animation: advantageDogSnout 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__nose {
  position: absolute;
  top: 23%;
  left: -8%;
  width: 24%;
  height: 52%;
  border-radius: 54% 46% 50% 50%;
  background: radial-gradient(circle at 34% 26%, #2e4442, var(--dog-ink) 68%);
  box-shadow: inset -3px -3px 5px rgba(0, 0, 0, 0.22), 1px 2px 3px rgba(0, 0, 0, 0.16);
}

.advantage-dog-stage .dog__eyes {
  position: absolute;
  top: -68%;
  right: 1%;
  left: 34%;
  height: 20%;
}

.advantage-dog-stage .dog__eye-l,
.advantage-dog-stage .dog__eye-r {
  position: absolute;
  width: clamp(6px, 0.7vw, 10px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--dog-ink);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.22), 0 1px 2px rgba(0, 0, 0, 0.18);
  transform-origin: center;
  animation: advantageDogBlink 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__eye-l {
  left: 0;
}

.advantage-dog-stage .dog__eye-r {
  right: 0;
}

.advantage-dog-stage .dog__paws {
  position: absolute;
  z-index: 6;
  right: 8%;
  bottom: 5%;
  left: 8%;
  height: 32%;
}

.advantage-dog-stage .leg {
  position: absolute;
  bottom: 0;
  width: 26%;
  height: 72%;
}

.advantage-dog-stage .paw {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  border-radius: 60% 54% 28% 24% / 76% 72% 28% 24%;
  background: linear-gradient(155deg, var(--dog-fur-light), var(--dog-fur) 56%, var(--dog-fur-shadow));
  box-shadow: inset -7px -6px 10px rgba(112, 121, 118, 0.1);
}

.advantage-dog-stage .top {
  position: absolute;
  right: 8%;
  bottom: 27%;
  width: 72%;
  height: 66%;
  border-radius: 55% 55% 20% 20%;
  background: linear-gradient(145deg, var(--dog-fur-light), var(--dog-fur-shadow));
  transform: rotate(-10deg);
  transform-origin: bottom right;
}

.advantage-dog-stage .dog__bl-leg {
  left: 4%;
  opacity: 0.84;
}

.advantage-dog-stage .dog__fl-leg {
  left: 25%;
  animation: advantageDogPaw 10s cubic-bezier(0.3, 0.41, 0.18, 1.01) infinite;
}

.advantage-dog-stage .dog__fr-leg {
  right: 1%;
}

@keyframes advantageDogRest {
  0%, 100% { transform: translateY(0) rotateZ(0); }
  50% { transform: translateY(-4px) rotateZ(-0.35deg); }
}

@keyframes advantageDogBody {
  0%, 10%, 20%, 28%, 100% { transform: scaleY(1); }
  5%, 15%, 24% { transform: scaleY(0.975); }
  50%, 76% { transform: scaleY(1.035) translateY(-1px); }
}

@keyframes advantageDogHead {
  0%, 28%, 90%, 100% { transform: translateY(0) rotateZ(0); }
  5%, 15%, 24% { transform: translateY(2px) rotateZ(0); }
  55%, 62% { transform: translateY(-8px) rotateZ(-2deg); }
  70%, 82% { transform: translateY(-7px) rotateZ(3deg); }
}

@keyframes advantageDogEarLeft {
  0%, 28%, 84%, 100% { transform: rotate(-9deg); }
  5%, 15%, 24% { transform: rotate(-6deg); }
  31%, 34% { transform: rotate(-18deg); }
  38%, 80% { transform: rotate(-10deg); }
}

@keyframes advantageDogEarRight {
  0%, 28%, 84%, 100% { transform: rotate(8deg); }
  5%, 15%, 24% { transform: rotate(5deg); }
  31%, 34% { transform: rotate(16deg); }
  38%, 80% { transform: rotate(8deg); }
}

@keyframes advantageDogSnout {
  0%, 28%, 100% { transform: scaleY(1); }
  5%, 15%, 24% { transform: scaleY(0.94); }
}

@keyframes advantageDogBlink {
  0%, 28%, 34%, 58%, 64%, 100% { transform: scaleY(1); }
  30%, 32%, 60%, 62% { transform: scaleY(0.12); }
}

@keyframes advantageDogTail {
  0%, 28%, 100% { transform: rotate(16deg); }
  34%, 46% { transform: rotate(3deg); }
  55%, 68% { transform: rotate(23deg); }
  76%, 88% { transform: rotate(9deg); }
}

@keyframes advantageDogPaw {
  0%, 52%, 72%, 100% { transform: translateX(0); }
  58%, 66% { transform: translateX(-5%); }
}

@keyframes advantageDogShadow {
  0%, 28%, 100% { opacity: 0.9; transform: scaleX(1); }
  50%, 76% { opacity: 0.68; transform: scaleX(0.96); }
}

.guancheng .synergy ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 5vw, 68px);
  padding: 0;
  border: 0;
  list-style: none;
}

.guancheng .synergy ol::before {
  display: none;
  content: none;
}

.guancheng .synergy li,
.guancheng .synergy li:nth-child(odd) {
  position: relative;
  z-index: 1;
  min-height: 244px;
  padding: 24px 24px 27px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 16px;
  background: var(--synergy-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  cursor: default;
  text-align: left;
  transform: translateY(0);
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 360ms ease,
    background-color 260ms ease;
}

.guancheng .synergy li::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(226, 189, 120, 0.15), transparent 30%),
    linear-gradient(135deg, rgba(226, 189, 120, 0.045), transparent 48%);
  pointer-events: none;
  transition: opacity 300ms ease;
}

.guancheng .synergy li::after {
  position: absolute;
  content: "";
  right: auto;
  bottom: 0;
  left: 24px;
  top: auto;
  width: 42px;
  height: 2px;
  background: var(--synergy-gold);
  transform: none;
  transform-origin: left center;
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.guancheng .synergy li span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--synergy-gold);
  font: 650 11px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.guancheng .synergy li span::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--synergy-gold-soft);
}

.guancheng .synergy li strong {
  position: relative;
  display: block;
  margin-top: 38px;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 540;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.guancheng .synergy li p {
  position: relative;
  margin-top: 17px;
  color: rgba(245, 242, 234, 0.58);
  font-size: 13px;
  line-height: 1.85;
}

.guancheng .synergy li:hover,
.guancheng .synergy li:focus-visible {
  border-color: rgba(226, 189, 120, 0.46);
  background-color: rgba(15, 28, 38, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
  translate: none;
  transform: translateY(-5px);
}

.guancheng .synergy li:hover::before,
.guancheng .synergy li:focus-visible::before {
  opacity: 1;
}

.guancheng .synergy li:hover::after,
.guancheng .synergy li:focus-visible::after {
  width: calc(100% - 48px);
}

@media (max-width: 1180px) {
  .guancheng .synergy-title {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 28px;
  }

  .guancheng .synergy-title h3 {
    max-width: 900px;
    font-size: clamp(40px, 6vw, 62px);
  }

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

@media (max-width: 920px) {
  .guancheng .synergy-title {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .advantage-dog-stage {
    min-height: 190px;
  }

  .advantage-dog-stage .dog {
    width: min(100%, 430px);
  }
}

@media (max-width: 640px) {
  .guancheng .synergy {
    margin-top: 64px;
    padding: 34px 20px 24px;
    border-radius: 22px;
  }

  .guancheng .synergy-title h3 {
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: 1.16;
  }

  .guancheng .synergy-title h3 span {
    display: inline;
  }

  .guancheng .synergy-title h3 span:last-child {
    margin-top: 0;
  }

  .advantage-dog-stage {
    min-height: 150px;
  }

  .advantage-dog-stage .dog {
    width: min(100%, 330px);
  }

  .guancheng .synergy ol {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .guancheng .synergy li,
  .guancheng .synergy li:nth-child(odd) {
    min-height: 0;
    padding: 22px 22px 24px;
  }

  .guancheng .synergy li strong {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantage-dog-stage .dog,
  .advantage-dog-stage .dog::before,
  .advantage-dog-stage .dog__body,
  .advantage-dog-stage .dog__tail,
  .advantage-dog-stage .dog__head,
  .advantage-dog-stage .dog__head-c,
  .advantage-dog-stage .dog__ear-l,
  .advantage-dog-stage .dog__ear-r,
  .advantage-dog-stage .dog__snout,
  .advantage-dog-stage .dog__eye-l,
  .advantage-dog-stage .dog__eye-r,
  .advantage-dog-stage .dog__fl-leg,
  .guancheng .synergy li,
  .guancheng .synergy li::before,
  .guancheng .synergy li::after {
    animation: none !important;
    transition-duration: 1ms !important;
  }

  .guancheng .synergy li:hover,
  .guancheng .synergy li:focus-visible {
    transform: none;
  }
}

/* Group advantage conversion prompt. */
.guancheng .synergy-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 116px;
  margin-top: 16px;
  padding: 24px 26px 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(100deg, rgba(226, 189, 120, 0.1), rgba(226, 189, 120, 0.025) 48%, transparent 72%),
    rgba(8, 19, 28, 0.72);
}

.guancheng .synergy-cta::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--synergy-gold);
  box-shadow: 0 0 20px rgba(226, 189, 120, 0.36);
}

.guancheng .synergy-cta > div > span {
  display: block;
  color: var(--synergy-gold);
  font: 700 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.2em;
}

.guancheng .synergy-cta > div > strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 520;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.guancheng .synergy-cta button {
  display: inline-flex;
  min-width: 218px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px 0 24px;
  color: #071019;
  border: 1px solid var(--synergy-gold);
  border-radius: 999px;
  background: var(--synergy-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), 0 0 28px rgba(226, 189, 120, 0.1);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease, background-color 220ms ease;
}

.guancheng .synergy-cta button i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 16, 25, 0.1);
  font-style: normal;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), background-color 220ms ease;
}

.guancheng .synergy-cta button:hover,
.guancheng .synergy-cta button:focus-visible {
  background: #f0cb84;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), 0 0 34px rgba(226, 189, 120, 0.16);
  outline: none;
  transform: translateY(-3px);
}

.guancheng .synergy-cta button:hover i,
.guancheng .synergy-cta button:focus-visible i {
  background: rgba(7, 16, 25, 0.16);
  transform: translate(2px, -2px);
}

@media (max-width: 760px) {
  .guancheng .synergy-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  .guancheng .synergy-cta button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guancheng .synergy-cta button,
  .guancheng .synergy-cta button i {
    transition-duration: 1ms !important;
  }

  .guancheng .synergy-cta button:hover,
  .guancheng .synergy-cta button:focus-visible,
  .guancheng .synergy-cta button:hover i,
  .guancheng .synergy-cta button:focus-visible i {
    transform: none;
  }
}

/* The group advantage section now stands alone after removing the local city case study. */
.group-advantages .synergy {
  margin-top: 0;
}

/* Online brand work extends into real-world cultural tourism destinations. */
.xhs-cases {
  padding-top: 0;
}

.xhs-cases::before,
.xhs-cases::after {
  display: none;
  content: none;
}

.xhs-cases-head {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  margin-bottom: clamp(18px, 2.6vw, 34px);
  padding-bottom: clamp(42px, 5.5vw, 76px);
}

.xhs-cases-head::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 189, 120, 0.75), rgba(226, 189, 120, 0.12) 56%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease) 180ms;
}

.xhs-cases.is-visible .xhs-cases-head::after {
  transform: scaleX(1);
}

.xhs-cases-head__copy h3 {
  max-width: 980px;
  margin: 0;
  color: #f6f2e9;
  font-size: clamp(44px, 5.7vw, 82px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.xhs-cases-head__copy h3 span {
  display: block;
}

.xhs-cases-head__copy h3 span:last-child {
  margin-top: 0.06em;
  color: var(--xhs-gold);
}

.xhs-cases-head__copy > p {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(245, 242, 234, 0.6);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.9;
}

@media (max-width: 640px) {
  .xhs-cases-head {
    margin-bottom: 14px;
    padding-bottom: 38px;
  }

  .xhs-cases-head__copy h3 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.045em;
  }

  .xhs-cases-head__copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xhs-cases-head::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* Keep the expanded daily-data descriptor as the second, single title line. */
.xhs-detail .detail-head h2:not(.bits-blur-title) > span,
.xhs-detail .detail-head h2 > .bits-blur-line:nth-child(2) {
  white-space: nowrap;
  font-size: clamp(34px, 4.65vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

/* Brand service case wall — the supplied hex pulse becomes a living partner network. */
.brand-service-cases {
  position: relative;
  isolation: isolate;
  margin-top: clamp(82px, 9vw, 138px);
  padding: clamp(42px, 5.4vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: 4px 30px 4px 30px;
  background:
    radial-gradient(circle at 50% 64%, rgba(226, 189, 120, 0.1), transparent 30%),
    linear-gradient(rgba(226, 189, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 189, 120, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(14, 31, 43, 0.96), rgba(4, 14, 22, 0.98));
  background-size: auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.brand-service-cases::before {
  position: absolute;
  z-index: -1;
  content: "BRAND NETWORK";
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(245, 242, 234, 0.018);
  font: 700 clamp(92px, 15vw, 230px)/0.8 "Bodoni MT", "Times New Roman", serif;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.brand-service-cases__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.brand-service-cases__copy {
  width: min(100%, 980px);
}

.brand-service-cases__copy h3 {
  margin: 0;
  scroll-margin-top: calc(var(--header-h) + 24px);
  color: #f6f2e9;
  font-size: clamp(46px, 5.8vw, 84px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.brand-service-cases__copy h3 span {
  display: block;
}

.brand-service-cases__copy h3 span:last-child {
  margin-top: 0.05em;
  color: var(--xhs-gold);
}

.brand-service-cases__copy > p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(245, 242, 234, 0.58);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.85;
}

.brand-service-cases__stage {
  position: relative;
  display: grid;
  min-height: clamp(360px, 40vw, 500px);
  margin-top: clamp(42px, 5vw, 70px);
  place-items: center;
}

.brand-hex-socket {
  --socket-scale: 2.55;
  position: absolute;
  z-index: 0;
  top: 18%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%) scale(var(--socket-scale));
}

.brand-hex-cell {
  --hex-color: rgba(226, 189, 120, 0.42);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 17px;
  background: var(--hex-color);
  filter: drop-shadow(0 0 9px rgba(226, 189, 120, 0.28));
  opacity: 0.78;
  transform: translate(calc(var(--x) - 15px), calc(var(--y) - 8.5px)) scale(1);
  animation: brandHexPulse 3s ease-in-out infinite;
  animation-play-state: paused;
}

.brand-hex-cell::before,
.brand-hex-cell::after {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--hex-color);
}

.brand-hex-cell::before { transform: rotate(60deg); }
.brand-hex-cell::after { transform: rotate(-60deg); }
.brand-hex-cell.ring-0 { --hex-color: rgba(240, 203, 132, 0.96); }
.brand-hex-cell.ring-1 { --hex-color: rgba(226, 189, 120, 0.82); animation-delay: 0.2s; }
.brand-hex-cell.ring-2 { --hex-color: rgba(226, 189, 120, 0.62); animation-delay: 0.4s; }
.brand-hex-cell.ring-3 { --hex-color: rgba(226, 189, 120, 0.42); animation-delay: 0.6s; }

.brand-service-cases.is-visible .brand-hex-cell {
  animation-play-state: running;
}

.brand-service-cases__board {
  position: relative;
  z-index: 2;
  width: min(94%, 1060px);
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.55);
  border-radius: 3px 24px 3px 24px;
  background: #fbfaf7;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 54px rgba(226, 189, 120, 0.1);
  transition: transform 420ms var(--ease), box-shadow 420ms ease;
}

.brand-service-cases__board::after {
  position: absolute;
  z-index: 4;
  content: "";
  top: 0;
  bottom: 0;
  left: -36%;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-12deg);
  animation: brandLogoSweep 3s linear infinite;
  animation-play-state: paused;
}

.brand-service-cases.is-visible .brand-service-cases__board::after {
  animation-play-state: running;
}

.brand-service-cases__board-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(91, 61, 35, 0.16);
}

.brand-service-cases__board-head span {
  color: #a56c39;
  font: 700 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.18em;
}

.brand-service-cases__board-head strong {
  color: #6e482c;
  font-size: 14px;
  font-weight: 650;
}

.brand-service-cases__logo-window {
  position: relative;
  width: 100%;
  aspect-ratio: 2048 / 224;
  margin-top: 16px;
  overflow: hidden;
}

.brand-service-cases__logo-window img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateY(-29%);
}

.brand-service-cases__board figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.brand-service-cases__board figcaption span {
  padding: 6px 9px;
  border: 1px solid rgba(165, 108, 57, 0.2);
  color: rgba(91, 61, 35, 0.72);
  font-size: 10px;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .brand-service-cases__board:hover {
    transform: translateY(-7px);
    box-shadow: 0 38px 96px rgba(0, 0, 0, 0.45), 0 0 64px rgba(226, 189, 120, 0.16);
  }
}

@keyframes brandHexPulse {
  0%, 100% {
    opacity: 0.78;
    transform: translate(calc(var(--x) - 15px), calc(var(--y) - 8.5px)) scale(1);
  }
  50% {
    opacity: 0.12;
    transform: translate(calc(var(--x) - 15px), calc(var(--y) - 8.5px)) scale(0.04);
  }
}

@keyframes brandLogoSweep {
  0%, 20% { left: -36%; opacity: 0; }
  32% { opacity: 0.75; }
  62%, 100% { left: 116%; opacity: 0; }
}

@media (max-width: 920px) {
  .brand-hex-socket {
    top: 32%;
  }
}

@media (max-width: 640px) {
  .brand-service-cases {
    margin-top: 64px;
    padding: 32px 18px 26px;
    border-radius: 3px 22px 3px 22px;
  }

  .brand-service-cases__copy h3 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.1;
  }

  .brand-service-cases__copy > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .brand-service-cases__stage {
    min-height: 310px;
    margin-top: 34px;
  }

  .brand-hex-socket {
    --socket-scale: 1.5;
    top: 50%;
  }

  .brand-service-cases__board {
    width: 100%;
    padding: 15px;
    border-radius: 3px 18px 3px 18px;
  }

  .brand-service-cases__board-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
  }

  .brand-service-cases__logo-window {
    height: 82px;
    aspect-ratio: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: rgba(165, 108, 57, 0.32) transparent;
    scrollbar-width: thin;
  }

  .brand-service-cases__logo-window img {
    width: 720px;
  }

  .brand-service-cases__board figcaption {
    gap: 6px;
  }

  .brand-service-cases__board figcaption span {
    padding: 5px 7px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hex-cell,
  .brand-service-cases__board::after {
    animation: none !important;
  }

  .brand-service-cases__board:hover {
    transform: none;
  }
}

/* Complete 73-logo honeycomb: every logo is part of the pulsing hex field. */
.brand-service-cases__stage {
  min-height: clamp(660px, 66vw, 820px);
  margin-top: clamp(24px, 3vw, 42px);
}

.brand-hex-socket {
  --socket-scale: 2.7;
  z-index: 2;
  top: 42%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%) scale(var(--socket-scale));
}

.brand-hex-cell {
  --tile-fill-top: rgba(247, 228, 192, 0.96);
  --tile-fill-bottom: rgba(174, 124, 70, 0.9);
  width: 30px;
  height: 26px;
  overflow: hidden;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(145deg, var(--tile-fill-top), var(--tile-fill-bottom));
  filter: drop-shadow(0 0 7px rgba(226, 189, 120, 0.34));
  opacity: 0.9;
  transform: translate(calc(var(--x) - 15px), calc(var(--y) - 13px)) scale(1);
  animation: brandHexPulse 3s ease-in-out infinite;
  animation-delay: var(--ring-delay, 0s);
  animation-play-state: paused;
}

.brand-hex-cell::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  background: url("./assets/brand-logo-hex-atlas.png") var(--logo-x) var(--logo-y) / 1000% 800% no-repeat;
  filter: saturate(1.08) contrast(1.06) drop-shadow(0 0 1px rgba(255, 255, 255, 0.62));
  transform: none;
}

.brand-hex-cell::after {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(to top, rgba(73, 43, 23, 0.14), transparent 48%);
  box-shadow: inset 0 0 0 0.65px rgba(255, 248, 229, 0.62);
  transform: none;
}

.brand-hex-cell.ring-0,
.brand-hex-cell.ring-1 {
  --tile-fill-top: rgba(255, 239, 207, 0.98);
  --tile-fill-bottom: rgba(198, 145, 82, 0.94);
}

.brand-hex-cell.ring-2,
.brand-hex-cell.ring-3 {
  --tile-fill-top: rgba(237, 215, 177, 0.94);
  --tile-fill-bottom: rgba(154, 109, 66, 0.9);
}

.brand-hex-cell.ring-4,
.brand-hex-cell.ring-5 {
  --tile-fill-top: rgba(213, 190, 153, 0.9);
  --tile-fill-bottom: rgba(118, 84, 56, 0.88);
}

.brand-service-cases.is-visible .brand-hex-cell {
  animation-play-state: running;
}

.brand-service-cases__network-label {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 72px;
  left: 0;
  color: rgba(226, 189, 120, 0.58);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.24em;
  text-align: center;
}

.brand-service-cases__sectors {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 20px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.brand-service-cases__sectors li {
  padding: 7px 10px;
  border: 1px solid rgba(226, 189, 120, 0.2);
  color: rgba(245, 242, 234, 0.56);
  background: rgba(4, 14, 22, 0.54);
  font-size: 10px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.brand-service-cases__accessible-source {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes brandHexPulse {
  0%, 100% {
    opacity: 0.9;
    transform: translate(calc(var(--x) - 15px), calc(var(--y) - 13px)) scale(1);
  }
  50% {
    opacity: 0.18;
    transform: translate(calc(var(--x) - 15px), calc(var(--y) - 13px)) scale(0.06);
  }
}

@media (max-width: 920px) {
  .brand-service-cases__stage {
    min-height: 650px;
  }

  .brand-hex-socket {
    --socket-scale: 2.15;
    top: 40%;
  }
}

@media (max-width: 640px) {
  .brand-service-cases__stage {
    min-height: 440px;
    margin-top: 24px;
  }

  .brand-hex-socket {
    --socket-scale: 1.18;
    top: 45%;
  }

  .brand-service-cases__network-label {
    bottom: 58px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .brand-service-cases__sectors {
    bottom: 12px;
    gap: 5px;
  }

  .brand-service-cases__sectors li {
    padding: 6px 7px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hex-cell {
    animation: none !important;
    opacity: 0.9;
    transform: translate(calc(var(--x) - 15px), calc(var(--y) - 13px)) scale(1);
  }
}

/* Interactive growth forecast — adapted from the proposal simulator into ZMR's navy/brass system. */
.growth-forecast {
  --forecast-gold: #e2bd78;
  --forecast-gold-strong: #f0cb84;
  --forecast-panel: rgba(10, 25, 35, 0.82);
  --forecast-line: rgba(226, 189, 120, 0.17);
  position: relative;
  padding-top: 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
  color: var(--text);
  background:
    radial-gradient(circle at 14% 48%, rgba(226, 189, 120, 0.075), transparent 28%),
    var(--ink);
}

.growth-forecast__shell {
  position: relative;
  isolation: isolate;
  padding: clamp(38px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(226, 189, 120, 0.17);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(226, 189, 120, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(8, 22, 31, 0.98), rgba(5, 17, 25, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.growth-forecast__shell::before {
  position: absolute;
  z-index: -2;
  content: "";
  inset: 0;
  opacity: 0.7;
  background:
    linear-gradient(rgba(226, 189, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 189, 120, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.72) 66%, transparent 100%);
}

.growth-forecast__shell::after {
  position: absolute;
  z-index: -1;
  content: "ZMR / FORECAST";
  right: -0.04em;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.018);
  font: 800 clamp(86px, 12vw, 190px)/0.8 "Bahnschrift", sans-serif;
  letter-spacing: -0.075em;
  white-space: nowrap;
  pointer-events: none;
}

.growth-forecast__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  padding-bottom: clamp(38px, 4.5vw, 64px);
}

.growth-forecast__intro > div {
  width: min(100%, 1040px);
}

.growth-forecast__intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 520;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.growth-forecast__intro h2 span {
  display: block;
}

.growth-forecast__intro h2 span:last-child {
  margin-top: 0.08em;
  color: var(--forecast-gold);
}

.growth-forecast__intro > div > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(245, 242, 234, 0.59);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.8;
}

.growth-forecast__coin {
  --forecast-coin-size: clamp(92px, 8.8vw, 132px);
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(190px, 18vw, 250px);
  place-items: center;
  perspective: 900px;
  transform: translateZ(1px);
}

.growth-forecast__coin::before {
  position: absolute;
  content: "";
  width: calc(var(--forecast-coin-size) * 1.72);
  aspect-ratio: 1;
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 189, 120, 0.12), transparent 66%);
  box-shadow: 0 0 70px rgba(226, 189, 120, 0.12), inset 0 0 36px rgba(226, 189, 120, 0.05);
  animation: growthForecastCoinHalo 4s ease-in-out infinite;
}

.growth-forecast__coin::after {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--forecast-coin-size);
  height: var(--forecast-coin-size);
  content: "$";
  box-sizing: border-box;
  place-items: center;
  color: #8b5e1c;
  border: clamp(4px, 0.38vw, 6px) double #b98428;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 250, 204, 0.88), transparent 22%),
    radial-gradient(circle at 50% 54%, #ffe27a 0 48%, #efbc3e 72%, #c68a20 100%);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(255, 215, 0, 0.2),
    inset 3px 3px 7px rgba(255, 255, 255, 0.48),
    inset -6px -7px 10px rgba(119, 72, 9, 0.3);
  font: 800 clamp(46px, 4.8vw, 72px)/1 "Bodoni MT", "Times New Roman", serif;
  text-shadow: 1px 2px 0 rgba(255, 244, 172, 0.45), -1px -1px 0 rgba(91, 53, 8, 0.18);
  transform-style: preserve-3d;
  animation: growthForecastCoinFlip 4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes growthForecastCoinFlip {
  0%,
  100% {
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }

  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(1800deg);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }

  100% {
    transform: rotateY(3600deg);
  }
}

@keyframes growthForecastCoinHalo {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.growth-forecast__tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 19px;
  background: rgba(2, 12, 19, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.growth-forecast__tabs button {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 90px;
  gap: 10px;
  align-content: center;
  padding: 18px 20px 17px;
  overflow: hidden;
  color: rgba(245, 242, 234, 0.52);
  text-align: left;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  transition:
    color 260ms ease,
    transform 250ms ease,
    opacity 250ms ease;
}

.growth-forecast__tabs button::before {
  position: absolute;
  content: attr(data-step);
  top: 10px;
  right: 14px;
  color: rgba(245, 242, 234, 0.055);
  font: 700 34px/1 "Bahnschrift", sans-serif;
  letter-spacing: -0.07em;
  pointer-events: none;
  transition: color 250ms ease, transform 250ms ease;
}

.growth-forecast__tabs button span {
  color: var(--forecast-gold);
  font: 650 10px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.12em;
}

.growth-forecast__tabs button b {
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 650;
  letter-spacing: -0.015em;
}

.growth-forecast__tabs button.is-active {
  color: #f7f3ea;
}

.growth-forecast__tabs button.is-active span {
  color: var(--forecast-gold-strong);
}

.growth-forecast__tabs button.is-active::before {
  color: rgba(226, 189, 120, 0.16);
  transform: translateY(-2px);
}

.growth-forecast__tab-indicator {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: var(--indicator-width, 0px);
  height: var(--indicator-height, 0px);
  border: 1px solid rgba(226, 189, 120, 0.48);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 0, rgba(226, 189, 120, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(226, 189, 120, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 -2px 0 var(--forecast-gold), 0 13px 34px rgba(0, 0, 0, 0.2);
  transform: translate3d(var(--indicator-x, 0px), var(--indicator-y, 0px), 0);
  transition:
    transform 250ms ease,
    width 250ms ease,
    height 250ms ease;
  pointer-events: none;
}

.growth-forecast__tabs button:focus-visible,
.growth-forecast__presets button:focus-visible,
.growth-forecast input[type="range"]:focus-visible {
  outline: 2px solid var(--forecast-gold-strong);
  outline-offset: 3px;
}

.growth-forecast__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(430px, 1.38fr) minmax(250px, 0.82fr);
  gap: 16px;
}

.growth-forecast__phase,
.growth-forecast__budget,
.growth-forecast__result {
  --forecast-pointer-x: 50%;
  --forecast-pointer-y: 50%;
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 480px;
  padding: clamp(26px, 2.35vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(226, 189, 120, 0.045), transparent 46%),
    var(--forecast-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 44px rgba(0, 0, 0, 0.12);
  transition: border-color 320ms ease, transform 360ms var(--ease), box-shadow 320ms ease;
}

.growth-forecast__phase::before,
.growth-forecast__budget::before,
.growth-forecast__result::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle 250px at var(--forecast-pointer-x) var(--forecast-pointer-y), rgba(226, 189, 120, 0.105), transparent 72%);
  transition: opacity 280ms ease;
  pointer-events: none;
}

.growth-forecast__phase.is-pointer-active::before,
.growth-forecast__budget.is-pointer-active::before,
.growth-forecast__result.is-pointer-active::before {
  opacity: 1;
}

.growth-forecast__phase > *,
.growth-forecast__budget > *,
.growth-forecast__result > * {
  position: relative;
  z-index: 1;
}

.growth-forecast__phase {
  background:
    linear-gradient(155deg, rgba(226, 189, 120, 0.055), transparent 40%),
    rgba(7, 21, 30, 0.9);
}

.growth-forecast__phase.is-updating {
  animation: growthForecastPhase 480ms var(--ease);
}

.growth-forecast__phase > p:first-child {
  display: inline-flex;
  margin: 0;
  padding: 7px 10px;
  color: var(--forecast-gold);
  border: 1px solid rgba(226, 189, 120, 0.17);
  border-radius: 999px;
  background: rgba(226, 189, 120, 0.045);
  font: 700 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.16em;
}

.growth-forecast__phase h3 {
  max-width: 330px;
  margin: 22px 0 0;
  color: #f7f3ea;
  font-family: inherit;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 610;
  line-height: 1.33;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.growth-forecast__phase > p:nth-of-type(2),
.growth-forecast__phase li {
  color: rgba(245, 242, 234, 0.66);
  font-size: 14px;
  line-height: 1.72;
}

.growth-forecast__phase > p:nth-of-type(2) {
  margin: 18px 0 0;
}

.growth-forecast__phase ul {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.growth-forecast__phase li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.growth-forecast__phase li span {
  color: rgba(245, 242, 234, 0.52);
  font-size: 12px;
}

.growth-forecast__phase li strong {
  color: var(--forecast-gold-strong);
  font: 700 15px/1.2 "Bahnschrift", sans-serif;
  font-variant-numeric: tabular-nums;
}

.growth-forecast__budget-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.growth-forecast__budget-head > div {
  display: grid;
  gap: 9px;
}

.growth-forecast__budget-head span,
.growth-forecast__budget-head label {
  color: rgba(245, 242, 234, 0.58);
  font-size: 12px;
}

.growth-forecast__budget-head label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(226, 189, 120, 0.74);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.growth-forecast__budget-head label::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--forecast-gold);
  box-shadow: 0 0 10px rgba(226, 189, 120, 0.46);
}

.growth-forecast__budget-head strong {
  color: #f7f3ea;
  font-family: "Bodoni MT", "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(38px, 3.25vw, 50px);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.growth-forecast__budget-head strong i {
  font-style: normal;
}

.growth-forecast__presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 8px;
}

.growth-forecast__presets button {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 12px 12px 11px 30px;
  color: rgba(245, 242, 234, 0.64);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease, transform 280ms var(--ease);
}

.growth-forecast__presets button::before {
  position: absolute;
  top: 13px;
  left: 10px;
  color: rgba(226, 189, 120, 0.48);
  font: 700 8px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.08em;
}

.growth-forecast__presets button:nth-child(1)::before { content: "01"; }
.growth-forecast__presets button:nth-child(2)::before { content: "02"; }
.growth-forecast__presets button:nth-child(3)::before { content: "03"; }

.growth-forecast__presets button.is-active {
  color: #071019;
  border-color: var(--forecast-gold);
  background: var(--forecast-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.growth-forecast__presets button.is-active::before {
  color: rgba(7, 16, 25, 0.52);
}

.growth-forecast__presets button b {
  font-size: 13px;
  font-weight: 700;
}

.growth-forecast__presets button span {
  overflow: hidden;
  font-size: 10px;
  opacity: 0.7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.growth-forecast input[type="range"] {
  --range-progress: 50%;
  width: 100%;
  height: 5px;
  margin: 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--forecast-gold) 0 var(--range-progress), rgba(255, 255, 255, 0.13) var(--range-progress) 100%);
  accent-color: var(--forecast-gold);
  cursor: pointer;
  transition: filter 200ms ease;
}

.growth-forecast input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 3px solid #0b202b;
  border-radius: 50%;
  background: var(--forecast-gold);
  box-shadow: 0 0 0 1px rgba(226, 189, 120, 0.72), 0 5px 13px rgba(0, 0, 0, 0.28);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.growth-forecast input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 3px solid #0b202b;
  border-radius: 50%;
  background: var(--forecast-gold);
  box-shadow: 0 0 0 1px rgba(226, 189, 120, 0.72), 0 5px 13px rgba(0, 0, 0, 0.28);
}

.growth-forecast__total-range {
  margin: 14px 0 7px !important;
}

.growth-forecast__range-scale {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  color: rgba(245, 242, 234, 0.32);
  font: 650 9px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.06em;
}

.growth-forecast__allocation {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.growth-forecast__donut {
  --k-end: 65%;
  --f-end: 100%;
  position: relative;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--forecast-gold) 0 var(--k-end), #b4824f var(--k-end) var(--f-end), #6e8f97 var(--f-end) 100%);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), 0 0 34px rgba(226, 189, 120, 0.07);
  transition: transform 360ms var(--ease), filter 360ms ease;
}

.growth-forecast__donut::after {
  position: absolute;
  content: "";
  inset: 27px;
  border: 1px solid rgba(226, 189, 120, 0.18);
  border-radius: 50%;
  background: #081923;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.32);
}

.growth-forecast__donut span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  place-items: center;
  color: var(--forecast-gold);
}

.growth-forecast__donut span b {
  font: 520 22px/1 "Bodoni MT", "Times New Roman", serif;
  letter-spacing: 0.03em;
}

.growth-forecast__donut span small {
  color: rgba(245, 242, 234, 0.42);
  font: 650 7px/1 "Bahnschrift", sans-serif;
  letter-spacing: 0.14em;
}

.growth-forecast__donut.is-updating {
  filter: brightness(1.12);
  transform: scale(1.035) rotate(1deg);
}

.growth-forecast__controls {
  display: grid;
  gap: 14px;
}

.growth-forecast__controls label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  color: rgba(245, 242, 234, 0.7);
  font-size: 12px;
}

.growth-forecast__controls label > strong {
  color: var(--forecast-gold-strong);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.growth-forecast__controls label > strong b {
  font: inherit;
}

.growth-forecast__controls input {
  grid-column: 1 / -1;
}

.growth-forecast__status {
  margin: 18px 0 0;
  padding-top: 14px;
  color: rgba(245, 242, 234, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  line-height: 1.55;
}

.growth-forecast__result {
  color: #071019;
  border-color: rgba(226, 189, 120, 0.65);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(155deg, #edc97f, #ddb469 78%);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.growth-forecast__result::before {
  background: radial-gradient(circle 240px at var(--forecast-pointer-x) var(--forecast-pointer-y), rgba(255, 255, 255, 0.24), transparent 72%);
}

.growth-forecast__result > p:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  font: 700 10px/1.3 "Bahnschrift", sans-serif;
  letter-spacing: 0.08em;
}

.growth-forecast__result > p:first-child span {
  opacity: 0.56;
}

.growth-forecast__result > div {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-top: 1px solid rgba(7, 16, 25, 0.2);
}

.growth-forecast__result strong {
  font-family: "Bodoni MT", "Times New Roman", "Noto Serif SC", serif;
  font-size: clamp(34px, 2.75vw, 43px);
  font-weight: 500;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.growth-forecast__result strong.is-updating {
  animation: growthForecastNumber 420ms var(--ease);
}

.growth-forecast__result > div span,
.growth-forecast__result small {
  font-size: 10px;
}

.growth-forecast__result small {
  display: block;
  margin-top: 22px;
  opacity: 0.65;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .growth-forecast__tabs button:not(.is-active):hover,
  .growth-forecast__presets button:not(.is-active):hover {
    color: var(--forecast-gold-strong);
    background: rgba(226, 189, 120, 0.045);
    transform: translateY(-2px);
  }

  .growth-forecast__phase:hover,
  .growth-forecast__budget:hover,
  .growth-forecast__result:hover {
    border-color: rgba(226, 189, 120, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 54px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
  }

  .growth-forecast input[type="range"]:hover {
    filter: drop-shadow(0 0 6px rgba(226, 189, 120, 0.22));
  }

  .growth-forecast input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 5px rgba(226, 189, 120, 0.13), 0 0 0 1px rgba(226, 189, 120, 0.8), 0 6px 14px rgba(0, 0, 0, 0.3);
    transform: scale(1.06);
  }
}

.growth-forecast.is-adjusting .growth-forecast__budget {
  border-color: rgba(226, 189, 120, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 0 34px rgba(226, 189, 120, 0.075);
}

@keyframes growthForecastNumber {
  45% {
    color: #79511f;
    transform: translateY(-3px);
  }
}

@keyframes growthForecastPhase {
  0% { opacity: 0.55; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .growth-forecast__grid {
    grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  }

  .growth-forecast__result {
    grid-column: 1 / -1;
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .growth-forecast__result > p,
  .growth-forecast__result > small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .growth-forecast__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .growth-forecast__coin {
    --forecast-coin-size: clamp(82px, 22vw, 112px);
    min-height: 156px;
  }

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

  .growth-forecast__grid {
    grid-template-columns: 1fr;
  }

  .growth-forecast__result {
    grid-column: auto;
  }

  .growth-forecast__allocation {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .growth-forecast {
    padding-right: 12px;
    padding-left: 12px;
  }

  .growth-forecast__shell {
    padding: 30px 18px 22px;
    border-radius: 22px;
  }

  .growth-forecast__intro h2 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1.12;
  }

  .growth-forecast__intro > div > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.72;
  }

  .growth-forecast__tabs {
    gap: 7px;
    margin-bottom: 14px;
    padding: 5px;
  }

  .growth-forecast__tabs button {
    min-height: 82px;
    padding: 14px;
  }

  .growth-forecast__phase,
  .growth-forecast__budget,
  .growth-forecast__result {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 17px;
  }

  .growth-forecast__budget-head {
    align-items: flex-start;
  }

  .growth-forecast__budget-head label {
    padding-top: 4px;
  }

  .growth-forecast__presets {
    gap: 6px;
  }

  .growth-forecast__presets button {
    padding: 10px 8px;
  }

  .growth-forecast__allocation {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .growth-forecast__controls {
    width: 100%;
  }

  .growth-forecast__result {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-forecast *,
  .growth-forecast *::before,
  .growth-forecast *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .growth-forecast__tabs button,
  .growth-forecast__phase,
  .growth-forecast__budget,
  .growth-forecast__donut {
    transform: none !important;
  }
}
