/* Three-step demo library, scoped to the homepage demo section. */
#demo .demo-sequence {
  display: grid;
  gap: 20px;
}
#demo .platform-step,
#demo .watch-step {
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: white;
  overflow: hidden;
}
#demo .step-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}
#demo .step-summary::-webkit-details-marker,
#demo .case-summary::-webkit-details-marker {
  display: none;
}
#demo .step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--bg2);
  border-radius: 50%;
  font-size: 12px;
  color: var(--t2);
  flex: none;
}
#demo .step-summary b {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
#demo .step-summary small {
  display: block;
  font-size: 12px;
  color: var(--t2);
  margin-top: 3px;
}
#demo .fold-icon {
  margin-left: auto;
  font-size: 22px;
  color: var(--t2);
}
#demo details[open] > .step-summary .fold-icon {
  transform: rotate(45deg);
}
#demo .watch-step {
  background: transparent;
}
#demo .watch-step > .step-summary {
  background: #eaf3f5;
}
#demo .watch-step .step-number {
  background: #d3e8ee;
  color: var(--pbd);
}
#demo .use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px;
}
#demo .wfc.live-demo.use-case {
  margin: 0;
  border-radius: 10px;
  min-width: 0;
  overflow: hidden;
  box-shadow: none;
}
#demo .use-case[open] {
  grid-column: 1/-1;
}
#demo .case-summary {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  list-style: none;
  min-height: 190px;
}
#demo .use-case[open] > .case-summary {
  min-height: 0;
  border-bottom: 1px solid var(--bd);
}
#demo .case-outcome {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--t2);
}
#demo .case-summary strong {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}
#demo .case-performer {
  font-size: 12px;
  color: var(--t2);
}
#demo .case-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}
#demo .case-action i {
  font-style: normal;
  font-size: 20px;
}
#demo .use-case[open] .case-action i {
  transform: rotate(45deg);
}
#demo .platform-body {
  padding: 0 20px 20px;
}
#demo .platform-intro {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--t2);
  padding: 4px 4px 20px;
}
#demo .platform-intro p {
  max-width: 680px;
}
#demo .fu {
  opacity: 1;
  transform: none;
}
#demo button:focus-visible,
#demo summary:focus-visible,
#demo a:focus-visible {
  outline: 3px solid var(--hd);
  outline-offset: 4px;
}
@media (max-width: 640px) {
  #demo .use-case-grid {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }
  #demo .step-summary {
    padding: 16px;
    gap: 12px;
  }
  #demo .step-summary b {
    font-size: 16px;
  }
  #demo .case-summary {
    padding: 20px;
    min-height: 170px;
  }
  #demo .platform-body {
    padding: 0 10px 10px;
  }
  #demo .platform-intro {
    align-items: flex-start;
    flex-direction: column;
  }
}
#demo .workflow-carousel {
  display: grid;
  grid-template-columns: 36% 64%;
  min-height: 440px;
  overflow: hidden;
  background: #f2f0eb;
  border-top: 1px solid var(--bd);
}
#demo .carousel-menu {
  background: #ddecf0;
  padding: 35px 24px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#demo .carousel-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pbd);
  margin-bottom: 23px;
}
#demo .carousel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 45px 58px;
  overflow: hidden;
}
#demo .use-case-grid {
  display: block;
  padding: 0;
}
#demo .use-case-grid:has(.use-case[open]) {
  padding: 24px;
}
#demo .use-case[hidden] {
  display: none !important;
}
#demo .use-case[open] > .case-summary {
  min-height: 0;
}
@media (max-width: 760px) {
  #demo .workflow-carousel {
    grid-template-columns: 1fr;
  }
  #demo .carousel-menu {
    padding: 24px;
  }
  #demo .carousel-eyebrow {
    margin-bottom: 16px;
  }
  #demo .carousel-stage {
    min-height: 400px;
    padding: 30px 40px;
  }
  #demo .use-case-grid:has(.use-case[open]) {
    padding: 12px;
  }
}
#demo .workflow-carousel {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  overflow: visible;
}
#demo .carousel-menu {
  position: sticky;
  top: 16px;
  padding: 24px 14px;
  border-radius: 0 0 0 12px;
}
#demo .carousel-eyebrow {
  padding-left: 12px;
  margin-bottom: 12px;
}
#demo .performer-window {
  height: 470px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(transparent, black 12%, black 88%, transparent);
}
#demo .performer-track {
  position: absolute;
  width: 100%;
  top: 201px;
  transition: transform 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}
