:root {
    --obsidian: #050712;
    --slate: #162036;
    --cyan: #9BF6FF;
    --violet: #B69CFF;
    --lime: #C7FF4F;
    --parchment: #F8F4E3;
    --rose: #FF5D8F;
    --title: "Unbounded", sans-serif;
    --body: "Bricolage Grotesque", sans-serif;
    --mono: "Azeret Mono", monospace;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--obsidian);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--parchment);
    font-family: var(--body);
    overflow-x: hidden;
    background:
        radial-gradient(circle at 72% 8%, rgba(182,156,255,.22), transparent 24rem),
        radial-gradient(circle at 20% 28%, rgba(155,246,255,.16), transparent 22rem),
        linear-gradient(180deg, #050712 0%, #080b18 38%, #03040a 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(248,244,227,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248,244,227,.018) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, transparent 0, transparent 38%, rgba(0,0,0,.48) 100%);
    background-size: 46px 46px, 46px 46px, 100% 100%;
    pointer-events: none;
    z-index: 20;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 21;
    opacity: .22;
    background-image: radial-gradient(rgba(248,244,227,.5) .7px, transparent .8px);
    background-size: 9px 9px;
    mix-blend-mode: overlay;
}

.torch {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(35px);
    pointer-events: none;
    z-index: 1;
    opacity: .38;
    animation: torchPulse 5s ease-in-out infinite alternate;
}

.torch-a { left: -8rem; top: 18vh; background: rgba(155,246,255,.22); }
.torch-b { right: -10rem; bottom: 8vh; background: rgba(182,156,255,.18); animation-delay: -2s; }

