/* Motion lives independently of the base layout. Content is visible by default. */
:root {
  --enter: cubic-bezier(0.22, 1, 0.36, 1);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.hero-emphasis {
  color: #f5eeff;
  text-shadow: 0 2px 20px #8052bd25;
}
.hero-copy > p:first-child {
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
}
.hero-brand {
  transform-origin: 45% 50%;
}
.hero-content,
.product-frame {
  will-change: auto;
}
.motion-enabled .hero-brand {
  animation: brand-arrive 1.1s var(--enter) both;
  animation-play-state: var(--motion-state, running);
}
.motion-enabled .hero-copy {
  animation: copy-arrive 0.9s 0.18s var(--enter) both;
  animation-play-state: var(--motion-state, running);
}
@keyframes brand-arrive {
  from {
    opacity: 0;
    transform: translateY(45px) rotate(-4deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes copy-arrive {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ant-anchor {
  position: absolute;
  width: var(--size);
  height: auto;
  transition: transform 0.6s var(--enter);
}
.ant-anchor .floating-ant {
  position: relative;
  display: block;
  left: auto;
  top: auto;
  opacity: 0.7;
  will-change: auto;
}
.ant-anchor:nth-child(3n) .floating-ant {
  animation-name: wander-wide;
}
@keyframes wander-wide {
  from {
    transform: translate(-24px, 12px) rotate(-12deg);
  }
  to {
    transform: translate(36px, -35px) rotate(18deg);
  }
}
.reveal-ready {
  opacity: 0;
  transform: translateY(38px);
}
.reveal-ready.revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.85s var(--enter),
    transform 0.85s var(--enter);
  transition-delay: var(--reveal-delay, 0ms);
}
.employee-ribbon {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: -1.5rem auto 3rem;
}
.employee-ribbon span {
  font-size: 0.73rem;
  border: 1px solid #cbb8e2;
  padding: 0.65rem 1rem;
  border-radius: 100px;
  background: #f6f0ff85;
}
.employee-ribbon span:last-child {
  background: #29232f;
  color: #f5edff;
  border-color: #29232f;
}
.in-view .scout-art img {
  animation: scout-float 4s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
.in-view .small-star {
  animation: star-turn 12s linear infinite;
  animation-play-state: var(--motion-state, running);
}
.in-view .people-art .ant-one {
  animation: ant-chat 3s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
.in-view .people-art .ant-two {
  animation: ant-reply 3s 1s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
.in-view .conversation-dot {
  animation: hello-bob 3s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
.in-view .front-paper {
  animation: paper-float 4s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
@keyframes scout-float {
  from {
    transform: translateY(7px) rotate(-16deg);
  }
  to {
    transform: translateY(-9px) rotate(3deg);
  }
}
@keyframes star-turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ant-chat {
  from {
    transform: translateY(4px) rotate(-16deg);
  }
  to {
    transform: translateY(-7px) rotate(-7deg);
  }
}
@keyframes ant-reply {
  from {
    transform: translateY(-4px) rotate(15deg) scaleX(-1);
  }
  to {
    transform: translateY(7px) rotate(5deg) scaleX(-1);
  }
}
@keyframes hello-bob {
  from {
    transform: translateY(0) rotate(8deg);
  }
  to {
    transform: translateY(-8px) rotate(3deg);
  }
}
@keyframes paper-float {
  from {
    transform: translateY(3px) rotate(7deg);
  }
  to {
    transform: translateY(-5px) rotate(2deg);
  }
}
.rotating-headline {
  display: inline-block;
  min-height: 1.08em;
}
.closing-subline {
  color: #f5eeff;
}
.closing h2 {
  font-size: clamp(2.4rem, 6.3vw, 6.6rem);
}
.motion-enabled .rotating-headline::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.72em;
  background: currentColor;
  margin-left: 0.1em;
  animation: cursor-blink 0.9s steps(1) infinite;
  animation-play-state: var(--motion-state, running);
}
@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}
.motion-control {
  position: fixed;
  right: 1.5rem;
  bottom: 1.25rem;
  z-index: 20;
  background: #f5edffc9;
  backdrop-filter: blur(10px);
}
.motion-paused *,
.page-hidden *,
[data-ants]:not(.in-view) .floating-ant {
  animation-play-state: paused;
}
.motion-paused .reveal-ready {
  opacity: 1;
  transform: none;
  transition: none;
}
.motion-paused .ant-anchor {
  transition: none;
}
@media (max-width: 600px) {
  .hero {
    min-height: 880px;
  }
  .hero-copy > p:first-child {
    font-size: 2.55rem;
  }
  .hero-content {
    gap: 1.2rem;
  }
  .hero-description {
    font-size: 0.92rem;
  }
  .hero-bottom > .eyebrow {
    max-width: 140px;
  }
  .ant-anchor:nth-child(n + 15) {
    display: none;
  }
  .ant-anchor .floating-ant {
    display: block;
  }
  .employee-ribbon {
    gap: 0.4rem;
    margin: 0 0 2rem;
  }
  .employee-ribbon span {
    font-size: 0.65rem;
    padding: 0.55rem 0.75rem;
  }
  .features h2 {
    font-size: 2.3rem;
  }
  .closing h2 {
    font-size: 2.4rem;
  }
  .motion-control {
    right: 1rem;
    bottom: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-enabled .hero-brand,
  .motion-enabled .hero-copy,
  .in-view .scout-art img,
  .in-view .small-star,
  .in-view .people-art .ant-one,
  .in-view .people-art .ant-two,
  .in-view .conversation-dot,
  .in-view .front-paper,
  .motion-enabled .rotating-headline::after {
    animation: none;
    animation-play-state: var(--motion-state, running);
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
  .reveal-ready.revealed,
  .ant-anchor {
    transition: none;
  }
}

.motion-paused,
.page-hidden {
  --motion-state: paused;
}
.ant-anchor .floating-ant {
  animation-play-state: var(--motion-state, running);
}
[data-ants]:not(.in-view) {
  --motion-state: paused;
}
/* Pausing during the opening frame must never freeze the brand out of view. */
.motion-paused .hero-brand,
.motion-paused .hero-copy {
  animation: none;
  opacity: 1;
  transform: none;
}
@media (max-width: 600px) {
  .motion-control {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.55rem;
    padding: 0.35rem 0.55rem;
  }
}
/* A living opening: the rotating idea leads, the brand becomes atmosphere. */
.hero {
  min-height: 740px;
  background-color: #b394f9;
  isolation: isolate;
}
.hero-ghost {
  position: absolute;
  width: 125%;
  max-width: none;
  left: -12.5%;
  top: 50%;
  transform: translateY(-50%) rotate(-9deg);
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.hero-halo {
  position: absolute;
  width: 65vw;
  height: 65vw;
  max-width: 950px;
  max-height: 950px;
  left: 17%;
  top: 0;
  background: radial-gradient(ellipse, #f8dfff80, transparent 65%);
  pointer-events: none;
  animation: halo-drift 14s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
  z-index: -1;
}
@keyframes halo-drift {
  from {
    transform: translate(-12%, -15%) scale(0.85);
  }
  to {
    transform: translate(18%, 15%) scale(1.15);
  }
}
.hero-content.kinetic-hero {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  max-width: 1300px;
}
.kinetic-hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 7rem);
  line-height: 1.07;
  font-weight: 530;
  letter-spacing: -0.07em;
  width: 100%;
}
.kinetic-hero .rotating-headline {
  display: block;
  min-height: 1.15em;
  white-space: nowrap;
}
.hero-steady {
  display: block;
  color: #faf5ff;
}
.kinetic-hero > p {
  margin: 2rem 0;
  font-size: clamp(0.9rem, 1.35vw, 1.2rem);
  letter-spacing: -0.025em;
}
.kinetic-hero .pill {
  padding: 1rem 1.5rem;
}
.kinetic-hero {
  animation: copy-arrive 0.85s var(--enter) both;
  animation-play-state: var(--motion-state, running);
}
.hero-bottom > .eyebrow {
  visibility: hidden;
}
.workspace {
  padding-bottom: 3rem;
}
.workspace .section-intro {
  margin-bottom: 0;
}
.employee-universe {
  position: relative;
  isolation: isolate;
  max-width: 1050px;
  height: 620px;
  margin: 0 auto;
  overflow: hidden;
}
.universe-grid {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, #b08ae850, transparent 66%);
}
.orbit-track {
  position: absolute;
  left: 10%;
  top: 23%;
  width: 80%;
  height: 50%;
  border: 1px solid #9873ca40;
  border-radius: 50%;
  transform: rotate(-18deg);
}
.track-two {
  width: 65%;
  height: 65%;
  left: 18%;
  top: 17%;
  transform: rotate(30deg);
}
.business-core {
  position: absolute;
  width: 145px;
  height: 145px;
  left: calc(50% - 72px);
  top: calc(50% - 72px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #faf5ff, #b693e7 60%, #8060bd);
  box-shadow:
    inset 0 0 18px #fff8,
    0 18px 50px #69439535,
    0 0 100px #c798ed70;
  display: grid;
  place-items: center;
}
.business-core svg {
  width: 78px;
  height: 60px;
  color: #543681;
}
.employee-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.employee-node > span {
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  color: #655075;
  background: #faf7ff80;
  border: 1px solid #ffffff70;
  padding: 0.45rem 0.85rem;
  border-radius: 30px;
}
.research-node {
  left: 15%;
  top: 17%;
}
.marketing-node {
  right: 12%;
  top: 23%;
}
.operations-node {
  left: 40%;
  bottom: 8%;
}
.employee-gem {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}
.employee-universe .employee-gem img {
  width: 95px;
  height: auto;
}
.bloom {
  display: block;
  width: 73px;
  height: 73px;
  border-radius: 35% 65% 32% 68% / 60% 35% 65% 40%;
  background: radial-gradient(circle at 25% 25%, #fff2ee, #ec91bf 45%, #ad4485);
  box-shadow:
    inset -10px -10px 18px #92366755,
    0 14px 30px #b3518c30;
  transform: rotate(35deg);
}
.cube {
  display: block;
  width: 68px;
  height: 68px;
  border-radius: 19px;
  transform: rotate(-22deg);
  background: linear-gradient(135deg, #f4ffed, #a9cfb4 40%, #4e977f);
  box-shadow:
    inset 4px 4px 10px #fff9,
    inset -8px -8px 14px #31685450,
    0 16px 35px #37634e30;
}
.orbit-spark {
  position: absolute;
  left: 49%;
  top: 49%;
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 14px #a074d4;
}
.in-view .employee-gem {
  animation: gem-float 4s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
.in-view .marketing-node .employee-gem {
  animation-delay: -1.5s;
}
.in-view .operations-node .employee-gem {
  animation-delay: -3s;
}
.in-view .orbit-spark {
  animation: orbit-travel 14s linear infinite;
  animation-play-state: var(--motion-state, running);
}
.in-view .spark-two {
  animation-delay: -7s;
  animation-duration: 20s;
}
@keyframes gem-float {
  from {
    transform: translateY(8px) rotate(-6deg);
  }
  to {
    transform: translateY(-12px) rotate(7deg);
  }
}
@keyframes orbit-travel {
  from {
    transform: rotate(0deg) translateX(250px) scale(0.6);
  }
  50% {
    transform: rotate(180deg) translateX(250px) scale(1.1);
  }
  to {
    transform: rotate(360deg) translateX(250px) scale(0.6);
  }
}
.motion-paused .kinetic-hero {
  animation: none;
  opacity: 1;
  transform: none;
}
@media (max-width: 600px) {
  .hero {
    min-height: 680px;
    height: 100svh;
    padding: 6rem 5%;
  }
  .hero-content.kinetic-hero {
    margin: auto 0;
  }
  .kinetic-hero h1 {
    font-size: clamp(1.8rem, 7.8vw, 3rem);
    letter-spacing: -0.055em;
  }
  .kinetic-hero > p {
    max-width: 260px;
    line-height: 1.5;
    margin: 1.5rem 0;
  }
  .hero-ghost {
    width: 180%;
    left: -40%;
    top: 45%;
    opacity: 0.1;
  }
  .hero-halo {
    width: 140vw;
    height: 140vw;
    left: -20%;
    top: 15%;
  }
  .employee-universe {
    height: 440px;
    margin: 0 -3%;
  }
  .business-core {
    width: 100px;
    height: 100px;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
  }
  .business-core svg {
    width: 55px;
    height: 45px;
  }
  .employee-gem {
    width: 75px;
    height: 75px;
  }
  .employee-universe .employee-gem img {
    width: 70px;
  }
  .bloom,
  .cube {
    width: 50px;
    height: 50px;
  }
  .research-node {
    left: 4%;
    top: 14%;
  }
  .marketing-node {
    right: 3%;
    top: 25%;
  }
  .operations-node {
    left: 36%;
    bottom: 5%;
  }
  .employee-node > span {
    font-size: 0.64rem;
  }
  .orbit-spark {
    display: none;
  }
  .workspace .section-intro h2 {
    font-size: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-halo,
  .kinetic-hero,
  .in-view .employee-gem,
  .in-view .orbit-spark {
    animation: none;
  }
  .hero-content.kinetic-hero {
    transform: none;
  }
}
/* Reference treatment: oversized pale type drifting behind a quiet foreground. */
.hero-ghost {
  width: 220%;
  max-width: none;
  left: 0;
  top: 50%;
  opacity: 0.78;
  mix-blend-mode: normal;
  filter: invert(1) blur(11px);
  transform: translate(-22%, -50%);
  animation: wordmark-pan 28s ease-in-out infinite alternate;
  animation-play-state: var(--motion-state, running);
}
@keyframes wordmark-pan {
  from {
    transform: translate(-5%, -50%);
  }
  to {
    transform: translate(-48%, -50%);
  }
}
.hero-halo {
  display: none;
}
.kinetic-hero h1 {
  font-size: clamp(2rem, 4.4vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1.2;
}
.kinetic-hero .hero-steady {
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.4rem);
  letter-spacing: -0.025em;
  margin-top: 1rem;
  font-weight: 450;
}
.kinetic-hero > p {
  display: none;
}
.kinetic-hero .pill {
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .hero-ghost {
    width: 440%;
    opacity: 0.72;
    filter: invert(1) blur(7px);
  }
  .kinetic-hero h1 {
    font-size: clamp(1.65rem, 7.1vw, 2.6rem);
  }
  .kinetic-hero .hero-steady {
    font-size: 1rem;
    margin-top: 0.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ghost {
    animation: none;
  }
}
.hero-ghost {
  height: auto;
}
/* Keep the complete brand in frame throughout its gentle drift. */
.hero-ghost {
  width: 92%;
  left: 4%;
  height: auto;
  filter: invert(1) blur(5px);
  transform: translateY(-50%);
  animation-name: wordmark-settle;
}
@keyframes wordmark-settle {
  from {
    transform: translate(-1%, -52%);
  }
  to {
    transform: translate(1%, -48%);
  }
}
.workspace {
  background: #f5f1f9;
  padding: 6rem 6% 7rem;
}
.business-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1160px;
  margin: 0 auto 3rem;
  gap: 2rem;
}
.business-intro h2 {
  font-size: clamp(3.2rem, 6.3vw, 6rem);
}
.business-intro > p {
  font-size: clamp(1rem, 1.9vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #84728e;
  margin-bottom: 0.3rem;
}
.business-demo {
  max-width: 1160px;
  margin: auto;
  background: #fffdfd;
  border: 1px solid #e8deed;
  border-radius: 1.5rem;
  padding: 1.8rem 2.5rem 1rem;
  box-shadow: 0 25px 70px -45px #4c246855;
  overflow: hidden;
}
.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.63rem;
  color: #9b8da3;
}
.demo-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5a4868;
  font-size: 0.8rem;
  font-weight: 550;
}
.demo-brand svg {
  width: 26px;
  height: 22px;
}
.direction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto 0;
}
.you-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #28212f;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 0.65rem;
}
.direction p {
  font-size: clamp(1.15rem, 2.2vw, 1.9rem);
  letter-spacing: -0.045em;
  font-weight: 480;
}
.work-stream {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work-stream span {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1px;
  background: #dacae5;
}
.work-stream i {
  width: 5px;
  height: 5px;
  background: #9965d3;
  border-radius: 50%;
  position: relative;
  animation: work-flow 2.5s ease-in-out infinite;
  animation-play-state: var(--motion-state, running);
}
@keyframes work-flow {
  from {
    transform: translateY(-22px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateY(24px);
    opacity: 0;
  }
}
.deliveries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.delivery {
  background: #f6f3fa;
  border: 1px solid #ece6f1;
  border-radius: 1rem;
  padding: 1.25rem;
}
.employee-label {
  font-size: 0.7rem;
  color: #786389;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.employee-dot {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-10deg);
}
.research-dot {
  background: #a583dc;
}
.marketing-dot {
  background: #e8a1b5;
}
.operations-dot {
  background: #88b39d;
}
.document-art {
  height: 145px;
  width: 130px;
  margin: 1.5rem auto;
  box-shadow: 0 8px 16px #34254412;
  border-radius: 5px;
  transform: rotate(-5deg);
  background: white;
  border: 1px solid #e5dcec;
  position: relative;
}
.research-doc {
  padding: 25px 15px;
  display: flex;
  align-items: end;
  gap: 8px;
}
.research-doc i {
  background: #cdb4ed;
  width: 20px;
  border-radius: 3px 3px 0 0;
  height: 35%;
}
.research-doc i:nth-child(2) {
  height: 65%;
}
.research-doc i:nth-child(3) {
  height: 50%;
}
.research-doc i:nth-child(4) {
  height: 85%;
  background: #9970cd;
}
.marketing-doc {
  transform: rotate(5deg);
  display: grid;
  place-items: center;
  background: #ebacb9;
}
.marketing-doc span {
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #6b2c43;
  white-space: pre-line;
}
.operations-doc {
  transform: rotate(-3deg);
  padding: 25px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.operations-doc i {
  font-size: 0.7rem;
  font-style: normal;
  color: #4f9877;
  display: flex;
  align-items: center;
  gap: 8px;
}
.operations-doc i:after {
  content: "";
  display: block;
  width: 65px;
  height: 4px;
  border-radius: 2px;
  background: #d7e8dd;
}
.delivery h3 {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.045em;
}
.delivery p {
  font-size: 0.73rem;
  line-height: 1.5;
  color: #8e7e99;
  margin-top: 0.5rem;
  max-width: 25ch;
}
.review-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: #7d6b8c;
  margin: 1.5rem 0 2rem;
}
.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b59cc9;
}
.scenario-switch {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid #eee8f1;
}
.scenario-switch button {
  border: 0;
  background: transparent;
  color: #917c9e;
  cursor: pointer;
  border-radius: 30px;
  padding: 0.75rem 1.1rem;
  font-size: 0.73rem;
}
.scenario-switch button[aria-pressed="true"] {
  background: #2c2333;
  color: #faf5ff;
}
.scenario-switch button:hover {
  box-shadow: inset 0 0 0 1px #baa4ca;
}
@media (max-width: 600px) {
  .hero-ghost {
    width: 96%;
    left: 2%;
    filter: invert(1) blur(3px);
  }
  .workspace {
    padding: 4rem 5%;
  }
  .business-intro {
    gap: 1rem;
    align-items: center;
  }
  .business-intro h2 {
    font-size: 3.1rem;
  }
  .business-intro > p {
    font-size: 0.85rem;
  }
  .business-demo {
    padding: 1rem;
    border-radius: 1rem;
  }
  .direction {
    margin-top: 2rem;
    gap: 0.7rem;
  }
  .direction p {
    font-size: 1.1rem;
  }
  .you-avatar {
    width: 32px;
    height: 32px;
  }
  .deliveries {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .delivery {
    display: grid;
    grid-template-columns: 1fr 95px;
    column-gap: 0.5rem;
    padding: 1rem;
  }
  .employee-label {
    grid-column: 1;
  }
  .document-art {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 76px;
    height: 92px;
    margin: 0;
    align-self: center;
  }
  .delivery h3 {
    font-size: 1.1rem;
    margin-top: 0.6rem;
  }
  .delivery p {
    font-size: 0.7rem;
  }
  .research-doc {
    padding: 12px 8px;
    gap: 4px;
  }
  .marketing-doc span {
    font-size: 0.64rem;
  }
  .operations-doc {
    padding: 14px 8px;
  }
  .operations-doc i:after {
    width: 35px;
  }
  .scenario-switch {
    gap: 0;
    flex-wrap: wrap;
  }
  .scenario-switch button {
    font-size: 0.63rem;
    padding: 0.65rem 0.6rem;
  }
  .demo-topline {
    font-size: 0.56rem;
  }
  .demo-brand {
    font-size: 0.7rem;
  }
  .review-line {
    margin-bottom: 1.2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-stream i {
    animation: none;
  }
}
.business-demo:not(.in-view) .work-stream i {
  animation-play-state: paused;
}
/* Each business example has its own deliverables and visual composition. */
.business-demo {
  background: #ebe4f2;
  border: 0;
  padding: 1.8rem 2rem 1rem;
  box-shadow: none;
}
.demo-topline {
  padding: 0 0.25rem;
}
.scenario-switch {
  border: 0;
  padding: 0;
  justify-content: flex-start;
  gap: 0.3rem;
  margin: 1.5rem 0 0;
}
.scenario-switch button {
  background: #ffffff50;
  color: #71607d;
  padding: 0.8rem 1.2rem;
  font-size: 0.78rem;
}
.direction {
  justify-content: flex-start;
  margin: 2rem 0;
  gap: 0.8rem;
}
.direction p {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}
.scenario-stage {
  min-height: 375px;
}
.scene-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  min-height: 375px;
}
.artifact-label {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  font-weight: 550;
  display: block;
  opacity: 0.65;
}
.artifact-sheet {
  background: #fffdf9;
  padding: 2rem;
  border-radius: 0.7rem;
}
.scene-board h3 {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 530;
  margin: 1.2rem 0;
}
.artifact-footer {
  font-size: 0.59rem;
  color: #968599;
  display: block;
  margin-top: 1.4rem;
}
.brand-concept {
  background: #57372c;
  color: #f4d8a3;
  border-radius: 0.7rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.coffee-brand {
  font-size: clamp(3.5rem, 6.8vw, 6rem);
  font-family: Georgia, serif;
  font-style: italic;
  letter-spacing: -0.07em;
  line-height: 0.8;
  margin: 1.4rem 0;
}
.coffee-brand > span {
  font-family: Colony, sans-serif;
  font-style: normal;
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.17em;
  margin-top: 1.5rem;
  line-height: 1.4;
}
.brand-swatches {
  display: flex;
  gap: 0.5rem;
}
.brand-swatches i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f4d8a3;
  border: 1px solid #f4d8a366;
}
.brand-swatches i:nth-child(2) {
  background: #bb704e;
}
.brand-swatches i:nth-child(3) {
  background: #57372c;
}
.launch-plan ol {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.launch-plan li {
  display: flex;
  gap: 0.9rem;
  padding: 0.8rem 0;
  border-top: 1px solid #e9e2df;
  font-size: 0.78rem;
}
.launch-plan li b {
  font-weight: 400;
  color: #b8a6b5;
  font-size: 0.65rem;
}
.launch-plan small,
.prospect-row small,
.agenda-row small {
  display: block;
  font-size: 0.64rem;
  color: #9c899b;
  margin-top: 0.35rem;
}
.prospect-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee7eb;
  font-size: 0.73rem;
}
.prospect-sheet .prospect-row > b {
  background: #e3d7ef;
  color: #806498;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}
.prospect-row > em {
  font-style: normal;
  margin-left: auto;
  font-size: 0.55rem;
  color: #698b70;
  background: #eaf0e7;
  padding: 0.35rem;
  border-radius: 4px;
}
.outreach-sheet {
  background: #e0e8ed;
  border-radius: 0.7rem;
  padding: 2rem;
  color: #314b5a;
}
.mail-subject {
  border-bottom: 1px solid #bbcdd5;
  margin-top: 1.5rem;
  padding-bottom: 0.7rem;
}
.mail-subject > span {
  font-size: 0.66rem;
  opacity: 0.7;
}
.outreach-sheet > p {
  font-size: 0.77rem;
  line-height: 1.6;
  margin: 1rem 0;
  max-width: 35ch;
}
.draft-tag {
  display: inline-block;
  font-size: 0.59rem;
  border: 1px solid #b2c6cf;
  border-radius: 20px;
  padding: 0.45rem 0.6rem;
  margin-top: 0.5rem;
}
.agenda-row {
  display: flex;
  gap: 1rem;
  border-top: 1px solid #e8e1e5;
  padding: 1.2rem 0;
  font-size: 0.74rem;
}
.agenda-row time {
  font-size: 0.67rem;
  color: #a18ca7;
}
.day-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.decision-note {
  background: #dfd7eb;
  border-radius: 0.7rem;
  padding: 1.6rem 2rem;
  flex: 1;
}
.decision-note h3 {
  font-size: 1.7rem;
}
.quote-compare {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.63rem;
  color: #8b739b;
}
.decision-note .quote-compare b {
  display: block;
  font-weight: 450;
  color: #4b355c;
  margin-top: 0.4rem;
  font-size: 0.82rem;
}
.done-note {
  background: #e0e9de;
  padding: 1.5rem;
  border-radius: 0.7rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}
.done-note h3 {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}
.done-note p {
  font-size: 0.7rem;
  line-height: 1.6;
  color: #748870;
}
.tick-circle {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #acc1a6;
  color: #74966b;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.7rem;
}
.review-line {
  margin: 1.5rem 0 0.7rem;
}
@media (max-width: 700px) {
  .business-demo {
    padding: 1rem;
  }
  .scene-board {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .scenario-stage {
    min-height: 0;
  }
  .brand-concept,
  .artifact-sheet,
  .outreach-sheet {
    padding: 1.5rem;
  }
  .brand-concept {
    min-height: 300px;
  }
  .coffee-brand {
    font-size: 4.6rem;
  }
  .scene-board h3 {
    font-size: 1.9rem;
  }
  .scenario-switch {
    gap: 0.3rem;
  }
  .scenario-switch button {
    font-size: 0.64rem;
    padding: 0.65rem 0.7rem;
  }
  .direction {
    margin: 1.5rem 0;
  }
  .direction p {
    font-size: 1.07rem;
  }
  .prospect-row {
    gap: 0.5rem;
  }
  .prospect-row > em {
    font-size: 0.5rem;
  }
  .decision-note {
    padding: 1.5rem;
  }
  .done-note h3 {
    font-size: 1rem;
  }
}
