
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101810;
  color: #fff;
  overflow: hidden;
}

.scene {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 16, 0.20), rgba(16, 24, 16, 0.72)),
    radial-gradient(circle at 52% 38%, rgba(112, 154, 94, 0.42), transparent 28%),
    radial-gradient(circle at 32% 68%, rgba(47, 111, 62, 0.38), transparent 30%),
    linear-gradient(135deg, #34442e 0%, #182217 45%, #0d150d 100%);
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.tour-header {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 18px;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.site-logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
}

.scene-title {
  flex: 1;
  min-height: 88px;
  padding: 0 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.scene-title-copy {
  min-width: 260px;
  max-width: 430px;
}

.scene-title-tools {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.scene-title h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.scene-title p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.4;
}

.scene-stats {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 0;
}

.scene-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.scene-stat strong {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.nav a.primary {
  background: #2f6f3e;
}

.tour-search {
  position: relative;
  flex: 0 1 340px;
  min-width: 230px;
  margin-top: 0;
}

.tour-search input {
  width: 100%;
  min-height: 36px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.tour-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.tour-search-results {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 40;
  width: min(420px, calc(100vw - 56px));
  max-height: 320px;
  overflow: auto;
  border-radius: 20px;
  background: rgba(15, 24, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  display: none;
  padding: 8px;
}

.tour-search-results.open {
  display: grid;
  gap: 6px;
}

.tour-search-result {
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  text-align: left;
}

.tour-search-result strong {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.tour-search-result span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.editor-tools {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12px;
  max-width: 100%;
}

.editor-button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.editor-button.active {
  background: #2f6f3e;
  border-color: rgba(255, 255, 255, 0.30);
}

.editor-hint {
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.stage {
  position: absolute;
  inset: 130px 28px 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(8, 16, 8, 0.20), rgba(8, 16, 8, 0.68)),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.46), 0 24px 70px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  --tour-zoom: 1;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.20), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

  .walk-beta-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 24%, rgba(189, 224, 171, 0.20), transparent 28%),
      linear-gradient(180deg, #728a6e 0%, #4f624b 34%, #273423 58%, #141d13 100%);
    perspective: 1080px;
    cursor: grab;
    touch-action: none;
    --walk-yaw: 0deg;
    --walk-pitch: 0deg;
    --walk-roll: 0deg;
    --walk-bob: 0px;
    --walk-offset-z: 0px;
  }

  .walk-beta-photo-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    background-position: center 42%;
    background-size: cover;
    background-repeat: no-repeat;
    transform: none;
    transition: none;
    will-change: opacity, transform;
    pointer-events: none;
  }


  .walk-beta-photo-frame.visible,
  .walk-beta-photo-frame.active {
    opacity: 1;
  }
  
  .walk-beta-scene.walk-beta-photo-active .walk-beta-photo-frame {
    transform: none;
    transform-origin: 50% 58%;
  }

  .walk-beta-reconstruction-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: none;
    transform-origin: 50% 58%;
    transition: none;
    will-change: opacity, transform;
  }

  .walk-beta-reconstruction-layer.active {
    opacity: 1;
  }

.walk-beta-reconstruction-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: 50% 58%;
  will-change: opacity, transform;
}

.walk-beta-reconstruction-frame.source {
  z-index: 1;
}

.walk-beta-reconstruction-frame.target {
  z-index: 2;
}

  .walk-beta-scene.walk-beta-photo-active .walk-beta-sky,
  .walk-beta-scene.walk-beta-photo-active .walk-beta-horizon,
  .walk-beta-scene.walk-beta-photo-active .walk-beta-side {
    opacity: 0;
  }

  .walk-beta-scene.walk-beta-photo-active .walk-beta-camera {
    opacity: 0;
  }

  .walk-beta-scene.walk-beta-photo-lookaround .walk-beta-camera {
    opacity: 0;
  }

  .walk-beta-scene.dragging {
  cursor: grabbing;
}

.walk-beta-sky {
  position: absolute;
  left: -18%;
  right: -18%;
  top: -8%;
  height: 54%;
  background:
    radial-gradient(circle at 22% 28%, rgba(222, 246, 201, 0.25), transparent 20%),
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(198, 220, 181, 0.24), rgba(53, 76, 47, 0.14));
  transform: translateY(calc(var(--walk-pitch) * -0.18));
  opacity: 0.92;
}

