html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #dfe7ed;
  color: var(--ink);
  font-family: var(--font-main);
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--icg-teal) 72%, white);
  outline-offset: 3px;
}

.building-shell {
  position: relative;
  width: min(100vw, calc(100vh * 16 / 9));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fbfcfe;
  box-shadow: 0 36px 120px rgba(11, 27, 51, 0.2);
  isolation: isolate;
}

.building-atmosphere,
.building-viewport,
.scene {
  position: absolute;
  inset: 0;
}

.building-atmosphere {
  background:
    linear-gradient(90deg, #0b1b33 0%, #102a4e 18%, transparent 18.2%),
    radial-gradient(ellipse 66% 80% at 80% 50%, rgba(37, 151, 160, 0.16), transparent 62%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
  pointer-events: none;
}

.building-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

.atmosphere-grid {
  position: absolute;
  inset: 0 0 0 18%;
  background-image:
    linear-gradient(rgba(28, 52, 97, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 52, 97, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(125deg, rgba(0, 0, 0, 0.56), transparent 76%);
}

.atmosphere-column {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, rgba(53, 220, 201, 0.16), rgba(11, 27, 51, 0));
}

.atmosphere-orbit {
  position: absolute;
  right: 7%;
  top: 16%;
  width: 36%;
  aspect-ratio: 1;
  border: 1px solid rgba(37, 151, 160, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.progress-track {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  height: 4px;
  background: rgba(28, 52, 97, 0.1);
}

.progress-bar {
  width: 16.666%;
  height: 100%;
  background: linear-gradient(90deg, var(--icg-teal), var(--accent-on-dark));
  transition: width var(--motion-base) var(--ease-main);
}

.building-nav {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 58%;
  padding: 6px;
  border: 1px solid rgba(28, 52, 97, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(28, 52, 97, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.building-nav::before,
.building-nav::after {
  content: none;
}

.building-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 32px;
  padding: 0 12px 0 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--icg-navy);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  transition:
    background 240ms var(--ease-main),
    border-color 240ms var(--ease-main),
    color 240ms var(--ease-main);
}

.building-nav__item span {
  display: grid;
  place-items: center;
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(28, 52, 97, 0.08);
}

.building-nav__item small {
  display: block;
  max-width: 86px;
  overflow: hidden;
  color: rgba(28, 52, 97, 0.72);
  font-size: 0.55rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.building-nav__item.is-active {
  background: var(--icg-navy);
  border-color: rgba(28, 52, 97, 0.12);
  color: white;
}

.building-nav__item.is-active span {
  background: rgba(255, 255, 255, 0.18);
}

.building-nav__item.is-active small {
  color: white;
}

.building-nav__item:hover {
  background: rgba(37, 151, 160, 0.1);
}

.scene {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: clamp(42px, 5%, 76px) clamp(54px, 6%, 96px) clamp(42px, 5%, 70px) clamp(24%, 25%, 27%);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(0.992);
  transition:
    opacity var(--motion-base) var(--ease-main),
    transform var(--motion-base) var(--ease-main);
}

.scene.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.scene-plane--atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.scene-ghost {
  position: absolute;
  left: 4.2%;
  bottom: 10%;
  color: rgba(255, 255, 255, 0.16);
  font-size: 8rem;
  font-weight: 850;
  line-height: 1;
}

.scene-header,
.building-status,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--icg-navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

footer {
  align-self: end;
  border-top: 1px solid rgba(28, 52, 97, 0.13);
  padding-top: 12px;
}

.scene-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scene-footer > span {
  min-width: 0;
}

.scene-header__marks {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.block-tag {
  color: var(--icg-navy);
}

.duration {
  color: var(--muted);
}

.copy-stack {
  display: grid;
  gap: 12px;
  align-content: center;
}

.copy-stack.compact {
  max-width: 880px;
  gap: 8px;
}

.copy-stack.center {
  justify-items: center;
  text-align: center;
}

.editorial-plane {
  position: relative;
  z-index: 2;
}

.detail-plane {
  position: relative;
  z-index: 3;
}

.visual-object {
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.scene-premium {
  display: block;
  padding: 0;
  background: #f5f9fc;
}

.scene-premium__frame,
.scene-premium__frame img,
.s5-focus-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-premium__frame {
  z-index: 1;
  overflow: hidden;
}

.scene-premium__frame img,
.s5-focus-frame {
  display: block;
  object-fit: cover;
}

.scene-premium.is-active .scene-premium__frame img {
  animation: premium-rise 920ms var(--ease-main) both;
}

.scene-premium-s2.is-active .scene-premium__frame img {
  animation-name: premium-routes-rise;
}

.s5-focus-frame {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms var(--ease-main);
}

.scene-premium-s5[data-practice-state="gtm"] .s5-focus-frame {
  opacity: 1;
}

.icg-editorial-slot {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.icg-editorial-slot--s1 {
  top: 10.6%;
  right: 5.4%;
}

.icg-editorial-slot--s1::before {
  content: "";
  position: absolute;
  inset: -14px -18px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72));
  box-shadow: 0 16px 42px rgba(28, 52, 97, 0.08);
}

.scene-premium-s1 {
  background:
    radial-gradient(circle at 74% 54%, rgba(53, 220, 201, 0.14), transparent 30%),
    radial-gradient(circle at 14% 74%, rgba(28, 52, 97, 0.08), transparent 32%),
    linear-gradient(118deg, #f8fbfd 0%, #edf5f8 54%, #fbfdff 100%);
}

.scene-cover {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 76% 52%, rgba(53, 220, 201, 0.18), transparent 31%),
    radial-gradient(circle at 11% 88%, rgba(28, 52, 97, 0.08), transparent 35%),
    linear-gradient(118deg, #f8fbfd 0%, #edf5f8 54%, #fbfdff 100%);
}

.cover-canvas,
.cover-field,
.cover-field__wash {
  position: absolute;
  inset: 0;
}

.cover-canvas {
  z-index: 1;
  opacity: 0.9;
}

.cover-field {
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.cover-field::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 42%;
  opacity: 0.55;
  background:
    linear-gradient(115deg, transparent 0 49.6%, rgba(37, 151, 160, 0.22) 49.8% 50.2%, transparent 50.4%),
    linear-gradient(62deg, transparent 0 49.6%, rgba(28, 52, 97, 0.12) 49.8% 50.2%, transparent 50.4%),
    linear-gradient(180deg, transparent 0 49.7%, rgba(37, 151, 160, 0.14) 49.9% 50.1%, transparent 50.3%);
  animation: s1-field-drift 12s var(--ease-main) infinite alternate;
}

.cover-field__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 151, 160, 0.32), transparent);
  transform-origin: 50% 50%;
}

.cover-field__line--a {
  left: 52%;
  top: 33%;
  width: 42%;
  transform: rotate(28deg);
}

.cover-field__line--b {
  left: 46%;
  top: 67%;
  width: 47%;
  transform: rotate(-31deg);
}

.cover-field__wash {
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(90deg, rgba(248, 251, 253, 0.62), transparent 42%);
}

.cover-header {
  position: absolute;
  left: 6.4%;
  right: 6.4%;
  top: 10.6%;
  z-index: 7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}

.cover-brand,
.cover-client {
  pointer-events: none;
}

.cover-copy {
  position: absolute;
  left: 6.4%;
  top: 28%;
  z-index: 5;
  width: min(49%, 760px);
  color: var(--icg-navy);
}

.cover-copy h1 {
  margin: 14px 0 4px;
  font-size: clamp(2.8rem, 4.8vw, 5.7rem);
  letter-spacing: 0;
  line-height: 0.9;
}

.cover-copy .subtitle {
  margin: 0 0 26px;
  color: rgba(28, 52, 97, 0.54);
  font-size: 1.05rem;
  font-weight: 760;
}

.cover-thesis {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.cover-thesis p {
  margin: 0;
  color: rgba(28, 52, 97, 0.52);
  font-size: clamp(1.08rem, 1.5vw, 1.52rem);
  font-weight: 720;
}

.cover-thesis strong {
  display: block;
  max-width: 720px;
  color: var(--icg-navy);
  font-size: clamp(2.15rem, 3.8vw, 4.65rem);
  font-weight: 920;
  letter-spacing: 0;
  line-height: 0.95;
}

.cover-thesis strong::first-line {
  color: var(--icg-teal);
}

.cover-callout {
  max-width: 660px;
  margin: 24px 0 0;
  border-left: 3px solid var(--icg-teal);
  padding-left: 16px;
  color: rgba(58, 71, 84, 0.82);
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  font-weight: 650;
  line-height: 1.42;
}

.cover-orbit {
  position: absolute;
  right: 7.6%;
  top: 25%;
  z-index: 4;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26) 42%, transparent 72%),
    radial-gradient(circle at 50% 50%, rgba(37, 151, 160, 0.12), transparent 62%);
  box-shadow: 0 34px 90px rgba(28, 52, 97, 0.11);
}

.cover-orbit__rings,
.cover-orbit__rings span,
.cover-orbit__core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.cover-orbit__rings {
  animation: s1-orbit-spin 34s linear infinite;
}

.cover-orbit__rings span {
  border: 1px solid rgba(37, 151, 160, 0.22);
}

.cover-orbit__rings span:nth-child(2) {
  inset: 16%;
  border-style: dashed;
  animation: s1-orbit-spin 22s linear infinite reverse;
}

.cover-orbit__rings span:nth-child(3) {
  inset: 36%;
  background: radial-gradient(circle, rgba(53, 220, 201, 0.16), rgba(255, 255, 255, 0.08));
}

.cover-orbit__core {
  inset: 34%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(37, 151, 160, 0.16);
  animation: s1-core-breathe 5.5s var(--ease-main) infinite;
}

.cover-orbit__node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 132px;
  color: var(--icg-navy);
  font-size: 0.56rem;
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.cover-orbit__node b {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(28, 52, 97, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(28, 52, 97, 0.08);
  font-size: 0.76rem;
}

.cover-orbit__node small {
  color: rgba(28, 52, 97, 0.7);
}

.cover-orbit__node-1 {
  left: 50%;
  top: 1%;
  transform: translate(-50%, -50%);
}

.cover-orbit__node-2 {
  right: -3%;
  top: 24%;
  transform: translateY(-50%);
}

.cover-orbit__node-3 {
  right: -3%;
  bottom: 24%;
  transform: translateY(50%);
}

.cover-orbit__node-4 {
  left: 50%;
  bottom: 1%;
  transform: translate(-50%, 50%);
}

.cover-orbit__node-5 {
  left: -3%;
  bottom: 24%;
  flex-direction: row-reverse;
  text-align: right;
  transform: translateY(50%);
}

.cover-orbit__node-6 {
  left: -3%;
  top: 24%;
  flex-direction: row-reverse;
  text-align: right;
  transform: translateY(-50%);
}

.brand-mark-cover img {
  width: 72px;
  height: auto;
}

.brand-mark-orbit img {
  width: 84px;
  height: auto;
}

.brand-mark-cover figcaption,
.brand-mark-orbit figcaption,
.icg-mark-cover figcaption {
  display: none;
}

.icg-mark-cover img {
  width: min(29vw, 380px);
  height: auto;
}

.scene-premium-s1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(28, 52, 97, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 52, 97, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(108deg, rgba(0, 0, 0, 0.44), transparent 74%);
}

.s1-live-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.s1-live-field::before {
  content: "";
  position: absolute;
  inset: 12% 5% 10% 45%;
  background:
    linear-gradient(118deg, transparent 0 47%, rgba(37, 151, 160, 0.22) 47.2% 47.8%, transparent 48%),
    linear-gradient(62deg, transparent 0 49%, rgba(28, 52, 97, 0.14) 49.2% 49.7%, transparent 50%),
    linear-gradient(180deg, transparent 0 49%, rgba(37, 151, 160, 0.16) 49.2% 49.7%, transparent 50%);
  animation: s1-field-drift 12s var(--ease-main) infinite alternate;
}

.s1-vector {
  position: absolute;
  border: 1px solid rgba(37, 151, 160, 0.2);
  border-radius: 50%;
  filter: drop-shadow(0 20px 42px rgba(37, 151, 160, 0.08));
}

.s1-vector--one {
  right: 6%;
  top: 14%;
  width: 42%;
  aspect-ratio: 1;
  animation: s1-orbit-spin 22s linear infinite;
}

.s1-vector--two {
  right: 13%;
  top: 25%;
  width: 28%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: s1-orbit-spin 18s linear infinite reverse;
}

.s1-vector--three {
  right: 24%;
  top: 39%;
  width: 9%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(53, 220, 201, 0.2), rgba(255, 255, 255, 0.08));
  animation: s1-core-breathe 4.8s var(--ease-main) infinite;
}

.s1-pulse {
  position: absolute;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--icg-teal);
  box-shadow: 0 0 0 10px rgba(37, 151, 160, 0.08);
}

.s1-pulse--a {
  right: 41%;
  top: 24%;
  animation: s1-node-float 5.2s var(--ease-main) infinite;
}

.s1-pulse--b {
  right: 8%;
  top: 50%;
  animation: s1-node-float 5.8s var(--ease-main) infinite 300ms;
}

.s1-pulse--c {
  right: 32%;
  bottom: 22%;
  animation: s1-node-float 6.3s var(--ease-main) infinite 600ms;
}

.s1-hero-copy {
  position: absolute;
  left: 6.8%;
  top: 24%;
  z-index: 4;
  width: min(47%, 760px);
  color: var(--icg-navy);
}

.s1-hero-copy h1 {
  margin: 22px 0 12px;
  font-size: clamp(2.2rem, 3.5vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.s1-kicker {
  margin: 0;
  color: rgba(28, 52, 97, 0.54);
  font-size: 1rem;
  font-weight: 760;
}

.s1-invitation {
  margin: 0 0 14px;
  color: rgba(28, 52, 97, 0.48);
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  font-weight: 700;
}

.s1-thesis {
  display: grid;
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.45rem, 4.2vw, 5.1rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.s1-thesis strong {
  color: var(--icg-teal);
  font-weight: 900;
}

.s1-thesis::after {
  content: "";
  width: min(360px, 72%);
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--icg-teal), rgba(53, 220, 201, 0.35));
}

.s1-orbital-stage {
  position: absolute;
  right: 8.2%;
  top: 25%;
  z-index: 3;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2) 45%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(37, 151, 160, 0.1), transparent 62%);
  box-shadow: 0 34px 90px rgba(28, 52, 97, 0.12);
}

.s1-orbit-ring,
.s1-orbit-thread,
.s1-orbit-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.s1-orbit-ring {
  border: 1px solid rgba(37, 151, 160, 0.22);
}

.s1-orbit-ring--outer {
  animation: s1-orbit-spin 34s linear infinite;
}

.s1-orbit-ring--middle {
  inset: 13%;
  border-style: dashed;
  animation: s1-orbit-spin 25s linear infinite reverse;
}

.s1-orbit-ring--inner {
  inset: 32%;
  background: radial-gradient(circle, rgba(53, 220, 201, 0.16), rgba(255, 255, 255, 0.06));
  animation: s1-core-breathe 5.5s var(--ease-main) infinite;
}

.s1-orbit-core {
  inset: 47%;
  background: var(--icg-teal);
  box-shadow:
    0 0 0 12px rgba(37, 151, 160, 0.08),
    0 0 70px rgba(53, 220, 201, 0.36);
}

.s1-orbit-thread {
  inset: 8%;
  border: 0;
}

.s1-orbit-thread::before,
.s1-orbit-thread::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 151, 160, 0.34), transparent);
  transform-origin: 0 50%;
}

