* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #111;
  color: #f7f3ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button {
  font: inherit;
}

.landingPage {
  min-height: 100vh;
  background: #f6f6f2;
  color: #1a1a17;
  word-break: keep-all;
}

.landingContentPage {
  min-height: 100vh;
  background: #f6f6f2;
  color: #1a1a17;
  word-break: keep-all;
}

.landingHeader {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(19, 19, 17, 0.76);
  color: #fff;
  backdrop-filter: blur(18px);
}

.landingBrand,
.landingNav a,
.landingPrimary,
.landingSecondary,
.landingSpaceCard,
.landingPortfolioCard {
  text-decoration: none;
}

.landingBrand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
}

.landingBrand img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.landingNav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.landingNav a {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 760;
}

.landingNav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.landingHero {
  position: relative;
  min-height: min(760px, 84vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 58px) 38px;
  background: #191916;
  color: #fff;
}

.landingHeroMedia,
.landingHeroSlide,
.landingHeroShade {
  position: absolute;
  inset: 0;
}

.landingHeroSlide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateX(18px);
  transition:
    opacity 820ms ease,
    transform 5600ms ease;
  will-change: opacity, transform;
}

.landingHeroSlideActive {
  opacity: 1;
  transform: scale(1.02) translateX(0);
}

.landingHeroShade {
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.72), rgba(12, 12, 10, 0.28) 45%, rgba(12, 12, 10, 0.46)),
    linear-gradient(180deg, rgba(12, 12, 10, 0.08), rgba(12, 12, 10, 0.68));
}

.landingHeroInner {
  position: relative;
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 76px;
  align-items: end;
}

.landingHeroCopy {
  max-width: 780px;
  display: grid;
  gap: 13px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.landingEyebrow,
.landingSectionHeader span,
.landingSpaceCopy > span,
.landingPortfolioMeta span {
  color: #c9a85c;
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landingHero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 5.2vw, 70px);
  line-height: 1.05;
}

.landingHero p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 760;
  line-height: 1.5;
}

.landingActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.landingPrimary,
.landingSecondary {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 820;
}

.landingPrimary {
  background: #fff;
  color: #181816;
}

.landingSecondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.landingHeroAside {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 18, 16, 0.34);
  backdrop-filter: blur(14px);
}

.landingHeroAside span {
  color: #c9a85c;
  font-size: 12px;
  font-weight: 820;
}

.landingHeroAside strong {
  font-size: 19px;
  line-height: 1.2;
}

.landingHeroAside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.landingHeroThumbnails {
  --hero-thumb-fade: clamp(36px, 7vw, 108px);
  width: calc(100vw - (clamp(18px, 5vw, 58px) * 2));
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px var(--hero-thumb-fade) 12px;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--hero-thumb-fade),
    #000 calc(100% - var(--hero-thumb-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--hero-thumb-fade),
    #000 calc(100% - var(--hero-thumb-fade)),
    transparent 100%
  );
  user-select: none;
}

.landingHeroThumbnails::-webkit-scrollbar {
  display: none;
}

.landingHeroThumbnails:active {
  cursor: grabbing;
}

.landingHeroThumbTrack {
  width: max-content;
  display: flex;
  gap: 14px;
}

.landingHeroThumb {
  position: relative;
  flex: 0 0 172px;
  min-width: 172px;
  height: 82px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  cursor: pointer;
  opacity: 0.86;
  transition:
    opacity 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.landingHeroThumb img,
.landingHeroThumb::after {
  position: absolute;
  inset: 0;
}

.landingHeroThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(1);
  pointer-events: none;
  -webkit-user-drag: none;
  transform: scale(1.08);
  transition:
    filter 420ms ease,
    transform 5600ms ease;
}

.landingHeroThumb::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5));
}

.landingHeroThumbActive {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.landingHeroThumbActive img {
  filter: brightness(0.86) saturate(1.05);
  transform: scale(1.02);
}

.landingHeroThumbText {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 10px 10px 11px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.44);
}

