:root {
  --paper: #f5f4ef;
  --ink: #e65e45;
  --shadow: 0 24px 56px rgba(108, 54, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: #1f1a17;
  font-family: "Helvetica Neue", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}

button {
  font: inherit;
}

.shell {
  min-height: 100dvh;
  padding: 18px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.viewport {
  position: relative;
  width: min(100%, calc((100dvh - 72px) * 1.6));
  max-width: 1440px;
}

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1440 / 900;
  overflow: hidden;
  background: var(--paper);
  container-type: inline-size;
  touch-action: pan-y pinch-zoom;
}

.frameImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 220ms ease;
}

.stage[data-switching="true"] .frameImage {
  opacity: 0.82;
}

.firstTitleOverlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.firstTitleOverlay[hidden] {
  display: none;
}

.secondTitleOverlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.secondTitleOverlay[hidden] {
  display: none;
}

.firstWavesOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.firstWavesOverlay[hidden] {
  display: none;
}

.concentricWavesCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.firstTextOverlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.firstTextOverlay[hidden] {
  display: none;
}

.firstTextOverlaySvg {
  display: block;
  width: 100%;
  height: 100%;
}

.originalTitleProximitySvg {
  display: block;
  width: 100%;
  height: 100%;
}

.secondTiltOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  perspective: 800px;
  pointer-events: none;
}

.secondTiltOverlay[hidden] {
  display: none;
}

.tilted-card-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tilted-card-target {
  cursor: pointer;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilted-card-hit-area {
  fill: transparent;
  pointer-events: all;
}

.tilted-card-cover {
  pointer-events: none;
}

.thirdFolderOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.thirdFolderOverlay[hidden] {
  display: none;
}

.folder-popout-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.folder-popout-cover-layer {
  pointer-events: none;
}

.folder-popout-cover {
  pointer-events: none;
}

.folder-popout-card {
  cursor: grab;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

.thirdFolderOverlay [data-folder-card="folder"] {
  cursor: pointer;
}

.folder-popout-trigger-hit {
  cursor: pointer;
  pointer-events: all;
}

.folder-popout-card.is-dragging {
  cursor: grabbing;
}

.mechanismTiltOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.mechanismTiltOverlay[hidden] {
  display: none;
}

.mechanismExplainOverlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.mechanismExplainOverlay[hidden] {
  display: none;
}

.mechanismExplainHint {
  position: absolute;
  left: 50%;
  bottom: 3.4%;
  transform: translateX(-50%);
  padding: 0.48cqw 1.2cqw;
  border: 0.16cqw solid rgba(230, 94, 69, 0.55);
  border-radius: 999px;
  color: rgba(230, 94, 69, 0.95);
  background: rgba(245, 244, 239, 0.9);
  font-size: 1.24cqw;
  letter-spacing: 0.08em;
  opacity: 0.92;
  transition: opacity 220ms ease, transform 220ms ease;
  animation: mechanismHintFloat 2.2s ease-in-out infinite;
}

.mechanismExplainOverlay.is-open .mechanismExplainHint {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  animation: none;
}

.mechanismExplainPanel {
  position: absolute;
  left: 5.8%;
  right: 5.8%;
  bottom: 4.2%;
  max-height: 43%;
  overflow: auto;
  pointer-events: auto;
  border: 0.22cqw solid rgba(230, 94, 69, 0.34);
  border-radius: 2cqw;
  background:
    linear-gradient(180deg, rgba(245, 244, 239, 0.97), rgba(245, 244, 239, 0.92)),
    rgba(245, 244, 239, 0.95);
  box-shadow: 0 1.4cqw 2.8cqw rgba(104, 63, 36, 0.12);
  transform: translateY(calc(100% + 2cqw));
  opacity: 0;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 320ms ease;
}

.mechanismExplainOverlay.is-open .mechanismExplainPanel {
  transform: translateY(0);
  opacity: 1;
}

.mechanismExplainHeader {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 1.2cqw 1.5cqw 1.04cqw;
  background: rgba(245, 244, 239, 0.97);
  border-bottom: 0.16cqw solid rgba(230, 94, 69, 0.16);
}

.mechanismExplainHeader h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.74cqw;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.mechanismExplainHeader p {
  margin: 0.34cqw 0 0;
  color: rgba(92, 53, 30, 0.86);
  font-size: 1.08cqw;
  line-height: 1.5;
}

.mechanismExplainTrack {
  height: 0.34cqw;
  margin: 0 1.5cqw;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(230, 94, 69, 0) 0%,
    rgba(230, 94, 69, 0.5) 20%,
    rgba(230, 94, 69, 0.15) 52%,
    rgba(230, 94, 69, 0.5) 80%,
    rgba(230, 94, 69, 0) 100%
  );
  background-size: 200% 100%;
  animation: mechanismTrackFlow 3.8s linear infinite;
}

.mechanismExplainBody {
  padding: 0.88cqw 1.5cqw 1.42cqw;
  display: grid;
  gap: 1cqw;
}

.mechanismExplainItem {
  position: relative;
  padding: 0.86cqw 1.1cqw 0.92cqw 1.34cqw;
  border: 0.14cqw solid rgba(230, 94, 69, 0.22);
  border-radius: 1.2cqw;
  background: rgba(255, 255, 255, 0.3);
}

.mechanismExplainItem::before {
  content: "";
  position: absolute;
  left: 0.72cqw;
  top: 1.18cqw;
  width: 0.34cqw;
  height: 0.34cqw;
  border-radius: 50%;
  background: rgba(230, 94, 69, 0.9);
  box-shadow: 0 0 0 0.32cqw rgba(230, 94, 69, 0.14);
}

.mechanismExplainItem h4 {
  margin: 0;
  color: rgba(230, 94, 69, 0.95);
  font-size: 1.14cqw;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.mechanismExplainItem p {
  margin: 0.34cqw 0 0;
  color: rgba(86, 52, 34, 0.9);
  font-size: 1.02cqw;
  line-height: 1.56;
}

@keyframes mechanismHintFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-0.38cqw);
  }
}

