/* ==========================================================================
   DILEMMA.QUEST - Candy-Colored Decision Playground
   Whimsical organic-flow scroll narrative with bounce-enter animations
   Palette: candy-bright | Type: Baloo 2 + Nunito + Caveat
   ========================================================================== */

:root {
    --pink: #FF6B9D;        /* Bubblegum */
    --yellow: #FFD93D;      /* Lemon Drop */
    --green: #6BCB77;       /* Mint Fizz */
    --blue: #4D96FF;        /* Blueberry Pop */
    --orange: #FF8C32;      /* Tangerine Burst */
    --purple: #C084FC;      /* Grape Soda */
    --cream: #FFF8F2;       /* Marshmallow */
    --dark: #2D2235;        /* Licorice */

    --font-display: 'Baloo 2', 'Inter', system-ui, sans-serif;
    --font-body: 'Nunito', 'Inter', system-ui, sans-serif;
    --font-accent: 'Caveat', 'Inter', cursive;

    --shadow-pink: 0 8px 24px rgba(255, 107, 157, 0.28);
    --shadow-yellow: 0 8px 24px rgba(255, 217, 61, 0.32);
    --shadow-green: 0 8px 24px rgba(107, 203, 119, 0.28);
    --shadow-blue: 0 8px 24px rgba(77, 150, 255, 0.28);
    --shadow-orange: 0 8px 24px rgba(255, 140, 50, 0.28);
    --shadow-purple: 0 8px 24px rgba(192, 132, 252, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ==========================================================================
   QUEST WORLD CONTAINER
   ========================================================================== */

.quest-world {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Winding candy-striped path (background spine) */
.winding-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.path-line {
    stroke-dasharray: 28 14;
    filter: drop-shadow(0 4px 10px rgba(192, 132, 252, 0.25));
}

/* ==========================================================================
   AMBIENT FLOATING SHAPES
   ========================================================================== */

.ambient-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-shape {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--color);
    opacity: 0.12;
    animation: drift var(--dur, 12s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    will-change: transform;
}

.ambient-shape.ambient-pill {
    width: calc(var(--size) * 1.6);
    height: calc(var(--size) * 0.7);
    border-radius: 999px;
}

.ambient-shape.ambient-rounded {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -28px) rotate(8deg); }
    50% { transform: translate(-18px, -12px) rotate(-6deg); }
    75% { transform: translate(12px, 18px) rotate(4deg); }
}

/* ==========================================================================
   BOUNCING QUESTION MARKS
   ========================================================================== */

.question-marks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.qm {
    position: absolute;
    left: var(--qx);
    top: var(--qy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--qs);
    line-height: 1;
    color: white;
    width: calc(var(--qs) * 1.3);
    height: calc(var(--qs) * 1.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: qmBob 3s ease-in-out infinite;
    animation-delay: var(--qd, 0s);
    will-change: transform;
}

.qm-pink   { background: var(--pink);   box-shadow: var(--shadow-pink); }
.qm-blue   { background: var(--blue);   box-shadow: var(--shadow-blue); }
.qm-yellow { background: var(--yellow); color: var(--dark); box-shadow: var(--shadow-yellow); }
.qm-purple { background: var(--purple); box-shadow: var(--shadow-purple); }
.qm-green  { background: var(--green);  box-shadow: var(--shadow-green); }
.qm-orange { background: var(--orange); box-shadow: var(--shadow-orange); }

@keyframes qmBob {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-14px) rotate(6deg); }
}

/* ==========================================================================
   SCENES
   ========================================================================== */

.scene {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    z-index: 2;
    overflow: hidden;
}

.scene-content {
    max-width: 760px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.scene-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--dark);
    opacity: 0.85;
    margin: 0 auto 2.5rem;
    max-width: 620px;
}

.caveat-note {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.4rem);
    color: var(--purple);
}

/* ==========================================================================
   WAVE DIVIDERS
   ========================================================================== */

.wave-divider {
    display: block;
    width: 100%;
    height: 90px;
    margin: -1px 0;
    position: relative;
    z-index: 2;
}

