/* gabs.day — a 24-hour glasshouse for ambient conversation
   Frutiger Aero, time-conditional palette, glass + bubbles + water.
*/

/* ============================================================
   Custom properties — set on :root, mutated by script.js
   ============================================================ */
:root {
    /* Palette — Glass Atrium */
    --deep-aquarium: #0a1f4a;
    --lapis-glass:   #1a4d8c;
    --aqua-daylight: #5fb4e8;
    --vapor-sky:     #bce0ff;
    --condensation:  #e8f7ff;
    --peach-dawn:    #ffd6a5;
    --coral-sunset:  #ff9c6e;
    --sunlit-cream:  #fff4d6;
    --mint-algae:    #c6f5e9;

    /* Time-conditional sky (interpolated from local hour) */
    --sky-near: #bce0ff;
    --sky-mid:  #5fb4e8;
    --sky-far:  #1a4d8c;
    --hour: 12;
    --dial-rotation: 0deg;

    --ink: #0a1f4a;
    --ink-soft: #1a4d8c;
    --paper: #e8f7ff;

    /* Fonts */
    --font-display: "Outfit", "Inter", system-ui, sans-serif;
    --font-serif:   "Fraunces", "Lora", Georgia, serif;
    --font-mono:    "Space Grotesk", "Space Mono", ui-monospace, monospace;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--font-display);
    color: var(--condensation);
    background: var(--deep-aquarium);
    cursor: none;
}

@media (orientation: portrait) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }
}

/* SVG defs container — invisible but present */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ============================================================
   BACKGROUND PLANE — sky + cirrus + rain
   ============================================================ */
.sky {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 30%, var(--sky-near) 0%, var(--sky-mid) 45%, var(--sky-far) 100%);
    transition: background 1.5s ease;
}

.sky::before {
    /* sun-flare warm tint, time-conditional via hour-driven gradient mask */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 244, 214, 0.45) 0%, transparent 28%),
        radial-gradient(circle at 18% 78%, rgba(255, 156, 110, 0.18) 0%, transparent 32%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.cirrus {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse 38% 18% at 22% 28%, rgba(255,255,255,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 30% 14% at 70% 18%, rgba(255,255,255,0.42) 0%, transparent 60%),
        radial-gradient(ellipse 44% 16% at 50% 60%, rgba(232,247,255,0.32) 0%, transparent 60%),
        radial-gradient(ellipse 22% 10% at 86% 75%, rgba(255,255,255,0.36) 0%, transparent 60%);
    filter: blur(34px);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.cirrus-far {
    animation: cirrus-drift 220s linear infinite;
    opacity: 0.55;
}

.cirrus-near {
    animation: cirrus-drift 88s linear infinite reverse;
    opacity: 0.4;
    transform: scale(1.4);
}

@keyframes cirrus-drift {
    from { transform: translateX(-12%); }
    to   { transform: translateX(12%); }
}

/* Rain (active when .raining is added to body) */
.rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.4s ease;
    background-image:
        repeating-linear-gradient(
            178deg,
            transparent 0,
            transparent 7px,
            rgba(232, 247, 255, 0.35) 7px,
            rgba(232, 247, 255, 0.35) 8px,
            transparent 8px,
            transparent 22px
        );
    background-size: 100% 220px;
    mix-blend-mode: screen;
}

body.raining .rain {
    opacity: 0.55;
    animation: rain-fall 1.6s linear infinite;
}

@keyframes rain-fall {
    from { background-position: 0 0; }
    to   { background-position: 0 220px; }
}

/* ============================================================
   SCENE
   ============================================================ */
.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

@media (orientation: portrait) {
    .scene { min-height: 100vh; height: auto; padding-bottom: 30vh; }
}

/* ============================================================
   FISH LAYER
   ============================================================ */
.fish-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.fish {
    opacity: 0.18;
    color: var(--mint-algae);
}

.fish-1 { animation: fish-cruise-1 140s linear infinite; }
.fish-2 { animation: fish-cruise-2 180s linear infinite -40s; }
.fish-3 { animation: fish-cruise-3 110s linear infinite -25s; opacity: 0.12; }
.fish-4 { animation: fish-cruise-4  92s linear infinite -65s; opacity: 0.22; }

@keyframes fish-cruise-1 {
    0%   { transform: translate(-260px, 200px) rotate(2deg); }
    35%  { transform: translate(720px, 100px) rotate(-3deg); }
    70%  { transform: translate(1680px, 260px) rotate(4deg); }
    100% { transform: translate(2000px, 200px) rotate(0deg); }
}
@keyframes fish-cruise-2 {
    0%   { transform: translate(2000px, 700px) scaleX(-1) rotate(-2deg); }
    50%  { transform: translate(700px, 540px)  scaleX(-1) rotate(3deg); }
    100% { transform: translate(-300px, 760px) scaleX(-1) rotate(-1deg); }
}
@keyframes fish-cruise-3 {
    0%   { transform: translate(-300px, 60px) rotate(-1deg); }
    50%  { transform: translate(800px, 760px) rotate(2deg); }
    100% { transform: translate(2000px, 80px) rotate(-1deg); }
}
@keyframes fish-cruise-4 {
    0%   { transform: translate(2000px, 360px) scaleX(-1) rotate(2deg); }
    100% { transform: translate(-200px, 420px) scaleX(-1) rotate(-2deg); }
}

/* ============================================================
   THE DIAL
   ============================================================ */
.dial-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78vmin;
    height: 78vmin;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media (orientation: portrait) {
    .dial-wrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 6vh auto 4vh;
        width: 92vw;
        height: 92vw;
    }
}

