/* ==========================================================
   sora.quest — blobitecture fluid layout
   Palette: #0B1E3D #1A3A5C #3B7BA8 #78C8FF #B8E4FF #E0F0FF #FFB8D0 #C8A0E8
   Fonts: Quicksand, Nunito, Outfit (all Google Fonts, rounded-sans)
   ========================================================== */

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

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

body {
    font-family: 'Outfit', system-ui, sans-serif;
    color: #E0F0FF;
    line-height: 1.75;
    background: #0B1E3D;
    /* Sky-to-ocean vertical gradient (chromatic descent) */
    background-image:
        linear-gradient(
            180deg,
            #B8E4FF 0%,
            #78C8FF 12%,
            #3B7BA8 32%,
            #1A3A5C 60%,
            #0B1E3D 90%,
            #0B1E3D 100%
        );
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

/* ===== Ambient gradient mesh (slowly orbiting radial gradients) ===== */
.mesh-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    filter: blur(20px);
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
    mix-blend-mode: screen;
    will-change: transform;
}

.mesh-orb-1 {
    width: 70vmax; height: 70vmax;
    left: -10%; top: -15%;
    background: radial-gradient(circle, #78C8FF 0%, rgba(120,200,255,0) 70%);
    animation: orbitOrb1 42s ease-in-out infinite;
}
.mesh-orb-2 {
    width: 60vmax; height: 60vmax;
    right: -20%; top: 20%;
    background: radial-gradient(circle, #B8E4FF 0%, rgba(184,228,255,0) 70%);
    animation: orbitOrb2 56s ease-in-out infinite;
}
.mesh-orb-3 {
    width: 80vmax; height: 80vmax;
    left: -25%; top: 50%;
    background: radial-gradient(circle, #3B7BA8 0%, rgba(59,123,168,0) 70%);
    animation: orbitOrb3 64s ease-in-out infinite;
}
.mesh-orb-4 {
    width: 50vmax; height: 50vmax;
    right: -10%; top: 70%;
    background: radial-gradient(circle, #FFB8D0 0%, rgba(255,184,208,0) 70%);
    opacity: 0.35;
    animation: orbitOrb4 70s ease-in-out infinite;
}
.mesh-orb-5 {
    width: 90vmax; height: 90vmax;
    left: 10%; bottom: -30%;
    background: radial-gradient(circle, #C8A0E8 0%, rgba(200,160,232,0) 70%);
    opacity: 0.3;
    animation: orbitOrb5 80s ease-in-out infinite;
}

@keyframes orbitOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(8vw, 6vh) scale(1.1); }
    50%      { transform: translate(-4vw, 12vh) scale(0.95); }
    75%      { transform: translate(-10vw, 4vh) scale(1.05); }
}
@keyframes orbitOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-12vw, 10vh) scale(1.08); }
    66%      { transform: translate(6vw, -8vh) scale(0.92); }
}
@keyframes orbitOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(15vw, -10vh) scale(1.12); }
}
@keyframes orbitOrb4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%      { transform: translate(-10vw, 8vh) scale(1.15); }
    70%      { transform: translate(8vw, -6vh) scale(0.9); }
}
@keyframes orbitOrb5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-8vw, -12vh) scale(1.08); }
}

/* ===== Bubble particles canvas ===== */
.bubble-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===== Spiral SVG guide ===== */
.spiral-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(110vw, 1200px);
    height: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

#spiralPath {
    stroke-dasharray: 14000;
    stroke-dashoffset: 14000;
    transition: stroke-dashoffset 120ms linear;
    filter: drop-shadow(0 0 6px rgba(120,200,255,0.45));
}

/* ===== Spiral progress indicator ===== */
.progress-indicator {
    position: fixed;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    z-index: 50;
    width: 14px;
    height: 60vh;
    pointer-events: none;
}