.walk-beta-horizon {
  position: absolute;
  left: -18%;
  right: -18%;
  top: 28%;
  height: 32%;
  background:
    radial-gradient(circle at 12% 76%, rgba(70, 126, 63, 0.70), transparent 15%),
    radial-gradient(circle at 28% 58%, rgba(88, 148, 72, 0.64), transparent 19%),
    radial-gradient(circle at 54% 72%, rgba(44, 94, 48, 0.72), transparent 16%),
    radial-gradient(circle at 74% 55%, rgba(104, 157, 84, 0.60), transparent 18%),
    radial-gradient(circle at 94% 72%, rgba(45, 99, 50, 0.68), transparent 17%),
    linear-gradient(180deg, rgba(34, 58, 34, 0.42), rgba(18, 30, 18, 0.88));
  filter: blur(0.2px);
  transform: translateX(calc(var(--walk-yaw) * -0.65));
}

.walk-beta-camera {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform:
    translateY(var(--walk-bob))
    rotateZ(var(--walk-roll))
    rotateX(var(--walk-pitch))
    rotateY(var(--walk-yaw));
  transform-origin: 50% 62%;
  transition: transform 120ms ease-out;
}

.walk-beta-world {
  position: absolute;
  left: 50%;
  top: 72%;
  width: 840px;
  height: 2200px;
  margin-left: -420px;
  margin-top: -280px;
  transform-style: preserve-3d;
  transform:
    scale(var(--walk-scale))
    rotateX(62deg)
    translate3d(0, var(--walk-offset-z), 0);
  transform-origin: 50% 8%;
  transition: transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.walk-beta-floor {
  position: absolute;
  left: 310px;
  top: 0;
  width: 220px;
  height: 2200px;
  border-radius: 80px 80px 42px 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 9%, transparent 91%, rgba(0, 0, 0, 0.20)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 22px),
    linear-gradient(180deg, #8d8b78 0%, #6f6d5e 44%, #4f5146 100%);
  box-shadow:
    inset 0 0 38px rgba(0, 0, 0, 0.26),
    0 0 0 14px rgba(42, 62, 38, 0.50),
    0 26px 80px rgba(0, 0, 0, 0.34);
}

.walk-beta-floor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 8%, rgba(255, 255, 255, 0.10), transparent 5%),
    radial-gradient(circle at 72% 21%, rgba(0, 0, 0, 0.14), transparent 6%),
    radial-gradient(circle at 29% 38%, rgba(255, 255, 255, 0.08), transparent 6%),
    radial-gradient(circle at 66% 61%, rgba(0, 0, 0, 0.16), transparent 8%),
    radial-gradient(circle at 42% 82%, rgba(255, 255, 255, 0.06), transparent 7%);
  opacity: 0.88;
}
  
  .walk-beta-scene > .walk-beta-floor-guide {
    position: absolute;
    left: 50%;
    top: 22%;
    bottom: -8%;
    width: min(310px, 24vw);
    z-index: 3;
    transform: translateX(-50%) translateY(var(--walk-bob)) rotateZ(var(--walk-roll));
    transform-origin: 50% 100%;
    clip-path: polygon(47% 0, 53% 0, 88% 100%, 12% 100%);
    border-radius: 46% 46% 30px 30px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.11), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.16)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(130, 132, 116, 0.25) 48%, rgba(76, 78, 66, 0.34));
    box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.18);
    opacity: 0.34;
    pointer-events: none;
  }

.walk-beta-side {
  position: absolute;
  top: -40px;
  width: 260px;
  height: 1920px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 8%, rgba(128, 184, 96, 0.48), transparent 12%),
    radial-gradient(circle at 34% 22%, rgba(71, 133, 68, 0.58), transparent 13%),
    radial-gradient(circle at 60% 38%, rgba(112, 154, 94, 0.44), transparent 13%),
    radial-gradient(circle at 28% 62%, rgba(65, 119, 61, 0.54), transparent 14%),
    radial-gradient(circle at 68% 82%, rgba(129, 178, 96, 0.38), transparent 13%),
    linear-gradient(180deg, rgba(31, 54, 28, 0.80), rgba(14, 26, 14, 0.92));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.22);
  opacity: 0.92;
}