@keyframes mechanismTrackFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.mechanism-tilt-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  perspective: 900px;
  transition: opacity 180ms ease;
}

.mechanism-tilt-cover,
.mechanism-tilt-route,
.mechanism-flow-pulse {
  pointer-events: none;
}

.mechanism-tilt-route {
  will-change: transform, stroke-dashoffset;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mechanism-flow-pulse {
  filter: drop-shadow(0 0 10px rgba(230, 94, 69, 0.36));
  transform-box: fill-box;
  transform-origin: center;
}

.mechanism-tilt-card {
  cursor: pointer;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: opacity, transform;
}

.mechanism-tilt-card.is-hovered {
  filter: drop-shadow(0 22px 18px rgba(86, 56, 31, 0.18));
}

.mechanism-tilt-card.is-active-step:not(.is-hovered) {
  filter: drop-shadow(0 14px 14px rgba(230, 94, 69, 0.16));
}

.bondiLanyardOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.bondiLanyardOverlay[hidden] {
  display: none;
}

.bondiTitleOverlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.bondiTitleOverlay[hidden] {
  display: none;
}

.bondiCaseOverlay {
  position: absolute;
  right: 3.8%;
  bottom: 5.4%;
  width: 31%;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 320ms ease;
}

.bondiCaseOverlay[hidden] {
  display: none;
}

.bondiCaseOverlay.is-active {
  opacity: 1;
  transform: translateY(0);
}

.bondiCasePanel {
  pointer-events: auto;
}

.bondiCaseHeader {
  margin-bottom: 0.72cqw;
  padding: 0.8cqw 1cqw 0.72cqw;
  border: 0.15cqw solid rgba(230, 94, 69, 0.28);
  border-radius: 1cqw;
  background: rgba(245, 244, 239, 0.88);
  box-shadow: 0 0.8cqw 1.4cqw rgba(110, 64, 36, 0.08);
}

.bondiCaseTag {
  display: inline-block;
  margin-bottom: 0.36cqw;
  padding: 0.16cqw 0.58cqw;
  border-radius: 999px;
  border: 0.1cqw solid rgba(230, 94, 69, 0.42);
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.72cqw;
  letter-spacing: 0.06em;
  background: rgba(245, 244, 239, 0.88);
}

.bondiCaseHeader h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08cqw;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.bondiCaseHeader p {
  margin: 0.24cqw 0 0;
  color: rgba(99, 59, 35, 0.86);
  font-size: 0.88cqw;
  line-height: 1.45;
}

.bondiCaseView {
  transition: opacity 220ms ease, transform 240ms ease;
}

.bondiCaseOverlay.is-expanded .bondiCaseView--brief {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.bondiCaseOverlay:not(.is-expanded) .bondiCaseView--more {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.bondiCaseGrid {
  display: grid;
  gap: 0.62cqw;
}

.bondiCaseItem {
  position: relative;
  padding: 0.78cqw 0.92cqw 0.82cqw 1.12cqw;
  border: 0.14cqw solid rgba(230, 94, 69, 0.23);
  border-radius: 0.86cqw;
  background: rgba(245, 244, 239, 0.84);
  box-shadow: 0 0.62cqw 1.2cqw rgba(111, 66, 39, 0.08);
  transform: translateY(8px);
  opacity: 0;
}

.bondiCaseOverlay.is-active .bondiCaseItem {
  animation: bondiCaseItemIn 480ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.bondiCaseOverlay.is-active .bondiCaseItem:nth-child(2) {
  animation-delay: 90ms;
}

.bondiCaseOverlay.is-active .bondiCaseItem:nth-child(3) {
  animation-delay: 180ms;
}

.bondiCaseItem::before {
  content: "";
  position: absolute;
  left: 0.56cqw;
  top: 0.98cqw;
  width: 0.24cqw;
  height: 0.24cqw;
  border-radius: 50%;
  background: rgba(230, 94, 69, 0.92);
  box-shadow: 0 0 0 0.24cqw rgba(230, 94, 69, 0.13);
}

.bondiCaseItem h4 {
  margin: 0;
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.94cqw;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bondiCaseItem p {
  margin: 0.2cqw 0 0;
  color: rgba(88, 53, 34, 0.9);
  font-size: 0.82cqw;
  line-height: 1.46;
}

.bondiCaseAction {
  margin-top: 0.62cqw;
  width: 100%;
  border: 0.14cqw solid rgba(230, 94, 69, 0.34);
  border-radius: 999px;
  padding: 0.42cqw 0.8cqw;
  background: rgba(245, 244, 239, 0.92);
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.82cqw;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.bondiCaseAction:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 94, 69, 0.75);
  background: rgba(245, 244, 239, 0.98);
}

.bondiCaseAction--ghost {
  border-style: dashed;
}

@keyframes bondiCaseItemIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bondi-lanyard-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bondi-lanyard-cover,
.bondi-lanyard-pin,
.bondi-lanyard-rope {
  pointer-events: none;
}

.bondi-lanyard-rope {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  will-change: d, opacity;
}

.bondi-lanyard-rope,
.bondi-lanyard-pin {
  display: none;
}

.bondi-lanyard-card {
  cursor: grab;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

.bondi-lanyard-card.is-dragging {
  cursor: grabbing;
}

.serviceLanyardOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.serviceLanyardOverlay[hidden] {
  display: none;
}

.service-lanyard-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.service-lanyard-cover,
.service-lanyard-strap,
.service-lanyard-clip {
  pointer-events: none;
}

.service-lanyard-card {
  cursor: grab;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

.service-lanyard-card.is-dragging {
  cursor: grabbing;
}

.service-lanyard-card.is-hovered:not(.is-dragging) {
  filter: drop-shadow(0 22px 24px rgba(91, 56, 36, 0.14));
}

.frameSevenBounceOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.frameSevenBounceOverlay[hidden] {
  display: none;
}

.frame7-bounce-root {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.frame7-bounce-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: opacity 180ms ease;
}

.frame7-bounce-cover,
.frame7-bounce-line {
  pointer-events: none;
}

.frame7-bounce-card {
  cursor: pointer;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

.frame7-bounce-card.is-hovered {
  filter: drop-shadow(0 18px 18px rgba(81, 45, 24, 0.16));
}

.frame7-story-trigger {
  position: absolute;
  right: 3.4%;
  bottom: 4.2%;
  z-index: 5;
  pointer-events: auto;
  border: 0.16cqw solid rgba(230, 94, 69, 0.5);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.95);
  color: rgba(230, 94, 69, 0.95);
  padding: 0.4cqw 1.14cqw;
  font-size: 0.96cqw;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 0.6cqw 1.1cqw rgba(103, 58, 33, 0.11);
}

.frame7-story-modal {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.frame7-story-modal[hidden] {
  display: none;
}

.frame7-story-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(38, 22, 16, 0.22);
  pointer-events: auto;
}

.frame7-story-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(72%, 1080px);
  max-height: 82%;
  border-radius: 1.3cqw;
  border: 0.16cqw solid rgba(230, 94, 69, 0.28);
  background: rgba(245, 244, 239, 0.96);
  box-shadow: 0 1.3cqw 2.2cqw rgba(88, 52, 33, 0.2);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.frame7-story-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8cqw 1cqw;
  border-bottom: 0.14cqw solid rgba(230, 94, 69, 0.2);
}

.frame7-story-panel-header h4 {
  margin: 0;
  color: rgba(230, 94, 69, 0.96);
  font-size: 1.05cqw;
  letter-spacing: 0.03em;
}

.frame7-story-close-btn {
  border: 0.12cqw solid rgba(230, 94, 69, 0.42);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.95);
  color: rgba(230, 94, 69, 0.95);
  padding: 0.26cqw 0.8cqw;
  font-size: 0.78cqw;
  cursor: pointer;
}

.frame7-story-scroll {
  padding: 1cqw;
  overflow-y: auto;
  scrollbar-width: thin;
  scroll-snap-type: y mandatory;
}

.frame7-story-hint {
  margin: 0 auto 1cqw;
  width: fit-content;
  padding: 0.26cqw 0.84cqw;
  border-radius: 999px;
  border: 0.12cqw solid rgba(230, 94, 69, 0.42);
  color: rgba(230, 94, 69, 0.95);
  background: rgba(245, 244, 239, 0.95);
  font-size: 0.78cqw;
}

.frame7-story-item {
  margin: 0 auto 0.9cqw;
  width: min(92%, 980px);
  padding: 0.78cqw;
  border-radius: 1.1cqw;
  border: 0.13cqw solid rgba(230, 94, 69, 0.22);
  background: rgba(245, 244, 239, 0.9);
  box-shadow: 0 0.7cqw 1.2cqw rgba(105, 61, 34, 0.09);
  scroll-snap-align: start;
}

.frame7-story-meta {
  margin-bottom: 0.44cqw;
}

.frame7-story-title {
  margin: 0;
  color: rgba(230, 94, 69, 0.96);
  font-size: 0.96cqw;
}

.frame7-story-subtitle {
  margin: 0.18cqw 0 0;
  color: rgba(95, 58, 36, 0.86);
  font-size: 0.78cqw;
}

.frame7-story-card-svg {
  display: block;
  width: 100%;
  height: auto;
}

.frameTenLensOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.frameTenLensOverlay[hidden] {
  display: none;
}

.frameTenLayoutOverlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.frameTenLayoutOverlay[hidden] {
  display: none;
}

.frameTenLayoutHeader {
  position: absolute;
  left: 3.4%;
  top: 5.2%;
  width: 31%;
  padding: 0.95cqw 1.1cqw 0.9cqw;
  border: 0.14cqw solid rgba(230, 94, 69, 0.3);
  border-radius: 1.2cqw;
  background: rgba(245, 244, 239, 0.9);
  box-shadow: 0 1cqw 1.7cqw rgba(103, 58, 33, 0.09);
  animation: frameTenLayoutIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.frameTenLayoutTag {
  display: inline-block;
  margin-bottom: 0.34cqw;
  padding: 0.14cqw 0.56cqw;
  border-radius: 999px;
  border: 0.1cqw solid rgba(230, 94, 69, 0.4);
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.72cqw;
  letter-spacing: 0.06em;
}

.frameTenLayoutHeader h3 {
  margin: 0;
  color: rgba(230, 94, 69, 0.96);
  font-size: 1.22cqw;
  letter-spacing: 0.03em;
}

.frameTenLayoutHeader p {
  margin: 0.36cqw 0 0;
  color: rgba(95, 58, 36, 0.86);
  font-size: 0.88cqw;
  line-height: 1.5;
}

.frameTenLayoutMeta {
  display: flex;
  gap: 0.36cqw;
  margin-bottom: 0.34cqw;
}

.frameTenMetaBtn {
  border: 0.1cqw solid rgba(230, 94, 69, 0.34);
  padding: 0.3cqw 0.72cqw;
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.9);
  color: rgba(230, 94, 69, 0.92);
  font-size: 0.74cqw;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.frameTenMetaBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 94, 69, 0.72);
}

.frameTenMetaBtn[data-active="true"] {
  background: rgba(230, 94, 69, 0.94);
  color: rgba(245, 244, 239, 0.98);
  border-color: rgba(230, 94, 69, 0.96);
}

.frameTenLayoutDetail {
  position: absolute;
  left: 3.4%;
  top: 1.2%;
  width: 31%;
  padding: 0.48cqw 0.56cqw;
  border: 0.12cqw solid rgba(230, 94, 69, 0.26);
  border-radius: 0.9cqw;
  background: rgba(245, 244, 239, 0.9);
  box-shadow: 0 0.8cqw 1.4cqw rgba(103, 58, 33, 0.08);
  pointer-events: auto;
  animation: frameTenLayoutIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.frameTenPullHandle {
  width: 100%;
  border: 0.1cqw dashed rgba(230, 94, 69, 0.46);
  border-radius: 0.76cqw;
  background: rgba(245, 244, 239, 0.95);
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.7cqw;
  letter-spacing: 0.03em;
  padding: 0.22cqw 0.44cqw;
  cursor: pointer;
}

.frameTenPullBody {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.frameTenLayoutDetail[data-open="true"] .frameTenPullBody {
  max-height: 22cqw;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.42cqw;
}

.frameTenLayoutDetail h4 {
  margin: 0;
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.86cqw;
}

.frameTenLayoutDetail p {
  margin: 0.24cqw 0 0;
  color: rgba(96, 60, 38, 0.88);
  font-size: 0.76cqw;
  line-height: 1.45;
}

.frameTenSceneLabel {
  margin-top: 0.42cqw;
  font-size: 0.7cqw;
  color: rgba(230, 94, 69, 0.84);
  letter-spacing: 0.04em;
}

.frameTenSceneSwitch {
  display: flex;
  gap: 0.28cqw;
  margin-top: 0.34cqw;
}

.frameTenSceneBtn {
  border: 0.09cqw solid rgba(230, 94, 69, 0.35);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.92);
  color: rgba(230, 94, 69, 0.92);
  font-size: 0.68cqw;
  padding: 0.16cqw 0.52cqw;
  cursor: pointer;
  transition: all 160ms ease;
}

.frameTenSceneBtn[data-active="true"] {
  background: rgba(230, 94, 69, 0.92);
  color: rgba(245, 244, 239, 0.98);
  border-color: rgba(230, 94, 69, 0.96);
}

.frameTenKpiRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.26cqw;
  margin-top: 0.42cqw;
}

.frameTenKpiItem {
  padding: 0.26cqw 0.34cqw;
  border: 0.08cqw solid rgba(230, 94, 69, 0.22);
  border-radius: 0.5cqw;
  background: rgba(255, 255, 255, 0.28);
}

.frameTenKpiItem span {
  display: block;
  font-size: 0.6cqw;
  color: rgba(110, 67, 44, 0.78);
}

.frameTenKpiItem strong {
  display: block;
  margin-top: 0.08cqw;
  font-size: 0.76cqw;
  color: rgba(230, 94, 69, 0.94);
}

.frameTenAdviceToggle {
  margin-top: 0.42cqw;
  width: 100%;
  border: 0.09cqw dashed rgba(230, 94, 69, 0.42);
  border-radius: 0.7cqw;
  background: rgba(245, 244, 239, 0.9);
  color: rgba(230, 94, 69, 0.92);
  font-size: 0.66cqw;
  letter-spacing: 0.03em;
  padding: 0.2cqw 0.4cqw;
  cursor: pointer;
}

.frameTenAdvicePanel {
  margin-top: 0.32cqw;
  border: 0.08cqw solid rgba(230, 94, 69, 0.2);
  border-radius: 0.6cqw;
  background: rgba(245, 244, 239, 0.86);
  padding: 0.32cqw 0.46cqw 0.34cqw;
}

.frameTenAdvicePanel ul {
  margin: 0;
  padding-left: 1em;
}

.frameTenAdvicePanel li {
  margin: 0.14cqw 0;
  color: rgba(95, 58, 36, 0.86);
  font-size: 0.66cqw;
  line-height: 1.4;
}

@keyframes frameTenLayoutIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.emotionProtocolOverlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.emotionProtocolOverlay[hidden] {
  display: none;
}

.emotionProtocolPanel {
  position: absolute;
  left: 3.4%;
  top: 6%;
  width: 46%;
  padding: 1.05cqw 1.18cqw 1cqw;
  border: 0.14cqw solid rgba(230, 94, 69, 0.28);
  border-radius: 1.1cqw;
  background: rgba(245, 244, 239, 0.92);
  box-shadow: 0 1cqw 1.7cqw rgba(103, 58, 33, 0.1);
  pointer-events: auto;
  animation: frameTenLayoutIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.emotionProtocolTag {
  display: inline-block;
  margin-bottom: 0.36cqw;
  padding: 0.14cqw 0.56cqw;
  border-radius: 999px;
  border: 0.1cqw solid rgba(230, 94, 69, 0.42);
  color: rgba(230, 94, 69, 0.95);
  font-size: 0.72cqw;
  letter-spacing: 0.06em;
}

.emotionProtocolHeader h3 {
  margin: 0;
  color: rgba(230, 94, 69, 0.96);
  font-size: 1.12cqw;
  letter-spacing: 0.02em;
}

.emotionProtocolHeader p {
  margin: 0.34cqw 0 0;
  color: rgba(93, 57, 36, 0.88);
  font-size: 0.8cqw;
  line-height: 1.52;
}

.emotionProtocolGrantRow {
  margin-top: 0.62cqw;
  display: flex;
  gap: 0.38cqw;
}

.emotionProtocolGrantBtn {
  border: 0.1cqw solid rgba(230, 94, 69, 0.36);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.9);
  color: rgba(230, 94, 69, 0.94);
  font-size: 0.72cqw;
  padding: 0.2cqw 0.62cqw;
  cursor: pointer;
  transition: all 170ms ease;
}

.emotionProtocolGrantBtn[data-active="true"] {
  background: rgba(230, 94, 69, 0.93);
  color: rgba(245, 244, 239, 0.98);
  border-color: rgba(230, 94, 69, 0.96);
}

.emotionProtocolStatus {
  margin-top: 0.46cqw;
  color: rgba(230, 94, 69, 0.92);
  font-size: 0.72cqw;
  letter-spacing: 0.03em;
}

.emotionProtocolRail {
  margin-top: 0.32cqw;
  height: 0.3cqw;
  border-radius: 999px;
  background: rgba(230, 94, 69, 0.18);
  overflow: hidden;
}

.emotionProtocolRail span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(230, 94, 69, 0.72),
    rgba(230, 94, 69, 1)
  );
  transition: width 260ms ease;
}

.frame10-lens-effect,
.frame10-lens-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.frame10-lens-svg {
  overflow: visible;
}

.frame10-lens-glow {
  fill: rgba(255, 255, 255, 0.26);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.75));
}