.s1-orbit-thread--a {
  transform: rotate(18deg);
}

.s1-orbit-thread--b {
  transform: rotate(138deg);
}

.s1-orbit-thread--c {
  transform: rotate(258deg);
}

.s1-identity-redaction {
  position: absolute;
  z-index: 4;
  right: 10.5%;
  top: 24.25%;
  width: 31.5%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(250, 253, 255, 0.99) 0 50%, rgba(244, 250, 252, 0.96) 64%, rgba(235, 246, 248, 0.88) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 248, 0.9));
  box-shadow:
    0 24px 60px rgba(28, 52, 97, 0.11),
    inset 0 0 0 1px rgba(37, 151, 160, 0.12);
}

.s1-identity-redaction::before,
.s1-identity-redaction::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(37, 151, 160, 0.18);
  border-radius: 50%;
}

.s1-identity-redaction::after {
  inset: 38%;
  background: radial-gradient(circle, rgba(37, 151, 160, 0.28), rgba(37, 151, 160, 0));
  border-color: rgba(37, 151, 160, 0.22);
}

.s1-identity-redaction__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--icg-teal);
  box-shadow:
    0 0 0 12px rgba(37, 151, 160, 0.06),
    0 0 42px rgba(37, 151, 160, 0.34);
  transform: translate(-50%, -50%);
}