.progress-indicator::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(184,228,255,0.0) 0%,
        rgba(184,228,255,0.45) 20%,
        rgba(255,184,208,0.45) 50%,
        rgba(200,160,232,0.45) 80%,
        rgba(200,160,232,0.0) 100%
    );
}

.progress-glow {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFFFFF 0%, #78C8FF 40%, rgba(120,200,255,0) 75%);
    box-shadow:
        0 0 12px rgba(120,200,255,0.9),
        0 0 28px rgba(255,184,208,0.45);
    transition: top 200ms ease-out;
}

.progress-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: rgba(255,255,255,0.55);
}

/* ===== Flow stage ===== */
.flow-stage {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 5vw 6vh;
}

.flow-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Blob base ===== */
.blob {
    position: relative;
    transition: opacity 800ms ease-out, transform 800ms ease-out;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
}

.blob.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blob-fill {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: clip-path;
    box-shadow: 0 30px 80px rgba(11,30,61,0.35), inset 0 0 60px rgba(255,255,255,0.18);
}

.blob-content {
    position: relative;
    z-index: 2;
    padding: 11% 13%;
    color: #FFFFFF;
}

.blob-content-dark { color: #E0F0FF; }

/* ===== Typography ===== */
.title-primary {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 8vw, 96px);
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(120,200,255,0.3), 0 0 60px rgba(255,184,208,0.15);
    line-height: 1.0;
    margin: 18px 0 18px;
}

.title-dot {
    display: inline-block;
    color: #FFB8D0;
    transform: translateY(-0.05em);
    text-shadow: 0 0 24px rgba(255,184,208,0.7);
}

.title-secondary {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    color: #FFFFFF;
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin: 14px 0 18px;
}

.title-secondary-dark { color: #E0F0FF; }

.title-tertiary {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2.6vw, 30px);
    color: #FFFFFF;
    letter-spacing: 0.01em;
    margin: 10px 0 12px;
}

.title-tertiary-dark { color: #1A3A5C; }

.body-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: #E0F0FF;
    margin: 8px 0 14px;
    max-width: 56ch;
}

.body-text-dark {
    color: #1A3A5C;
}

.subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.6;
    color: #E0F0FF;
    max-width: 32ch;
    margin: 8px 0 22px;
}

.whisper {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: lowercase;
    color: rgba(255,255,255,0.55);
}

.whisper-dark {
    color: rgba(26,58,92,0.65);
}

/* ===== Section: hero ===== */
.section-hero {
    min-height: 110vh;
    padding-top: 12vh;
}

.blob-hero {
    width: min(78vw, 880px);
    aspect-ratio: 1.25 / 1;
    position: relative;
}

.blob-fill-hero {
    background: radial-gradient(
        ellipse at 30% 35%,
        rgba(255,255,255,0.4) 0%,
        rgba(184,228,255,0.4) 25%,
        rgba(120,200,255,0.55) 55%,
        rgba(59,123,168,0.55) 100%
    );
    clip-path: polygon(
        50% 2%, 70% 6%, 86% 14%, 96% 28%, 99% 46%,
        96% 64%, 86% 80%, 68% 92%, 48% 98%, 28% 92%,
        12% 80%, 4% 64%, 1% 46%, 6% 28%, 18% 14%, 32% 6%
    );
    animation: blobMorphA 26s ease-in-out infinite alternate;
}

.blob-floater-1 {
    position: absolute;
    width: 220px;
    aspect-ratio: 1.2 / 1;
    top: 12%; left: 6%;
    opacity: 0.7;
}
.blob-fill-cyan {
    background: radial-gradient(circle at 35% 40%, rgba(255,255,255,0.4), rgba(120,200,255,0.6) 70%);
    clip-path: polygon(50% 4%, 78% 10%, 94% 30%, 96% 56%, 80% 86%, 50% 96%, 22% 86%, 6% 56%, 8% 30%, 26% 10%);
    animation: blobMorphB 22s ease-in-out infinite alternate;
}