.frame10-lens-scan,
.frame10-lens-ray,
.frame10-arrow-energy {
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.frame10-lens-scan {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 8;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.72));
}

.frame10-lens-scan-soft {
  stroke-width: 6;
  opacity: 0.8;
}

.frame10-lens-ray {
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 7;
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.66));
}

.frame10-arrow-energy {
  stroke: rgba(230, 94, 69, 0.42);
  stroke-width: 7;
  stroke-dasharray: 17 18;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(230, 94, 69, 0.18));
}

.frame10-arrow-dot {
  fill: rgba(230, 94, 69, 0.88);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(230, 94, 69, 0.35));
  pointer-events: none;
}

.frame10-lens-hit {
  cursor: pointer;
  pointer-events: auto;
}

.frame10-lens-effect.is-active .frame10-lens-glow {
  animation: frame10LensGlow 2.4s ease-out both,
    frame10LensBreath 4.2s ease-in-out 2.35s infinite;
}

.frame10-lens-effect.is-active .frame10-lens-scan {
  animation: frame10LensDraw 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both,
    frame10LensFloat 4.8s ease-in-out 1.35s infinite;
}

.frame10-lens-effect.is-active .frame10-lens-scan-soft {
  animation-delay: 0.36s, 1.48s;
}

.frame10-lens-effect.is-active .frame10-lens-ray {
  animation: frame10LensDraw 0.72s cubic-bezier(0.16, 1, 0.3, 1) both,
    frame10RayBlink 3.2s ease-in-out 1.25s infinite;
}

