:host {
  display: block;
  --paper: #f7f6f2;
  --surface: #fff;
  --ink: #242522;
  --muted: #74766f;
  --line: #deded7;
  --blue: #9bc5ce;
  --blue-deep: #4e8996;
  --blue-pale: #eaf4f5;
  --gold: #c19a61;
  --gold-pale: #f8eed5;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 70px rgba(38, 43, 40, 0.09);
}
* {
  box-sizing: border-box;
}
:host {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button {
  font: inherit;
}
.page {
  max-width: 1440px;
  margin: auto;
  padding: 0;
}
.showcase {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.animation-progress {
  position: relative;
  z-index: 22;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.animation-progress:before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: var(--gold-pale);
  transition: width 0.08s linear;
}
.play-control {
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 30;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
  font-size: 11px;
}
.play-control:hover {
  color: var(--ink);
  border-color: #bfc4c1;
}
.play-glyph {
  width: 14px;
  height: 14px;
  position: relative;
}
.play-glyph:before,
.play-glyph:after {
  content: '';
  position: absolute;
  top: 2px;
  width: 2px;
  height: 10px;
  background: currentColor;
  border-radius: 2px;
}
.play-glyph:before {
  left: 3px;
}
.play-glyph:after {
  right: 3px;
}
.showcase.paused .play-glyph:before {
  width: 0;
  height: 0;
  top: 1px;
  left: 4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
  background: transparent;
  border-radius: 0;
}
.showcase.paused .play-glyph:after {
  display: none;
}
.visual {
  height: clamp(510px, 52vw, 680px);
  position: relative;
  overflow: hidden;
}
.concept {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition:
    opacity 0.65s ease,
    transform 0.65s var(--ease);
  overflow: hidden;
}
.concept.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(24, 31, 29, 0.55) 0 0.45px, transparent 0.65px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

/* Shared scene elements */
.scene-label {
  position: absolute;
  top: 28px;
  left: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  font:
    500 10px 'JetBrains Mono',
    monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.scene-label:before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}
.agent {
  position: absolute;
  z-index: 7;
  transition:
    opacity 0.7s var(--ease),
    transform 1s var(--ease),
    left 1s var(--ease),
    top 1s var(--ease);
}
.agent-core {
  position: relative;
  display: grid;
  place-items: center;
}
.agent-core img {
  display: block;
  object-fit: contain;
}
.agent-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(96, 158, 169, 0.22);
  animation: breathe 2.4s ease-in-out infinite;
}
.orchestra-outline,
.baton-system,
.data-stage {
  position: absolute;
  opacity: 0;
  transition:
    opacity 0.8s var(--ease),
    transform 1s var(--ease);
}
.showcase.is-orchestra .orchestra-outline,
.showcase.is-baton .baton-system,
.showcase.is-stage .data-stage {
  opacity: 1;
}
.orchestra-outline {
  z-index: 4;
}
.data-stage {
  z-index: 3;
}
.data-flow-network {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.showcase.is-stage .data-flow-network {
  opacity: 1;
}
.flow-line {
  position: absolute;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(105, 176, 184, 0.75), rgba(105, 176, 184, 0.14));
  opacity: 0.58;
}
.flow-line:after {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #80c3c9;
  box-shadow: 0 0 10px rgba(128, 195, 201, 0.9);
  animation: linePacket 3.4s linear infinite;
  animation-delay: var(--delay, 0s);
  animation-play-state: paused;
}
.showcase.is-stage .flow-line:after {
  animation-play-state: running;
}
.orchestra-flow-network {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.showcase.is-orchestra .orchestra-flow-network {
  opacity: 0.24;
}
.showcase[data-phase='2'] .orchestra-flow-network {
  opacity: 0.68;
}
.orchestra-line {
  position: absolute;
  height: 1px;
  transform-origin: 0 50%;
  background: linear-gradient(
    90deg,
    rgba(103, 168, 178, 0.28),
    rgba(81, 151, 162, 0.7),
    rgba(103, 168, 178, 0.28)
  );
}
.orchestra-line:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #73b1bb;
  box-shadow: 0 0 8px rgba(94, 172, 184, 0.7);
  animation: linePacket 3.4s linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0.7;
}
.showcase:not([data-phase='2']) .orchestra-line {
  filter: grayscale(1);
  opacity: 0.42;
}
.showcase:not([data-phase='2']) .orchestra-line:after {
  opacity: 0.28;
  box-shadow: none;
}
.baton-stick {
  position: absolute;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0, var(--gold) 16%, #f1d49f 100%);
  transform-origin: 100% 50%;
  border-radius: 3px;
  animation: conduct 2.1s ease-in-out infinite;
}
.baton-stick:after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1d49f;
  box-shadow: 0 0 22px rgba(224, 186, 118, 0.75);
}
.signal {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: signal 2.1s ease-out infinite;
}