.wave-divider.wave-flip {
    transform: scaleY(-1);
}

/* ==========================================================================
   HERO SCENE
   ========================================================================== */

.scene-hero {
    background: linear-gradient(135deg, #FFF0F5 0%, var(--cream) 50%, #E6F0FF 100%);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 11vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.04em;
}

.hero-title .letter {
    display: inline-block;
    color: var(--lc);
    opacity: 0;
    transform: scale(0.3) translateY(40px);
    animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--ld);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    text-shadow: 0 6px 0 rgba(45, 34, 53, 0.06);
}

.hero-title .letter:hover {
    transform: scaleX(1.2) scaleY(0.85);
}

.hero-title .letter-dot {
    margin: 0 0.05em;
}

.hero-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0 2.5rem;
    flex-wrap: wrap;
}

.big-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.big-arrow-left {
    animation: arrowBounceLeft 1.6s ease-in-out infinite;
}

.big-arrow-right {
    animation: arrowBounceRight 1.6s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes arrowBounceLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-12px); }
}

@keyframes arrowBounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    max-width: 320px;
    text-align: center;
}

.hero-subtitle .caveat-note {
    display: block;
    font-weight: 700;
    color: var(--pink);
    margin-top: 0.4rem;
}

.scroll-hint {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--purple);
    animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   BOUNCE-IN REVEAL
   ========================================================================== */