.frame10-lens-effect.is-active .frame10-lens-ray:nth-child(1) {
  animation-delay: 0.05s, 1.25s;
}

.frame10-lens-effect.is-active .frame10-lens-ray:nth-child(2) {
  animation-delay: 0.17s, 1.36s;
}

.frame10-lens-effect.is-active .frame10-lens-ray:nth-child(3) {
  animation-delay: 0.29s, 1.48s;
}

.frame10-lens-effect.is-active .frame10-lens-ray:nth-child(4) {
  animation-delay: 0.43s, 1.6s;
}

.frame10-lens-effect.is-active .frame10-arrow-energy {
  animation: frame10ArrowWake 1.1s ease-out 0.65s both,
    frame10ArrowFlow 3.8s linear 1.7s infinite;
}

.frame10-lens-effect.is-active .frame10-arrow-dot {
  animation: frame10ArrowDot 1.2s ease-out 0.9s both;
}

.frame10-lens-effect.is-hovered .frame10-lens-glow {
  opacity: 0.86;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.95));
}

.frame10-lens-effect.is-hovered .frame10-lens-scan,
.frame10-lens-effect.is-hovered .frame10-lens-ray {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.9));
}

@keyframes frame10LensGlow {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  42% {
    opacity: 0.82;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
}

@keyframes frame10LensBreath {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.54;
    transform: scale(1.045);
  }
}