/* Concept 3 — Executive dark */
.concept-c {
  background: #17201f;
  color: #eef4f2;
}
.concept-c:before {
  content: '';
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 50% 30%, rgba(75, 138, 147, 0.22), transparent 36%),
    radial-gradient(circle at 24% 64%, rgba(114, 102, 71, 0.14), transparent 28%);
  animation: aurora 9s ease-in-out infinite alternate;
}
.concept-c .scene-label {
  color: #9bc8ce;
}
.concept-c .starfield {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 230, 228, 0.3) 0 1px, transparent 1.5px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  opacity: 0.35;
}
.concept-c .agent {
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%) scale(0);
}
.concept-c .agent:first-of-type {
  transform: translate(-50%, -50%) scale(1);
}
.concept-c .agent-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #698f93, #223332 64%);
  border: 1px solid rgba(178, 221, 222, 0.55);
  box-shadow:
    0 0 0 10px rgba(135, 196, 201, 0.05),
    0 0 45px rgba(104, 180, 187, 0.25);
  display: grid;
  place-items: center;
}
.concept-c .agent-core img {
  width: 33px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.concept-c .agent-pulse {
  inset: -13px;
  border-color: rgba(156, 202, 208, 0.18);
}
.concept-c .agent-caption {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.concept-c .agent-caption b {
  display: block;
  font: 500 11px 'JetBrains Mono';
  letter-spacing: 0.08em;
  color: #d8e8e6;
}
.concept-c .agent-caption small {
  font-size: 10px;
  color: #76928f;
}
.concept-c .activity {
  position: absolute;
  left: calc(50% + 70px);
  top: calc(43% - 40px);
  width: 150px;
  height: 84px;
  opacity: 0;
  transition: 0.6s var(--ease);
}
.showcase:not(.is-orchestra) .concept-c.active .activity {
  opacity: 1;
  transition-delay: 0.6s;
}
.activity-row {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #96aba8;
  font: 9px 'JetBrains Mono';
}
.activity-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #78bac1;
  box-shadow: 0 0 9px #78bac1;
}
.activity-row:nth-child(2) {
  opacity: 0.72;
}
.activity-row:nth-child(3) {
  opacity: 0.45;
}
.activity-row span {
  display: inline-block;
}
.showcase[data-phase='1'] .concept-c .activity-row {
  animation: processTask 1.7s ease-in-out both;
}
.showcase[data-phase='1'] .concept-c .activity-row:nth-child(1) {
  animation-delay: -0.08s;
}
.showcase[data-phase='1'] .concept-c .activity-row:nth-child(2) {
  animation-delay: 1.65s;
}
.showcase[data-phase='1'] .concept-c .activity-row:nth-child(3) {
  animation-delay: 3.3s;
}
.showcase.is-orchestra .concept-c .agent {
  transform: translate(-50%, -50%) scale(1);
}
.showcase.is-orchestra .concept-c .a1 {
  left: 24%;
  top: 46%;
}
.showcase.is-orchestra .concept-c .a2 {
  left: 36%;
  top: 38%;
}
.showcase.is-orchestra .concept-c .a3 {
  left: 50%;
  top: 27%;
}
.showcase.is-orchestra .concept-c .a4 {
  left: 64%;
  top: 38%;
}
.showcase.is-orchestra .concept-c .a5 {
  left: 76%;
  top: 46%;
}
.showcase.is-orchestra .concept-c .a6 {
  left: 28%;
  top: 63%;
}
.showcase.is-orchestra .concept-c .a7 {
  left: 34%;
  top: 55%;
}
.showcase.is-orchestra .concept-c .a8 {
  left: 66%;
  top: 55%;
}
.showcase.is-orchestra .concept-c .a9 {
  left: 72%;
  top: 63%;
}
.showcase.is-orchestra .concept-c .a10 {
  left: 50%;
  top: 69%;
}
.concept-c .agent:not(.a0) .agent-core {
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 35% 28%, #577f83, #1f302f 68%);
  box-shadow:
    0 0 0 7px rgba(135, 196, 201, 0.035),
    0 0 25px rgba(104, 180, 187, 0.14);
}
.concept-c .agent:not(.a0) img {
  width: 20px;
}
.concept-c .agent:not(.a0) .agent-caption {
  display: none;
}
.concept-c .dept-red {
  --dept-dark: #9b3b42;
  --dept-soft: #ffb3ba;
}
.concept-c .dept-green {
  --dept-dark: #2d6b3f;
  --dept-soft: #b2f2bb;
}
.concept-c .dept-blue {
  --dept-dark: #2d5a6b;
  --dept-soft: #aec6cf;
}
.concept-c .dept-yellow {
  --dept-dark: #7a6b2d;
  --dept-soft: #fffacd;
}
.concept-c .dept-ring {
  display: none;
}
.concept-c .dept-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  z-index: 3;
  transform: translateX(-50%);
  font:
    300 10px 'DM Sans',
    sans-serif;
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--dept-dark);
  white-space: nowrap;
  opacity: 0;
  filter: grayscale(1);
  pointer-events: none;
  transition:
    opacity 0.65s ease,
    filter 0.65s ease;
}
.concept-c .dept-label small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.concept-c .agent:not(.a0) .dept-label {
  bottom: calc(100% + 6px);
  font-size: 9px;
}
.showcase[data-phase='2'] .concept-c .dept-label {
  opacity: 0.62;
  filter: none;
}
.showcase[data-phase='3'] .concept-c .dept-label,
.showcase[data-phase='4'] .concept-c .dept-label {
  opacity: 0.1;
  filter: grayscale(1);
}
.showcase[data-phase='5'] .concept-c .dept-label {
  opacity: 0.46;
  filter: none;
}
.concept-c .orchestra-outline {
  left: 18%;
  right: 18%;
  top: 11%;
  height: 66%;
  border: 1px solid rgba(127, 190, 196, 0.26);
  border-radius: 50%;
  transform: scale(0.6);
  box-shadow:
    inset 0 0 50px rgba(78, 145, 151, 0.05),
    0 0 50px rgba(78, 145, 151, 0.04);
}
.showcase.is-orchestra .concept-c .orchestra-outline {
  transform: scale(1);
}
.concept-c .orchestra-outline:before,
.concept-c .orchestra-outline:after {
  content: '';
  position: absolute;
  border: 1px solid rgba(127, 190, 196, 0.12);
  border-radius: 50%;
  inset: 9%;
}
.concept-c .orchestra-outline:after {
  inset: 25%;
}
.concept-c .orchestra-title {
  position: absolute;
  left: 50%;
  top: 77%;
  transform: translateX(-50%);
  font: 500 9px 'JetBrains Mono';
  letter-spacing: 0.22em;
  color: #81a8a8;
  white-space: nowrap;
}
.concept-c .baton-system {
  left: 50%;
  top: 4%;
  width: 230px;
  height: 200px;
  transform: translate(-50%, -30px) scale(0.9);
  z-index: 14;
}
.showcase.is-baton .concept-c .baton-system {
  transform: translate(-50%, 0) scale(1);
}
.concept-c .conductor-figure {
  position: absolute;
  inset: 0;
}
.concept-c .conductor-aura {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 230px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 174, 113, 0.11), transparent 67%);
  filter: blur(5px);
}
.concept-c .conductor-head {
  position: absolute;
  left: 102px;
  top: 48px;
  width: 27px;
  height: 31px;
  border-radius: 48% 48% 45% 45%;
  background: linear-gradient(145deg, #5c6763, #252d2b);
  border: 1px solid rgba(216, 194, 153, 0.35);
  box-shadow: 0 0 24px rgba(215, 180, 112, 0.1);
}
.concept-c .conductor-neck {
  position: absolute;
  left: 110px;
  top: 75px;
  width: 12px;
  height: 12px;
  background: #333d3a;
}
.concept-c .conductor-body {
  position: absolute;
  left: 83px;
  top: 82px;
  width: 66px;
  height: 103px;
  border-radius: 29px 29px 10px 10px;
  background: linear-gradient(100deg, #111716, #37413e 49%, #131a18 51%);
  border: 1px solid rgba(158, 180, 173, 0.15);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.concept-c .conductor-body:before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(225, 237, 232, 0.12);
}
.concept-c .left-arm {
  position: absolute;
  left: 70px;
  top: 92px;
  width: 62px;
  height: 12px;
  border-radius: 9px;
  background: linear-gradient(90deg, #1b2321, #414d49);
  transform-origin: 100% 50%;
  animation: leftExpression 4.8s ease-in-out infinite;
}
.concept-c .left-hand {
  position: absolute;
  left: -7px;
  top: -2px;
  width: 14px;
  height: 16px;
  border-radius: 48%;
  background: #69736e;
  border: 1px solid rgba(220, 206, 177, 0.22);
}
.concept-c .gesture-field {
  position: absolute;
  left: 104px;
  top: 6px;
  width: 138px;
  height: 128px;
}
.concept-c .conducting-hand {
  position: absolute;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: #77817c;
  border: 1px solid rgba(232, 213, 177, 0.42);
  box-shadow: 0 0 18px rgba(221, 183, 113, 0.22);
  offset-path: path(
    'M 69 17 C 70 38 72 83 69 111 C 67 104 54 88 27 77 C 54 80 102 85 124 66 C 105 51 84 32 69 17'
  );
  offset-rotate: 0deg;
  animation: conductPath 3.6s linear infinite;
  z-index: 5;
}
.concept-c .right-arm {
  position: absolute;
  width: 58px;
  height: 12px;
  right: 4px;
  top: 3px;
  border-radius: 8px;
  background: linear-gradient(90deg, #27302d, #59635e);
  transform-origin: 100% 50%;
  transform: rotate(-17deg);
  z-index: -1;
}
.concept-c .real-baton {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 138px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f4dcae, #cba76b 72%, #777a6e);
  transform-origin: 100% 50%;
  animation: batonAngle 3.6s linear infinite;
  filter: drop-shadow(0 0 5px rgba(238, 205, 143, 0.34));
}
.concept-c .real-baton:before {
  content: '';
  position: absolute;
  left: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5dfb1;
  box-shadow: 0 0 13px rgba(238, 205, 143, 0.8);
}
.concept-c .gesture-trace {
  position: absolute;
  width: 4px;
  height: 4px;
  margin: -2px;
  border-radius: 50%;
  background: #e0bd7c;
  box-shadow: 0 0 9px rgba(224, 189, 124, 0.65);
  offset-path: path(
    'M 69 17 C 70 38 72 83 69 111 C 67 104 54 88 27 77 C 54 80 102 85 124 66 C 105 51 84 32 69 17'
  );
  offset-rotate: 0deg;
  animation: conductPath 3.6s linear infinite;
  opacity: 0.32;
}
.concept-c .gesture-trace.t2 {
  animation-delay: -0.09s;
  opacity: 0.2;
}
.concept-c .gesture-trace.t3 {
  animation-delay: -0.18s;
  opacity: 0.1;
}
.concept-c .ictus {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(231, 198, 135, 0.65);
  border-radius: 50%;
  animation: ictus 3.6s infinite;
}
.concept-c .i1 {
  left: 66px;
  top: 108px;
  animation-delay: 0.76s;
}
.concept-c .i2 {
  left: 24px;
  top: 74px;
  animation-delay: 1.65s;
}
.concept-c .i3 {
  left: 121px;
  top: 63px;
  animation-delay: 2.48s;
}
.concept-c .baton-caption {
  position: absolute;
  left: 50%;
  top: 186px;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
}
.concept-c .baton-caption b {
  display: block;
  font: 500 12px 'Playfair Display';
  color: #e8d0a3;
}
.concept-c .baton-caption span {
  font: 8px 'JetBrains Mono';
  letter-spacing: 0.16em;
  color: #8a9e99;
}
.concept-c .data-stage {
  left: 8%;
  right: 8%;
  bottom: -3%;
  height: 29%;
  transform: translateY(130px);
  border: 1px solid rgba(125, 193, 198, 0.4);
  border-radius: 50% 50% 12px 12px/32% 32% 9px 9px;
  background: radial-gradient(
    ellipse at 50% 0,
    rgba(92, 165, 173, 0.36),
    rgba(27, 50, 49, 0.92) 65%
  );
  box-shadow:
    0 -20px 70px rgba(77, 151, 160, 0.17),
    inset 0 1px rgba(202, 238, 237, 0.25);
}
.showcase.is-stage .concept-c .data-stage {
  transform: none;
}
.concept-c .data-stage:before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8cc4c8, transparent);
  box-shadow: 0 0 18px #75aeb3;
}
.concept-c .stage-copy {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.concept-c .stage-copy b {
  display: block;
  font: 500 21px 'Playfair Display';
  color: #eff7f4;
}
.concept-c .stage-copy span {
  font: 9px 'JetBrains Mono';
  letter-spacing: 0.14em;
  color: #82afb0;
}
.concept-c .data-column {
  position: absolute;
  bottom: 57%;
  width: 1px;
  height: 90px;
  background: linear-gradient(to top, #6baab0, transparent);
  transform-origin: bottom;
  animation: column 2.3s ease-in-out infinite;
}
.concept-c .dc1 {
  left: 24%;
}
.concept-c .dc2 {
  left: 40%;
  animation-delay: 0.5s;
}
.concept-c .dc3 {
  left: 61%;
  animation-delay: 1s;
}
.concept-c .dc4 {
  left: 76%;
  animation-delay: 1.5s;
}

/* Exclusive phase emphasis — only the product currently being introduced is blue */
.concept-c .agent-core {
  background: radial-gradient(circle at 35% 28%, #66706d, #28302e 66%);
  border-color: rgba(188, 200, 195, 0.2);
  box-shadow:
    0 0 0 9px rgba(181, 196, 190, 0.025),
    0 0 28px rgba(0, 0, 0, 0.2);
  filter: grayscale(1);
  transition:
    background 0.65s ease,
    border-color 0.65s ease,
    box-shadow 0.65s ease,
    filter 0.65s ease;
}
.concept-c .agent:not(.a0) .agent-core {
  background: radial-gradient(circle at 35% 28%, #5c6663, #252d2b 68%);
  box-shadow:
    0 0 0 7px rgba(181, 196, 190, 0.02),
    0 0 20px rgba(0, 0, 0, 0.18);
}
.showcase[data-phase='1'] .concept-c .a0 .agent-core,
.showcase[data-phase='2'] .concept-c .agent-core,
.showcase[data-phase='2'] .concept-c .agent:not(.a0) .agent-core {
  background: radial-gradient(circle at 35% 28%, #6f9ba0, #223a3a 66%);
  border-color: rgba(166, 219, 222, 0.72);
  box-shadow:
    0 0 0 11px rgba(117, 190, 197, 0.07),
    0 0 48px rgba(91, 176, 184, 0.28);
  filter: none;
}
.concept-c .orchestra-outline {
  border-color: rgba(177, 193, 188, 0.12);
  box-shadow: none;
  transition:
    border-color 0.65s ease,
    box-shadow 0.65s ease,
    opacity 0.8s var(--ease),
    transform 1s var(--ease);
}
.showcase[data-phase='2'] .concept-c .orchestra-outline {
  border-color: rgba(120, 202, 208, 0.62);
  box-shadow:
    inset 0 0 55px rgba(78, 164, 171, 0.08),
    0 0 58px rgba(78, 164, 171, 0.1);
}
.showcase[data-phase='2'] .concept-c .orchestra-title {
  color: #9ed2d5;
  text-shadow: 0 0 16px rgba(116, 195, 201, 0.32);
}
.showcase[data-phase='4'] .concept-c .conductor-aura {
  background: radial-gradient(circle, rgba(92, 185, 194, 0.2), transparent 67%);
}
.showcase[data-phase='4'] .concept-c .conductor-head {
  border-color: rgba(150, 215, 219, 0.54);
  box-shadow: 0 0 25px rgba(105, 190, 197, 0.2);
}
.showcase[data-phase='4'] .concept-c .conducting-hand {
  border-color: rgba(176, 228, 230, 0.8);
  box-shadow: 0 0 22px rgba(103, 195, 202, 0.4);
}
.showcase[data-phase='4'] .concept-c .real-baton {
  background: linear-gradient(90deg, #d9f2f3, #7ac1c8 72%, #526f6d);
  filter: drop-shadow(0 0 7px rgba(119, 203, 210, 0.52));
}
.showcase[data-phase='4'] .concept-c .real-baton:before {
  background: #d9f5f5;
  box-shadow: 0 0 15px rgba(126, 215, 222, 0.95);
}
.showcase[data-phase='4'] .concept-c .gesture-trace {
  background: #87cbd1;
  box-shadow: 0 0 10px rgba(117, 210, 217, 0.8);
}
.showcase[data-phase='4'] .concept-c .ictus {
  border-color: rgba(135, 213, 219, 0.8);
}
.showcase[data-phase='4'] .concept-c .baton-caption b {
  color: #a7d9dc;
}
.showcase[data-phase='4'] .concept-c .baton-caption span {
  color: #79afb2;
}
.concept-c .data-stage {
  filter: grayscale(0.5);
  transition:
    opacity 0.8s var(--ease),
    transform 1s var(--ease),
    filter 0.6s ease,
    box-shadow 0.6s ease;
}
.showcase[data-phase='3'] .concept-c .data-stage {
  filter: none;
  box-shadow:
    0 -22px 78px rgba(77, 164, 173, 0.28),
    inset 0 1px rgba(215, 247, 245, 0.34);
}

/* Concept 3 rebuild — light cinematic Symgora system */
.concept-c {
  background: radial-gradient(circle at 50% 31%, #fff 0, #f7fbfa 47%, #edf3f1 100%);
  color: var(--ink);
}
.concept-c:before {
  background:
    radial-gradient(circle at 50% 25%, rgba(130, 195, 203, 0.13), transparent 32%),
    radial-gradient(circle at 20% 68%, rgba(164, 191, 184, 0.09), transparent 28%);
  opacity: 0.9;
}
.concept-c .scene-label {
  color: #568f9a;
}
.concept-c .starfield {
  background-image: radial-gradient(circle, rgba(68, 132, 141, 0.19) 0 0.8px, transparent 1.2px);
  opacity: 0.3;
}
.concept-c .agent-core,
.concept-c .agent:not(.a0) .agent-core {
  background: linear-gradient(145deg, #fff, #f2f4f1);
  border-color: #d2d9d6;
  box-shadow:
    0 0 0 8px rgba(102, 128, 121, 0.025),
    0 12px 28px rgba(35, 54, 48, 0.08);
  filter: grayscale(1);
}
.concept-c .agent-core img {
  filter: none;
  opacity: 0.7;
}
.concept-c .agent-pulse {
  border-color: rgba(91, 146, 153, 0.12);
}
.concept-c .agent-caption b {
  color: #303936;
}
.concept-c .agent-caption small {
  color: #88938f;
}
.concept-c .activity {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #dfe5e2;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 14px 35px rgba(35, 52, 47, 0.08);
  backdrop-filter: blur(10px);
}
.activity-row {
  color: #687772;
}
.activity-row i {
  background: #70aeb8;
  box-shadow: 0 0 8px rgba(112, 174, 184, 0.55);
}
.showcase[data-phase='1'] .concept-c .a0 .agent-core,
.showcase[data-phase='2'] .concept-c .agent-core,
.showcase[data-phase='2'] .concept-c .agent:not(.a0) .agent-core {
  background: linear-gradient(145deg, #f6fcfc, #dceff1);
  border-color: #76afb9;
  box-shadow:
    0 0 0 10px rgba(117, 181, 191, 0.07),
    0 15px 38px rgba(71, 137, 148, 0.17);
  filter: none;
}
.concept-c .orchestra-outline {
  border-color: rgba(103, 124, 119, 0.14);
  box-shadow: none;
}
.concept-c .orchestra-outline:before,
.concept-c .orchestra-outline:after {
  border-color: rgba(100, 126, 121, 0.09);
}
.concept-c .orchestra-title {
  color: #73837e;
}
.showcase[data-phase='2'] .concept-c .orchestra-outline {
  border-color: rgba(103, 173, 183, 0.48);
  box-shadow:
    inset 0 0 55px rgba(98, 170, 180, 0.045),
    0 0 48px rgba(98, 170, 180, 0.065);
}
.showcase[data-phase='2'] .concept-c .orchestra-title {
  color: #558f99;
  text-shadow: none;
}
.concept-c .baton-system {
  left: 50%;
  top: 3.5%;
  width: 420px;
  height: 148px;
  transform: translate(-50%, -24px) scale(0.96);
  z-index: 14;
}
.showcase.is-baton .concept-c .baton-system {
  transform: translate(-50%, 0) scale(1);
}
.concept-c .baton-console {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #cfdad7;
  border-radius: 22px;
  box-shadow:
    0 20px 55px rgba(46, 69, 62, 0.13),
    inset 0 1px #fff;
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}
.concept-c .baton-console:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7eb9c2 25%, #aad3d8 70%, transparent);
}
.concept-c .baton-info {
  padding: 22px 18px 18px 24px;
  border-right: 1px solid #e3e8e5;
}
.concept-c .baton-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 500 8px 'JetBrains Mono';
  letter-spacing: 0.13em;
  color: #5d7771;
}
.concept-c .baton-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #61a877;
  box-shadow: 0 0 0 4px rgba(97, 168, 119, 0.1);
  animation: live 1.8s infinite;
}
.concept-c .baton-title {
  font: 500 19px 'Playfair Display';
  letter-spacing: -0.02em;
  margin-top: 10px;
  color: #29332f;
}
.concept-c .baton-kpis {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.concept-c .baton-kpis span {
  font: 8px 'JetBrains Mono';
  letter-spacing: 0.06em;
  color: #8b9692;
}
.concept-c .baton-kpis b {
  display: block;
  font: 600 13px 'DM Sans';
  letter-spacing: 0;
  color: #4c605a;
  margin-bottom: 1px;
}
.concept-c .baton-motion {
  position: relative;
  background: linear-gradient(145deg, rgba(239, 248, 248, 0.72), rgba(250, 250, 247, 0.8));
  overflow: hidden;
}
.concept-c .baton-motion:before,
.concept-c .baton-motion:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(105, 164, 173, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.concept-c .baton-motion:before {
  width: 118px;
  height: 92px;
}
.concept-c .baton-motion:after {
  width: 72px;
  height: 56px;
}
.concept-c .baton-axis {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(92, 145, 151, 0.08) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(92, 145, 151, 0.08) 50%, transparent 50.3%);
}
.concept-c .baton-driver {
  position: absolute;
  width: 13px;
  height: 13px;
  margin: -6.5px;
  border-radius: 50%;
  background: #5c7a75;
  border: 2px solid #fff;
  box-shadow: 0 3px 10px rgba(37, 72, 69, 0.24);
  offset-path: path(
    'M 92 21 C 92 48 92 91 91 117 C 86 105 67 92 39 79 C 71 84 115 87 150 68 C 129 52 108 34 92 21'
  );
  offset-rotate: 0deg;
  animation: conductPath 3.8s linear infinite;
  z-index: 3;
}
.concept-c .baton-wand {
  position: absolute;
  right: 7px;
  top: 4px;
  width: 112px;
  height: 2px;
  border-radius: 5px;
  background: linear-gradient(90deg, #7ebac3, #b9dce0 70%, #71827d);
  transform-origin: 100% 50%;
  animation: batonAngle 3.8s linear infinite;
  filter: drop-shadow(0 0 4px rgba(102, 175, 185, 0.35));
}
.concept-c .baton-wand:before {
  content: '';
  position: absolute;
  left: -3px;
  top: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8cc4cb;
  box-shadow: 0 0 10px rgba(102, 184, 195, 0.7);
}
.concept-c .cue {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(87, 153, 163, 0.36);
  border-radius: 50%;
  animation: cueBeat 3.8s infinite;
}
.concept-c .cue.c1 {
  left: 88px;
  top: 112px;
  animation-delay: 0.72s;
}
.concept-c .cue.c2 {
  left: 35px;
  top: 75px;
  animation-delay: 1.6s;
}
.concept-c .cue.c3 {
  left: 146px;
  top: 64px;
  animation-delay: 2.48s;
}
.concept-c .cue.c4 {
  left: 88px;
  top: 18px;
  animation-delay: 3.28s;
}
.concept-c .cue-beam {
  position: absolute;
  left: 50%;
  top: 145px;
  width: 1px;
  height: 65px;
  background: linear-gradient(to bottom, rgba(105, 175, 184, 0.38), transparent);
  transform-origin: top;
  opacity: 0.45;
}
.concept-c .cue-beam.b1 {
  transform: rotate(35deg);
}
.concept-c .cue-beam.b2 {
  transform: rotate(-35deg);
}
.concept-c .cue-beam.b3 {
  transform: rotate(0deg);
}
.concept-c .data-stage {
  left: 8%;
  right: 8%;
  bottom: -3%;
  height: 29%;
  background: radial-gradient(ellipse at 50% 0, #dceff1, #eff6f4 58%, #e6ece8 100%);
  border-color: rgba(102, 168, 178, 0.43);
  box-shadow:
    0 -18px 60px rgba(95, 164, 174, 0.12),
    inset 0 1px #fff;
  filter: grayscale(0.65);
}
.concept-c .data-stage:before {
  background: linear-gradient(90deg, transparent, #76b2bb, transparent);
  box-shadow: 0 0 15px rgba(103, 181, 191, 0.45);
}
.concept-c .stage-copy b {
  color: #2d403a;
}
.concept-c .stage-copy span {
  color: #5d929a;
}
.showcase[data-phase='3'] .concept-c .data-stage {
  filter: none;
  box-shadow:
    0 -24px 72px rgba(90, 168, 178, 0.2),
    inset 0 1px #fff;
}
.concept-c .stage-copy {
  top: 28%;
  z-index: 2;
}
.concept-c .stage-source-map {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 40%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
}
.concept-c .stage-source-bridge {
  position: relative;
  height: 38px;
}
.concept-c .stage-source-stem {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 19px;
  background: repeating-linear-gradient(
    180deg,
    var(--hd) 0,
    var(--hd) 4px,
    transparent 4px,
    transparent 9px
  );
}
.concept-c .stage-source-bar {
  position: absolute;
  top: 18px;
  left: calc(25% - 1px);
  right: calc(25% - 1px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--hd) 0,
    var(--hd) 4px,
    transparent 4px,
    transparent 9px
  );
}
.concept-c .stage-source-drop {
  position: absolute;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    var(--hd) 0,
    var(--hd) 4px,
    transparent 4px,
    transparent 9px
  );
}
.concept-c .stage-source-drop.is-left {
  left: calc(25% - 1px);
}
.concept-c .stage-source-drop.is-right {
  right: calc(25% - 1px);
}
.concept-c .stage-source-arrow {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--hd);
}
.concept-c .stage-source-arrow.is-left {
  left: calc(25% - 4px);
}
.concept-c .stage-source-arrow.is-right {
  right: calc(25% - 4px);
}
.concept-c .stage-source-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hd);
  box-shadow:
    0 0 8px rgba(59, 160, 196, 0.95),
    0 0 4px rgba(59, 160, 196, 0.7);
  opacity: 0;
}
.concept-c .stage-source-dot.is-left {
  animation: stageFlowLeft 7.5s linear infinite;
}
.concept-c .stage-source-dot.is-right {
  animation: stageFlowRight 7.5s linear infinite;
}
.concept-c .stage-source-dot.d2 {
  animation-delay: 2.5s;
}
.concept-c .stage-source-dot.d3 {
  animation-delay: 5s;
}
.concept-c .stage-source-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.concept-c .stage-source-card {
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(205, 205, 198, 0.82);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(237, 247, 251, 0.98), rgba(248, 254, 253, 0.95));
  box-shadow: 0 6px 18px rgba(39, 64, 58, 0.05);
}
.concept-c .stage-source-label {
  font:
    700 7px 'JetBrains Mono',
    monospace;
  line-height: 1.15;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b6960;
}
.concept-c .stage-source-card.is-live .stage-source-label {
  color: var(--hd);
}
.concept-c .stage-source-title {
  margin-top: 6px;
  font:
    400 13px 'Playfair Display',
    serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.showcase:not([data-phase='3']):not([data-phase='5']) .concept-c .stage-source-map {
  opacity: 0.18;
}
@keyframes stageFlowLeft {
  0%,
  100% {
    top: 33px;
    left: calc(25% - 2.5px);
    opacity: 0;
  }
  4% {
    top: 33px;
    left: calc(25% - 2.5px);
    opacity: 1;
  }
  34% {
    top: 18px;
    left: calc(25% - 2.5px);
    opacity: 1;
  }
  63% {
    top: 16px;
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  90% {
    top: 1px;
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  95% {
    top: -2px;
    left: calc(50% - 2.5px);
    opacity: 0;
  }
}
@keyframes stageFlowRight {
  0%,
  100% {
    top: 33px;
    left: calc(75% - 2.5px);
    opacity: 0;
  }
  4% {
    top: 33px;
    left: calc(75% - 2.5px);
    opacity: 1;
  }
  34% {
    top: 18px;
    left: calc(75% - 2.5px);
    opacity: 1;
  }
  63% {
    top: 16px;
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  90% {
    top: 1px;
    left: calc(50% - 2.5px);
    opacity: 1;
  }
  95% {
    top: -2px;
    left: calc(50% - 2.5px);
    opacity: 0;
  }
}

/* One typographic system for all four product labels, matched to Symgora Stage */
.concept-c .agent-caption b,
.concept-c .orchestra-title b,
.concept-c .conductor-label b,
.concept-c .stage-copy b {
  display: inline-block;
  font:
    500 21px 'Playfair Display',
    serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2d403a;
  white-space: nowrap;
}
.concept-c .agent-caption small,
.concept-c .orchestra-title span,
.concept-c .conductor-label span,
.concept-c .stage-copy span {
  display: block;
  margin-top: 7px;
  font:
    500 9px 'JetBrains Mono',
    monospace;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #589ec0;
  white-space: nowrap;
}
.concept-c .a0 .agent-caption,
.concept-c .orchestra-title,
.concept-c .conductor-label,
.concept-c .stage-copy {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  column-gap: 11px;
}
.concept-c .scene-number {
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font:
    500 13px 'JetBrains Mono',
    monospace;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #3b9fc0;
  font-style: normal;
  vertical-align: baseline;
}
.concept-c .a0 .agent-caption b,
.concept-c .orchestra-title b,
.concept-c .conductor-label b,
.concept-c .stage-copy b {
  grid-column: 2;
  grid-row: 1;
}
.concept-c .a0 .agent-caption small,
.concept-c .orchestra-title span,
.concept-c .conductor-label span,
.concept-c .stage-copy span {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
  color: #589ec0;
}
.concept-c .agent-caption {
  top: 92px;
}
.concept-c .agent-caption small {
  font-size: 9px;
  color: #589ec0;
}
.concept-c .orchestra-title {
  left: calc(50% - 8px);
  top: 2%;
  z-index: 12;
  transform: translateX(-50%);
  text-align: center;
  color: inherit;
  white-space: normal;
}
.concept-c .conductor-label {
  text-align: center;
}
.concept-c .conductor-label b {
  font-size: 21px;
  color: #2d403a;
}
.concept-c .conductor-label span {
  font-size: 9px;
  color: #589ec0;
}
.showcase[data-phase='2'] .concept-c .orchestra-title {
  color: inherit;
  text-shadow: none;
}
.showcase[data-phase='2'] .concept-c .orchestra-title b {
  color: #2d403a;
}
.showcase[data-phase='2'] .concept-c .orchestra-title span {
  color: #589ec0;
}
.showcase[data-phase='4'] .concept-c .conductor-label b {
  color: #2d403a;
}
.showcase[data-phase='4'] .concept-c .conductor-label span {
  color: #589ec0;
}

/* Keep prior product labels as very light context; only the current step is fully legible */
.concept-c .agent-caption,
.concept-c .orchestra-title,
.concept-c .conductor-label,
.concept-c .stage-copy {
  opacity: 0.14;
  filter: grayscale(1);
  transition:
    opacity 0.75s ease,
    filter 0.75s ease;
}
.showcase[data-phase='1'] .concept-c .agent-caption,
.showcase[data-phase='2'] .concept-c .orchestra-title,
.showcase[data-phase='3'] .concept-c .stage-copy,
.showcase[data-phase='4'] .concept-c .conductor-label {
  opacity: 1;
  filter: none;
}
.showcase[data-phase='5'] .concept-c .agent-caption,
.showcase[data-phase='5'] .concept-c .orchestra-title,
.showcase[data-phase='5'] .concept-c .conductor-label,
.showcase[data-phase='5'] .concept-c .stage-copy {
  opacity: 1;
  filter: none;
}

/* Final act — the complete Symgora system, all four products working together */
.showcase[data-phase='5'] .concept-c .agent-core,
.showcase[data-phase='5'] .concept-c .agent:not(.a0) .agent-core {
  background: linear-gradient(145deg, #f6fcfc, #dceff1);
  border-color: #76afb9;
  box-shadow:
    0 0 0 10px rgba(117, 181, 191, 0.07),
    0 15px 38px rgba(71, 137, 148, 0.17);
  filter: none;
}
.showcase[data-phase='5'] .concept-c .orchestra-outline {
  border-color: rgba(103, 173, 183, 0.48);
  box-shadow:
    inset 0 0 55px rgba(98, 170, 180, 0.045),
    0 0 48px rgba(98, 170, 180, 0.065);
}
.showcase[data-phase='5'] .concept-c .baton-system {
  color: #5596a1;
}
.showcase[data-phase='5'] .concept-c .data-stage {
  filter: none;
  box-shadow:
    0 -24px 72px rgba(90, 168, 178, 0.2),
    inset 0 1px #fff;
}

/* Team color replaces the existing blue Performer circle; no second ring */
.showcase[data-phase='2'] .concept-c .agent-pulse,
.showcase[data-phase='5'] .concept-c .agent-pulse {
  opacity: 0;
}
.showcase[data-phase='2'] .concept-c .a0 .agent-core,
.showcase[data-phase='5'] .concept-c .a0 .agent-core {
  border-color: color-mix(in srgb, var(--dept-dark) 46%, transparent);
  box-shadow:
    0 0 0 10px color-mix(in srgb, var(--dept-soft) 8%, transparent),
    0 15px 36px rgba(71, 137, 148, 0.1);
}
.showcase[data-phase='2'] .concept-c .agent:not(.a0) .agent-core,
.showcase[data-phase='5'] .concept-c .agent:not(.a0) .agent-core {
  border-color: color-mix(in srgb, var(--dept-dark) 46%, transparent);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--dept-soft) 7%, transparent),
    0 10px 24px rgba(71, 137, 148, 0.08);
}

/* Symgora Maestro — abstract conductor, positioned upper-right and facing the Orchestra */
.concept-c .baton-system {
  left: auto;
  right: 4.5%;
  top: 15%;
  width: 310px;
  height: 190px;
  transform: translate(22px, -8px) scale(0.94);
  color: #626d69;
  z-index: 14;
}
.showcase.is-baton .concept-c .baton-system {
  transform: translate(0, 0) scale(1);
}
.concept-c .abstract-conductor {
  position: absolute;
  inset: 0;
  transform-origin: center;
}
.concept-c .conductor-line {
  position: absolute;
  border-color: currentColor;
  transition:
    border-color 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease;
}
.concept-c .conductor-sleeve-a {
  right: 7px;
  top: 90px;
  width: 142px;
  height: 48px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-radius: 0 55% 48% 0;
  transform: rotate(-13deg);
  background: rgba(255, 255, 255, 0.34);
}
.concept-c .conductor-sleeve-a:after {
  content: '';
  position: absolute;
  left: -4px;
  top: 5px;
  width: 20px;
  height: 37px;
  border: 1.5px solid currentColor;
  border-radius: 45%;
  background: #f5f9f7;
}
.concept-c .conductor-forearm-a {
  right: 123px;
  top: 68px;
  width: 92px;
  height: 28px;
  border-top: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 48%;
  transform: rotate(-28deg);
  transform-origin: right center;
  animation: conductorArm 5.6s ease-in-out infinite;
}
.concept-c .conductor-hand-a {
  left: -9px;
  top: -2px;
  width: 27px;
  height: 30px;
  border: 1.5px solid currentColor;
  border-right: 0;
  border-radius: 55% 30% 42% 55%;
  background: #f7faf8;
}
.concept-c .conductor-thumb {
  left: 9px;
  top: -7px;
  width: 22px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-radius: 50%;
  transform: rotate(-19deg);
}
.concept-c .conductor-baton {
  position: absolute;
  left: -123px;
  top: 6px;
  width: 133px;
  height: 1.5px;
  border-radius: 4px;
  background: currentColor;
  transform-origin: 100% 50%;
  animation: slowBaton 5.6s ease-in-out infinite;
  box-shadow: 0 0 0 transparent;
}
.concept-c .conductor-baton:before {
  content: '';
  position: absolute;
  left: -3px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.concept-c .conductor-sleeve-b {
  right: 22px;
  top: 123px;
  width: 145px;
  height: 43px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-radius: 0 52% 50% 0;
  transform: rotate(8deg);
  background: rgba(255, 255, 255, 0.3);
}
.concept-c .conductor-sleeve-b:after {
  content: '';
  position: absolute;
  left: -4px;
  top: 4px;
  width: 19px;
  height: 34px;
  border: 1.5px solid currentColor;
  border-radius: 45%;
  background: #f5f9f7;
}
.concept-c .conductor-forearm-b {
  right: 137px;
  top: 94px;
  width: 83px;
  height: 25px;
  border-top: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 50%;
  transform: rotate(-38deg);
  transform-origin: right center;
  animation: expressionArm 5.6s ease-in-out infinite;
}
.concept-c .conductor-palm {
  left: -11px;
  top: -4px;
  width: 26px;
  height: 31px;
  border: 1.5px solid currentColor;
  border-right: 0;
  border-radius: 58% 30% 44% 56%;
  background: #f7faf8;
}
.concept-c .finger {
  position: absolute;
  left: -24px;
  width: 31px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  border-radius: 3px;
}
.concept-c .f1 {
  top: 0;
  transform: rotate(-31deg);
}
.concept-c .f2 {
  top: 7px;
  transform: rotate(-15deg);
  width: 34px;
}
.concept-c .f3 {
  top: 14px;
  transform: rotate(2deg);
  width: 29px;
}
.concept-c .conductor-flourish {
  position: absolute;
  right: 2px;
  bottom: 12px;
  width: 178px;
  height: 36px;
  border-bottom: 1px solid currentColor;
  border-radius: 0 0 52% 48%;
  opacity: 0.36;
  transform: rotate(-2deg);
}
.concept-c .conductor-flourish:after {
  content: '';
  position: absolute;
  left: -63px;
  bottom: -1px;
  width: 70px;
  height: 24px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(9deg);
}
.concept-c .conductor-label {
  position: absolute;
  right: 7px;
  bottom: -4px;
  text-align: right;
  white-space: nowrap;
}
.concept-c .conductor-label b {
  display: block;
  font: 500 14px 'Playfair Display';
  color: #43534e;
}
.concept-c .conductor-label span {
  display: block;
  margin-top: 4px;
  font: 8px 'JetBrains Mono';
  letter-spacing: 0.17em;
  color: #7d918b;
}
.showcase[data-phase='4'] .concept-c .baton-system {
  color: #5596a1;
}
.showcase[data-phase='4'] .concept-c .conductor-baton {
  box-shadow: 0 0 9px rgba(83, 161, 173, 0.38);
}
.showcase[data-phase='4'] .concept-c .conductor-label b {
  color: #4b8e99;
}
.showcase[data-phase='4'] .concept-c .conductor-label span {
  color: #589ec0;
}

.concept-c .conductor-label {
  right: 5px;
  bottom: -27px;
}
/* Maestro Mac screen, adapted from the archived Maestro V2 page */
.concept-c .baton-system {
  left: auto;
  right: 2.5%;
  top: 10.5%;
  width: 229px;
  height: 195px;
  transform: translate(14px, -5px) scale(0.94);
  color: #626d69;
}
.showcase.is-baton .concept-c .baton-system {
  transform: translate(0, 0) scale(1);
}
.concept-c .baton-mac {
  position: absolute;
  left: 2px;
  top: 16px;
  width: 229px;
  height: 152px;
  transform: scale(0.8);
  transform-origin: top right;
  filter: drop-shadow(0 11px 15px rgba(31, 51, 48, 0.14));
  opacity: 1;
  transition:
    filter 0.75s ease,
    opacity 0.75s ease;
}
.showcase[data-phase='3'] .concept-c .baton-mac {
  filter: grayscale(1);
  opacity: 0.28;
}
.concept-c .baton-mac-lid {
  position: relative;
  width: 215px;
  margin: 0 auto;
  padding: 3px 3px 4px;
  border-radius: 9px 9px 5px 5px;
  background: linear-gradient(145deg, #202523, #0b0e0d 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.concept-c .baton-mac-lid:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #111a22;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.concept-c .baton-mac-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 205/128;
  border-radius: 6px 6px 2px 2px;
  overflow: hidden;
  background: #f7f9fb;
  color: #16212b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.concept-c .baton-mac-screen:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(255, 255, 255, 0.18) 43%,
    transparent 68%
  );
  transform: translateX(-120%);
  animation: macScreenSweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.concept-c .baton-mac-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.concept-c .baton-mac-chrome,
.concept-c .baton-mac-app {
  display: none;
}
.concept-c .baton-mac-chrome {
  height: 15px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  padding: 0 5px;
  background: linear-gradient(180deg, #f6f7f9, #e6eaf0);
  border-bottom: 1px solid #d8dee6;
  font: 500 4.5px 'DM Sans';
  color: #65717e;
}
.concept-c .baton-mac-lights {
  display: flex;
  gap: 3px;
}
.concept-c .baton-mac-lights i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff5f57;
}
.concept-c .baton-mac-lights i:nth-child(2) {
  background: #ffbd2e;
}
.concept-c .baton-mac-lights i:nth-child(3) {
  background: #28c840;
}
.concept-c .baton-mac-title {
  text-align: center;
  font-weight: 700;
  color: #334155;
}
.concept-c .baton-mac-live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 3px;
  font: 500 4px 'JetBrains Mono';
  text-transform: uppercase;
}
.concept-c .baton-mac-live i,
.concept-c .baton-live-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #35b779;
  box-shadow: 0 0 0 2px rgba(53, 183, 121, 0.12);
  animation: macLive 1.7s ease-in-out infinite;
}
.concept-c .baton-mac-app {
  display: grid;
  grid-template-columns: 54px 1fr;
  height: 136px;
}
.concept-c .baton-mac-side {
  background: #101820;
  color: #d9e5eb;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.concept-c .baton-mac-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font: 700 6px 'DM Sans';
  color: #fff;
}
.concept-c .baton-mac-brand img {
  width: 11px;
  height: 11px;
  filter: brightness(0) invert(1);
}
.concept-c .baton-mac-nav {
  font: 600 4.5px 'DM Sans';
  color: #8797a2;
  padding: 4px;
  border-radius: 3px;
}
.concept-c .baton-mac-nav.active {
  background: rgba(202, 233, 245, 0.13);
  color: #fff;
}
.concept-c .baton-mac-status {
  margin-top: auto;
  padding: 5px;
  border: 1px solid rgba(202, 233, 245, 0.14);
  border-radius: 4px;
  font: 500 4px 'DM Sans';
  line-height: 1.45;
  color: #9fb0ba;
}
.concept-c .baton-mac-status b {
  display: block;
  color: #fff;
  font-size: 4.5px;
}
.concept-c .baton-mac-main {
  padding: 8px;
  background: linear-gradient(180deg, #f8fafb, #eef3f5);
  overflow: hidden;
}
.concept-c .baton-mac-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.concept-c .baton-mac-eyebrow {
  display: flex;
  align-items: center;
  gap: 3px;
  font: 700 4px 'DM Sans';
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607080;
}
.concept-c .baton-mac-heading {
  font: 500 11px 'Playfair Display';
  letter-spacing: -0.03em;
  color: #111827;
  margin-top: 2px;
}
.concept-c .baton-mac-brief {
  border: 0;
  border-radius: 4px;
  background: #1a5568;
  color: #fff;
  padding: 4px 6px;
  font: 700 4px 'DM Sans';
}
.concept-c .baton-mac-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.concept-c .baton-mac-kpi {
  background: #fff;
  border: 1px solid #dde5ea;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 3px 8px rgba(20, 35, 45, 0.04);
}
.concept-c .baton-mac-kpi span {
  display: block;
  font: 700 3.5px 'DM Sans';
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b98a4;
}
.concept-c .baton-mac-kpi b {
  display: block;
  margin-top: 1px;
  font: 600 7px 'JetBrains Mono';
  color: #111827;
}
.concept-c .baton-mac-kpi small {
  display: block;
  font: 500 3px 'DM Sans';
  color: #75828d;
}
.concept-c .baton-mac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}
.concept-c .baton-mac-card {
  --card: var(--hd);
  position: relative;
  background: #fff;
  border: 1px solid #dce5ea;
  border-top: 2.25px solid var(--card);
  border-radius: 4px;
  padding: 5px;
  animation: macCardFocus 5s ease-in-out infinite;
}
.concept-c .baton-mac-card:nth-child(2) {
  --card: #2d8b5a;
  animation-delay: 1.65s;
}
.concept-c .baton-mac-card:nth-child(3) {
  --card: #eab308;
  animation-delay: 3.3s;
}
.concept-c .baton-mac-card b {
  display: block;
  font: 700 4.5px 'DM Sans';
  color: #27333d;
}
.concept-c .baton-mac-card span {
  display: block;
  margin-top: 2px;
  font: 500 3.5px 'DM Sans';
  color: #82909a;
}
.concept-c .baton-mac-bar {
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  background: #edf2f5;
  overflow: hidden;
}
.concept-c .baton-mac-bar i {
  display: block;
  height: 100%;
  width: var(--progress);
  border-radius: 2px;
  background: var(--card);
  transform-origin: left;
  animation: macBarPulse 5s ease-in-out infinite;
}
.concept-c .baton-mac-base {
  position: relative;
  width: 229px;
  height: 7px;
  margin: 0 auto;
  background: linear-gradient(180deg, #d9dcdf, #a6abb1 48%, #6f767e);
  border-radius: 0 0 13px 13px;
  box-shadow: 0 5px 9px rgba(26, 26, 26, 0.16);
}
.concept-c .baton-mac-base:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 33px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 0 0 4px 4px;
  background: rgba(91, 97, 104, 0.52);
}
.concept-c .baton-mac-shadow {
  width: 191px;
  height: 5px;
  margin: -2px auto 0;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.12);
  filter: blur(3px);
}
.concept-c .conductor-label {
  left: calc(50% + 11px);
  right: auto;
  top: 140px;
  bottom: auto;
  transform: translateX(-50%);
  text-align: left;
  white-space: nowrap;
  isolation: isolate;
}
.concept-c .conductor-label b {
  display: inline-block;
  font:
    500 21px 'Playfair Display',
    serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2d403a;
  white-space: nowrap;
}
.concept-c .conductor-label span {
  display: block;
  margin-top: 7px;
  font:
    500 9px 'JetBrains Mono',
    monospace;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #589ec0;
  white-space: nowrap;
}
.concept-c .conductor-label .scene-number {
  justify-self: end;
}
.concept-c .conductor-label span {
  text-align: center;
}
.showcase:is([data-phase='3'], [data-phase='4'], [data-phase='5'])
  .concept-c
  .conductor-label:before {
  content: '';
  position: absolute;
  inset: -2px -5px;
  z-index: 0;
  pointer-events: none;
  background: rgba(247, 246, 242, 0.45);
  -webkit-backdrop-filter: grayscale(1);
  backdrop-filter: grayscale(1);
}
.concept-c .conductor-label > * {
  position: relative;
  z-index: 1;
}
.showcase[data-phase='4'] .concept-c .conductor-label b,
.showcase[data-phase='5'] .concept-c .conductor-label b {
  color: #2d403a;
}
.showcase[data-phase='4'] .concept-c .conductor-label span,
.showcase[data-phase='5'] .concept-c .conductor-label span {
  color: #589ec0;
}
.showcase[data-phase='4'] .concept-c .orchestra-outline {
  border-color: rgba(59, 159, 192, 0.78);
  box-shadow:
    inset 0 0 62px rgba(59, 159, 192, 0.055),
    0 0 0 2px rgba(59, 159, 192, 0.06),
    0 0 46px rgba(59, 159, 192, 0.15);
  animation: batonOversight 2.8s ease-in-out infinite;
}

/* Match the workflow-demo icon rotation below this component exactly. */
img[src$='icons/symgora-icon.svg'] {
  animation: riSpin 5s linear infinite;
  transform-origin: center;
}

/* Timeline and product explanation */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product {
  padding: 26px 22px 28px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  outline: none;
  transition: 0.45s ease;
}
.product:last-child {
  border-right: 0;
}
.product.active {
  background: rgba(255, 255, 255, 0.68);
}
.product:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(59, 160, 196, 0.48);
}
.product:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: var(--gold-pale);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.45s var(--ease);
}
.product.active:before {
  transform: scaleX(1);
}
.product-no {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--hd);
}
.product h2 {
  min-height: 0;
  font:
    400 24px/1.3 'Playfair Display',
    serif;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin: 14px 0 10px;
}
.product p {
  margin: 0;
}
.product > p:not(.product-description) {
  min-height: 3em;
  max-width: none;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  color: var(--hd);
}
.product:first-child > p:not(.product-description) {
  font-size: 14px;
}
.product-tagline-line {
  white-space: nowrap;
}
.pv {
  position: relative;
  height: 220px;
  margin: 24px 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfaf7 0%, #f0f8fb 100%);
  border: 1px solid rgba(59, 160, 196, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 28px rgba(59, 160, 196, 0.08);
}
.pv-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.pv-layer.is-rest {
  opacity: 1;
  transform: translateY(0);
}
.pv-layer.is-hover {
  opacity: 0;
  transform: translateY(8px);
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 0 18px;
}
.pv:hover .pv-layer.is-rest {
  opacity: 0;
  transform: translateY(-8px);
}
.pv:hover .pv-layer.is-hover {
  opacity: 1;
  transform: translateY(0);
}
.pv-stat {
  font:
    400 40px/1 'Playfair Display',
    serif;
  color: var(--blue-deep);
  letter-spacing: -1.4px;
}
.pv-stat-lbl {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
}
.pv-ui {
  position: absolute;
  inset: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(59, 160, 196, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(59, 160, 196, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.pv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(229, 226, 220, 0.72);
}
.pv-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 7.4px;
  font-weight: 800;
  color: var(--blue-deep);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pv-chip:after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hd);
  box-shadow: 0 0 6px rgba(59, 160, 196, 0.5);
  animation: homeLivePulse 1.35s ease-in-out infinite;
  flex: 0 0 auto;
}
.pv-title-mark {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.92;
}
.pv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.pv-dept {
  min-height: 34px;
  border: 1px solid rgba(229, 226, 220, 0.9);
  border-radius: 8px;
  background: #faf9f6;
  padding: 6px 4px;
  text-align: center;
}
.pv-dept b {
  display: block;
  font-size: 9px;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.pv-health {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.pv-health i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hd);
  opacity: 0.28;
}
.pv-health i.on {
  opacity: 1;
}
.pv-agent-list {
  display: grid;
  gap: 6px;
}
.pv-agent {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 9px 8px 9px 10px;
  background: #faf9f6;
  border: 1px solid rgba(59, 160, 196, 0.14);
  border-radius: 10px;
}
.pv-agent > div {
  min-width: 0;
}
.pv-avatar {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}
.pv-name {
  font-size: 10px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}
.pv-meta {
  font-size: 7.5px;
  font-weight: 600;
  color: #8fa1ab;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.pv-status {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 999px;
  background: #d4e7db;
  color: #2d6b3f;
  animation: statusPulse 1.45s ease-in-out infinite;
}
.pv-status.warn {
  background: #e2f3fa;
  color: #1a6f8c;
  animation: none;
}
.pv-network {
  position: relative;
  flex: 1;
  min-height: 0;
}
.pv-network-rings {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 108px;
  height: 108px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(127, 190, 196, 0.24);
}
.pv-network-rings:before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(127, 190, 196, 0.15);
  border-radius: 50%;
}
.pv-network-lines {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130px;
  height: 136px;
  transform: translateX(-50%);
  overflow: visible;
}
.pv-network-edge {
  fill: none;
  stroke: url(#pvOrchEdgeGrad);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.pv-network-packet {
  fill: #73b1bb;
  filter: drop-shadow(0 0 3px rgba(94, 172, 184, 0.85));
}
.pv-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.pv-node-core {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f6fcfc, #dceff1);
  border: 1px solid rgba(155, 59, 66, 0.42);
  box-shadow:
    0 0 0 6px rgba(255, 179, 186, 0.14),
    0 8px 18px rgba(71, 137, 148, 0.18);
}
.pv-node--lg .pv-node-core {
  width: 50px;
  height: 50px;
  box-shadow:
    0 0 0 8px rgba(255, 179, 186, 0.14),
    0 10px 22px rgba(71, 137, 148, 0.2);
}
.pv-node-core .pv-avatar {
  width: 18px;
  height: 18px;
  opacity: 0.75;
}
.pv-node--lg .pv-node-core .pv-avatar {
  width: 24px;
  height: 24px;
}
.pv-node-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%);
  font:
    300 9px 'DM Sans',
    sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #9b3b42;
  text-align: center;
  white-space: nowrap;
}
.pv-node-label small {
  display: block;
  margin-top: 2px;
  font-size: 7px;
  letter-spacing: 0.03em;
  opacity: 0.85;
}
.pv-node--below .pv-node-label {
  bottom: auto;
  top: calc(100% + 6px);
}
.pv-performer-profile {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.pv-performer-header {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 8px;
}
.pv-performer-header > div {
  min-width: 0;
}
.pv-performer-emblem {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--pr);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 179, 186, 0.18);
}
.pv-performer-emblem .ri {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.pv-performer-name {
  margin: 0;
  color: #1a1a1a;
  font:
    500 13px/1.2 'Playfair Display',
    serif;
  letter-spacing: -0.2px;
}
.product .pv-performer-team {
  margin-top: 3px;
  color: var(--prd);
  font-size: 8px;
  line-height: 1.3;
}
.pv-performer-groups {
  border-top: 1px solid #e9e5e1;
}
.pv-performer-groups h4 {
  margin: 0;
  padding: 4px 0;
  color: #55524d;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
}
.pv-performer-groups h4 + h4 {
  border-top: 1px solid #f0eeeb;
}
.pv-performer-groups h4:last-child {
  padding-bottom: 0;
}
.pv-task-list {
  display: grid;
  gap: 6px;
}
.pv-task {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(59, 160, 196, 0.14);
  border-radius: 10px;
  background: #faf9f6;
}
.pv-task-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d8b5a;
  animation: taskDotPulse 1.45s ease-in-out infinite;
}
.pv-task-dot.warn {
  background: #eab308;
  --task-dot-glow: rgba(234, 179, 8, 0.55);
  --task-dot-glow-strong: rgba(234, 179, 8, 0.95);
}
.pv-task-name {
  font-size: 9px;
  font-weight: 700;
  color: #1a1a1a;
}
.pv-task-sub {
  font-size: 7.5px;
  color: #8b8578;
  margin-top: 1px;
}
.pv-task-score {
  font-size: 9px;
  font-weight: 800;
  color: var(--hd);
}
.pv-ie {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  padding-top: 2px;
}
.pv-intel-layer {
  position: relative;
  z-index: 2;
  border: 2px solid rgba(59, 160, 196, 0.82);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  background: linear-gradient(180deg, #edf7fb 0%, #fff 100%);
  box-shadow: 0 8px 22px rgba(59, 160, 196, 0.12);
}
.pv-engine-label {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hd);
}
.pv-engine-title {
  font:
    500 15px 'Playfair Display',
    serif;
  letter-spacing: -0.3px;
  color: #1a1a1a;
  margin-top: 4px;
}
.pv-source-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.pv-source-card {
  position: relative;
  min-height: 62px;
  border: 1px solid rgba(59, 160, 196, 0.22);
  border-radius: 11px;
  background: #faf9f6;
  padding: 8px 9px 56px;
  overflow: hidden;
}
.pv-source-card--connectors {
  background: linear-gradient(180deg, #f8fefd 0%, #edf7fb 100%);
}
.pv-source-card--vault {
  background: linear-gradient(180deg, #fff 0%, #f5f8f8 100%);
}
.pv-section-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.pv-source-title {
  font:
    500 11px/1.15 'Playfair Display',
    serif;
  color: #1a1a1a;
  letter-spacing: -0.15px;
}
.pv-source-flow {
  position: absolute;
  top: 56px;
  width: 40%;
  height: 28px;
  z-index: 1;
  overflow: visible;
}
.pv-source-flow:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  height: 44px;
  width: 1px;
  background: rgba(59, 160, 196, 0.36);
}
.pv-source-flow--left {
  left: 7%;
}
.pv-source-flow--right {
  right: 7%;
}
.pv-source-flow i {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: var(--hd);
  box-shadow: 0 0 10px rgba(59, 160, 196, 0.7);
  animation: sourceLift 11s linear infinite;
}
.pv-source-flow i:nth-child(2) {
  animation-delay: 3.67s;
}
.pv-source-flow i:nth-child(3) {
  animation-delay: 7.33s;
}
.pv-source-flow i:nth-child(4) {
  animation-delay: 1.83s;
}
.pv-source-flow i:nth-child(5) {
  animation-delay: 5.5s;
}
.pv-source-card--vault {
  background: linear-gradient(180deg, #f8fefd 0%, #edf7fb 100%);
}
.pv-mac-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-mac {
  position: relative;
  width: 100%;
  max-width: 250px;
}
.pv-mac-lid {
  position: relative;
  width: 94%;
  margin: 0 auto;
  padding: 1.1% 1.1% 1.3%;
  border-radius: 9px 9px 5px 5px;
  background: linear-gradient(145deg, #202523, #0b0e0d 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.pv-mac-lid:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #111a22;
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.pv-mac-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 205/128;
  border-radius: 6px 6px 2px 2px;
  overflow: hidden;
  background: #f7f9fb;
}
.pv-mac-screen:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 10%,
    rgba(255, 255, 255, 0.18) 43%,
    transparent 68%
  );
  transform: translateX(-120%);
  animation: macScreenSweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.pv-mac-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pv-mac-base {
  position: relative;
  width: 100%;
  height: 7px;
  margin: 0 auto;
  background: linear-gradient(180deg, #d9dcdf, #a6abb1 48%, #6f767e);
  border-radius: 0 0 13px 13px;
  box-shadow: 0 5px 9px rgba(26, 26, 26, 0.16);
}
.pv-mac-base:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 16%;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 0 0 4px 4px;
  background: rgba(91, 97, 104, 0.52);
}
.pv-mac-shadow {
  width: 84%;
  height: 5px;
  margin: -2px auto 0;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.12);
  filter: blur(3px);
}

/* Shared Maestro walkthrough: 1 (3s) → Leadership (5s) → 1 (3s) → Developer (5s). */
.maestro-screen-loop {
  isolation: isolate;
}
.maestro-loop-shot {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  animation-duration: 16s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: opacity;
}
.maestro-loop-shot--home {
  animation-name: maestroHomeScreen;
}
.maestro-loop-shot--leadership {
  animation-name: maestroLeadershipScreen;
}
.maestro-loop-shot--developer {
  animation-name: maestroDeveloperScreen;
}
.maestro-loop-click {
  position: absolute;
  left: 50%;
  top: 61%;
  z-index: 5;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: #2e9fc4;
  box-shadow:
    0 1px 4px rgba(7, 39, 50, 0.42),
    0 0 0 2px rgba(46, 159, 196, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: maestroClickPointer 16s var(--ease) infinite;
  pointer-events: none;
  will-change: left, top, opacity, transform;
}
.maestro-loop-click:before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(46, 159, 196, 0.72);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.45);
  animation: maestroClickRing 16s ease-out infinite;
}
@keyframes maestroHomeScreen {
  0%,
  18.749%,
  50%,
  68.749%,
  100% {
    opacity: 1;
  }
  18.75%,
  49.999%,
  68.75%,
  99.999% {
    opacity: 0;
  }
}
@keyframes maestroLeadershipScreen {
  0%,
  18.749%,
  50%,
  100% {
    opacity: 0;
  }
  18.75%,
  49.999% {
    opacity: 1;
  }
}
@keyframes maestroDeveloperScreen {
  0%,
  68.749%,
  100% {
    opacity: 0;
  }
  68.75%,
  99.999% {
    opacity: 1;
  }
}
@keyframes maestroClickPointer {
  0%,
  12.49% {
    left: 50%;
    top: 61%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  16.25%,
  17.2% {
    left: 75%;
    top: 78%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  17.21%,
  18.35% {
    left: 75%;
    top: 78%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.68);
  }
  18.74% {
    left: 75%;
    top: 78%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  18.75%,
  62.49% {
    left: 50%;
    top: 61%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  66.25%,
  67.2% {
    left: 25%;
    top: 78%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  67.21%,
  68.35% {
    left: 25%;
    top: 78%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.68);
  }
  68.74% {
    left: 25%;
    top: 78%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  68.75%,
  100% {
    left: 50%;
    top: 61%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
}
@keyframes maestroClickRing {
  0%,
  17.2%,
  18.36%,
  67.2%,
  68.36%,
  100% {
    opacity: 0;
    transform: scale(0.45);
  }
  17.21%,
  67.21% {
    opacity: 0.9;
    transform: scale(0.45);
  }
  18.35%,
  68.35% {
    opacity: 0;
    transform: scale(2.2);
  }
}
.product .product-description {
  max-width: none;
  margin: 24px 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6960;
}
.product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: auto;
  padding: 8px 20px;
  border: 2px solid var(--hd);
  border-radius: 999px;
  color: var(--hd);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.product-link:hover {
  background: var(--hd);
  color: #fff;
  transform: translateY(-1px);
}

@keyframes live {
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 8px rgba(88, 162, 114, 0);
  }
}
@keyframes breathe {
  50% {
    transform: scale(1.08);
    opacity: 0.35;
  }
}
@keyframes task {
  0% {
    width: 0;
  }
  55%,
  80% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes conduct {
  0%,
  100% {
    transform: rotate(-24deg);
  }
  45% {
    transform: rotate(20deg);
  }
  70% {
    transform: rotate(-8deg);
  }
}
@keyframes signal {
  0% {
    transform: scale(0.25);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@keyframes dataflow {
  0%,
  100% {
    transform: translateY(12px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
}
@keyframes aurora {
  to {
    transform: translate3d(4%, -2%, 0) rotate(3deg);
  }
}
@keyframes column {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.25;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}
@keyframes linePacket {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateX(var(--line-length));
    opacity: 0;
  }
}
@keyframes conductPath {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}
@keyframes homeLivePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px rgba(59, 160, 196, 0.5);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 12px rgba(59, 160, 196, 0.95);
  }
}
.pc::before,
.pulse-dot,
.ah-erp-live i {
  animation-name: homeLivePulse;
}
@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(45, 107, 63, 0);
    background: #d4e7db;
  }
  50% {
    box-shadow: 0 0 12px rgba(45, 107, 63, 0.32);
    background: #c9ead7;
  }
}
@keyframes taskDotPulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 4px var(--task-dot-glow, rgba(45, 139, 90, 0.45));
  }
  50% {
    opacity: 0.38;
    box-shadow: 0 0 12px var(--task-dot-glow-strong, rgba(45, 139, 90, 0.9));
  }
}
@keyframes sourceLift {
  0% {
    transform: translateY(14px);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-38px);
    opacity: 0;
  }
}
@keyframes batonAngle {
  0% {
    transform: rotate(-20deg);
  }
  25% {
    transform: rotate(-72deg);
  }
  29% {
    transform: rotate(-62deg);
  }
  49% {
    transform: rotate(-13deg);
  }
  52% {
    transform: rotate(-20deg);
  }
  73% {
    transform: rotate(19deg);
  }
  77% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@keyframes leftExpression {
  0%,
  100% {
    transform: rotate(18deg);
  }
  35% {
    transform: rotate(34deg);
  }
  70% {
    transform: rotate(5deg);
  }
}
@keyframes ictus {
  0%,
  82%,
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
  88% {
    transform: scale(2.8);
    opacity: 0.65;
  }
}
@keyframes cueBeat {
  0%,
  78%,
  100% {
    transform: scale(0.4);
    opacity: 0.2;
  }
  85% {
    transform: scale(3);
    opacity: 0.75;
    box-shadow: 0 0 16px rgba(92, 169, 180, 0.55);
  }
}
@keyframes conductorArm {
  0%,
  100% {
    transform: rotate(-28deg) translateY(0);
  }
  45% {
    transform: rotate(-23deg) translateY(2px);
  }
  72% {
    transform: rotate(-31deg) translateY(-1px);
  }
}
@keyframes expressionArm {
  0%,
  100% {
    transform: rotate(-38deg);
  }
  50% {
    transform: rotate(-33deg);
  }
}
@keyframes slowBaton {
  0%,
  100% {
    transform: rotate(-12deg);
  }
  25% {
    transform: rotate(7deg);
  }
  52% {
    transform: rotate(-19deg);
  }
  76% {
    transform: rotate(2deg);
  }
}
@keyframes riSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes processTask {
  0% {
    color: #aab8b5;
    opacity: 0.42;
  }
  5%,
  82% {
    color: #526662;
    opacity: 1;
  }
  100% {
    color: #b0bcba;
    opacity: 0.42;
  }
}
@keyframes macLive {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(53, 183, 121, 0.12);
  }
  50% {
    opacity: 0.38;
    box-shadow: 0 0 5px rgba(53, 183, 121, 0.6);
  }
}
@keyframes macScreenSweep {
  0%,
  68% {
    transform: translateX(-120%);
  }
  88%,
  100% {
    transform: translateX(120%);
  }
}
@keyframes macCardFocus {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
  15%,
  50% {
    transform: translateY(-1px);
    border-color: var(--card);
    box-shadow: 0 3px 8px rgba(36, 73, 80, 0.11);
  }
}
@keyframes macBarPulse {
  0%,
  100% {
    transform: scaleX(0.72);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes batonOversight {
  0%,
  100% {
    border-color: rgba(59, 159, 192, 0.58);
    box-shadow:
      inset 0 0 55px rgba(59, 159, 192, 0.04),
      0 0 0 1px rgba(59, 159, 192, 0.04),
      0 0 34px rgba(59, 159, 192, 0.1);
  }
  50% {
    border-color: rgba(59, 159, 192, 0.92);
    box-shadow:
      inset 0 0 68px rgba(59, 159, 192, 0.08),
      0 0 0 3px rgba(59, 159, 192, 0.08),
      0 0 58px rgba(59, 159, 192, 0.2);
  }
}
.showcase.paused * {
  animation-play-state: paused !important;
}

@media (max-width: 900px) {
  .page {
    padding-inline: 0;
  }
  .visual {
    height: 590px;
  }
  .showcase.is-orchestra .concept-c .a1 {
    left: 18%;
  }
  .showcase.is-orchestra .concept-c .a5 {
    left: 82%;
  }
  .task-card,
  .pencil-note,
  .activity {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product:nth-child(2) {
    border-right: 0;
  }
  .product:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 560px) {
  .showcase {
    border-radius: 16px;
  }
  .visual {
    height: 520px;
  }
  .play-control span:last-child {
    display: none;
  }
  .play-control {
    right: 16px;
    top: 16px;
    padding: 0 9px;
  }
  .scene-label {
    top: 18px;
    left: 18px;
  }
  .concept-c .orchestra-outline {
    left: 7%;
    right: 7%;
  }
  .agent-caption {
    display: none !important;
  }
  .concept-c .agent-core {
    width: 58px;
    height: 58px;
  }
  .concept-c .baton-system {
    right: -2%;
    top: 17%;
    transform: translate(18px, -6px) scale(0.72);
    transform-origin: top right;
  }
  .showcase.is-baton .concept-c .baton-system {
    transform: translate(0, 0) scale(0.72);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product {
    padding: 22px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product h2,
  .product > p:not(.product-description) {
    min-height: 0;
  }
  .product:last-child {
    border-bottom: 0;
  }
  .concept-c .stage-source-map {
    left: 4%;
    right: 4%;
    top: 43%;
    height: 57%;
  }
  .concept-c .stage-source-bridge {
    height: 31px;
  }
  .concept-c .stage-source-stem {
    height: 15px;
  }
  .concept-c .stage-source-bar {
    top: 14px;
  }
  .concept-c .stage-source-drop {
    top: 14px;
  }
  .concept-c .stage-source-cards {
    gap: 7px;
  }
  .concept-c .stage-source-card {
    min-height: 46px;
    padding: 8px 9px;
    border-radius: 8px;
  }
  .concept-c .stage-source-label {
    font-size: 5.5px;
  }
  .concept-c .stage-source-title {
    margin-top: 4px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .maestro-loop-shot {
    display: none;
  }
  .maestro-loop-shot--home {
    display: block;
    opacity: 1;
  }
  .maestro-loop-click {
    display: none;
  }
}