.blob-floater-2 {
    position: absolute;
    width: 280px;
    aspect-ratio: 1.4 / 1;
    bottom: 8%; right: 4%;
    opacity: 0.55;
}
.blob-fill-cloud {
    background: radial-gradient(circle at 60% 35%, rgba(255,255,255,0.6), rgba(184,228,255,0.5) 70%);
    clip-path: polygon(48% 3%, 76% 8%, 96% 34%, 92% 60%, 78% 90%, 50% 96%, 24% 88%, 4% 62%, 8% 32%, 24% 8%);
    animation: blobMorphC 28s ease-in-out infinite alternate;
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    color: rgba(255,255,255,0.7);
}

.scroll-hint-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.7));
    position: relative;
    overflow: hidden;
}
.scroll-hint-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,184,208,0), rgba(255,184,208,0.9), rgba(255,184,208,0));
    transform: translateX(-100%);
    animation: hintSlide 2.4s ease-in-out infinite;
}
@keyframes hintSlide {
    to { transform: translateX(100%); }
}

/* ===== Section: manifesto ===== */
.section-manifesto {
    justify-content: flex-start;
}

.blob-manifesto {
    width: min(72vw, 760px);
    aspect-ratio: 1.55 / 1;
    margin-left: 6vw;
}

.blob-fill-mist {
    background: linear-gradient(135deg, rgba(224,240,255,0.92) 0%, rgba(255,255,255,0.95) 50%, rgba(184,228,255,0.85) 100%);
    clip-path: polygon(
        46% 4%, 72% 8%, 92% 22%, 98% 44%, 92% 66%, 76% 86%, 52% 96%,
        26% 92%, 8% 76%, 2% 54%, 6% 30%, 22% 12%
    );
    animation: blobMorphA 28s ease-in-out infinite alternate;
}

.blob-manifesto .body-text { color: #1A3A5C; }
.blob-manifesto .title-secondary { color: #1A3A5C; }
.blob-manifesto .whisper { color: rgba(26,58,92,0.6); }

.shell-cross {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
}

.shell-cross-1 {
    width: 220px;
    top: 20%;
    right: 8%;
    animation: spinSlow 80s linear infinite;
}

.shell-cross-2 {
    width: 280px;
    bottom: 8%;
    left: 4%;
    animation: spinSlow 110s linear infinite reverse;
}

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

/* ===== Section: chambers ===== */
.section-chambers {
    flex-direction: column;
    gap: 5vh;
    align-items: stretch;
    padding: 12vh 4vw;
}

.blob-chamber {
    width: min(58vw, 620px);
    aspect-ratio: 1.6 / 1;
    align-self: flex-start;
}

.blob-chamber-1 {
    margin-left: 6vw;
}
.blob-chamber-2 {
    align-self: flex-end;
    margin-right: 6vw;
    margin-top: -6vh;
}
.blob-chamber-3 {
    align-self: center;
    margin-top: -4vh;
}

.blob-fill-cerulean {
    background: linear-gradient(135deg, rgba(59,123,168,0.95) 0%, rgba(120,200,255,0.85) 100%);
    clip-path: polygon(48% 2%, 78% 10%, 96% 30%, 94% 60%, 78% 90%, 50% 98%, 22% 92%, 4% 70%, 8% 36%, 24% 12%);
    animation: blobMorphB 30s ease-in-out infinite alternate;
}

.blob-fill-pink {
    background: linear-gradient(135deg, rgba(255,184,208,0.95) 0%, rgba(255,224,236,0.95) 50%, rgba(184,228,255,0.85) 100%);
    clip-path: polygon(50% 3%, 80% 8%, 98% 28%, 96% 56%, 80% 88%, 50% 96%, 22% 90%, 4% 64%, 8% 30%, 24% 10%);
    animation: blobMorphC 24s ease-in-out infinite alternate;
}

.blob-fill-violet {
    background: linear-gradient(135deg, rgba(200,160,232,0.95) 0%, rgba(184,228,255,0.85) 70%, rgba(120,200,255,0.85) 100%);
    clip-path: polygon(50% 4%, 76% 10%, 94% 32%, 96% 58%, 80% 84%, 50% 96%, 22% 88%, 4% 64%, 8% 32%, 26% 10%);
    animation: blobMorphA 26s ease-in-out infinite alternate;
}

/* ===== Section: spectrum ===== */
.section-spectrum {
    justify-content: center;
}

.blob-spectrum {
    width: min(86vw, 980px);
    aspect-ratio: 1.6 / 1;
    position: relative;
}

.blob-fill-spectrum {
    background: linear-gradient(135deg,
        rgba(184,228,255,0.95) 0%,
        rgba(224,240,255,0.95) 30%,
        rgba(255,184,208,0.85) 60%,
        rgba(200,160,232,0.85) 100%
    );
    clip-path: polygon(48% 2%, 74% 6%, 94% 24%, 99% 50%, 92% 76%, 74% 92%, 50% 98%, 26% 92%, 8% 76%, 2% 50%, 8% 24%, 26% 6%);
    animation: blobMorphA 30s ease-in-out infinite alternate;
}

.palette-strand {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 6px;
    padding: 0;
}

.palette-bead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    transition: transform 400ms ease, box-shadow 400ms ease;
}

.palette-bead:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(11,30,61,0.25);
}