.eyebrow {
  margin: 0;
  color: var(--icg-teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 18ch;
  margin-bottom: 0;
  color: var(--icg-navy);
  font-size: clamp(2.4rem, 6.5cqw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--icg-navy);
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.subtitle,
.lede {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.42;
}

.opening-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1fr);
  gap: 6%;
  align-items: center;
}

.thesis {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.35;
}

.thesis p {
  margin-bottom: 4px;
}

.thesis strong {
  color: var(--icg-navy);
}

.navy-callout,
.soft-callout {
  padding: 16px 18px;
  line-height: 1.45;
}

.navy-callout {
  max-width: 68ch;
  background: var(--icg-navy);
  color: white;
}

.soft-callout {
  border-left: 3px solid var(--icg-teal);
  background: rgba(255, 255, 255, 0.64);
  color: var(--icg-navy);
}

.asset-slot {
  min-height: 44%;
  padding: 28px;
  color: var(--muted);
}

.brand-slot-panel {
  --ink: var(--icg-navy);
  --accent: var(--icg-teal);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  border-left: 1px solid rgba(37, 151, 160, 0.24);
  background:
    radial-gradient(circle at 50% 45%, rgba(37, 151, 160, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.46);
}

.brand-slot-panel .brand-mark figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.icg-mark {
  display: inline-grid;
  margin: 0;
  color: var(--icg-navy);
}

.icg-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.icg-mark figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.icg-mark-header img {
  width: clamp(250px, 21cqw, 405px);
}

.icg-mark-editorial img {
  width: clamp(320px, 25cqw, 480px);
}

.icg-mark-footer {
  flex: 0 0 auto;
}

.icg-mark-footer img {
  width: clamp(72px, 6.2cqw, 102px);
  opacity: 0.88;
}

.brand-mark {
  --ink: var(--icg-navy);
  --accent: var(--icg-teal);
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
}

.brand-mark picture,
.brand-mark img {
  display: block;
}

.brand-mark img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.brand-mark figcaption {
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.brand-mark-hero img {
  max-width: clamp(150px, 18cqw, 230px);
}

.brand-mark-core {
  justify-items: center;
  text-align: center;
}

.brand-mark-core img {
  max-width: clamp(58px, 8cqw, 96px);
}

.brand-mark-core figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.brand-mark-closing {
  justify-items: center;
}

.brand-mark-closing img {
  max-width: clamp(72px, 10cqw, 118px);
}

.closing-alliance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4cqw, 58px);
  width: min(880px, 80%);
  margin-inline: auto;
  padding: 18px 0 8px;
}