.landingHeroThumbText b,
.landingHeroThumbText small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landingHeroThumbText b {
  font-size: 12px;
  line-height: 1.22;
}

.landingHeroThumbText small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 720;
}

.landingHeroThumbProgress {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
}

.landingHeroThumbProgress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}

.landingHeroThumbActive .landingHeroThumbProgress::after {
  animation: landingHeroProgress 6000ms linear forwards;
}

@keyframes landingHeroProgress {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landingHeroSlide,
  .landingHeroThumbTrack,
  .landingHeroThumb,
  .landingHeroThumb img {
    transition: none;
  }

  .landingHeroThumbActive .landingHeroThumbProgress::after {
    animation: none;
    transform: scaleX(1);
  }
}

.landingAboutHero {
  display: grid;
  gap: 16px;
  padding: 136px clamp(18px, 5vw, 58px) 72px;
  background: #20201d;
  color: #fff;
}

.landingAboutHero h1,
.landingAboutHero p {
  width: min(780px, 100%);
  margin: 0;
}

.landingAboutHero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.landingAboutHero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
}

.landingSection {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  gap: 18px;
  margin: 64px auto 0;
}

.landingSection:last-child {
  padding-bottom: 72px;
}

.landingSectionHeader {
  display: grid;
  gap: 6px;
}

.landingSectionHeader p {
  max-width: 720px;
  margin: 4px 0 0;
  color: rgba(26, 26, 23, 0.62);
  font-size: 15px;
  line-height: 1.68;
}

.landingSectionHeader h2,
.landingWorkflowIntro h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
}

.landingContentGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landingContentCard {
  min-height: 156px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(26, 26, 23, 0.1);
  border-radius: 8px;
  background: #fff;
}

.landingContentCard::before {
  content: "";
  width: 38px;
  height: 3px;
  background: #456f5a;
}

.landingContentCard:nth-child(2)::before {
  background: #587b9c;
}

.landingContentCard:nth-child(3)::before {
  background: #bd8d38;
}

.landingContentCard:nth-child(4)::before {
  background: #a65f67;
}

.landingContentCard h3,
.landingWorkflow h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.landingContentCard p {
  margin: 0;
  color: rgba(26, 26, 23, 0.62);
  font-size: 14px;
  line-height: 1.58;
}

.landingWorkflow {
  display: grid;
  gap: 22px;
  margin-top: 70px;
  padding: 54px clamp(18px, 5vw, 58px);
  background: #20201d;
  color: #fff;
}

.landingWorkflowIntro,
.landingWorkflowGrid,
.landingUseCases {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.landingWorkflowIntro {
  display: grid;
  gap: 8px;
}

.landingWorkflowGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landingWorkflow article {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.landingWorkflow article > span {
  color: #c9a85c;
  font-size: 12px;
  font-weight: 860;
}

.landingWorkflow p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.62;
}

.landingUseCases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landingUseCases span {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
}

.landingSpaceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landingSpaceCard {
  position: relative;
  min-height: 380px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a17;
  color: #fff;
}

.landingSpaceCard img,
.landingSpaceShade {
  position: absolute;
  inset: 0;
}

.landingSpaceCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.landingSpaceCard:hover img {
  transform: scale(1.035);
}

.landingSpaceShade {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82));
}

.landingSpaceCopy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 22px;
}

.landingSpaceCopy strong {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.06;
}

.landingSpaceCopy em {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-style: normal;
  line-height: 1.58;
}