@keyframes bounceIn {
    0%   { transform: scale(0.3) translateY(40px); opacity: 0; }
    50%  { transform: scale(1.08) translateY(-8px); opacity: 1; }
    70%  { transform: scale(0.95) translateY(3px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes bounceInBig {
    0%   { transform: scale(0.3) translateY(60px); opacity: 0; }
    50%  { transform: scale(1.15) translateY(-12px); opacity: 1; }
    70%  { transform: scale(0.94) translateY(5px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.scene:not(.scene-hero) .scene-content {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scene:not(.scene-hero) .scene-content.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ==========================================================================
   FORK JUNCTIONS
   ========================================================================== */

.scene-fork {
    background: linear-gradient(180deg, #FFF0F5 0%, var(--cream) 100%);
}

.scene-fork-2 {
    background: linear-gradient(180deg, #F0F8FF 0%, var(--cream) 100%);
}

.fork-junction {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin: 2rem auto 1.5rem;
    flex-wrap: wrap;
}

.fork-option {
    position: relative;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.fork-junction:hover .fork-option:not(:hover) {
    opacity: 0.55;
}

.fork-option:hover {
    transform: scale(1.06);
}

.fork-option.chosen {
    animation: celebrate 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fork-option.dimmed {
    opacity: 0.4;
    transform: scale(0.92);
}

@keyframes celebrate {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18) rotate(-4deg); }
    70%  { transform: scale(0.96) rotate(3deg); }
    100% { transform: scale(1.06) rotate(0); }
}

.option-blob {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 168px;
    height: 168px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: white;
    border: 3px solid var(--dark);
    transition: box-shadow 0.3s ease, border-radius 0.5s ease;
    color: var(--dark);
}

.fork-option:hover .option-blob {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.blob-yellow { background: var(--yellow); box-shadow: var(--shadow-yellow); color: var(--dark); }
.blob-purple { background: var(--purple); box-shadow: var(--shadow-purple); color: white; }
.blob-pink   { background: var(--pink);   box-shadow: var(--shadow-pink);   color: white; }
.blob-blue   { background: var(--blue);   box-shadow: var(--shadow-blue);   color: white; }
.blob-green  { background: var(--green);  box-shadow: var(--shadow-green);  color: white; }
.blob-orange { background: var(--orange); box-shadow: var(--shadow-orange); color: white; }

.option-icon {
    font-size: 2.6rem;
    line-height: 1;
}

.option-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.fork-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.or-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    text-transform: lowercase;
    letter-spacing: 0;
    border: 3px solid var(--cream);
    box-shadow: 0 4px 12px rgba(45, 34, 53, 0.25);
}

/* Confetti burst at fork */
.confetti-burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.confetti-burst.active span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0;
    animation: confettiPop 1.2s ease-out forwards;
}

.confetti-burst.active span:nth-child(odd) {
    border-radius: 2px;
}

@keyframes confettiPop {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(calc(-50% + var(--cx, 0px)), calc(-50% + var(--cy, 0px))) scale(1) rotate(var(--cr, 360deg));
        opacity: 0;
    }
}

.choice-result {
    min-height: 2rem;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--dark);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(10px);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

.choice-result.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Speech bubble */
.speech-bubble {
    position: relative;
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: white;
    border: 2px solid var(--dark);
    border-radius: 24px 24px 24px 6px;
    box-shadow: 0 6px 0 rgba(45, 34, 53, 0.08);
    margin: 1rem 0 0;
    transform: rotate(-2deg);
}

.speech-bubble.bubble-right {
    border-radius: 24px 24px 6px 24px;
    transform: rotate(2deg);
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 18px;
    width: 14px;
    height: 14px;
    background: white;
    border-right: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(45deg);
}

.speech-bubble.bubble-right::after {
    left: auto;
    right: 18px;
}

/* ==========================================================================
   PARADOX GARDEN
   ========================================================================== */

.scene-garden {
    background: linear-gradient(180deg, #F5F0FF 0%, var(--cream) 100%);
}

.petal-ring {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 1rem auto 2rem;
}

.petal-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--cream);
    border: 3px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--dark);
    box-shadow: 0 6px 0 rgba(45, 34, 53, 0.1);
    z-index: 2;
}

.petal {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--pc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    border: 3px solid var(--dark);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    will-change: transform;
    padding: 0;
    box-shadow: 0 6px 0 rgba(45, 34, 53, 0.12);
}

/* 6 petals around a 320x320 ring, radius 110 */
.petal:nth-child(2) { left: calc(50% - 39px + 110px); top: calc(50% - 39px + 0px); }
.petal:nth-child(3) { left: calc(50% - 39px + 55px);  top: calc(50% - 39px - 95px); }
.petal:nth-child(4) { left: calc(50% - 39px - 55px);  top: calc(50% - 39px - 95px); }
.petal:nth-child(5) { left: calc(50% - 39px - 110px); top: calc(50% - 39px + 0px); }
.petal:nth-child(6) { left: calc(50% - 39px - 55px);  top: calc(50% - 39px + 95px); }
.petal:nth-child(7) { left: calc(50% - 39px + 55px);  top: calc(50% - 39px + 95px); }

.petal:hover {
    transform: scale(1.15) rotate(-6deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.petal.active {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 8px 0 rgba(45, 34, 53, 0.15);
}

@keyframes petalFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}

.petal {
    animation: petalFloat 2.6s ease-in-out infinite;
    animation-delay: calc(var(--pi) * 0.18s);
}

.question-display {
    min-height: 4rem;
    margin: 1.5rem auto 0;
    max-width: 460px;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.question-display.has-question {
    color: var(--purple);
}

/* ==========================================================================
   WEIGHING SCALE
   ========================================================================== */

.scene-scale {
    background: linear-gradient(180deg, #FFFDE6 0%, var(--cream) 100%);
}

.scale-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0 1rem;
}

.scale-stand {
    position: relative;
    width: 380px;
    max-width: 100%;
    height: 230px;
}

.scale-beam {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 320px;
    max-width: 90%;
    height: 8px;
    background: var(--dark);
    border-radius: 4px;
    transform-origin: 50% 50%;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.scale-pan {
    position: absolute;
    top: -64px;
    width: 96px;
    height: 96px;
    border-radius: 50% 50% 60% 60% / 30% 30% 70% 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    border: 3px solid var(--dark);
    transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-pan-left {
    left: 0;
    background: var(--pink);
    box-shadow: var(--shadow-pink);
    color: white;
}

.scale-pan-right {
    right: 0;
    background: var(--blue);
    box-shadow: var(--shadow-blue);
    color: white;
}

.scale-pan::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 22px;
    background: var(--dark);
}

.pan-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
}

.pan-count {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
}

.scale-fulcrum {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scale-base {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 16px;
    border-radius: 8px;
    background: var(--dark);
    z-index: 1;
}

.scale-tokens {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.token {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    background: white;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    box-shadow: 0 6px 0 rgba(45, 34, 53, 0.12);
}

.token:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 18px rgba(45, 34, 53, 0.18);
}

.token:active {
    transform: translateY(2px) scale(0.94);
    box-shadow: 0 2px 0 rgba(45, 34, 53, 0.2);
}

.token-heart {
    color: var(--pink);
    background: #FFE6F0;
}

.token-mind {
    color: var(--blue);
    background: #E6F0FF;
}

.token-reset {
    color: var(--dark);
    background: var(--yellow);
    font-size: 1.4rem;
    width: 56px;
    height: 56px;
}

.scale-status {
    margin-top: 0.5rem;
    color: var(--purple);
    min-height: 1.6rem;
}

/* ==========================================================================
   CONSTELLATION
   ========================================================================== */

.scene-constellation {
    background: var(--dark);
    color: var(--cream);
}

.scene-constellation .section-title {
    color: var(--cream);
}

.scene-constellation .scene-text {
    color: var(--cream);
    opacity: 0.8;
}

.scene-constellation .caveat-note {
    color: var(--yellow);
}

.star-field {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 30%, #4A3260 0%, #2D2235 70%, #1A1226 100%);
    cursor: crosshair;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 0 80px rgba(192, 132, 252, 0.12);
    border: 3px solid rgba(255, 248, 242, 0.1);
}

#constellation-canvas {
    display: block;
    width: 100%;
    height: 400px;
}

.star-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.star-btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--dark);
    border: 3px solid var(--cream);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
    box-shadow: 0 6px 0 rgba(255, 248, 242, 0.18);
}

.star-btn:hover {
    transform: scale(1.06);
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
}

/* ==========================================================================
   FINAL SCENE
   ========================================================================== */

.scene-final {
    background: linear-gradient(180deg, #E6F0FF 0%, var(--cream) 50%, #FFF0F5 100%);
}

.finale-circle {
    width: clamp(220px, 38vw, 320px);
    height: clamp(220px, 38vw, 320px);
    border-radius: 50%;
    margin: 1.5rem auto 2rem;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.35), inset 0 0 60px rgba(255, 217, 61, 0.4);
    animation: breathe 4s ease-in-out infinite;
    border: 4px solid var(--cream);
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.big-question {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: var(--cream);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 0 rgba(45, 34, 53, 0.18);
}

.closing-note {
    margin-top: 3rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.4;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 720px) {
    .scene {
        padding: 4rem 1rem;
    }

    .hero-title {
        gap: 0.02em;
    }

    .hero-arrows {
        gap: 0.75rem;
    }

    .big-arrow svg {
        width: 56px;
        height: 56px;
    }

    .fork-junction {
        flex-direction: column;
        gap: 1.25rem;
    }

    .option-blob {
        width: 144px;
        height: 144px;
    }

    .petal-ring {
        width: 280px;
        height: 280px;
    }

    .petal:nth-child(2) { left: calc(50% - 39px + 95px);  top: calc(50% - 39px + 0px); }
    .petal:nth-child(3) { left: calc(50% - 39px + 47px);  top: calc(50% - 39px - 82px); }
    .petal:nth-child(4) { left: calc(50% - 39px - 47px);  top: calc(50% - 39px - 82px); }
    .petal:nth-child(5) { left: calc(50% - 39px - 95px);  top: calc(50% - 39px + 0px); }
    .petal:nth-child(6) { left: calc(50% - 39px - 47px);  top: calc(50% - 39px + 82px); }
    .petal:nth-child(7) { left: calc(50% - 39px + 47px);  top: calc(50% - 39px + 82px); }

    .scale-stand {
        width: 320px;
    }

    .scale-beam {
        width: 270px;
    }

    .qm {
        transform: scale(0.7);
    }
}

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

    .hero-title .letter {
        opacity: 1;
        transform: none;
    }
}