#demo .performer-row {
  height: 68px;
  display: flex;
  align-items: center;
  padding: 3px 0;
}
#demo .performer-row button,
#demo .unavailable-performer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border: 1px solid transparent;
  background: transparent;
  color: #627d86;
  border-radius: 28px;
  padding: 10px 15px;
  text-align: left;
  font: inherit;
}
#demo .performer-row small {
  display: block;
  font-size: 9px;
  margin-bottom: 3px;
}
#demo .performer-row b {
  font-size: 12px;
  line-height: 1.25;
  display: block;
  font-weight: 400;
}
#demo .performer-row button {
  cursor: pointer;
  border-color: #aac9d3;
  color: #294f5e;
}
#demo .performer-row button[aria-current='true'] {
  background: white;
  border-color: white;
  box-shadow: 0 5px 16px #244f6012;
}
#demo .performer-row button[aria-current='true'] b {
  font-weight: 600;
}
#demo .performer-row em {
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
  background: #c9e2e9;
  border-radius: 12px;
  padding: 3px 6px;
}
#demo .carousel-stage {
  display: block;
  padding: 0;
  overflow: hidden;
  min-height: 580px;
  background: white;
  border-left: 1px solid var(--bd);
}
#demo .carousel-stage .use-case {
  border: 0;
  border-radius: 0;
  margin: 0;
  grid-column: auto;
}
#demo .carousel-stage .use-case > .case-summary {
  display: none;
}
#demo .carousel-stage .use-case > .wfb {
  padding: 20px;
}
#demo .direct-heading {
  padding: 24px 24px 0;
}
#demo .direct-heading p {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--t2);
}
#demo .direct-heading h2 {
  font: 400 26px/1.25 var(--font-display);
  margin: 8px 0;
}
#demo .direct-heading small {
  color: var(--t2);
  font-size: 12px;
}
#demo .use-case-grid {
  display: none;
}
#demo .watch-step {
  overflow: visible;
}
#demo .watch-step > .step-summary {
  border-radius: 12px 12px 0 0;
}
@media (max-width: 850px) {
  #demo .workflow-carousel {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  #demo .performer-row b {
    font-size: 11px;
  }
  #demo .carousel-stage .use-case > .wfb {
    padding: 12px;
  }
  #demo .carousel-stage .g2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  #demo .workflow-carousel {
    grid-template-columns: 1fr;
  }
  #demo .carousel-menu {
    position: relative;
    top: 0;
    padding: 15px;
  }
  #demo .performer-window {
    height: 204px;
  }
  #demo .performer-track {
    top: 68px;
  }
  #demo .carousel-stage {
    border-left: 0;
    border-top: 1px solid var(--bd);
  }
  #demo .direct-heading {
    padding: 20px 16px 0;
  }
  #demo .direct-heading h2 {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #demo .performer-track {
    transition: none;
  }
}
#demo .watch-step {
  border: 0;
  background: transparent;
}
#demo .watch-step > .step-summary {
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: white;
  margin-bottom: 24px;
}
#demo .workflow-carousel {
  gap: 30px;
  grid-template-columns: 320px minmax(0, 1fr);
  background: transparent;
  border: 0;
}
#demo .carousel-menu {
  background: transparent;
  border: 0;
  padding: 22px 0 0;
  top: 24px;
  isolation: isolate;
}
#demo .carousel-eyebrow {
  padding-left: 44px;
  color: #527481;
  font-size: 10px;
  letter-spacing: 1.7px;
  margin-bottom: 18px;
}
#demo .orbit-shell {
  position: relative;
}
#demo .orbit-rail {
  position: absolute;
  left: 0;
  top: 0;
  width: 85px;
  height: 470px;
  overflow: visible;
  pointer-events: none;
}
#demo .rail-shadow {
  fill: none;
  stroke: #e6eeed;
  stroke-width: 16;
  opacity: 0.5;
}
#demo .rail-line {
  fill: none;
  stroke: #b8cbd0;
  stroke-width: 1.3;
  stroke-dasharray: 3 5;
}
#demo .orbit-rail circle {
  fill: #527c88;
  stroke: var(--bg);
  stroke-width: 3;
}
#demo .rail-pointer {
  fill: none;
  stroke: #527c88;
  stroke-width: 1.5;
}
#demo .performer-window {
  margin-left: 29px;
  mask-image: linear-gradient(transparent, black 17%, black 83%, transparent);
  overflow: hidden;
}
#demo .performer-track {
  width: calc(100% - 12px);
}
#demo .performer-row {
  transform: translateX(var(--curve, 0px));
  transition: transform 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}