@keyframes frame10LensDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 360;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes frame10LensFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes frame10RayBlink {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes frame10ArrowWake {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}

@keyframes frame10ArrowFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -70;
  }
}

@keyframes frame10ArrowDot {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.9;
    transform: scale(1);
  }
}

.frameEightVideoOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.frameEightVideoOverlay[hidden] {
  display: none;
}

.frameEightVideoCard {
  position: absolute;
  left: 11.8%;
  top: 17.2%;
  width: 75.8%;
  height: 62.5%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.2cqw;
  padding: 2.4cqw;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(230, 94, 69, 0.07), rgba(245, 244, 239, 0.1)),
    rgba(245, 244, 239, 0.72);
  border: 0.44cqw solid var(--ink);
  border-radius: 2.6cqw;
  box-shadow: 0 2.1cqw 2.5cqw rgba(84, 50, 32, 0.09);
  pointer-events: auto;
  transform: rotate(-0.7deg);
}

.frameEightVideoCard::before,
.frameEightVideoCard::after {
  content: "";
  position: absolute;
  inset: 4.8%;
  border: 0.2cqw dashed rgba(230, 94, 69, 0.56);
  border-radius: 2cqw;
  pointer-events: none;
}

.frameEightVideoCard::after {
  inset: auto 7.5% 12.5%;
  height: 0;
  border: 0;
  border-top: 0.22cqw solid rgba(230, 94, 69, 0.42);
  border-radius: 0;
}