.dial {
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: auto;
    filter:
        drop-shadow(0 30px 80px rgba(10, 31, 74, 0.45))
        drop-shadow(0 0 60px rgba(95, 180, 232, 0.35));
}

.dial-sky {
    transition: opacity 1.5s ease;
}

.dial-rim {
    /* outer frosted glass rim */
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.dial-rotor {
    transform-origin: 0 0;
    transform: rotate(var(--dial-rotation));
    transition: transform 1.5s cubic-bezier(0.45, 0, 0.2, 1);
}

/* hour marker styles */
.hour-tick {
    stroke: rgba(232, 247, 255, 0.55);
    stroke-width: 1.4;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 14;
    stroke-dashoffset: 14;
    animation: tick-draw 1.6s ease forwards;
}

.hour-tick.major {
    stroke: rgba(232, 247, 255, 0.85);
    stroke-width: 2;
}

@keyframes tick-draw {
    to { stroke-dashoffset: 0; }
}

.hour-label {
    font-family: var(--font-mono);
    font-size: 9px;
    fill: var(--condensation);
    opacity: 0.78;
    font-feature-settings: "tnum" 1;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.hour-marker {
    cursor: pointer;
    pointer-events: auto;
    transition: opacity 0.4s ease;
}

.hour-marker.active .hour-tick {
    stroke: var(--mint-algae);
    filter: drop-shadow(0 0 6px var(--mint-algae)) drop-shadow(0 0 12px rgba(198, 245, 233, 0.6));
    stroke-width: 2.6;
}

.hour-marker.active .hour-label {
    fill: var(--mint-algae);
    font-weight: 700;
    opacity: 1;
}

.hour-marker:hover .hour-tick {
    stroke: var(--vapor-sky);
    stroke-width: 2.6;
}

.hour-hit {
    fill: transparent;
}

/* center droplet */
.droplet circle {
    transition: transform 4s ease-in-out;
}

.live-pulse {
    transform-origin: 0 0;
    animation: live-pulse 3.4s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 0.18; r: 46; }
    50%      { opacity: 0.55; r: 56; }
}

.anchor-mark {
    filter: drop-shadow(0 0 4px var(--mint-algae));
}

/* etched site title */
.etched-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    fill: rgba(232, 247, 255, 0.72);
    /* simulate engraved glass through stroke + faint shadow */
    paint-order: stroke fill;
    stroke: rgba(10, 31, 74, 0.35);
    stroke-width: 0.5;
}

.dial-tagline {
    position: absolute;
    bottom: -2.4em;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--condensation);
    opacity: 0.7;
    letter-spacing: 0.08em;
    pointer-events: none;
    white-space: nowrap;
    font-feature-settings: "tnum" 1;
}

.dial-tagline #liveClock {
    color: var(--mint-algae);
}

/* ============================================================
   BUBBLE FIELD
   ============================================================ */
.bubble-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

@media (orientation: portrait) {
    .bubble-field { height: 100vh; }
}

.bubble {
    position: absolute;
    left: var(--start-x, 50%);
    bottom: -380px;
    width: var(--size, 80px);
    height: var(--size, 80px);
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    background:
        radial-gradient(circle at 28% 22%,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.18) 18%,
            rgba(95, 180, 232, 0.10) 55%,
            transparent 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        inset -8px -10px 28px rgba(26, 77, 140, 0.25),
        inset 6px 8px 18px rgba(255, 255, 255, 0.35),
        0 18px 40px rgba(10, 31, 74, 0.25),
        0 0 26px rgba(95, 180, 232, 0.18);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);
    animation:
        bubble-rise var(--rise-duration, 140s) linear infinite,
        bubble-drift var(--drift-duration, 9s) ease-in-out infinite alternate;
    will-change: transform, opacity;
    transition: filter 0.4s ease;
    --depth-blur: 0px;
    filter: blur(var(--depth-blur));
}

