/* candygirl.xyz — submerged marble shrine */
/* Palette */
:root {
    --abyssal: #03142a;
    --trench: #0a2845;
    --pressure: #1c4870;
    --lagoon: #3a7ca5;
    --chrome: #c8d4e0;
    --marble: #f4f1ea;
    --coral: #e8b4c8;
    --gold: #f0d878;
    --pearl: #e8ecf2;

    --vel-0: 0.30;
    --vel-1: 0.55;
    --vel-2: 0.75;
    --vel-3: 1.00;
    --vel-4: 1.40;

    --scroll: 0px;

    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: radial-gradient(ellipse at 50% 0%, var(--trench) 0%, var(--abyssal) 60%, #02091a 100%);
    color: var(--pearl);
    font-family: 'Space Mono', ui-monospace, monospace;
    font-size: 1.05rem;
    line-height: 1.7;
    min-height: 800vh;
    position: relative;
}

/* === DEPTH LAYERS (parallax) === */
.depth-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    will-change: transform;
}

.layer-0 { z-index: 0; transform: translate3d(0, calc(var(--scroll) * var(--vel-0) * -1), 0); }
.layer-1 { z-index: 1; transform: translate3d(0, calc(var(--scroll) * var(--vel-1) * -1), 0); }
.layer-2 { z-index: 2; transform: translate3d(0, calc(var(--scroll) * var(--vel-2) * -1), 0); }
.layer-4 { z-index: 5; transform: translate3d(0, calc(var(--scroll) * var(--vel-4) * -1), 0); }

.ocean-gradient {
    position: absolute;
    inset: -10vh -10vw;
    background:
      radial-gradient(circle at 30% 20%, rgba(58, 124, 165, 0.18), transparent 55%),
      radial-gradient(circle at 70% 65%, rgba(28, 72, 112, 0.30), transparent 60%),
      radial-gradient(circle at 50% 90%, rgba(232, 180, 200, 0.06), transparent 50%);
}

.motes {
    position: absolute;
    inset: 0;
}

.mote {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--marble);
    opacity: 0.32;
    box-shadow: 0 0 4px rgba(244, 241, 234, 0.55);
    animation: mote-drift linear infinite;
}

@keyframes mote-drift {
    0%   { transform: translate3d(0, 0, 0); opacity: 0; }
    10%  { opacity: 0.42; }
    90%  { opacity: 0.42; }
    100% { transform: translate3d(15px, -120px, 0); opacity: 0; }
}

/* === ABSTRACT BLOBS (jellyfish / kelp) === */
.blob {
    position: absolute;
    background: rgba(28, 72, 112, 0.35);
    filter: blur(8px);
    animation: blob-morph 18s ease-in-out infinite, blob-bob 9s ease-in-out infinite;
    mix-blend-mode: screen;
    opacity: 0.7;
}

.blob-a { top: 8vh; left: 4vw; width: 320px; height: 280px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.blob-b { top: 38vh; right: 6vw; width: 420px; height: 360px;
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%; animation-delay: -4s; opacity: 0.5; }
.blob-c { top: 80vh; left: 18vw; width: 260px; height: 220px;
    border-radius: 70% 30% 60% 40% / 40% 70% 30% 60%; animation-delay: -8s; opacity: 0.6; }
.blob-d { top: 130vh; right: 10vw; width: 380px; height: 340px;
    border-radius: 50% 50% 70% 30% / 60% 40% 60% 40%; animation-delay: -12s; opacity: 0.55; }
.blob-e { top: 200vh; left: 30vw; width: 300px; height: 320px;
    border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%; animation-delay: -2s; opacity: 0.45; }

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 40% 60% 70% 30% / 30% 60% 40% 70%; }
    50% { border-radius: 50% 50% 60% 40% / 70% 30% 60% 40%; }
    75% { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
}

@keyframes blob-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(8deg); }
}