.palette-bead::before {
    content: "";
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bead);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.6), 0 4px 14px rgba(11,30,61,0.2);
}

.palette-bead span {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: #1A3A5C;
}

.palette-bead em {
    font-style: normal;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: lowercase;
    color: rgba(26,58,92,0.7);
}

/* ===== Section: field ===== */
.section-field {
    flex-direction: column;
    align-items: center;
    gap: 6vh;
}

.blob-field-title {
    width: min(64vw, 700px);
    aspect-ratio: 1.6 / 1;
}

.blob-field-title .body-text { color: #1A3A5C; }
.blob-field-title .title-secondary { color: #1A3A5C; }
.blob-field-title .whisper { color: rgba(26,58,92,0.6); }

.shimmer-grid {
    width: min(86vw, 980px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 3vw, 36px);
}

.shimmer-node {
    position: relative;
    aspect-ratio: 1 / 1;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font: inherit;
    color: inherit;
}

.shimmer-inner {
    position: absolute;
    inset: 0;
    border-radius: 50% 42% 56% 44% / 48% 56% 44% 52%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255,255,255,0.7), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, #B8E4FF 0%, #78C8FF 35%, #FFB8D0 65%, #C8A0E8 100%);
    background-size: 100% 100%, 220% 220%;
    background-position: 0 0, 0% 50%;
    box-shadow:
        inset 0 0 30px rgba(255,255,255,0.35),
        0 14px 36px rgba(11,30,61,0.3);
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1.4),
                filter 600ms ease,
                border-radius 1200ms ease;
}

.shimmer-node:hover .shimmer-inner {
    animation: shimmerHue 1.5s linear infinite, shimmerWobble 4s ease-in-out infinite;
    transform: scale(1.06);
    filter: saturate(1.2) brightness(1.06);
}

@keyframes shimmerHue {
    0%   { filter: hue-rotate(0deg) saturate(1.2) brightness(1.05); }
    100% { filter: hue-rotate(360deg) saturate(1.2) brightness(1.05); }
}

@keyframes shimmerWobble {
    0%, 100% { border-radius: 50% 42% 56% 44% / 48% 56% 44% 52%; }
    25%      { border-radius: 56% 46% 50% 50% / 52% 50% 50% 48%; }
    50%      { border-radius: 44% 56% 46% 54% / 50% 44% 56% 50%; }
    75%      { border-radius: 50% 50% 56% 44% / 46% 54% 46% 54%; }
}

.shimmer-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.1vw, 16px);
    letter-spacing: 0.08em;
    color: #1A3A5C;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
    pointer-events: none;
    padding: 14% 8%;
}