#demo .performer-row button,
#demo .unavailable-performer {
  padding: 10px 14px;
  border-radius: 14px;
  color: #8b9390;
}
#demo .performer-row button {
  border-color: #d6e1e1;
  background: #f0f5f4;
  color: #426b78;
}
#demo .performer-row button[aria-current='true'] {
  background: white;
  border: 1px solid #8aadb7;
  box-shadow: 0 8px 24px #2d5a6b12;
  color: #244d5a;
}
#demo .performer-row button[aria-current='true']::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #508296;
  position: absolute;
  left: 5px;
  border-radius: 50%;
}
#demo .performer-row em {
  background: #e5efee;
  color: #426b78;
}
#demo .performer-row b {
  font-size: 12px;
}
#demo .performer-row small {
  font-size: 9px;
}
#demo .carousel-stage {
  border: 1px solid var(--bd);
  border-radius: 16px;
  box-shadow: 0 7px 28px #1b313504;
  background: white;
  min-width: 0;
}
#demo .direct-heading {
  padding-top: 12px;
}
#demo .demo-sequence {
  gap: 24px;
}
@media (max-width: 1000px) and (min-width: 641px) {
  #demo .workflow-carousel {
    grid-template-columns: 275px minmax(0, 1fr);
    gap: 20px;
  }
  #demo .performer-row b {
    font-size: 11px;
  }
  #demo .performer-row button,
  #demo .unavailable-performer {
    padding-left: 12px;
    padding-right: 9px;
  }
}
@media (max-width: 640px) {
  #demo .watch-step > .step-summary {
    margin-bottom: 16px;
  }
  #demo .workflow-carousel {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  #demo .carousel-menu {
    top: 0;
    padding-top: 12px;
    max-width: 370px;
    width: 100%;
    margin: auto;
  }
  #demo .performer-window {
    height: 272px;
  }
  #demo .performer-track {
    top: 102px;
  }
  #demo .orbit-rail {
    height: 272px;
  }
  #demo .carousel-stage {
    border: 1px solid var(--bd);
  }
  #demo .carousel-eyebrow {
    margin-bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #demo .performer-row {
    transition: none;
  }
}
#demo .orbit-shell > [data-catalog-prev],
#demo .orbit-shell > [data-catalog-next] {
  position: absolute;
  left: 79.9px;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #cddbdc;
  border-radius: 50%;
  background: var(--bg);
  color: #284f5d;
  font: 15px var(--font-body);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 7px #244d5a06;
}
#demo .orbit-shell > [data-catalog-prev] {
  top: 0;
}
#demo .orbit-shell > [data-catalog-next] {
  top: 100%;
}
#demo .workflow-carousel {
  --demo-accent: var(--pr);
  --demo-ink: var(--prd);
}
#demo .workflow-carousel[data-active-demo='1'] {
  --demo-accent: var(--pg);
  --demo-ink: var(--pgd);
}
#demo .workflow-carousel[data-active-demo='2'] {
  --demo-accent: var(--pb);
  --demo-ink: var(--pbd);
}
#demo .workflow-carousel[data-active-demo='3'] {
  --demo-accent: var(--py);
  --demo-ink: var(--pyd);
}
#demo .carousel-eyebrow {
  color: var(--t3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
}
#demo .rail-shadow {
  stroke: var(--bg2);
  stroke-width: 12;
  opacity: 0.8;
}
#demo .rail-line {
  stroke: var(--bd);
  stroke-width: 1.25;
  stroke-dasharray: none;
}
#demo .orbit-rail circle {
  fill: var(--demo-ink);
  stroke: var(--bg);
}
#demo .rail-pointer {
  stroke: var(--demo-accent);
  stroke-width: 1.5;
}
#demo .performer-row button,
#demo .unavailable-performer {
  color: var(--t2);
  border-radius: 14px;
}
#demo .performer-row small {
  color: var(--t3);
}
#demo .performer-row button {
  background: var(--sf);
  border: 1px solid var(--bd);
  color: var(--tx);
  box-shadow: none;
}
#demo .performer-row button[data-demo='0'] {
  --performer-accent: var(--pr);
  --performer-ink: var(--prd);
}
#demo .performer-row button[data-demo='1'] {
  --performer-accent: var(--pg);
  --performer-ink: var(--pgd);
}
#demo .performer-row button[data-demo='2'] {
  --performer-accent: var(--pb);
  --performer-ink: var(--pbd);
}
#demo .performer-row button[data-demo='3'] {
  --performer-accent: var(--py);
  --performer-ink: var(--pyd);
}
#demo .performer-row button[aria-current='true'] {
  background: var(--sf);
  color: var(--tx);
  border: 1px solid var(--bd);
  border-top: 2.25px solid var(--performer-accent);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.04);
}
#demo .performer-row button[aria-current='true']::before {
  background: var(--performer-ink);
}
#demo .performer-row em {
  background: var(--bg2);
  color: var(--t2);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