.frameEightVideoCorner {
  position: absolute;
  width: 5.6cqw;
  height: 5.6cqw;
  border-color: var(--ink);
  border-style: solid;
  opacity: 0.9;
  pointer-events: none;
}

.frameEightVideoCornerTop {
  top: 6.5%;
  left: 5.5%;
  border-width: 0.32cqw 0 0 0.32cqw;
  border-top-left-radius: 1.2cqw;
}

.frameEightVideoCornerBottom {
  right: 5.5%;
  bottom: 6.5%;
  border-width: 0 0.32cqw 0.32cqw 0;
  border-bottom-right-radius: 1.2cqw;
}

.frameEightVideoPlayer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.5cqw;
  background: rgba(28, 25, 22, 0.08);
  box-shadow: inset 0 0 0 0.18cqw rgba(230, 94, 69, 0.22);
  object-fit: contain;
}

.frameNineFallingOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.frameNineFallingOverlay[hidden] {
  display: none;
}

.frame9-falling-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.frame9-falling-cover {
  pointer-events: none;
}

.frame9-falling-piece {
  cursor: pointer;
  pointer-events: auto;
  transform-box: fill-box;
  transform-origin: center;
  will-change: opacity, transform;
}

.frame9-falling-piece.is-hovered {
  filter: drop-shadow(0 16px 16px rgba(91, 50, 28, 0.14));
}