.closing-alliance .brand-mark,
.closing-alliance .icg-mark {
  flex: 0 1 42%;
  justify-items: center;
}

.closing-alliance .brand-mark img {
  max-width: clamp(140px, 18cqw, 245px);
}

.icg-mark-closing img {
  width: clamp(260px, 26cqw, 430px);
}

.closing-alliance__rule {
  width: 1px;
  align-self: stretch;
  min-height: 86px;
  background: rgba(37, 151, 160, 0.26);
}

.tier-system {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  min-height: 0;
  background: rgba(28, 52, 97, 0.12);
  border-top: 1px solid rgba(28, 52, 97, 0.12);
  border-bottom: 1px solid rgba(28, 52, 97, 0.12);
}

.tier-row {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 260px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  transition:
    transform var(--motion-fast) var(--ease-main),
    background var(--motion-fast) var(--ease-main);
}

.tier-row:is(:hover, :focus-visible),
.tier-row.is-featured {
  background: white;
  transform: translateY(-7px);
}

.tier-row.is-featured {
  box-shadow: inset 0 5px 0 var(--icg-teal);
}

.tier-badge,
.sector-tag {
  justify-self: start;
  padding: 6px 8px;
  background: var(--icg-navy);
  color: white;
  font-size: 0.68rem;
  font-weight: 850;
}