/* ===== Section: pearl ===== */
.section-pearl {
    justify-content: center;
}

.blob-pearl {
    width: min(72vw, 800px);
    aspect-ratio: 1.4 / 1;
}

.blob-fill-pearl {
    background: radial-gradient(ellipse at 35% 30%,
        rgba(255,255,255,0.85) 0%,
        rgba(224,240,255,0.85) 25%,
        rgba(184,228,255,0.85) 55%,
        rgba(120,200,255,0.85) 100%
    );
    clip-path: polygon(50% 2%, 78% 8%, 96% 28%, 98% 56%, 84% 86%, 56% 96%, 28% 92%, 6% 72%, 2% 44%, 14% 18%, 32% 6%);
    animation: blobMorphB 32s ease-in-out infinite alternate;
}

.pearl-quote {
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: 1.5;
    color: #1A3A5C;
    padding: 0 6%;
    margin: 14px 0 18px;
    quotes: none;
}

.pearl-mark {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #FFB8D0;
    font-size: 1.4em;
    line-height: 0;
    padding: 0 4px;
    text-shadow: 0 0 24px rgba(255,184,208,0.5);
}

.pearl-attrib {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: rgba(26,58,92,0.7);
    text-align: right;
}

.blob-pearl .whisper { color: rgba(26,58,92,0.65); }

/* ===== Section: dissolve / footer ===== */
.section-dissolve {
    justify-content: center;
    padding-bottom: 14vh;
}

.blob-dissolve {
    width: min(70vw, 780px);
    aspect-ratio: 1.4 / 1;
}

.blob-fill-deep {
    background: radial-gradient(ellipse at 50% 50%,
        rgba(59,123,168,0.55) 0%,
        rgba(26,58,92,0.85) 50%,
        rgba(11,30,61,0.95) 100%
    );
    clip-path: polygon(48% 2%, 78% 10%, 94% 32%, 98% 58%, 84% 86%, 52% 98%, 22% 90%, 4% 64%, 8% 32%, 26% 10%);
    animation: blobMorphC 34s ease-in-out infinite alternate;
    box-shadow: 0 30px 80px rgba(11,30,61,0.6), inset 0 0 80px rgba(120,200,255,0.18);
}