/* chromatic aberration shimmer */
.bubble::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        0 0 0 1px rgba(255, 120, 120, 0.18),
        0 0 0 2px rgba(120, 200, 255, 0.18);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
}

/* secondary highlight blush */
.bubble::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 75% 78%, rgba(255, 156, 110, 0.18) 0%, transparent 38%),
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.8) 0%, transparent 18%);
    pointer-events: none;
    mix-blend-mode: screen;
}

.bubble .bubble-text {
    position: absolute;
    inset: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: calc(var(--size, 80px) * 0.085);
    line-height: 1.32;
    letter-spacing: -0.005em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.bubble.visible .bubble-text {
    opacity: 1;
}

.bubble.feature .bubble-text {
    font-family: var(--font-serif);
    font-weight: 380;
    font-size: calc(var(--size, 80px) * 0.07);
    font-variation-settings: "opsz" 60, "SOFT" 80;
}

.bubble.tiny .bubble-text { display: none; }

.bubble.depth-1 { opacity: 0.55; --depth-blur: 1.4px; }
.bubble.depth-2 { opacity: 0.85; --depth-blur: 0.4px; }
.bubble.depth-3 { opacity: 1;    --depth-blur: 0px; }

.bubble:hover {
    filter: brightness(1.06) saturate(1.15);
}

@keyframes bubble-rise {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    8%   { opacity: 1; }
    65%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { transform: translateY(calc(-100vh - 460px)) translateX(0); opacity: 0; }
}

@keyframes bubble-drift {
    from { margin-left: calc(var(--drift-amp, 18px) * -1); }
    to   { margin-left: var(--drift-amp, 18px); }
}

/* feature bubble pause-at-eye-line: extra-slow, larger */
.bubble.feature {
    animation:
        bubble-rise-feature var(--rise-duration, 220s) ease-in-out infinite,
        bubble-drift var(--drift-duration, 14s) ease-in-out infinite alternate;
}

@keyframes bubble-rise-feature {
    0%   { transform: translateY(0); opacity: 0; }
    10%  { opacity: 1; }
    45%  { transform: translateY(calc(-50vh - 80px)); }
    55%  { transform: translateY(calc(-52vh - 100px)); }
    90%  { opacity: 1; }
    100% { transform: translateY(calc(-100vh - 460px)); opacity: 0; }
}

/* ============================================================
   CURSOR DROPLET + TRAIL + LENS FLARE
   ============================================================ */
.cursor-drop {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    filter: drop-shadow(0 2px 6px rgba(10, 31, 74, 0.35));
    transition: transform 0.05s linear;
}

.cursor-drop.click {
    animation: drop-burst 0.48s ease-out;
}

@keyframes drop-burst {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-50%, -50%) scale(1.6); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.trail-bit {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(198,245,233,0.5) 50%, transparent 100%);
    transform: translate(-50%, -50%) scale(1);
    animation: trail-fade 1.4s ease-out forwards;
    mix-blend-mode: screen;
}

@keyframes trail-fade {
    from { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
}

.splash-bit {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,247,255,0.95), rgba(95,180,232,0.4) 60%, transparent 100%);
    transform: translate(-50%, -50%);
    animation: splash 0.48s ease-out forwards;
    mix-blend-mode: screen;
    pointer-events: none;
}

@keyframes splash {
    from { opacity: 1; transform: translate(-50%, -50%) translate(0, 0) scale(1); }
    to   { opacity: 0; transform: translate(-50%, -50%) translate(var(--sx, 0), var(--sy, 0)) scale(0.3); }
}

.lens-flare {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle, rgba(255, 244, 214, 0.55) 0%, rgba(255, 214, 165, 0.22) 30%, transparent 70%);
    mix-blend-mode: screen;
    z-index: 6;
    transition: transform 0.22s ease-out, opacity 0.5s ease;
    opacity: 0.55;
    filter: blur(2px);
}

/* ============================================================
   ARCHIVE DROPLET (lower-right, dwell to expand)
   ============================================================ */
.archive-drop {
    position: fixed;
    bottom: 4vh;
    right: 4vh;
    width: 64px;
    height: 64px;
    z-index: 7;
    cursor: pointer;
    pointer-events: auto;
    filter: drop-shadow(0 8px 18px rgba(10,31,74,0.4));
    transition: transform 0.6s cubic-bezier(0.3, 0, 0.2, 1);
}

.archive-drop:hover {
    transform: scale(1.06);
}