.tier-row.is-featured .tier-badge {
  background: var(--icg-teal);
}

.tier-row p,
.case-card p,
.pattern-row p,
.commerce-grid p,
.closing-grid p {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.36;
}

.tier-row small {
  color: var(--muted);
  font-size: 0.76rem;
}

.case-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 1px;
  min-height: 0;
  background: rgba(28, 52, 97, 0.12);
}

.case-card {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.case-card:first-child {
  grid-row: span 2;
  background: white;
}

.case-card:nth-child(4) {
  grid-column: 2;
}

.case-card:is(:hover, :focus-visible) {
  background: white;
  box-shadow: inset 4px 0 0 var(--icg-teal);
}

.result {
  color: var(--success);
}

.patterns-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.72fr);
  gap: 26px;
  min-height: 0;
}

.pattern-list,
.segment-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pattern-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  border-bottom: 1px solid rgba(28, 52, 97, 0.14);
  padding: 10px 0;
}

.pattern-row strong {
  color: var(--icg-navy);
  line-height: 1.3;
}

.segment-card {
  padding: 15px 0;
  border-bottom: 1px solid rgba(37, 151, 160, 0.24);
  color: var(--icg-navy);
  font-weight: 800;
}

.orbital-map {
  position: relative;
  min-height: 0;
  margin-inline: auto;
  width: min(860px, 86%);
  aspect-ratio: 16 / 9;
}