.landingSpaceCopy b {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.landingCategoryRail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.landingCategoryRail span,
.landingCategoryChip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid rgba(26, 26, 23, 0.1);
  border-radius: 999px;
  background: #fff;
  color: rgba(26, 26, 23, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.landingCategoryChip {
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.landingCategoryChip:hover {
  border-color: rgba(26, 26, 23, 0.22);
  background: #fbfaf4;
  color: #1a1a17;
  transform: translateY(-1px);
}

.landingCategoryChip[aria-pressed="true"] {
  border-color: rgba(201, 168, 92, 0.7);
  background: #1f1e1a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(26, 26, 23, 0.12);
}

.landingCategoryRail b,
.landingCategoryChip b {
  color: #1a1a17;
  font-size: 12px;
}

.landingCategoryChip[aria-pressed="true"] b {
  color: #f1d08a;
}

.landingPortfolioGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landingPortfolioGridFull {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landingPortfolioCard {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 10px 10px 14px;
  border: 1px solid rgba(26, 26, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #1a1a17;
}

.landingPortfolioCard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #deded7;
}

.landingPortfolioMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.landingPortfolioMeta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landingPortfolioMeta time {
  flex: 0 0 auto;
  color: rgba(26, 26, 23, 0.48);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
}

.landingPortfolioCard strong {
  margin: 0;
  font-size: 19px;
  line-height: 1.18;
}

.landingPortfolioCard em {
  margin: 0;
  color: rgba(26, 26, 23, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.landingContentViewer {
  padding-top: 62px;
  background: #11110f;
}

.landingContentViewer iframe {
  width: 100%;
  height: min(940px, calc(100vh - 62px));
  min-height: 720px;
  display: block;
  border: 0;
  background: #11110f;
}

.landingContentDetail {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  margin: 46px auto 0;
  padding-bottom: 76px;
}

.landingContentTitleBlock {
  display: grid;
  align-content: start;
  gap: 16px;
}

.landingBackLink {
  color: #876b27;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.landingContentTitleBlock h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
}

.landingContentTitleBlock p {
  max-width: 680px;
  margin: 0;
  color: rgba(26, 26, 23, 0.66);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
}

.landingContentActions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.landingContentAction {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(26, 26, 23, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #1a1a17;
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}

.landingContentShareStatus {
  color: rgba(26, 26, 23, 0.54);
  font-size: 12px;
  font-weight: 760;
}

.landingContentMetaPanel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(26, 26, 23, 0.1);
  border-radius: 8px;
  background: #fff;
}

.landingContentMetaPanel > span {
  width: fit-content;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: #f0eee8;
  color: #1a1a17;
  font-size: 12px;
  font-weight: 820;
}

.landingContentMetaPanel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.landingContentMetaPanel dl > div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 26, 23, 0.1);
}

.landingContentMetaPanel dt {
  color: rgba(26, 26, 23, 0.46);
  font-size: 12px;
  font-weight: 780;
}

.landingContentMetaPanel dd {
  margin: 0;
  color: #1a1a17;
  font-size: 15px;
  font-weight: 760;
}

.landingTagRail {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landingTagRail span {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  color: rgba(26, 26, 23, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.shell {
  --preview-center-x: 50%;
  --preview-overlay-width: min(720px, calc(100vw - 40px));

  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #111;
}

.stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #171717;
  touch-action: none;
}

.stage[data-click-effect] {
  cursor: pointer;
}

.panoramaPlane {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  transform-origin: 0 0;
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panorama {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  user-select: none;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panorama[data-preview="true"] {
  opacity: 1;
}

.colorFilterDefs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell[data-gesture-active="true"] .panoramaPlane,
.shell[data-gesture-active="true"] .panorama {
  transition: none;
}

.loadingOverlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.22), rgba(10, 10, 10, 0.46)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px);
}

.loadingOverlay::before {
  content: "";
  position: absolute;
  width: min(520px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 208, 138, 0.88), transparent);
  box-shadow: 0 0 28px rgba(241, 208, 138, 0.28);
  animation: loadingSweep 1800ms ease-in-out infinite;
}

.loadingMark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 208, 138, 0.24);
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.38);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.loadingMark span {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
  border-top-color: rgba(241, 208, 138, 0.96);
  border-right-color: rgba(241, 208, 138, 0.22);
  border-radius: 999px;
  animation: loadingOrbit 1200ms linear infinite;
}

.loadingMark span:nth-child(2) {
  width: 42px;
  height: 42px;
  border-top-color: rgba(247, 243, 236, 0.8);
  animation-duration: 1700ms;
  animation-direction: reverse;
}

.loadingMark span:nth-child(3) {
  width: 18px;
  height: 18px;
  border-top-color: rgba(241, 208, 138, 0.72);
  animation-duration: 950ms;
}

.loadingText {
  position: absolute;
  top: calc(50% + 68px);
  left: 50%;
  width: min(240px, 70vw);
  color: rgba(247, 243, 236, 0.78);
  font-size: 12px;
  font-weight: 820;
  text-align: center;
  transform: translateX(-50%);
}

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

.appleParticle {
  position: absolute;
  left: var(--burst-x);
  top: var(--burst-y);
  display: grid;
  place-items: center;
  width: var(--burst-size);
  height: var(--burst-size);
  color: #f34f45;
  font-size: var(--burst-size);
  line-height: 1;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.34));
  transform: translate(-50%, -50%) scale(0.34) rotate(0deg);
  animation: appleBurst 1120ms cubic-bezier(0.16, 0.84, 0.34, 1) var(--burst-delay) both;
  will-change: transform, opacity;
}