.walk-beta-side.left {
  left: 0;
}

.walk-beta-side.right {
  right: 0;
}

.walk-beta-table {
  position: absolute;
  width: 168px;
  height: 90px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, rgba(116, 78, 42, 0.42) 0 10px, rgba(88, 59, 34, 0.42) 10px 20px),
    linear-gradient(135deg, #755337, #48311f);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.walk-beta-table::before,
.walk-beta-table::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26, 17, 10, 0.55);
}

.walk-beta-table::before {
  top: 14px;
}

.walk-beta-table::after {
  bottom: 14px;
}

.walk-beta-table.left {
  left: 68px;
  transform: rotateZ(-3deg);
}

.walk-beta-table.right {
  right: 68px;
  transform: rotateZ(3deg);
}

.walk-beta-stop-label {
  position: absolute;
  left: calc(50% - 88px);
  width: 54px;
  height: 26px;
  margin-left: -27px;
  border-radius: 999px;
  background: rgba(8, 16, 8, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  transform: translateZ(28px) rotateX(-62deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}
  
  .walk-beta-scene > .walk-beta-table {
    z-index: 5;
    left: var(--walk-table-x);
    top: var(--walk-table-y);
    right: auto;
    opacity: var(--walk-table-opacity);
    pointer-events: none;
  }

  .walk-beta-scene > .walk-beta-table.left {
    transform: translate(-50%, -50%) translateY(var(--walk-bob)) rotateZ(calc(-2deg + var(--walk-roll))) scale(var(--walk-table-scale));
  }

  .walk-beta-scene > .walk-beta-table.right {
    transform: translate(-50%, -50%) translateY(var(--walk-bob)) rotateZ(calc(2deg + var(--walk-roll))) scale(var(--walk-table-scale));
  }

  .walk-beta-scene > .walk-beta-stop-label {
    z-index: 6;
    left: var(--walk-label-x);
    top: var(--walk-label-y);
    margin-left: 0;
    opacity: var(--walk-label-opacity);
    transform: translate(-50%, -50%) translateY(var(--walk-bob)) rotateZ(var(--walk-roll)) scale(var(--walk-label-scale));
    pointer-events: none;
  }

.walk-beta-status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 8;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(8, 16, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.walk-beta-debug {
  position: absolute;
  left: 22px;
  top: 66px;
  z-index: 18;
  width: min(360px, calc(100vw - 44px));
  max-height: min(60vh, 600px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(4, 10, 4, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(246, 255, 240, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.45;
  white-space: pre-wrap;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.walk-beta-debug strong {
  color: #c9f59f;
  font-weight: 950;
}

.walk-beta-debug-toggle {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 19;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 10, 4, 0.78);
  color: #c9f59f;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  display: none;
}

.walk-beta-debug-toggle.visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.walk-beta-raw-timeline-preview-toggle {
  position: absolute;
  left: 124px;
  top: 22px;
  z-index: 19;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 10, 4, 0.78);
  color: #c9f59f;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  display: none;
}

.walk-beta-raw-timeline-preview-toggle.visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.walk-beta-raw-timeline-preview {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
}

.walk-beta-raw-timeline-preview.open {
  display: flex;
}

.walk-beta-raw-timeline-preview-card {
  width: min(980px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(9, 16, 9, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.walk-beta-raw-timeline-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.walk-beta-raw-timeline-preview-header strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.walk-beta-raw-timeline-preview-header span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 850;
}

.walk-beta-raw-timeline-preview-header button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.walk-beta-raw-timeline-preview-stage {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050805;
}

.walk-beta-raw-timeline-preview-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  background: #050805;
}

.walk-beta-raw-timeline-preview-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.walk-beta-raw-timeline-preview-controls button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.10);
  color: #c9f59f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.walk-beta-raw-timeline-preview-controls span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.walk-beta-debug.collapsed {
  display: none;
}

.stage.walk-beta .scene-viewport {
  display: none;
}

.stage.walk-beta .hotspot-layer {
  transform: none;
  transition: opacity 220ms ease;
}

.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-sky,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-horizon,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-side,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-camera,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-world,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-floor,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-floor-guide,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-table,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-stop-label,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .walk-beta-world-hotspot,
.walk-beta-scene:not(.walk-beta-raw-sequence-ready) .hotspot-layer,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-sky,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-horizon,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-side,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-camera,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-world,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-floor,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-floor-guide,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-table,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-stop-label,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .walk-beta-world-hotspot,
.stage.walk-beta:not(.walk-beta-raw-sequence-ready) .hotspot-layer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-sky,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-horizon,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-side,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-camera,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-world,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-floor,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-floor-guide,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-table,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-stop-label,
.walk-beta-scene.walk-beta-raw-sequence-ready .walk-beta-world-hotspot,
.walk-beta-scene.walk-beta-raw-sequence-ready .hotspot-layer,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-sky,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-horizon,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-side,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-camera,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-world,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-floor,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-floor-guide,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-table,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-stop-label,
.stage.walk-beta.walk-beta-raw-sequence-ready .walk-beta-world-hotspot,
.stage.walk-beta.walk-beta-raw-sequence-ready .hotspot-layer {
  visibility: visible;
}

.scene-viewport {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: scale(var(--tour-zoom));
  transform-origin: center center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.scene-track {
  position: absolute;
  inset: 0;
  display: flex;
  transform: translate3d(-100%, 0, 0);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.scene-track.without-animation {
  transition: none;
}

.scene-frame {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hotspot-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: scale(var(--tour-zoom));
  transform-origin: center center;
  transition: opacity 220ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.stage.turning .hotspot-layer {
  opacity: 0;
}

.tour-controls {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-control-button,
.zoom-control button,
.scene-step-control button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(8, 16, 8, 0.68);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.tables-overlay {
  position: absolute;
  left: 22px;
  bottom: 90px;
  z-index: 18;
  width: min(360px, calc(100vw - 44px));
  max-height: min(440px, calc(100% - 128px));
  overflow: hidden;
  display: none;
  border-radius: 24px;
  background: rgba(15, 24, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.tables-overlay.open {
  display: grid;
  grid-template-rows: auto 1fr;
}

.tables-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.tables-overlay-header strong {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.tables-overlay-header button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-weight: 950;
}

.tables-overlay-grid {
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  padding: 12px 14px 16px;
}

.tables-overlay-grid button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 3px;
  align-content: center;
  text-align: left;
  padding: 8px 10px;
  font-weight: 950;
}

.tables-overlay-grid button.selected {
  background: rgba(47, 111, 62, 0.62);
  border-color: rgba(105, 201, 128, 0.48);
}

.tables-overlay-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 850;
}

.zoom-control,
.scene-step-control {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(8, 16, 8, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.zoom-control button,
.scene-step-control button {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.zoom-control button + button,
.scene-step-control button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.tour-help {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 8;
  transform: translateX(-50%);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(8, 16, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  pointer-events: none;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 80;
  transform: translate(-50%, 18px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(15, 24, 15, 0.94);
  border: 1px solid rgba(105, 201, 128, 0.30);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.copy-toast.open {
  opacity: 1;
  transform: translate(-50%, 0);
}

.stage.zoomed .scene-viewport,
.stage.zoomed .hotspot-layer {
  transform: scale(var(--tour-zoom));
}

.stage-label {
  display: none;
}

.stage-label strong {
  display: block;
  font-size: clamp(42px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.stage-label span {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 800;
}

.hotspot {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  color: #1f2a1f;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: width 180ms ease, min-width 180ms ease, gap 180ms ease, padding 180ms ease, transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.hotspot:hover,
.hotspot.selected {
  width: auto;
  min-width: 104px;
  padding: 0 12px;
  gap: 8px;
  transform: translate(-50%, -50%) scale(1.04);
}

.hotspot.selected {
  background: #2f6f3e;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 8px rgba(47, 111, 62, 0.24), 0 18px 38px rgba(47, 111, 62, 0.46);
}

.editing .hotspot {
  cursor: grab;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.34), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.editing .hotspot:active {
  cursor: grabbing;
}

.editing .stage,
.editing .hotspot-layer,
.editing .hotspot {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.hotspot::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2f6f3e;
  box-shadow: 0 0 0 7px rgba(47, 111, 62, 0.18);
}

.hotspot > span:first-child,
.hotspot-count {
  max-width: 0;
  min-width: 0;
  width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 180ms ease, width 180ms ease, min-width 180ms ease, padding 180ms ease, opacity 140ms ease;
}

.hotspot:hover > span:first-child,
.hotspot.selected > span:first-child {
  max-width: 120px;
  width: auto;
  opacity: 1;
}

.hotspot:hover .hotspot-count,
.hotspot.selected .hotspot-count {
  max-width: 120px;
  min-width: 24px;
  width: auto;
  padding-left: 7px;
  padding-right: 7px;
  opacity: 1;
}

.hotspot-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 24px;
  border-radius: 999px;
  background: #edf3ed;
  color: #2f6f3e;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.hotspot.selected::before,
.hotspot.selected .hotspot-count {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

  .walk-beta-scene .hotspot.walk-beta-world-hotspot {
    position: absolute;
    z-index: 9;
    transform: translate(-50%, -50%) translateY(var(--walk-bob)) rotateZ(var(--walk-roll)) scale(var(--walk-marker-scale));
    transform-origin: center center;
    transition: left 160ms ease, top 160ms ease, opacity 160ms ease, transform 160ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
  }

  .walk-beta-scene .hotspot.walk-beta-world-hotspot:hover,
  .walk-beta-scene .hotspot.walk-beta-world-hotspot.selected {
    transform: translate(-50%, -50%) translateY(var(--walk-bob)) rotateZ(var(--walk-roll)) scale(calc(var(--walk-marker-scale) * 1.04));
  }

.panel {
  position: absolute;
  right: 22px;
  top: 22px;
  bottom: 22px;
  width: min(380px, calc(100vw - 44px));
  z-index: 20;
  border-radius: 28px;
  background: rgba(15, 24, 15, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  backdrop-filter: blur(18px);
  transform: translateX(calc(100% + 40px));
  transition: transform 180ms ease;
}

.panel.open {
  transform: translateX(0);
}

.panel-header {
  padding: 20px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.panel-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.panel h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #fff;
}

.panel-meta {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.panel-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.panel-navigation button,
.panel-actions button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.panel-actions button {
  color: #69c980;
}

.panel-navigation button:disabled,
.panel-actions button:disabled {
  opacity: 0.38;
  cursor: default;
}

.close {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-weight: 950;
}

.plants {
  overflow: auto;
  padding: 14px 16px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.panel-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 2px;
}

.panel-summary-card {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.panel-summary-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.panel-summary-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel-section-title {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 2px 0;
}

.plant {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 9px;
  transition: transform 150ms ease, background 150ms ease;
}

.plant:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.plant.highlighted {
  border-color: rgba(105, 201, 128, 0.55);
  box-shadow: 0 0 0 5px rgba(105, 201, 128, 0.14);
}

.plant.featured {
  grid-template-columns: 104px 1fr;
  padding: 11px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(105, 201, 128, 0.26);
}

.plant.featured img {
  width: 104px;
  height: 104px;
  border-radius: 16px;
}

.plant.featured .plant-name {
  font-size: 16px;
}

.plant img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.10);
}

.plant-name {
  font-weight: 950;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #fff;
}

.plant-price {
  color: #69c980;
  font-weight: 950;
  font-size: 14px;
  margin-bottom: 6px;
}

.plant-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.plant-variants {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.plant-variant {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.plant-variant-title {
  color: #fff;
  font-weight: 950;
}

.plant-variant-meta {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 850;
}

.plant-variant-price {
  color: #69c980;
  font-weight: 950;
  white-space: nowrap;
}

.plant-action {
  display: inline-flex;
  margin-top: 8px;
  color: #69c980;
  font-size: 12px;
  font-weight: 950;
}

@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  body.editing {
    overflow: hidden;
  }

  .scene {
    position: relative;
    min-height: 100vh;
    padding: 14px 0 calc(18px + env(safe-area-inset-bottom));
  }

  .tour-header {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    display: block;
    margin: 0 18px 14px;
  }

  .site-logo {
    width: 72px;
    height: 72px;
    margin: 0 0 10px;
  }

  .site-logo img {
    width: 66px;
    height: 66px;
  }

  .scene-title {
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
    display: block;
  }

  .scene-title-copy {
    min-width: 0;
    max-width: none;
  }

  .scene-title-tools {
    display: block;
  }

  .scene-title h1 {
    font-size: 32px;
    line-height: 1.02;
  }

  .scene-title p {
    font-size: 16px;
  }

  .scene-stats {
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 13px;
  }

  .scene-stat {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .scene-stat strong {
    font-size: 17px;
  }

  .nav a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .nav {
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .tour-search {
    min-width: 0;
    margin-top: 14px;
  }

  .tour-search input {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

  .tour-search-results {
    width: 100%;
    max-height: 300px;
  }

  .editor-tools {
    display: none;
    gap: 8px;
    margin-top: 12px;
  }

  .editor-button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .editor-hint {
    font-size: 12px;
  }

  .stage {
    position: relative;
    inset: auto;
    height: min(72vh, 620px);
    min-height: 520px;
    margin: 0 18px;
    border-radius: 28px;
  }

  .hotspot {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    gap: 0;
    font-size: 13px;
  }

  .hotspot:hover,
  .hotspot.selected {
    width: auto;
    min-width: 92px;
    padding: 0 9px;
    gap: 6px;
  }

  .hotspot::before {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 6px rgba(47, 111, 62, 0.18);
  }

  .hotspot-count {
    height: 22px;
    font-size: 11px;
  }

  .hotspot:hover .hotspot-count,
  .hotspot.selected .hotspot-count {
    min-width: 20px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .tour-controls {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 7px;
    justify-content: center;
  }

  .tables-overlay {
    left: 14px;
    right: 14px;
    bottom: calc(70px + env(safe-area-inset-bottom));
    width: auto;
    max-height: min(420px, calc(100% - 104px));
  }

  .tour-control-button,
  .zoom-control button,
  .scene-step-control button {
    width: 42px;
    height: 42px;
    font-size: 19px;
    flex: 0 0 42px;
  }

  .tour-control-button {
    border-radius: 15px;
  }

  .zoom-control,
  .scene-step-control {
    border-radius: 15px;
    flex: 0 0 auto;
  }

  .zoom-control button,
  .scene-step-control button {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .tour-help {
    display: none;
  }

  .walk-beta-status {
    right: 14px;
    bottom: calc(70px + env(safe-area-inset-bottom));
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .walk-beta-debug {
    left: 14px;
    top: 54px;
    width: min(330px, calc(100vw - 28px));
    max-height: 46vh;
    padding: 11px 12px;
    font-size: 10px;
  }

  .walk-beta-debug-toggle {
    left: 14px;
    top: 14px;
    min-height: 32px;
    padding: 0 11px;
    font-size: 10px;
  }

  .walk-beta-raw-timeline-preview-toggle {
    left: 108px;
    top: 14px;
    min-height: 32px;
    padding: 0 11px;
    font-size: 10px;
  }

  .walk-beta-raw-timeline-preview {
    padding: 14px;
  }

  .walk-beta-raw-timeline-preview-card {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    border-radius: 22px;
  }

  .walk-beta-raw-timeline-preview-header {
    padding: 13px 14px 12px;
  }

  .walk-beta-raw-timeline-preview-stage img {
    max-height: calc(100vh - 166px);
  }

  .walk-beta-raw-timeline-preview-controls {
    flex-wrap: wrap;
    padding: 12px 14px 14px;
  }

  .copy-toast {
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: max-content;
    max-width: calc(100vw - 36px);
  }

  .panel {
    position: fixed;
    left: 18px;
    right: 18px;
    top: auto;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: auto;
    max-height: 82vh;
    border-radius: 28px;
    transform: translateY(calc(100% + 40px));
  }

  .panel.open {
    transform: translateY(0);
  }

  .panel-header {
    padding: 18px 18px 12px;
  }

  .panel h2 {
    font-size: 28px;
  }

  .plants {
    padding: 14px 16px 18px;
  }

  .panel-summary {
    grid-template-columns: 1fr 1fr;
  }

  .plant {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    border-radius: 18px;
  }

  .plant img {
    width: 92px;
    height: 92px;
  }

  .plant.featured {
    grid-template-columns: 104px 1fr;
  }

  .plant.featured img {
    width: 104px;
    height: 104px;
  }

  .plant-name {
    font-size: 16px;
  }

  .plant-price {
    font-size: 15px;
  }

  .plant-meta,
  .plant-action {
    font-size: 13px;
  }

  .plant-variant {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 12px;
  }

  .plant-variant-meta {
    font-size: 11px;
  }
}