/* === MARBLE BUSTS (CSS-only) === */
.bust {
    position: relative;
    width: 280px;
    height: 340px;
    background:
      radial-gradient(circle at 38% 30%, var(--marble) 0%, #ddd5c7 14%, #b8af9d 32%, #6d6555 60%, #2a2a30 88%),
      radial-gradient(circle at 62% 42%, rgba(58, 124, 165, 0.28) 0%, transparent 40%),
      radial-gradient(circle at 50% 60%, #d8cfbf 0%, #a09684 50%, #423b2e 100%);
    background-blend-mode: normal, multiply, normal;
    clip-path: polygon(
      32% 4%, 45% 0%, 58% 1%, 67% 6%, 74% 14%, 78% 24%, 80% 36%, 76% 46%,
      82% 52%, 90% 60%, 96% 72%, 98% 88%, 90% 96%, 70% 99%, 50% 100%, 30% 99%,
      12% 96%, 4% 88%, 6% 72%, 14% 60%, 22% 52%, 28% 46%, 24% 36%, 26% 24%
    );
    filter: drop-shadow(0 18px 28px rgba(3, 20, 42, 0.65));
    animation: bust-drift 12s ease-in-out infinite;
    transition: transform 1.2s var(--bounce);
}

.bust::before {
    content: "";
    position: absolute;
    top: 8%;
    left: 22%;
    width: 56%;
    height: 38%;
    background:
      radial-gradient(ellipse at 35% 40%, rgba(244, 241, 234, 0.55) 0%, transparent 60%),
      radial-gradient(ellipse at 65% 60%, rgba(3, 20, 42, 0.45) 0%, transparent 65%);
    border-radius: 50% 50% 45% 55%;
    filter: blur(2px);
}

.bust::after {
    content: "";
    position: absolute;
    bottom: 4%;
    left: 14%;
    width: 72%;
    height: 28%;
    background: linear-gradient(180deg, rgba(244, 241, 234, 0.32), rgba(3, 20, 42, 0.6));
    border-radius: 40% 40% 12% 12% / 50% 50% 14% 14%;
    filter: blur(1.5px);
}

.bust:hover { transform: rotate(2deg) scale(1.02); }
.bust-tilt { transform: rotate(-3deg); }

@keyframes bust-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bust-anchor-1 {
    position: absolute;
    top: 215vh;
    left: 8vw;
    transform: scale(0.92);
    opacity: 0.85;
}
.bust-anchor-2 {
    position: absolute;
    top: 460vh;
    right: 6vw;
    transform: scale(0.85) rotate(-2deg);
    opacity: 0.78;
}
.bust-anchor-3 {
    position: absolute;
    top: 640vh;
    left: 14vw;
    transform: scale(0.95) rotate(1deg);
    opacity: 0.82;
}

.bust-inline {
    margin: 1.5rem auto 2rem;
}

.bust-large {
    width: 320px;
    height: 380px;
}

/* === CHROME BEZEL MIXIN (utility class) === */
.chrome-bezel {
    background: linear-gradient(180deg, rgba(28, 72, 112, 0.55), rgba(3, 20, 42, 0.85));
    border-radius: 14px;
    box-shadow:
      inset 0 2px 0 rgba(244, 241, 234, 0.45),
      inset 0 -2px 0 rgba(3, 20, 42, 0.85),
      inset 2px 0 0 rgba(200, 212, 224, 0.30),
      inset -2px 0 0 rgba(58, 124, 165, 0.40),
      0 0 0 1px rgba(58, 124, 165, 0.60),
      0 8px 24px rgba(3, 20, 42, 0.55);
}

/* === BLING-STARS === */
.bling-star {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--marble);
    clip-path: polygon(50% 0%, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0% 50%, 42% 42%);
    filter: drop-shadow(0 0 6px rgba(244, 241, 234, 0.85));
    animation: twinkle 1.4s ease-in-out infinite;
}

.star-gold {
    background: var(--gold);
    filter: drop-shadow(0 0 8px rgba(240, 216, 120, 0.9));
}

@keyframes twinkle {
    0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.2) rotate(20deg); opacity: 1.0; }
}

.star-a { top: 18vh; left: 12vw; animation-delay: 0s; }
.star-b { top: 96vh; right: 8vw; animation-delay: -0.4s; }
.star-c { top: 175vh; left: 20vw; animation-delay: -0.7s; width: 26px; height: 26px; }
.star-d { top: 280vh; right: 14vw; animation-delay: -0.2s; }
.star-e { top: 380vh; left: 8vw; animation-delay: -0.9s; width: 28px; height: 28px; }
.star-f { top: 520vh; right: 18vw; animation-delay: -0.5s; }
.star-g { top: 720vh; left: 22vw; animation-delay: -1.1s; }

/* === CONTENT STACK === */
.content-stack {
    position: relative;
    z-index: 4;
    width: 100%;
}

.chamber {
    position: relative;
    min-height: 100vh;
    padding: 8vh 6vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.chamber-inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

/* Asymmetric balance per chamber */
.chamber:nth-child(odd) .chamber-inner { margin-left: 8vw; }
.chamber:nth-child(even) .chamber-inner { margin-right: 8vw; margin-left: auto; }

.chamber-title {
    font-family: 'Major Mono Display', ui-monospace, monospace;
    font-weight: 400;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--marble);
    margin-bottom: 2rem;
    line-height: 1.05;
    transition: color 0.6s ease;
}