.animatedButtonLayer {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.animatedButtonLayer[hidden] {
  display: none;
}

.buttonCover {
  position: absolute;
  inset: -8%;
  z-index: 1;
  border-radius: 999px;
  background: var(--paper);
}

.animatedNextButton {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0.35cqw solid var(--paper);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 11px 22px rgba(230, 94, 69, 0.12);
  transform-origin: center;
  visibility: hidden;
  will-change: opacity, transform;
}

.animatedButtonLayer[data-shape="circle"] .animatedButtonArrow {
  width: 52%;
}

.animatedButtonLayer[data-shape="pill"] .animatedButtonArrow {
  width: 43%;
}

.animatedButtonArrow {
  display: block;
  height: 58%;
  overflow: visible;
}

.hotspot,
.pagerDot {
  position: relative;
}

.hotspot {
  position: absolute;
  z-index: 5;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hotspot {
  border-radius: 999px;
}

.prevHotspot {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: rgba(245, 244, 239, 0.92);
  border: 1px solid rgba(230, 94, 69, 0.45);
  border-radius: 999px;
  box-shadow: 0 6px 12px rgba(111, 66, 39, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.prevHotspot:hover {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(230, 94, 69, 0.8);
  background: rgba(245, 244, 239, 0.98);
}

.prevHotspot[hidden] {
  display: none;
}

.prevHotspot[data-layout="corner"] {
  position: fixed;
  left: var(--prev-corner-left, 18px);
  top: var(--prev-corner-top, 18px);
  z-index: 30;
}

.prevHotspot[data-layout="top-left"] {
  position: fixed;
  left: var(--prev-corner-left, 18px);
  top: var(--prev-corner-top, 18px);
  z-index: 30;
}

.prevHotspotArrow {
  width: 58%;
  height: 58%;
  overflow: visible;
}

.hotspot:focus-visible,
.prevHotspot:focus-visible,
.pagerDot:focus-visible {
  outline: 2px solid rgba(230, 94, 69, 0.9);
  outline-offset: 4px;
}

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

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

.pagerDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(230, 94, 69, 0.48);
  background: rgba(230, 94, 69, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.pagerDot:hover {
  transform: scale(1.08);
  border-color: rgba(230, 94, 69, 0.8);
}

.pagerDot[data-active="true"] {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(230, 94, 69, 0.12);
}

@media (max-width: 900px) {
  .shell {
    justify-content: flex-start;
    padding-top: 24px;
  }

  .viewport {
    width: min(100%, calc((100dvh - 120px) * 1.6));
  }
}

@media (max-width: 640px) {
  .shell {
    gap: 12px;
    padding-inline: 10px;
    padding-bottom: 16px;
  }

  .viewport {
    width: 100%;
  }

  .pager {
    gap: 8px;
  }

  .pagerDot {
    width: 9px;
    height: 9px;
  }
}