.orbital-map::before,
.orbital-map::after {
  content: "";
  position: absolute;
  inset: 16% 20%;
  border: 1px solid rgba(37, 151, 160, 0.2);
  border-radius: 50%;
}

.orbital-map::after {
  inset: 28% 32%;
}

.orbital-core,
.practice-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
}

.orbital-core {
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 28%;
  min-width: 190px;
  aspect-ratio: 1;
  padding: 22px;
  text-align: center;
  transform: translate(-50%, -50%);
  color: var(--icg-navy);
  border-radius: 50%;
  box-shadow: 0 22px 70px rgba(28, 52, 97, 0.14);
}

.orbital-core strong {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.practice-node {
  display: grid;
  gap: 4px;
  width: 30%;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(28, 52, 97, 0.14);
  color: var(--icg-navy);
  text-align: left;
  cursor: pointer;
  transition:
    transform var(--motion-base) var(--ease-main),
    opacity var(--motion-base) var(--ease-main),
    border-color var(--motion-base) var(--ease-main),
    box-shadow var(--motion-base) var(--ease-main);
}

.practice-node span {
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.12;
}

.practice-node small {
  color: var(--muted);
  font-size: 0.74rem;
}

.node-1 { left: 35%; top: 0; transform: translateY(-6%); }
.node-2 { right: 0; top: 18%; }
.node-3 { right: 0; bottom: 18%; }
.node-4 { left: 35%; bottom: 0; transform: translateY(6%); }
.node-5 { left: 0; bottom: 18%; }
.node-6 { left: 0; top: 18%; }

.practice-node.is-focused {
  border-color: var(--icg-teal);
  box-shadow: var(--elev-1);
  transform: scale(1.05);
}

.practice-node.is-dimmed {
  opacity: 0.28;
}

.practice-detail {
  min-height: 70px;
  border-left: 3px solid var(--icg-teal);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.practice-detail strong {
  color: var(--icg-navy);
}

.orbital-map--hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
}

.orbital-map--hotspots::before,
.orbital-map--hotspots::after {
  content: none;
}

.orbital-map--hotspots .orbital-core,
.orbital-map--hotspots .practice-node {
  position: absolute;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  opacity: 0.01;
}

.orbital-map--hotspots .orbital-core {
  left: 50%;
  top: 55%;
  width: 11%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.orbital-map--hotspots .practice-node {
  width: 14%;
  min-height: 8%;
  cursor: pointer;
}

.orbital-map--hotspots .practice-node span,
.orbital-map--hotspots .practice-node small {
  color: transparent;
}

.orbital-map--hotspots .node-1 { left: 43.2%; top: 22.8%; transform: none; }
.orbital-map--hotspots .node-2 { left: 58.8%; top: 38%; right: auto; bottom: auto; }
.orbital-map--hotspots .node-3 { left: 58.8%; top: 67%; right: auto; bottom: auto; }
.orbital-map--hotspots .node-4 { left: 43.2%; top: 79.6%; transform: none; }
.orbital-map--hotspots .node-5 { left: 30.4%; top: 67%; bottom: auto; }
.orbital-map--hotspots .node-6 { left: 30.4%; top: 38%; }

.orbital-map--hotspots .practice-node.is-focused,
.orbital-map--hotspots .practice-node.is-dimmed {
  opacity: 0.01;
  transform: none;
}

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

.tier-hotspot {
  position: absolute;
  width: 12%;
  height: 18%;
  opacity: 0;
  transform: translateY(16px);
  animation: tier-hotspot-rise 720ms var(--ease-main) both;
}

.scene-premium-s2.is-active .tier-hotspot-1 { left: 7%; top: 66%; animation-delay: 100ms; }
.scene-premium-s2.is-active .tier-hotspot-2 { left: 24.5%; top: 60%; animation-delay: 190ms; }
.scene-premium-s2.is-active .tier-hotspot-3 { left: 42.5%; top: 41%; animation-delay: 280ms; }
.scene-premium-s2.is-active .tier-hotspot-4 { left: 63.5%; top: 56%; animation-delay: 370ms; }
.scene-premium-s2.is-active .tier-hotspot-5 { left: 81%; top: 62%; animation-delay: 460ms; }

.closing-grid,
.commerce-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(28, 52, 97, 0.12);
}

.closing-grid article,
.commerce-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.commerce-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 20px;
}

.building-overlay {
  position: absolute;
  inset: clamp(44px, 5%, 76px) clamp(54px, 6%, 96px);
  z-index: 14;
  overflow: hidden;
  padding: 34px 40px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 90px rgba(28, 52, 97, 0.18);
}