.carved {
    text-shadow:
      0 1px 0 var(--chrome),
      0 -1px 0 #5b8caa,
      0 0 24px rgba(244, 241, 234, 0.18);
    -webkit-text-stroke: 1px rgba(200, 212, 224, 0.55);
}

.carved:hover {
    color: #f7e6ec;
    text-shadow:
      0 1px 0 var(--coral),
      0 -1px 0 #5b8caa,
      0 0 28px rgba(232, 180, 200, 0.32);
}

.cinzel-mark {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.32em;
    color: var(--marble);
    margin-top: 4rem;
    opacity: 0.58;
    text-align: right;
}

/* === CHAMBER 1: THRESHOLD === */
.chamber-threshold .chamber-inner {
    text-align: left;
    margin-left: 12vw !important;
}

.chrome-heart-pulse {
    width: 88px;
    height: 88px;
    margin-bottom: 3rem;
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--chrome), var(--lagoon) 70%, var(--abyssal));
    box-shadow:
      inset 0 2px 0 rgba(244, 241, 234, 0.55),
      inset 0 -3px 4px rgba(3, 20, 42, 0.7),
      0 0 28px rgba(232, 180, 200, 0.5),
      0 0 0 1px rgba(58, 124, 165, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart-shape {
    width: 38px;
    height: 34px;
    background: var(--coral);
    clip-path: path('M19 34 C 19 34, 0 22, 0 11 A 8 8 0 0 1 19 6 A 8 8 0 0 1 38 11 C 38 22, 19 34, 19 34 Z');
    filter: drop-shadow(0 0 6px rgba(232, 180, 200, 0.7));
    animation: cardiac 2s ease-in-out infinite;
}

@keyframes cardiac {
    0%   { transform: scale(1.0); }
    4%   { transform: scale(1.08); }
    6%   { transform: scale(1.0); }
    9%   { transform: scale(1.06); }
    14%  { transform: scale(1.0); }
    100% { transform: scale(1.0); }
}

.threshold-tag {
    font-family: 'Space Mono', monospace;
    color: var(--coral);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* === CHAMBER 2: ANNUNCIATION === */
.manifesto {
    padding: 2.4rem 2.6rem;
    margin: 1.2rem 0;
    max-width: 620px;
}

.manifesto-line {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: var(--marble);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.manifesto-line:last-child {
    color: var(--coral);
    font-style: italic;
}

/* === CHAMBER 3: RELIQUARY === */
.orb-drift {
    position: relative;
    height: 60vh;
    margin-top: 2rem;
}

.orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, rgba(244, 241, 234, 0.42), rgba(28, 72, 112, 0.85) 60%, rgba(3, 20, 42, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    text-align: center;
    animation: orb-float 7s ease-in-out infinite;
}

.orb[data-orb="1"] { top: 4%; left: 4%; }
.orb[data-orb="2"] { top: 18%; left: 38%; animation-delay: -1.3s; }
.orb[data-orb="3"] { top: 6%; right: 6%; animation-delay: -2.6s; }
.orb[data-orb="4"] { top: 52%; left: 18%; animation-delay: -4.0s; }
.orb[data-orb="5"] { top: 48%; right: 14%; animation-delay: -5.3s; }

@keyframes orb-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33%      { transform: translateY(-14px) translateX(6px); }
    66%      { transform: translateY(8px) translateX(-8px); }
}

.orb-text {
    font-family: 'Space Mono', monospace;
    color: var(--pearl);
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

/* === CHAMBER 4: GODDESS HALL === */
.passage-hint {
    color: var(--lagoon);
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1.6rem;
}

.goddess-rail {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0 2.4rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lagoon) var(--abyssal);
}

.goddess-rail::-webkit-scrollbar { height: 8px; }
.goddess-rail::-webkit-scrollbar-track { background: var(--abyssal); }
.goddess-rail::-webkit-scrollbar-thumb { background: var(--lagoon); border-radius: 4px; }

.goddess-track {
    display: flex;
    gap: 6vw;
    width: max-content;
    padding-right: 6vw;
}

.goddess-stop {
    flex: 0 0 auto;
    width: 360px;
    text-align: center;
    padding: 1rem;
}

.bust-name {
    font-family: 'Major Mono Display', monospace;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: var(--marble);
    margin-top: 1.4rem;
    -webkit-text-stroke: 0.5px rgba(200, 212, 224, 0.5);
}

.bust-attribute {
    font-family: 'Space Mono', monospace;
    color: var(--coral);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    margin-top: 0.6rem;
    font-style: italic;
}

/* === CHAMBER 5: PEARL CASCADE === */
.cascade {
    margin-top: 2rem;
    max-width: 620px;
}

.cascade-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(58, 124, 165, 0.22);
    opacity: 0;
    transform: translateY(-30px) scale(0.94);
    transition: opacity 0.7s ease, transform 0.7s var(--bounce);
}

.cascade-row.bounce-in {
    opacity: 1;
    transform: translateY(0) scale(1.0);
    animation: wobble 0.7s var(--bounce) 0.1s 1;
}

.cascade-row:nth-child(2).bounce-in { transition-delay: 0.12s; }
.cascade-row:nth-child(3).bounce-in { transition-delay: 0.24s; }
.cascade-row:nth-child(4).bounce-in { transition-delay: 0.36s; }
.cascade-row:nth-child(5).bounce-in { transition-delay: 0.48s; }

.pearl-bullet {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, var(--marble), var(--chrome) 50%, var(--pressure) 95%);
    box-shadow: 0 0 8px rgba(232, 236, 242, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.cascade-text {
    color: var(--pearl);
    font-size: 1.05rem;
    line-height: 1.7;
}

@keyframes wobble {
    0%   { transform: scale(1.0) translateY(0); }
    25%  { transform: scale(1.06) translateY(-2px); }
    55%  { transform: scale(0.97) translateY(0); }
    78%  { transform: scale(1.02) translateY(-1px); }
    100% { transform: scale(1.0) translateY(0); }
}

/* === CHAMBER 6: INSCRIPTION === */
.tablet-anchor {
    position: relative;
    margin: 3rem auto;
    width: min(560px, 80%);
}

.tablet-chain {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--chrome), var(--lagoon), var(--chrome));
    box-shadow: 0 0 6px rgba(200, 212, 224, 0.45);
    transform-origin: top center;
    animation: chain-swing 5s ease-in-out infinite;
}