.inventory-strip {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    gap: .35rem;
    padding: .45rem;
    border: 1px solid rgba(155,246,255,.25);
    background: rgba(5,7,18,.72);
    box-shadow: 0 0 2rem rgba(155,246,255,.12), inset 0 0 1.4rem rgba(22,32,54,.9);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.inventory-item {
    display: block;
    color: var(--parchment);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: var(--mono);
    font-size: .58rem;
    padding: .54rem .72rem;
    border-radius: 999px;
    background: rgba(22,32,54,.72);
    transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.inventory-item.is-active {
    color: var(--obsidian);
    background: var(--cyan);
    box-shadow: 0 0 1.4rem rgba(155,246,255,.65);
}

.progress-oracle {
    position: fixed;
    right: 1.2rem;
    top: 5rem;
    z-index: 45;
    font-family: var(--mono);
    color: var(--cyan);
    background: rgba(5,7,18,.68);
    border: 1px solid rgba(155,246,255,.28);
    padding: .8rem .95rem;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.oracle-label {
    display: block;
    font-size: .54rem;
    color: rgba(248,244,227,.68);
    text-transform: uppercase;
    letter-spacing: .16em;
}

#depthReadout { font-size: 1.05rem; }

.underpass {
    position: relative;
    z-index: 2;
}

.route-map {
    position: fixed;
    left: 5vw;
    top: 0;
    width: 90vw;
    height: 100vh;
    z-index: 5;
    pointer-events: none;
    overflow: visible;
}

.route-shadow,
.route-path {
    fill: none;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-shadow {
    stroke: rgba(22,32,54,.95);
    stroke-width: 18;
    filter: drop-shadow(0 0 20px rgba(155,246,255,.15));
}

.route-path {
    stroke: var(--cyan);
    stroke-width: 5;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    filter: drop-shadow(0 0 10px rgba(155,246,255,.85));
}

.quest-packet {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 35;
    width: 2.1rem;
    height: 2.1rem;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: border-radius .4s ease, filter .4s ease;
}

.packet-core,
.packet-rune {
    position: absolute;
    inset: 0;
    display: block;
}

.packet-core {
    background: var(--parchment);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 1rem rgba(155,246,255,.8), inset 0 0 .7rem rgba(182,156,255,.38);
    clip-path: polygon(18% 0, 82% 0, 100% 24%, 82% 100%, 18% 100%, 0 24%);
}

.packet-rune {
    inset: .48rem;
    background: var(--obsidian);
    transform: rotate(45deg);
    opacity: .68;
}

.quest-packet.state-bundle .packet-core { background: var(--violet); border-color: var(--parchment); border-radius: .4rem; clip-path: polygon(8% 18%, 92% 0, 100% 78%, 14% 100%); }
.quest-packet.state-crystal .packet-core { background: linear-gradient(135deg, #9BF6FF, #B69CFF); clip-path: polygon(50% 0, 94% 32%, 78% 100%, 22% 100%, 6% 32%); }
.quest-packet.state-hourglass .packet-core { background: var(--rose); border-color: var(--rose); clip-path: polygon(20% 0, 80% 0, 56% 50%, 80% 100%, 20% 100%, 44% 50%); }
.quest-packet.state-bell .packet-core { background: var(--cyan); clip-path: polygon(36% 0, 64% 0, 68% 18%, 88% 78%, 100% 100%, 0 100%, 12% 78%, 32% 18%); }
.quest-packet.state-seal .packet-core { background: var(--lime); border-color: var(--lime); border-radius: 50%; clip-path: none; box-shadow: 0 0 2.4rem rgba(199,255,79,.95), inset 0 0 .8rem rgba(5,7,18,.35); }

.chamber {
    position: relative;
    min-height: 100vh;
    padding: 7rem clamp(1.4rem, 4vw, 5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(155,246,255,.09);
}

.chamber::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(168deg, rgba(248,244,227,.035) 0 1px, transparent 1px 28px),
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(155,246,255,.12), transparent 26rem);
    pointer-events: none;
}

.citadel { --glow-x: 68%; --glow-y: 45%; }
.lantern { --glow-x: 50%; --glow-y: 42%; }
.bridge { --glow-x: 36%; --glow-y: 52%; }
.scriptorium { --glow-x: 62%; --glow-y: 44%; }
.challenge { --glow-x: 55%; --glow-y: 50%; background: radial-gradient(circle at 55% 46%, rgba(255,93,143,.13), transparent 24rem); }
.sequencer { --glow-x: 38%; --glow-y: 38%; }
.finality { --glow-x: 50%; --glow-y: 48%; background: radial-gradient(circle at 50% 48%, rgba(199,255,79,.16), transparent 30rem); }

.mono { font-family: var(--mono); }

.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    margin: 0 0 1rem;
}

h1,
h2 {
    font-family: var(--title);
    margin: 0;
    line-height: .92;
    letter-spacing: -.05em;
    text-shadow: 0 2px 0 rgba(5,7,18,.8), 0 0 28px rgba(155,246,255,.18);
}

h1 {
    font-size: clamp(3.1rem, 10vw, 10rem);
    max-width: 9ch;
    color: var(--parchment);
    -webkit-text-stroke: 1px rgba(155,246,255,.25);
}

h2 {
    font-size: clamp(2.35rem, 6.6vw, 6.5rem);
    color: var(--parchment);
    max-width: 9.2ch;
}

p { font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.5; }

.subtitle { max-width: 36rem; color: rgba(248,244,227,.82); }

.gate-scene,
.chamber-copy,
.artifact,
.mempool-well,
.elevator-frame,
.crystal-cluster,
.hourglass,
.bell-tower,
.shrine-arch { position: relative; z-index: 10; }

.wordmark-block { position: relative; z-index: 12; }

.citadel-gate-art {
    position: relative;
    width: min(38rem, 82vw);
    height: 28rem;
    justify-self: center;
    z-index: 8;
}

.gate-crown,
.gate-arch,
.gate-door,
.stair {
    position: absolute;
    background: var(--slate);
    border: 2px solid rgba(248,244,227,.12);
    box-shadow: inset 0 0 2rem rgba(5,7,18,.88), 0 0 2rem rgba(155,246,255,.08);
}

.gate-crown { left: 10%; right: 10%; top: 3%; height: 15%; clip-path: polygon(0 100%, 8% 25%, 20% 25%, 26% 0, 38% 0, 44% 25%, 56% 25%, 62% 0, 74% 0, 80% 25%, 92% 25%, 100% 100%); }
.gate-arch { left: 16%; right: 16%; bottom: 17%; height: 70%; border-radius: 16rem 16rem .6rem .6rem; }
.gate-door { bottom: 17%; width: 32%; height: 56%; background: #0c1223; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.left-door { left: 18%; transform-origin: left; }
.right-door { right: 18%; transform-origin: right; }
.citadel.is-current .left-door { transform: perspective(900px) rotateY(-34deg); }
.citadel.is-current .right-door { transform: perspective(900px) rotateY(34deg); }
.stair { height: 1.6rem; left: 31%; right: 31%; bottom: 8%; background: #0b1020; }
.stair-two { left: 27%; right: 27%; bottom: 3%; }
.stair-three { left: 23%; right: 23%; bottom: -2%; }

.artifact {
    padding: 1rem 1.1rem;
    max-width: 24rem;
    color: var(--obsidian);
    background: var(--parchment);
    box-shadow: .7rem .7rem 0 rgba(5,7,18,.45), inset 0 0 0 2px rgba(5,7,18,.14);
    transform: rotate(-1.5deg);
}

.artifact-title {
    display: block;
    font-family: var(--mono);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(5,7,18,.62);
    margin-bottom: .35rem;
}

.artifact strong { display: block; font-size: 1.35rem; font-weight: 700; }
.artifact p { margin: .4rem 0 0; font-size: .98rem; }
.gate-plaque { margin-top: -4rem; margin-left: 3rem; }

.vellum { clip-path: polygon(3% 0, 96% 4%, 100% 88%, 92% 100%, 8% 96%, 0 12%); }
.tablet { color: var(--parchment); background: var(--slate); border: 1px solid rgba(155,246,255,.24); clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%); }

.left-copy { justify-self: start; max-width: 37rem; }
.right-copy { grid-column: 2; justify-self: end; max-width: 37rem; }
.narrow { max-width: 32rem; }

.scroll-cue {
    position: absolute;
    z-index: 12;
    right: 4rem;
    bottom: 2rem;
    font-family: var(--mono);
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .68rem;
    animation: cueDrop 1.5s ease-in-out infinite;
}

.strata {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 13rem;
    background: repeating-linear-gradient(0deg, rgba(22,32,54,.8) 0 17px, rgba(248,244,227,.04) 18px 19px, rgba(22,32,54,.9) 20px 38px);
    opacity: .85;
}

.mempool-well {
    grid-column: 2;
    justify-self: center;
    width: min(34rem, 82vw);
    height: 34rem;
    border-radius: 50%;
    border: 1px solid rgba(155,246,255,.22);
    background: radial-gradient(circle, rgba(155,246,255,.12), transparent 54%), radial-gradient(circle, rgba(22,32,54,.95), rgba(5,7,18,.78));
    box-shadow: inset 0 0 4rem rgba(5,7,18,.88), 0 0 3rem rgba(155,246,255,.08);
}

.spark {
    position: absolute;
    width: .62rem;
    height: .62rem;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 1.2rem var(--cyan);
    animation: drift 4s ease-in-out infinite alternate;
}
.s1 { left: 24%; top: 30%; }
.s2 { left: 66%; top: 22%; animation-delay: -.8s; background: var(--violet); }
.s3 { left: 72%; top: 62%; animation-delay: -1.4s; }
.s4 { left: 36%; top: 72%; animation-delay: -2s; background: var(--parchment); }
.s5 { left: 50%; top: 48%; animation-delay: -2.7s; }
.s6 { left: 18%; top: 55%; animation-delay: -3.2s; background: var(--violet); }
.lantern-orb { position: absolute; inset: 38%; border-radius: 50%; border: 2px solid var(--cyan); box-shadow: 0 0 2rem rgba(155,246,255,.7), inset 0 0 1rem rgba(155,246,255,.35); }
.note-one { position: absolute; left: 10%; bottom: 14%; }

.elevator-frame {
    width: min(34rem, 86vw);
    height: 37rem;
    justify-self: start;
    border: 2px solid rgba(155,246,255,.18);
    background: linear-gradient(180deg, rgba(22,32,54,.55), rgba(5,7,18,.4));
    clip-path: polygon(8% 0, 92% 0, 100% 92%, 82% 100%, 0 88%);
}
.bridge-rope { position: absolute; top: 0; bottom: 14%; width: 3px; background: repeating-linear-gradient(0deg, var(--parchment) 0 8px, transparent 8px 14px); opacity: .7; }
.rope-left { left: 32%; }
.rope-right { right: 32%; }
.basket { position: absolute; left: 22%; right: 22%; bottom: 20%; height: 9rem; border: 2px solid var(--violet); background: rgba(182,156,255,.12); box-shadow: 0 0 2rem rgba(182,156,255,.24); animation: basketBob 3s ease-in-out infinite; }
.bundle-knot { position: absolute; left: 50%; top: 50%; width: 5rem; height: 4rem; transform: translate(-50%, -50%) rotate(-8deg); background: var(--violet); border: 3px solid var(--parchment); border-radius: .8rem; box-shadow: 0 0 1.4rem rgba(182,156,255,.8); }
.bundle-rune { position: absolute; left: 50%; top: 75%; transform: translateX(-50%); color: var(--cyan); font-size: .74rem; }
.tablet-one { position: absolute; left: 48%; bottom: 8%; transform: rotate(1deg); }

.calldata-ribbon {
    position: absolute;
    z-index: 9;
    left: 8%;
    right: 8%;
    top: 20%;
    padding: 1.2rem;
    color: var(--obsidian);
    background: var(--parchment);
    border-left: 1rem solid var(--cyan);
    border-right: 1rem solid var(--violet);
    transform: rotate(-2deg) scaleX(.92);
    transform-origin: left;
    box-shadow: 0 0 2.4rem rgba(155,246,255,.18);
    transition: transform .7s ease;
}
.scriptorium.is-current .calldata-ribbon { transform: rotate(-2deg) scaleX(1); }
.crystal-cluster { grid-column: 2; justify-self: center; width: 28rem; height: 30rem; }
.crystal { position: absolute; background: linear-gradient(135deg, rgba(155,246,255,.85), rgba(182,156,255,.72)); border: 1px solid rgba(248,244,227,.45); filter: drop-shadow(0 0 1.3rem rgba(155,246,255,.4)); animation: refract 4s ease-in-out infinite alternate; }
.crystal-a { left: 32%; top: 18%; width: 8rem; height: 19rem; clip-path: polygon(50% 0, 100% 22%, 78% 100%, 20% 100%, 0 22%); }
.crystal-b { left: 8%; top: 38%; width: 7rem; height: 13rem; clip-path: polygon(52% 0, 100% 30%, 74% 100%, 14% 100%, 0 28%); animation-delay: -1s; }
.crystal-c { right: 8%; top: 46%; width: 6rem; height: 11rem; clip-path: polygon(48% 0, 100% 24%, 82% 100%, 16% 100%, 0 24%); animation-delay: -2s; }
.note-two { position: absolute; right: 10%; bottom: 12%; transform: rotate(2deg); }

.thorn-ring { position: absolute; z-index: 8; left: 14%; top: 18%; width: 38rem; height: 38rem; max-width: 80vw; border-radius: 50%; border: 3px dashed rgba(255,93,143,.44); box-shadow: 0 0 3rem rgba(255,93,143,.16); animation: thornTurn 16s linear infinite; }
.thorn-ring::before { content: ""; position: absolute; inset: -1.1rem; border-radius: 50%; background: repeating-conic-gradient(from 0deg, transparent 0 12deg, rgba(255,93,143,.65) 13deg 15deg, transparent 16deg 24deg); mask: radial-gradient(circle, transparent 0 58%, #000 59% 62%, transparent 63%); }
.hourglass { justify-self: center; width: 14rem; height: 24rem; border: 4px solid var(--rose); clip-path: polygon(18% 0, 82% 0, 58% 50%, 82% 100%, 18% 100%, 42% 50%); background: rgba(255,93,143,.08); box-shadow: 0 0 2rem rgba(255,93,143,.42); }
.glass { position: absolute; left: 28%; right: 28%; height: 42%; background: rgba(248,244,227,.07); }
.top-glass { top: 5%; clip-path: polygon(0 0, 100% 0, 62% 100%, 38% 100%); }
.bottom-glass { bottom: 5%; clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%); }
.sand { position: absolute; left: 42%; right: 42%; background: var(--rose); box-shadow: 0 0 1rem var(--rose); }
.sand-top { top: 13%; height: 30%; clip-path: polygon(0 0, 100% 0, 58% 100%, 42% 100%); animation: sandTop 3s ease-in-out infinite alternate; }
.sand-bottom { bottom: 12%; height: 26%; clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%); animation: sandBottom 3s ease-in-out infinite alternate; }
.warning-tablet { position: absolute; left: 8%; bottom: 13%; }

.bell-tower { grid-column: 2; justify-self: center; width: 25rem; height: 36rem; border: 2px solid rgba(155,246,255,.2); background: linear-gradient(180deg, rgba(22,32,54,.84), rgba(5,7,18,.55)); clip-path: polygon(50% 0, 84% 13%, 84% 100%, 16% 100%, 16% 13%); }
.tower-cap { position: absolute; left: 20%; right: 20%; top: 8%; height: 4rem; background: var(--slate); border: 1px solid rgba(248,244,227,.16); }
.bell { position: absolute; left: 34%; right: 34%; top: 25%; height: 8rem; background: var(--cyan); clip-path: polygon(34% 0, 66% 0, 74% 18%, 88% 84%, 100% 100%, 0 100%, 12% 84%, 26% 18%); box-shadow: 0 0 2rem rgba(155,246,255,.45); transform-origin: 50% 0; animation: bellSwing 2.7s ease-in-out infinite; }
.bell-rope { position: absolute; top: 40%; left: 50%; width: 3px; height: 45%; background: repeating-linear-gradient(0deg, var(--parchment) 0 10px, transparent 10px 15px); }
.sound-ring { position: absolute; left: 50%; top: 34%; width: 6rem; height: 6rem; border: 1px solid var(--cyan); border-radius: 50%; transform: translate(-50%, -50%); animation: ringOut 2.7s ease-out infinite; }
.ring-b { animation-delay: 1.1s; }
.note-three { position: absolute; left: 10%; bottom: 16%; }

.final-route-glow { position: absolute; inset: 4rem 12%; background: linear-gradient(140deg, transparent, rgba(199,255,79,.14), transparent); filter: blur(14px); opacity: .7; }
.shrine-arch { grid-column: 1 / -1; justify-self: center; width: min(42rem, 80vw); height: min(42rem, 80vw); display: grid; place-items: center; }
.nested-square { position: absolute; border: 2px solid rgba(199,255,79,.52); box-shadow: 0 0 2rem rgba(199,255,79,.16); transform: rotate(45deg); }
.sq1 { inset: 6%; }
.sq2 { inset: 20%; border-color: rgba(155,246,255,.48); animation: squareTurn 18s linear infinite reverse; }
.sq3 { inset: 33%; border-color: rgba(182,156,255,.5); animation: squareTurn 14s linear infinite; }
.final-seal { width: 13rem; height: 13rem; border-radius: 50%; background: var(--lime); box-shadow: 0 0 4rem rgba(199,255,79,.8), inset 0 0 2rem rgba(5,7,18,.34); display: grid; place-items: center; animation: sealStamp 2s ease-in-out infinite alternate; }
.final-seal span { width: 6rem; height: 6rem; border: 8px double var(--obsidian); border-radius: 50%; }
.shrine-copy { grid-column: 1 / -1; justify-self: center; text-align: center; max-width: 52rem; margin-top: -3rem; }
.shrine-copy h2 { max-width: 12ch; margin: 0 auto; }
.shrine-tablet { position: absolute; right: 8%; bottom: 10%; transform: rotate(-1deg); }

.chamber-copy,
.artifact,
.citadel-gate-art,
.mempool-well,
.elevator-frame,
.crystal-cluster,
.hourglass,
.bell-tower,
.shrine-arch {
    opacity: .52;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.chamber.is-current .chamber-copy,
.chamber.is-current .artifact,
.chamber.is-current .citadel-gate-art,
.chamber.is-current .mempool-well,
.chamber.is-current .elevator-frame,
.chamber.is-current .crystal-cluster,
.chamber.is-current .hourglass,
.chamber.is-current .bell-tower,
.chamber.is-current .shrine-arch {
    opacity: 1;
    transform: translateY(0);
}

@keyframes torchPulse { from { opacity: .22; transform: scale(.9); } to { opacity: .45; transform: scale(1.08); } }
@keyframes cueDrop { 0%,100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(.8rem); opacity: 1; } }
@keyframes drift { from { transform: translate(-1rem, .6rem) scale(.75); } to { transform: translate(1.1rem, -1.2rem) scale(1.25); } }
@keyframes basketBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1.1rem); } }
@keyframes refract { from { transform: skewX(-3deg) translateY(.5rem); filter: hue-rotate(0deg) drop-shadow(0 0 1.3rem rgba(155,246,255,.4)); } to { transform: skewX(4deg) translateY(-.7rem); filter: hue-rotate(25deg) drop-shadow(0 0 2rem rgba(182,156,255,.54)); } }
@keyframes thornTurn { to { transform: rotate(360deg); } }
@keyframes sandTop { from { height: 30%; } to { height: 8%; } }
@keyframes sandBottom { from { height: 10%; } to { height: 30%; } }
@keyframes bellSwing { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(6deg); } }
@keyframes ringOut { from { width: 4rem; height: 4rem; opacity: .9; } to { width: 19rem; height: 19rem; opacity: 0; } }
@keyframes squareTurn { to { transform: rotate(405deg); } }
@keyframes sealStamp { from { transform: scale(.94); } to { transform: scale(1.04); } }

@media (max-width: 860px) {
    .inventory-strip { width: calc(100% - 1rem); overflow-x: auto; justify-content: flex-start; left: .5rem; transform: none; }
    .progress-oracle { display: none; }
    .route-map { left: -10vw; width: 120vw; opacity: .75; }
    .chamber { grid-template-columns: 1fr; padding: 7rem 1.1rem 4rem; gap: 2rem; }
    .right-copy, .mempool-well, .crystal-cluster, .bell-tower { grid-column: 1; }
    h1 { font-size: clamp(3rem, 18vw, 5rem); }
    h2 { font-size: clamp(2.45rem, 13vw, 4rem); }
    .citadel-gate-art, .mempool-well, .elevator-frame, .crystal-cluster, .bell-tower { width: 100%; }
    .artifact { position: relative !important; left: auto !important; right: auto !important; bottom: auto !important; margin: 1rem 0 0; }
    .calldata-ribbon { top: 10%; left: 1rem; right: 1rem; font-size: .7rem; }
    .thorn-ring { left: -18%; }
    .shrine-tablet { margin: -2rem auto 0; }
}