#demo .performer-row button[aria-current='true'] em {
  background: var(--performer-accent);
  color: var(--performer-ink);
}
#demo .performer-row button:hover {
  border-color: var(--hover-ring);
  box-shadow: var(--hover-shadow);
}
#demo .orbit-shell > [data-catalog-prev],
#demo .orbit-shell > [data-catalog-next] {
  background: var(--sf);
  border: 1px solid var(--bd);
  color: var(--t2);
  box-shadow: none;
}
#demo .orbit-shell > [data-catalog-prev]:hover,
#demo .orbit-shell > [data-catalog-next]:hover {
  border-color: var(--hd);
  color: var(--hd);
}
#demo .carousel-stage {
  border: 1px solid var(--bd);
  border-top: 2.25px solid var(--demo-accent);
  border-radius: 14px;
  background: var(--sf);
  box-shadow: none;
}
#demo .carousel-stage .use-case:hover {
  transform: none;
  box-shadow: none;
}
#demo .direct-heading h2 {
  font: var(--type-h3);
  letter-spacing: var(--tracking-h3);
  color: var(--tx);
}
#demo .direct-heading p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--demo-ink);
}
#demo .direct-heading small {
  font: var(--type-caption);
  color: var(--t2);
}
#demo .platform-step,
#demo .watch-step > .step-summary {
  border-radius: 14px;
  border-color: var(--bd);
  background: var(--sf);
}
#demo .watch-step .step-number,
#demo .step-number {
  background: var(--bg2);
  color: var(--t2);
}
#demo .fold-icon {
  color: var(--t3);
}
#demo .direct-heading {
  padding-bottom: 20px;
}
#demo .direct-heading .workflow-problem {
  font: var(--type-body);
  color: var(--t2);
  text-transform: none;
  letter-spacing: normal;
  margin: 14px 0 0;
  max-width: 68ch;
}
#demo .watch-step:not([open]) > .step-summary {
  margin-bottom: 0;
}
#demo .platform-body > .maestro-story-panel--mac {
  position: relative;
  padding-top: 44px;
}
#demo .platform-play.demo-play-control {
  top: 0;
  right: 6px;
}
#demo .platform-play[aria-pressed='true'] .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;
}
#demo .platform-play[aria-pressed='true'] .play-glyph::after {
  display: none;
}

#demo .demo-sequence {
  margin-top: 40px;
}