@keyframes chain-swing {
    0%, 100% { transform: translateX(-50%) rotate(-0.6deg); }
    50%      { transform: translateX(-50%) rotate(0.6deg); }
}

.tablet {
    background:
      linear-gradient(135deg, #d8cfbf 0%, #b8af9d 40%, #8a8170 80%, #6d6555 100%);
    color: var(--abyssal);
    padding: 3rem 2.4rem;
    clip-path: polygon(
      4% 6%, 14% 2%, 38% 4%, 60% 1%, 82% 6%, 96% 4%,
      99% 22%, 96% 48%, 100% 72%, 96% 92%, 82% 96%, 60% 99%,
      38% 96%, 14% 100%, 2% 92%, 6% 70%, 1% 42%, 4% 22%
    );
    filter: drop-shadow(0 18px 0 rgba(58, 124, 165, 0.32)) drop-shadow(0 22px 32px rgba(3, 20, 42, 0.75));
    animation: chain-swing 5s ease-in-out infinite;
    text-align: center;
}

.tablet-text-cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.32em;
    color: #2a2a30;
    text-shadow: 1px 1px 0 rgba(244, 241, 234, 0.3), -1px -1px 0 rgba(3, 20, 42, 0.55);
    margin-bottom: 1.2rem;
}

.tablet-text-mono {
    font-family: 'Space Mono', monospace;
    font-size: 1.0rem;
    letter-spacing: 0.06em;
    color: #2a2a30;
    margin-top: 0.8rem;
    line-height: 1.6;
}

.tablet-text-mono.small {
    font-size: 0.78rem;
    opacity: 0.78;
    font-style: italic;
}

.tablet-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3, 20, 42, 0.55), transparent);
    margin: 1.4rem auto;
}

/* === CHAMBER 7: ASCENSION === */
.dust-column {
    position: relative;
    height: 42vh;
    margin: 2rem 0;
}

.dust-grain {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--chrome);
    box-shadow: 0 0 8px rgba(200, 212, 224, 0.7);
    opacity: 0;
    animation: ascend 6s ease-out infinite;
}