@keyframes loadingOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes appleBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.24) rotate(0deg);
  }

  12% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--burst-dx)), calc(-50% + var(--burst-dy) + 54px))
      scale(0.72)
      rotate(var(--burst-rotate));
  }
}

@keyframes loadingSweep {
  0%,
  100% {
    transform: translateY(-58px) scaleX(0.56);
    opacity: 0.42;
  }

  50% {
    transform: translateY(58px) scaleX(1);
    opacity: 0.9;
  }
}

.shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 32%);
}

.sidebar {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  width: 224px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(14, 14, 14, 0.84);
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  overflow-y: auto;
}

.brand {
  display: grid;
  gap: 4px;
  padding: 0 8px;
}

.brand span {
  color: rgba(247, 243, 236, 0.62);
  font-size: 12px;
  font-weight: 760;
}

.brand strong {
  overflow: hidden;
  color: #f7f3ec;
  font-size: 14px;
  font-weight: 840;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobileTopBar {
  display: none;
}

.homeButton,
.currentGroupButton,
.floorTab {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3ec;
  text-decoration: none;
  cursor: pointer;
}

.homeButton:hover,
.currentGroupButton:hover,
.floorTab:hover {
  background: rgba(255, 255, 255, 0.18);
}

.homeButton:focus-visible,
.currentGroupButton:focus-visible,
.floorTab:focus-visible,
.groupButton:focus-visible,
.navButton:focus-visible,
.zoomButton:focus-visible,
.dot:focus-visible,
.descriptionInfoButton:focus-visible {
  outline: 2px solid #f1d08a;
  outline-offset: 3px;
}

.homeButton svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.currentGroupButton {
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 820;
}

.currentGroupButton span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currentGroupButton::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
}