.archive-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    padding: 22px 22px 18px;
    border-radius: 22px;
    background: rgba(232, 247, 255, 0.18);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 24px 60px rgba(10, 31, 74, 0.4);
    color: var(--ink);
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.3, 0, 0.2, 1);
}

.archive-drop.open .archive-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.archive-panel h3 {
    margin: 0 0 6px;
    font-family: var(--font-serif);
    font-weight: 380;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.015em;
}

.archive-panel p {
    margin: 0 0 12px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.archive-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink);
    font-feature-settings: "tnum" 1;
}

.archive-panel li {
    padding: 5px 0;
    border-top: 1px dashed rgba(10, 31, 74, 0.25);
}
.archive-panel li:first-child { border-top: 0; }

/* ============================================================
   BURST OVERLAY — bubble-to-panel
   ============================================================ */
.burst-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 31, 74, 0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition:
        background 0.5s ease,
        backdrop-filter 0.5s ease,
        -webkit-backdrop-filter 0.5s ease;
    pointer-events: none;
}

.burst-overlay.open {
    background: rgba(10, 31, 74, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
}

.burst-panel {
    position: relative;
    width: 64vmin;
    max-width: 640px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 28% 22%,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.32) 24%,
            rgba(95, 180, 232, 0.18) 60%,
            rgba(26, 77, 140, 0.12) 100%);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.45),
        inset -10px -16px 50px rgba(26, 77, 140, 0.3),
        inset 10px 14px 36px rgba(255, 255, 255, 0.5),
        0 30px 80px rgba(10, 31, 74, 0.5);
    transform: scale(0.4);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.3, 0, 0.2, 1),
        opacity 0.5s ease,
        clip-path 0.7s cubic-bezier(0.3, 0, 0.2, 1),
        border-radius 0.7s cubic-bezier(0.3, 0, 0.2, 1);
    clip-path: circle(50% at 50% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12vmin;
    overflow: hidden;
}

.burst-overlay.open .burst-panel {
    transform: scale(1);
    opacity: 1;
}

.burst-stamp {
    font-family: var(--font-mono);
    font-size: 12px;
    font-feature-settings: "tnum" 1;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    opacity: 0.85;
}

.burst-body {
    font-family: var(--font-serif);
    font-weight: 380;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink);
    text-align: center;
    margin: 0;
    max-width: 30em;
    letter-spacing: -0.005em;
}

.burst-close {
    position: absolute;
    top: 14%;
    right: 14%;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.burst-close:hover {
    transform: scale(1.12) rotate(8deg);
}

.burst-close svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(10,31,74,0.3));
}

/* scene blur/dim when burst open */
body.burst-open .scene > *:not(.burst-overlay) {
    filter: blur(2px) saturate(0.9);
    transition: filter 0.5s ease;
}

body.burst-open .sky {
    filter: brightness(0.78);
    transition: filter 0.5s ease;
}

/* ============================================================
   CIRRUS via SVG turbulence (when supported) — subtle layer
   ============================================================ */
@supports (filter: url(#cirrus)) {
    .cirrus { filter: url(#cirrus) blur(40px); }
}

/* ============================================================
   TIME-CONDITIONAL ACCENTS (selectors tuned by JS hour class)
   ============================================================ */
body.time-night {
    --ink: #e8f7ff;
    --ink-soft: #bce0ff;
}
body.time-night .bubble .bubble-text { color: var(--ink); text-shadow: 0 1px 0 rgba(10,31,74,0.45); }
body.time-night .archive-panel { background: rgba(10, 31, 74, 0.45); }
body.time-night .archive-panel h3,
body.time-night .archive-panel ul { color: var(--condensation); }
body.time-night .archive-panel p { color: var(--vapor-sky); }
body.time-night .burst-stamp { color: var(--vapor-sky); }
body.time-night .burst-body { color: var(--condensation); }

/* ============================================================
   REDUCED MOTION FALLBACK
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .bubble,
    .cirrus,
    .fish,
    .live-pulse,
    .cursor-drop,
    .lens-flare {
        animation: none !important;
    }
    .bubble {
        position: absolute;
        bottom: auto;
        top: var(--rest-top, 30%);
        left: var(--start-x, 50%);
        transform: translate(-50%, -50%);
    }
    body { cursor: auto; }
    .cursor-drop, .cursor-trail, .lens-flare { display: none; }
}

/* ============================================================
   PORTRAIT / MOBILE — vertical bubble column below the dial
   ============================================================ */
@media (orientation: portrait) {
    .bubble-field { height: auto; min-height: 100vh; }
    .scene { padding-bottom: 60vh; }
}