.dust-grain:nth-child(1) { left: 12%; animation-delay: 0s; }
.dust-grain:nth-child(2) { left: 22%; animation-delay: -0.6s; background: var(--marble); }
.dust-grain:nth-child(3) { left: 32%; animation-delay: -1.2s; }
.dust-grain:nth-child(4) { left: 42%; animation-delay: -1.8s; background: var(--gold); }
.dust-grain:nth-child(5) { left: 52%; animation-delay: -2.4s; }
.dust-grain:nth-child(6) { left: 62%; animation-delay: -3.0s; background: var(--coral); }
.dust-grain:nth-child(7) { left: 72%; animation-delay: -3.6s; }
.dust-grain:nth-child(8) { left: 82%; animation-delay: -4.2s; }
.dust-grain:nth-child(9) { left: 18%; animation-delay: -4.8s; background: var(--marble); }
.dust-grain:nth-child(10) { left: 78%; animation-delay: -5.4s; background: var(--gold); }

@keyframes ascend {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-42vh) scale(0.4); opacity: 0; }
}

.ascension-line {
    font-family: 'Space Mono', monospace;
    color: var(--marble);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.8rem;
}

.ascension-line:nth-child(3) {
    color: var(--coral);
    font-style: italic;
}

.ascension-line:nth-child(4) {
    color: var(--coral);
    font-style: italic;
}

/* === PROGRESS SPINE === */
.progress-spine {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 480px;
    z-index: 50;
    pointer-events: none;
}

.spine-rail {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--chrome) 0%, var(--lagoon) 50%, var(--abyssal) 100%);
    border-radius: 2px;
    box-shadow:
      inset 0 1px 0 rgba(244, 241, 234, 0.6),
      0 0 6px rgba(58, 124, 165, 0.45);
}

.spine-notch {
    position: absolute;
    left: 50%;
    width: 14px;
    height: 4px;
    transform: translateX(-50%);
    background: var(--chrome);
    box-shadow: 0 0 4px rgba(200, 212, 224, 0.7);
    border-radius: 2px;
    opacity: 0.5;
}

.spine-notch[data-notch="1"] { top: 0%; }
.spine-notch[data-notch="2"] { top: 16.66%; }
.spine-notch[data-notch="3"] { top: 33.33%; }
.spine-notch[data-notch="4"] { top: 50%; }
.spine-notch[data-notch="5"] { top: 66.66%; }
.spine-notch[data-notch="6"] { top: 83.33%; }
.spine-notch[data-notch="7"] { top: 100%; }

.spine-notch.lit { opacity: 1; background: var(--coral); box-shadow: 0 0 8px rgba(232, 180, 200, 0.85); }

.spine-pearl {
    position: absolute;
    left: 50%;
    top: 0%;
    width: 22px;
    height: 22px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, var(--marble), var(--chrome) 50%, var(--pressure) 95%);
    box-shadow:
      0 0 14px rgba(232, 180, 200, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.65),
      0 0 0 1px rgba(58, 124, 165, 0.65);
    transition: top 0.18s linear;
}

.heart-pearl-inner {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, var(--coral) 0%, transparent 70%);
    animation: cardiac 2s ease-in-out infinite;
}

/* === AUDIO TOGGLE === */
.audio-toggle {
    position: fixed;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 60;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(180deg, rgba(28, 72, 112, 0.85), rgba(3, 20, 42, 0.92));
    color: var(--marble);
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.7s ease, transform 0.7s var(--bounce);
    box-shadow:
      inset 0 1px 0 rgba(244, 241, 234, 0.45),
      inset 0 -1px 0 rgba(3, 20, 42, 0.85),
      0 0 0 1px rgba(58, 124, 165, 0.5),
      0 6px 16px rgba(3, 20, 42, 0.55);
}

.audio-toggle.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.audio-toggle.engaged {
    color: var(--coral);
}

/* === BOUNCE-ENTER === */
.chamber-inner {
    opacity: 0;
    transform: translateY(-40px) scale(0.94);
    transition: opacity 0.7s ease, transform 0.8s var(--bounce);
}

.chamber-inner.bounce-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chamber-inner.bounce-in .chamber-title {
    animation: wobble 0.7s var(--bounce) 0.05s 1;
}

/* === RESPONSIVE === */
@media (max-width: 720px) {
    .chamber { padding: 6vh 5vw; }
    .chamber:nth-child(odd) .chamber-inner,
    .chamber:nth-child(even) .chamber-inner {
        margin-left: auto;
        margin-right: auto;
    }
    .bust-anchor-1, .bust-anchor-2, .bust-anchor-3 { transform: scale(0.6); opacity: 0.55; }
    .progress-spine { right: 0.7rem; height: 320px; width: 18px; }
    .orb { width: 140px; height: 140px; padding: 0.7rem; }
    .orb-text { font-size: 0.7rem; }
    .goddess-stop { width: 280px; }
    .tablet { padding: 2rem 1.4rem; }
    .tablet-text-cinzel { font-size: 1.1rem; letter-spacing: 0.22em; }
}