.building-overlay[hidden] {
  display: none;
}

.overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(28, 52, 97, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--icg-navy);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 850;
}

.building-controls {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.building-status {
  position: absolute;
  left: calc(18% + 24px);
  bottom: 22px;
  z-index: 10;
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 0.7rem;
}

@media (max-aspect-ratio: 4 / 3) {
  .scene {
    padding-left: 23%;
  }

  .building-nav {
    max-width: 72%;
  }

  .building-nav__item {
    padding-right: 7px;
  }

  .building-nav__item small {
    display: none;
  }

  .s1-hero-copy {
    left: 6%;
    top: 24%;
    width: 58%;
  }

  .s1-orbital-stage {
    right: 4%;
    width: 34%;
  }

  .tier-system,
  .commerce-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opening-layout,
  .patterns-layout {
    grid-template-columns: 1fr;
  }

  .orbital-map {
    width: 92%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
  }
}

@keyframes premium-rise {
  from {
    opacity: 0;
    transform: scale(1.018) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes premium-routes-rise {
  from {
    opacity: 0;
    transform: scale(1.012) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes tier-hotspot-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes s1-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes s1-core-breathe {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes s1-node-float {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(10px, -8px, 0);
  }
}

@keyframes s1-field-drift {
  from {
    opacity: 0.62;
    transform: translate3d(-10px, 0, 0) scale(1);
  }

  to {
    opacity: 0.9;
    transform: translate3d(14px, -8px, 0) scale(1.025);
  }
}

/* C015 rescue overrides: keep the generated cover structure, restore hierarchy. */
.scene-cover .cover-brand .brand-mark-cover img {
  width: 58px;
  max-width: 58px;
}

.scene-cover .cover-brand .brand-mark-cover figcaption,
.scene-cover .cover-orbit .brand-mark-orbit figcaption,
.scene-cover .cover-client .icg-mark-cover figcaption {
  display: none;
}

.scene-cover .cover-orbit .brand-mark-orbit img {
  width: 86px;
  max-width: 86px;
}

.scene-cover .cover-client .icg-mark-cover img {
  width: min(24vw, 345px);
  max-width: min(24vw, 345px);
}

.scene-cover .cover-copy {
  top: 31%;
  width: min(46%, 690px);
}

.scene-cover .cover-copy h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.9rem);
}

.scene-cover .cover-thesis strong {
  font-size: clamp(2rem, 3.35vw, 4rem);
}

.scene-cover .cover-callout {
  max-width: 570px;
  margin-top: 20px;
  font-size: clamp(0.72rem, 0.82vw, 0.88rem);
  line-height: 1.34;
}

.scene-cover .cover-orbit {
  top: 27%;
  right: 7.2%;
  width: 33%;
}

/* C015: portada vectorial viva sin raster horneado */
.building-nav {
  top: 18px;
  left: 28%;
  right: 28px;
  width: auto;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.building-nav__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  min-height: 34px;
  padding: 5px 8px 5px 5px;
  border-color: rgba(28, 52, 97, 0.16);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(28, 52, 97, 0.08);
  backdrop-filter: blur(10px);
}

.building-nav__item small {
  display: block;
  max-width: none;
  white-space: normal;
}

.scene-cover {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 74% 43%, rgba(37, 151, 160, 0.16), transparent 34%),
    radial-gradient(circle at 8% 12%, rgba(92, 141, 184, 0.18), transparent 26%),
    linear-gradient(135deg, #fbfdff 0%, #eff7f9 52%, #f7fbfc 100%);
}

.scene-cover::before,
.s1-live-field,
.s1-hero-copy,
.s1-orbital-stage,
.s1-identity-redaction {
  display: none;
}

.cover-canvas,
.cover-field,
.cover-header,
.cover-copy,
.cover-orbit {
  position: absolute;
}

.cover-canvas,
.cover-field {
  inset: 0;
}

.cover-canvas {
  z-index: 1;
  opacity: 0.82;
}

.cover-field {
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.cover-field::before {
  content: "";
  position: absolute;
  inset: 9% 4% 10% 4%;
  background-image:
    linear-gradient(rgba(28, 52, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 52, 97, 0.04) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(110deg, rgba(0, 0, 0, 0.45), transparent 75%);
}

.cover-field__line {
  position: absolute;
  height: 1px;
  width: 58%;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(37, 151, 160, 0.34), transparent);
}

.cover-field__line--a {
  right: -6%;
  top: 46%;
  transform: rotate(-24deg);
}

.cover-field__line--b {
  right: 3%;
  top: 53%;
  transform: rotate(22deg);
}

.cover-field__wash {
  position: absolute;
  right: 8%;
  top: 19%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), rgba(237, 248, 249, 0.62) 55%, transparent 71%);
  box-shadow: inset 0 0 0 1px rgba(37, 151, 160, 0.12);
}

.cover-header {
  left: 5%;
  right: 5%;
  top: 7%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28, 52, 97, 0.12);
}

.cover-brand .brand-mark figcaption,
.cover-orbit .brand-mark figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.brand-mark-cover img {
  max-width: clamp(138px, 13cqw, 230px);
}

.icg-mark-cover img {
  width: clamp(275px, 22cqw, 455px);
}

.cover-copy {
  left: 5%;
  top: 26%;
  z-index: 4;
  display: grid;
  gap: 14px;
  width: min(720px, 43%);
  animation: cover-copy-in 880ms var(--ease-main) both;
}

.cover-copy h1 {
  max-width: 12ch;
  font-size: clamp(4.3rem, 8.4cqw, 7.6rem);
  line-height: 0.88;
}

.cover-copy .subtitle {
  max-width: 34ch;
  font-size: clamp(1rem, 1.4cqw, 1.38rem);
}

.cover-thesis {
  display: grid;
  gap: 2px;
  color: rgba(11, 27, 51, 0.58);
  font-size: clamp(1.32rem, 2.15cqw, 2.1rem);
  font-weight: 700;
  line-height: 1.14;
}

.cover-thesis p {
  margin: 0;
}

.cover-thesis strong {
  color: var(--icg-navy);
}

.cover-callout {
  max-width: 58ch;
  margin-top: 12px;
  border-left: 4px solid var(--icg-teal);
  padding: 13px 0 13px 18px;
  color: rgba(11, 27, 51, 0.76);
  font-size: clamp(0.86rem, 1cqw, 1rem);
  line-height: 1.42;
}

.cover-orbit {
  right: 8.4%;
  top: 24%;
  z-index: 3;
  width: min(600px, 34%);
  aspect-ratio: 1;
  animation: cover-orbit-in 1050ms var(--ease-main) 120ms both;
}

.cover-orbit__rings,
.cover-orbit__rings span,
.cover-orbit__core,
.cover-orbit__node {
  position: absolute;
}

.cover-orbit__rings {
  inset: 0;
  border: 1px solid rgba(37, 151, 160, 0.25);
  border-radius: 50%;
}

.cover-orbit__rings span {
  inset: calc(var(--ring, 1) * 12%);
  border: 1px solid rgba(37, 151, 160, 0.18);
  border-radius: 50%;
}

.cover-orbit__rings span:nth-child(1) { --ring: 1; }
.cover-orbit__rings span:nth-child(2) { --ring: 2.15; }
.cover-orbit__rings span:nth-child(3) {
  --ring: 3.35;
  background: radial-gradient(circle, rgba(37, 151, 160, 0.18), transparent 66%);
}

.cover-orbit__core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 78px rgba(28, 52, 97, 0.16);
  transform: translate(-50%, -50%);
}