/* Give each workflow room within the narrower library stage. */
#demo .workflow-carousel {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 20px;
}
#demo .carousel-stage {
  container: workflow / inline-size;
}
#demo .carousel-stage .use-case > .wfb {
  padding: 24px;
}
#demo .direct-heading {
  padding: 8px 0 24px;
}
#demo .carousel-stage .home-g2-29,
#demo .carousel-stage .home-g2-33 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
#demo .carousel-stage .flow-step {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
}
#demo .carousel-stage .flow-step .agent {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  justify-self: stretch;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(100, 120, 130, 0.15);
  font-size: 13px;
  line-height: 1.4;
}
#demo .carousel-stage .demo-agent-icon {
  width: 26px;
  min-width: 26px;
}
#demo .carousel-stage .flow-step .act {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: break-word;
}
#demo .carousel-stage .flow-con {
  display: block;
  height: 12px;
  padding-left: 29px;
}
#demo .carousel-stage .flow-con::after {
  display: block;
  transform: none;
}
#demo .carousel-stage .home-div-34,
#demo .carousel-stage .home-div-38 {
  padding: 18px;
}
@container workflow (max-width: 780px) {
  #demo .carousel-stage .ah-stage,
  #demo .carousel-stage .sales-stage,
  #demo .carousel-stage .innovation-stage,
  #demo .carousel-stage .execution-stage {
    grid-template-columns: minmax(0, 1fr);
  }
  #demo .carousel-stage .doc-stage {
    min-height: 0;
  }
  #demo .carousel-stage .ah-bridge,
  #demo .carousel-stage .demo-transfer {
    height: 54px;
    min-height: 54px;
    transform: rotate(90deg);
  }
  #demo .carousel-stage .sales-form,
  #demo .carousel-stage .sales-email,
  #demo .carousel-stage .innovation-plan,
  #demo .carousel-stage .execution-plan {
    min-height: 0;
  }
  #demo .carousel-stage .innovation-sources {
    min-height: 430px;
  }
}
@container workflow (max-width: 520px) {
  #demo .carousel-stage .use-case > .wfb {
    padding: 18px;
  }
  #demo .carousel-stage .home-g2-29,
  #demo .carousel-stage .home-g2-33 {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1000px) and (min-width: 641px) {
  #demo .workflow-carousel {
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 18px;
  }
}
@media (max-width: 640px) {
  #demo .workflow-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

/* Compact cards, with shared row tracks for meaningful before/after pairs. */
#demo .carousel-stage .flow-step {
  gap: 6px;
  padding: 11px 13px;
  border-radius: 10px;
  align-content: start;
  box-shadow: none;
}
#demo .carousel-stage .flow-step .agent {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 7px;
  border: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.35;
}
#demo .carousel-stage .demo-agent-icon,
#demo .carousel-stage .demo-agent-icon .ri {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
}
#demo .carousel-stage .flow-step .act {
  font-size: 13px;
  line-height: 1.45;
}
#demo .carousel-stage .flow {
  gap: 4px;
  margin: 6px 0;
}
#demo .carousel-stage .flow-con {
  height: 6px;
  padding-left: 24px;
}
@container workflow (min-width: 521px) {
  #demo .carousel-stage .home-g2-29 {
    grid-template-rows: repeat(var(--comparison-rows), auto);
    column-gap: 16px;
    row-gap: 10px;
  }
  #demo .carousel-stage .home-div-30 {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span var(--comparison-rows);
    min-width: 0;
  }
  #demo .carousel-stage .home-div-30:first-child {
    grid-column: 1;
  }
  #demo .carousel-stage .home-div-30:last-child {
    grid-column: 2;
  }
  #demo .carousel-stage .home-div-31,
  #demo .carousel-stage .home-div-32 {
    margin-bottom: 0;
  }
  #demo .carousel-stage .flow {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2 / -1;
    margin: 0;
    gap: inherit;
    /* Cards cover the rail; it remains visible through each shared-row gap. */
    background: linear-gradient(var(--bd), var(--bd)) 24px 0 / 1.5px 100% no-repeat;
  }
  #demo .carousel-stage .flow-step {
    grid-row: var(--comparison-row);
  }
  #demo .carousel-stage .flow-con {
    display: none;
  }
}