.floorTabs {
  min-width: max-content;
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.floorTab {
  height: 30px;
  min-width: 42px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 840;
}

.floorTab[aria-current="true"] {
  border-color: rgba(241, 208, 138, 0.78);
  background: rgba(241, 208, 138, 0.2);
  color: #f7f3ec;
}

.shell .sidebar {
  top: max(12px, env(safe-area-inset-top));
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(860px, calc(100vw - 32px));
  display: block;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateX(-50%);
}

.shell .mobileTopBar {
  display: grid;
  grid-template-columns: 40px minmax(180px, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.shell .homeButton {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
}

.shell .floorTabs {
  min-width: 0;
  max-width: min(34vw, 320px);
  overflow-x: auto;
  scrollbar-width: none;
}

.shell .floorTabs::-webkit-scrollbar {
  display: none;
}

.shell .brand,
.shell .sectionLabel,
.shell .groupMeta {
  display: none;
}

.shell .groupList {
  display: none;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow-x: auto;
  scrollbar-width: none;
}

.shell .sidebar[data-menu-open] .groupList {
  display: flex;
}

.shell .groupList::-webkit-scrollbar {
  display: none;
}

.shell .groupButton {
  min-width: 104px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 12px;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

.groupList {
  display: grid;
  gap: 8px;
}

.sectionLabel {
  margin: 12px 8px 0;
  color: rgba(241, 208, 138, 0.78);
  font-size: 12px;
  font-weight: 860;
}

.sectionLabel:first-child {
  margin-top: 0;
}

.groupButton {
  width: 100%;
  min-width: 0;
  min-height: 62px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3ec;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.groupButton:hover {
  background: rgba(255, 255, 255, 0.18);
}

.groupButton[aria-current="true"] {
  border-color: rgba(241, 208, 138, 0.74);
  background: rgba(241, 208, 138, 0.16);
}

.groupMeta {
  color: rgba(247, 243, 236, 0.68);
  font-size: 12px;
  font-weight: 640;
}

.dots {
  position: absolute;
  z-index: 4;
  top: max(20px, env(safe-area-inset-top));
  left: var(--preview-center-x);
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 42px;
  height: 4px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.dot[aria-current="true"] {
  background: #f1d08a;
}

.zoomTools {
  position: absolute;
  z-index: 4;
  top: max(20px, env(safe-area-inset-top));
  right: 20px;
  width: min(320px, calc(100vw - 40px));
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.zoomTools[hidden] {
  display: none !important;
}

.zoomButton {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3ec;
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
}

.zoomReset {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 17px;
}

.zoomReset span {
  line-height: 1;
}

.zoomButton small {
  color: rgba(247, 243, 236, 0.62);
  font-size: 8px;
  font-weight: 760;
  line-height: 1;
}

.zoomReset small {
  margin-top: 0;
}

.zoomSlider {
  flex: 1;
  min-width: 88px;
  accent-color: #f1d08a;
}

.zoomValue {
  width: 48px;
  color: rgba(247, 243, 236, 0.68);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.bottomControls {
  position: absolute;
  z-index: 4;
  left: var(--preview-center-x);
  bottom: max(24px, env(safe-area-inset-bottom));
  width: min(704px, var(--preview-overlay-width));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  transform: translateX(-50%);
}

.stopRail {
  position: absolute;
  z-index: 4;
  left: var(--preview-center-x);
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 76px);
  width: min(704px, var(--preview-overlay-width));
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
}

.stopRail .dots {
  grid-column: 1;
  position: static;
  justify-self: center;
  transform: none;
}

.descriptionButtonDock {
  position: absolute;
  z-index: 5;
  left: var(--preview-center-x);
  bottom: var(--description-dock-bottom, calc(max(24px, env(safe-area-inset-bottom)) + 84px));
  width: min(704px, var(--preview-overlay-width));
  display: grid;
  grid-template-columns: minmax(0, 360px) var(--description-button-size, 38px);
  align-items: end;
  justify-content: end;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.descriptionButtonDock .descriptionInfoButton {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  pointer-events: auto;
}

.descriptionButtonDock .descriptionPanel {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  justify-self: end;
  transform: translateY(-8px);
  pointer-events: auto;
}

.hud {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 38px 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.descriptionPanel {
  position: absolute;
  z-index: 4;
  left: var(--preview-center-x);
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 118px);
  width: min(640px, var(--preview-overlay-width));
  display: grid;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.74);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.descriptionPanel p {
  margin: 0;
  max-height: min(28vh, 220px);
  overflow-y: auto;
  color: rgba(247, 243, 236, 0.86);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.48;
  white-space: pre-wrap;
}

.navButton {
  height: 38px;
  min-width: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f3ec;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.navIconButton {
  width: 38px;
  padding: 0;
  display: grid;
  place-items: center;
}

.navIcon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.navButton:hover {
  background: rgba(255, 255, 255, 0.18);
}

.playButton {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-width: 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 238, 190, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(84, 76, 58, 0.96), rgba(28, 27, 24, 0.92));
  border-color: rgba(241, 208, 138, 0.58);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #f1d08a;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.playButton[aria-pressed="true"] {
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 238, 190, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(126, 99, 48, 0.96), rgba(46, 37, 24, 0.94));
  border-color: rgba(241, 208, 138, 0.84);
  color: #ffe6a6;
}

.playButton:hover,
.playButton[aria-pressed="true"]:hover {
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 238, 190, 0.36), transparent 42%),
    linear-gradient(145deg, rgba(101, 85, 55, 0.98), rgba(32, 30, 25, 0.96));
  border-color: rgba(241, 208, 138, 0.86);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(241, 208, 138, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.playButton:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.playIcon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 999px;
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  transform: none;
}

.playGlyph {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.autoPlayRing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.autoPlayRingTrack,
.autoPlayRingProgress {
  fill: none;
  stroke-width: 3;
}

.autoPlayRingTrack {
  stroke: rgba(255, 232, 176, 0.18);
}

.autoPlayRingProgress {
  stroke: #f1d08a;
  stroke-linecap: round;
  stroke-dasharray: 119.38;
  stroke-dashoffset: 119.38;
  filter: drop-shadow(0 0 5px rgba(241, 208, 138, 0.46));
  animation: autoPlayRing var(--auto-play-duration, 4200ms) linear forwards;
}

@keyframes autoPlayRing {
  to {
    stroke-dashoffset: 0;
  }
}

.hud > .navButton:first-child {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  z-index: 1;
}

.hud > .navButton:last-child {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  position: relative;
  z-index: 1;
}

.status {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 0;
  min-width: 0;
  width: min(100%, calc(100% - 148px));
  display: grid;
  justify-self: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.statusCopy {
  min-width: 0;
  max-width: 100%;
  display: grid;
  justify-items: center;
}

.title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 840;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.maker {
  max-width: 100%;
  margin: 4px auto 0;
  overflow: hidden;
  color: rgba(247, 243, 236, 0.78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.descriptionInfoButton,
.descriptionInfoButtonSpacer {
  grid-column: 4;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
}

.descriptionInfoButton {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 243, 236, 0.66);
  font: inherit;
  font-size: 13px;
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
}

.descriptionInfoButton:hover,
.descriptionInfoButton[aria-expanded="true"] {
  border-color: rgba(241, 208, 138, 0.34);
  color: rgba(247, 243, 236, 0.9);
  background: rgba(241, 208, 138, 0.1);
}

.descriptionIcon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.descriptionInfoButtonSpacer {
  display: block;
}

.shell .dots {
  top: auto;
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 66px);
}

.shell {
  --description-button-size: 38px;
  --description-dock-bottom: calc(max(16px, env(safe-area-inset-bottom)) + 76px);
}

.shell .stopRail .dots {
  position: static;
  bottom: auto;
  transform: none;
}

.shell .dot {
  width: 34px;
}

.shell .zoomTools {
  top: auto;
  right: auto;
  left: 50%;
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 94px);
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.shell .zoomSlider,
.shell .zoomValue {
  display: none;
}

.shell .zoomButton {
  width: 58px;
  height: 32px;
  min-width: 58px;
  padding: 0 7px;
  border-radius: 8px;
  font-size: 14px;
}

.shell .bottomControls {
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(772px, calc(100vw - 40px));
  grid-template-columns: minmax(0, 1fr);
}

.shell .hud {
  grid-template-columns: 38px 38px minmax(0, 1fr) 38px;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.7);
}

.shell .descriptionButtonDock .descriptionPanel {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.7);
}

.shell .descriptionButtonDock .descriptionPanel p {
  font-size: 12px;
  line-height: 1.42;
}

.shell .status {
  grid-column: 1 / -1;
  grid-row: 1;
  width: min(100%, calc(100% - 148px));
}

.shell .title {
  font-size: 14px;
}

.shell .descriptionInfoButton {
  width: 38px;
  height: 38px;
}

.shell .descriptionInfoButtonSpacer {
  width: 38px;
  height: 38px;
}

.shell .navButton {
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  font-size: 13px;
}

.shell .playButton {
  min-width: 38px;
  width: 38px;
  height: 38px;
}

.shell .playButton[aria-pressed="true"] {
  width: 38px;
}

.shell .hud > .navButton:last-child {
  grid-column: 4;
}

.shell .panoramaPlane,
.shell .panorama {
  transition-duration: 1600ms;
}

.loading,
.error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(247, 243, 236, 0.78);
}

@media (max-width: 920px) {
  .landingHeader {
    padding: 12px 16px;
  }

  .landingHero {
    min-height: 760px;
    padding: 94px 18px 34px;
  }

  .landingHeroInner {
    gap: 52px;
  }

  .landingHeroThumbnails {
    width: 100%;
    max-width: 100%;
  }

  .landingContentGrid,
  .landingWorkflowGrid,
  .landingPortfolioGrid,
  .landingPortfolioGridFull,
  .landingContentDetail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landingSpaceGrid {
    grid-template-columns: 1fr;
  }

  .landingContentDetail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    --preview-center-x: 50%;
    --preview-overlay-width: calc(100vw - 32px);
  }

  .landingBrand img {
    height: 30px;
    width: auto;
  }

  .landingNav {
    max-width: calc(100vw - 150px);
    overflow-x: auto;
  }

  .landingNav a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .landingHero {
    min-height: 680px;
    padding: 88px 18px 34px;
  }

  .landingAboutHero {
    padding: 108px 18px 50px;
  }

  .landingAboutHero h1 {
    font-size: 30px;
  }

  .landingHeroInner,
  .landingContentGrid,
  .landingWorkflowGrid,
  .landingSpaceGrid {
    grid-template-columns: 1fr;
  }

  .landingPortfolioGrid,
  .landingPortfolioGridFull {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .landingHero h1 {
    font-size: 34px;
  }

  .landingHero p {
    font-size: 15px;
  }

  .landingHeroAside {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .landingHeroInner {
    gap: 38px;
  }

  .landingHeroThumbnails {
    --hero-thumb-fade: 28px;
    width: 100%;
    padding: 4px var(--hero-thumb-fade) 8px;
  }

  .landingHeroThumbTrack {
    gap: 10px;
  }

  .landingHeroThumb {
    flex-basis: 136px;
    min-width: 136px;
    height: 72px;
    border-radius: 7px;
  }

  .landingHeroThumbText {
    padding: 9px 9px 10px;
  }

  .landingSection {
    width: min(100% - 28px, 1160px);
    margin-top: 46px;
  }

  .landingContentCard {
    min-height: 132px;
  }

  .landingWorkflow {
    margin-top: 52px;
    padding: 42px 16px;
  }

  .landingSpaceCard {
    min-height: 330px;
  }

  .landingPortfolioCard {
    gap: 6px;
    padding: 8px 8px 10px;
    align-content: start;
  }

  .landingPortfolioCard img {
    aspect-ratio: 1 / 1;
  }

  .landingPortfolioMeta {
    gap: 6px;
  }

  .landingPortfolioMeta time {
    font-size: 11px;
  }

  .landingPortfolioCard strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .landingPortfolioCard em {
    font-size: 12px;
    line-height: 1.35;
  }

  .landingContentViewer {
    padding-top: 58px;
  }

  .landingContentViewer iframe {
    height: 77vh;
    min-height: 528px;
  }

  .landingContentDetail {
    width: min(100% - 28px, 1160px);
    gap: 24px;
    margin-top: 30px;
    padding-bottom: 54px;
  }

  .landingContentTitleBlock h1 {
    font-size: 33px;
  }

  .landingContentTitleBlock p {
    font-size: 17px;
  }

  .sidebar {
    right: 0;
    bottom: auto;
    width: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .brand {
    grid-template-columns: minmax(0, 1fr);
  }

  .groupList {
    grid-template-columns: 1fr 1fr;
  }

  .groupButton {
    min-height: 56px;
    padding: 10px;
  }

  .dots {
    top: 140px;
  }

  .dot {
    width: 30px;
  }

  .zoomTools {
    top: auto;
    right: 50%;
    bottom: calc(max(24px, env(safe-area-inset-bottom)) + 118px);
    transform: translateX(50%);
  }

  .bottomControls {
    grid-template-columns: minmax(0, 1fr);
  }

  .hud {
    grid-template-columns: 38px 38px minmax(0, 1fr) 38px;
    gap: 5px;
  }

  .status {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, calc(100% - 142px));
  }

  .sidebar {
    top: max(4px, env(safe-area-inset-top));
    right: 10px;
    bottom: auto;
    left: 10px;
    display: block;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(14, 14, 14, 0.72);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transform: none;
  }

  .mobileTopBar {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 6px;
    align-items: center;
  }

  .homeButton {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .brand,
  .sectionLabel,
  .groupMeta {
    display: none;
  }

  .groupList {
    display: none;
    gap: 6px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sidebar[data-menu-open] .groupList {
    display: flex;
  }

  .groupList::-webkit-scrollbar {
    display: none;
  }

  .groupButton {
    min-width: 82px;
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 6px 9px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .dots {
    top: auto;
    bottom: calc(max(10px, env(safe-area-inset-bottom)) + 64px);
  }

  .stopRail {
    bottom: calc(max(10px, env(safe-area-inset-bottom)) + 54px);
    width: calc(100vw - 20px);
    grid-template-columns: auto;
    justify-content: center;
  }

  .stopRail .dots {
    position: static;
    bottom: auto;
    transform: none;
  }

  .descriptionButtonDock {
    width: calc(100vw - 20px);
  }

  .zoomTools {
    top: auto;
    right: auto;
    left: 50%;
    bottom: calc(max(10px, env(safe-area-inset-bottom)) + 88px);
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateX(-50%);
  }

  .zoomSlider,
  .zoomValue {
    display: none;
  }

  .zoomButton {
    width: 58px;
    height: 32px;
    min-width: 58px;
    padding: 0 7px;
    border-radius: 8px;
    font-size: 14px;
  }

  .shell .bottomControls {
    bottom: max(10px, env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    grid-template-columns: minmax(0, 1fr);
  }

  .shell .hud {
    grid-template-columns: 34px 34px minmax(0, 1fr) 34px;
    gap: 7px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(18, 18, 18, 0.7);
  }

  .shell {
    --description-button-size: 34px;
    --description-dock-bottom: calc(max(10px, env(safe-area-inset-bottom)) + 60px);
  }

  .shell .descriptionButtonDock {
    grid-template-columns: minmax(0, 1fr) var(--description-button-size);
    gap: 8px;
  }

  .shell .descriptionButtonDock .descriptionPanel {
    padding: 9px 12px;
  }

  .shell .descriptionButtonDock .descriptionPanel p {
    font-size: 12px;
  }

  .shell .status {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, calc(100% - 140px));
  }

  .shell .title {
    font-size: 13px;
  }

  .shell .descriptionInfoButton {
    width: 34px;
    height: 34px;
  }

  .shell .descriptionInfoButtonSpacer {
    width: 34px;
    height: 34px;
  }

  .shell .navButton {
    min-width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 999px;
    font-size: 12px;
  }

  .shell .playButton {
    min-width: 34px;
    width: 34px;
    height: 34px;
  }

  .shell .playButton[aria-pressed="true"] {
    width: 34px;
  }

  .shell .hud > .navButton:last-child {
    grid-column: 4;
  }

  .panoramaPlane,
  .panorama {
    transition-duration: 1600ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panoramaPlane,
  .panorama {
    transition-duration: 1ms;
  }
}