.blob-dissolve .title-secondary { color: #FFFFFF; }
.blob-dissolve .body-text { color: #B8E4FF; }
.blob-dissolve .whisper { color: rgba(255,255,255,0.45); }

.footer-meta {
    margin-top: 22px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.4);
}

/* ===== Blob morph keyframes (5-7 waypoint clip-path animation) ===== */
@keyframes blobMorphA {
    0% {
        clip-path: polygon(50% 2%, 78% 6%, 94% 28%, 98% 54%, 86% 78%, 60% 94%, 36% 96%, 12% 80%, 2% 54%, 6% 26%, 22% 8%);
    }
    20% {
        clip-path: polygon(46% 4%, 74% 10%, 96% 30%, 94% 60%, 80% 86%, 52% 98%, 24% 92%, 4% 70%, 8% 36%, 26% 12%);
    }
    40% {
        clip-path: polygon(54% 2%, 80% 14%, 98% 36%, 92% 64%, 76% 88%, 48% 96%, 22% 90%, 6% 66%, 2% 38%, 18% 14%);
    }
    60% {
        clip-path: polygon(50% 6%, 76% 8%, 92% 30%, 98% 58%, 84% 84%, 54% 96%, 28% 92%, 6% 74%, 4% 42%, 22% 16%);
    }
    80% {
        clip-path: polygon(48% 4%, 74% 8%, 94% 26%, 96% 54%, 82% 80%, 56% 94%, 30% 96%, 8% 78%, 2% 50%, 18% 22%);
    }
    100% {
        clip-path: polygon(52% 2%, 78% 10%, 96% 32%, 94% 58%, 80% 82%, 50% 96%, 24% 94%, 6% 76%, 2% 46%, 20% 18%);
    }
}

@keyframes blobMorphB {
    0% {
        clip-path: polygon(48% 4%, 74% 8%, 92% 28%, 96% 56%, 84% 80%, 60% 92%, 36% 96%, 12% 78%, 4% 50%, 14% 24%);
    }
    25% {
        clip-path: polygon(54% 2%, 80% 12%, 96% 34%, 92% 62%, 76% 86%, 50% 96%, 24% 92%, 6% 70%, 2% 38%, 22% 14%);
    }
    50% {
        clip-path: polygon(46% 6%, 70% 8%, 94% 26%, 98% 56%, 86% 80%, 54% 94%, 30% 96%, 8% 76%, 2% 46%, 18% 22%);
    }
    75% {
        clip-path: polygon(50% 4%, 78% 10%, 92% 30%, 96% 60%, 80% 84%, 52% 96%, 26% 92%, 6% 72%, 4% 40%, 22% 16%);
    }
    100% {
        clip-path: polygon(52% 2%, 76% 6%, 96% 28%, 94% 56%, 82% 82%, 56% 94%, 30% 94%, 8% 76%, 2% 48%, 16% 22%);
    }
}

@keyframes blobMorphC {
    0% {
        clip-path: polygon(50% 2%, 76% 8%, 94% 28%, 98% 56%, 84% 80%, 56% 94%, 28% 96%, 6% 78%, 2% 48%, 18% 22%);
    }
    20% {
        clip-path: polygon(46% 6%, 72% 12%, 90% 30%, 96% 58%, 78% 84%, 50% 96%, 24% 90%, 4% 68%, 6% 38%, 24% 14%);
    }
    40% {
        clip-path: polygon(52% 4%, 78% 10%, 96% 32%, 92% 60%, 80% 84%, 54% 96%, 30% 92%, 8% 72%, 2% 42%, 22% 18%);
    }
    60% {
        clip-path: polygon(48% 2%, 76% 8%, 94% 30%, 96% 58%, 84% 82%, 58% 94%, 32% 96%, 10% 76%, 2% 46%, 18% 20%);
    }
    80% {
        clip-path: polygon(54% 4%, 80% 14%, 98% 34%, 90% 62%, 76% 86%, 48% 96%, 22% 88%, 4% 66%, 6% 36%, 26% 12%);
    }
    100% {
        clip-path: polygon(50% 4%, 78% 10%, 94% 30%, 96% 56%, 82% 82%, 54% 94%, 28% 92%, 6% 74%, 4% 44%, 22% 18%);
    }
}

/* ===== Reveal animation ===== */
@media (prefers-reduced-motion: reduce) {
    .blob {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .mesh-orb,
    .blob-fill,
    .shell-cross,
    #spiralPath {
        animation: none;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .blob-hero,
    .blob-manifesto,
    .blob-chamber,
    .blob-spectrum,
    .blob-field-title,
    .blob-pearl,
    .blob-dissolve {
        width: min(92vw, 640px);
        aspect-ratio: 1.1 / 1;
    }
    .blob-chamber-1, .blob-chamber-2, .blob-chamber-3 {
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }
    .blob-content {
        padding: 14% 14%;
    }
    .shimmer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .progress-indicator {
        right: 12px;
        height: 50vh;
    }
    .blob-floater-1 { width: 130px; left: 2%; top: 6%; }
    .blob-floater-2 { width: 160px; right: 2%; bottom: 4%; }
    .shell-cross-1 { width: 140px; right: 2%; top: 4%; }
    .shell-cross-2 { width: 160px; left: 2%; bottom: 4%; }
}

@media (max-width: 540px) {
    .shimmer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .palette-strand {
        gap: 8px;
    }
    .palette-bead {
        padding: 6px 8px;
    }
    .palette-bead::before {
        width: 22px; height: 22px;
    }
    .palette-bead span { font-size: 10px; }
    .palette-bead em { font-size: 9px; }
}