/* Horizontal Performer orbit above the full-width workflow. */
#demo .workflow-carousel {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
#demo .carousel-menu {
  position: relative;
  top: auto;
  padding: 8px 0 0;
  max-width: none;
  width: 100%;
  min-width: 0;
  margin: 0;
}
#demo .carousel-eyebrow {
  padding: 0;
  margin: 0 0 14px;
  text-align: center;
}
#demo .orbit-shell {
  margin: 0 20px;
  height: 140px;
}
#demo .orbit-rail {
  width: 100%;
  height: 140px;
  top: 0;
}
#demo .performer-window {
  height: 120px;
  margin: 0 28px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  touch-action: pan-y;
}
#demo .performer-track {
  display: flex;
  width: max-content;
  top: 20px;
  left: calc(50% - 140px);
}
#demo .performer-row {
  flex: 0 0 280px;
  width: 280px;
  height: 68px;
  padding: 0 8px;
  transform: translateY(var(--curve, 0px));
}
#demo .performer-row button,
#demo .unavailable-performer {
  min-height: 62px;
  padding: 10px 14px;
}
#demo .orbit-shell > [data-catalog-prev],
#demo .orbit-shell > [data-catalog-next] {
  top: 40px;
  bottom: auto;
  width: 36px;
  height: 36px;
}
#demo .orbit-shell > [data-catalog-prev] {
  left: 0;
}
#demo .orbit-shell > [data-catalog-next] {
  left: 100%;
}
@media (max-width: 640px) {
  #demo .carousel-eyebrow {
    font-size: 10px;
  }
  #demo .orbit-shell {
    margin: 0 18px;
  }
  #demo .performer-window {
    margin: 0 12px;
  }
}

/* Symgora coverflow: a clear center card and receding catalog neighbors. */
#demo .orbit-shell {
  height: 220px;
  margin: 0 22px;
}
#demo .orbit-rail {
  display: none;
}
#demo .performer-window {
  height: 220px;
  margin: 0 20px;
  perspective: 1100px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
#demo .performer-track {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: none;
  transform-style: preserve-3d;
}
#demo .performer-row {
  position: absolute;
  left: calc(50% - 130px);
  top: 22px;
  width: 260px;
  height: 168px;
  padding: 0;
  transition: none;
  backface-visibility: hidden;
}
#demo .performer-row button,
#demo .unavailable-performer {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--bd);
  border-top: 3px solid var(--bg2);
  border-radius: 14px;
  background: var(--sf);
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.04);
}
#demo .performer-row button[aria-current='true'] {
  border-top: 3px solid var(--performer-accent);
  box-shadow: 0 12px 30px rgba(26, 26, 26, 0.08);
}
#demo .performer-row button[aria-current='true']::before {
  display: none;
}
#demo .performer-row small {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#demo .performer-row b {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--tx);
}
#demo .performer-row em {
  padding: 4px 8px;
}
#demo .orbit-shell > [data-catalog-prev],
#demo .orbit-shell > [data-catalog-next] {
  top: 106px;
  z-index: 120;
  width: 40px;
  height: 40px;
}
@media (max-width: 640px) {
  #demo .performer-row {
    width: 220px;
    left: calc(50% - 110px);
  }
  #demo .performer-row button,
  #demo .unavailable-performer {
    padding: 20px;
  }
  #demo .performer-row b {
    font-size: 15px;
  }
  #demo .performer-window {
    margin: 0;
  }
}

/* Step 02 is one enclosing surface, with a warm catalog band inside it. */
#demo .watch-step {
  border: 1px solid var(--bd);
  border-top: 2.25px solid var(--hd);
  border-radius: 14px;
  background: var(--sf);
  overflow: hidden;
}
#demo .watch-step > .step-summary {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
#demo .watch-step .workflow-carousel {
  gap: 0;
}
#demo .watch-step .carousel-menu {
  padding: 20px 12px 0;
  background: var(--bg);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  border-radius: 0;
}
#demo .watch-step .carousel-stage {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#demo .watch-step .carousel-stage .use-case {
  background: transparent;
}

/* Carry the blue section accent through setup, playback, and business impact. */
#demo .platform-step {
  border-top: 2.25px solid var(--hd);
}
#demo .demo-animation-progress {
  height: 2.25px;
  border-radius: 2px;
  background: var(--pb);
}
#demo .demo-animation-progress::before {
  background: var(--hd);
}

#demo .platform-intro p {
  font: var(--type-body);
  color: var(--t2);
  letter-spacing: normal;
  max-width: 68ch;
}

#demo .demo-sequence > details > .step-summary small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--hd);
}

#demo .demo-sequence > details > .step-summary b {
  font:
    500 20px 'Playfair Display',
    serif;
}

#demo .performer-row button[data-demo] small {
  color: var(--performer-ink);
}