.brand-mark-orbit {
  justify-items: center;
}

.brand-mark-orbit img {
  max-width: 74%;
}

.cover-orbit__node {
  display: grid;
  gap: 2px;
  width: 130px;
  color: var(--icg-navy);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.05;
  text-transform: uppercase;
}

.cover-orbit__node b {
  display: grid;
  place-items: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--icg-navy);
  color: white;
}

.cover-orbit__node small {
  color: rgba(28, 52, 97, 0.64);
  font-size: 0.55rem;
}

.cover-orbit__node-1 { left: 48%; top: -2%; }
.cover-orbit__node-2 { right: -7%; top: 21%; }
.cover-orbit__node-3 { right: -6%; bottom: 19%; }
.cover-orbit__node-4 { left: 48%; bottom: -5%; }
.cover-orbit__node-5 { left: -7%; bottom: 19%; }
.cover-orbit__node-6 { left: -7%; top: 21%; }

@keyframes cover-copy-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cover-orbit-in {
  from {
    opacity: 0;
    transform: scale(0.96) rotate(-4deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-aspect-ratio: 4 / 3) {
  .building-nav {
    left: 34%;
    gap: 5px;
  }

  .building-nav__item small {
    display: none;
  }

  .cover-copy {
    width: 52%;
  }

  .cover-orbit {
    right: 4%;
    width: 35%;
  }

  .icg-mark-cover img {
    width: clamp(220px, 26cqw, 340px);
  }
}
