﻿:root {
            --bg: #05030b;
            --panel: rgba(18, 10, 30, 0.92);
            --panel-soft: rgba(26, 15, 40, 0.88);
            --gold: rgba(212, 175, 55, 0.92);
            --gold-strong: rgba(240, 201, 77, 0.96);
            --violet: rgba(176, 121, 255, 0.92);
            --text: rgba(255, 248, 234, 0.94);
            --text-soft: rgba(255, 248, 234, 0.74);
            --text-muted: rgba(255, 248, 234, 0.46);
            --border: rgba(212, 175, 55, 0.16);
            --border-strong: rgba(212, 175, 55, 0.26);
            --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
        }

        * { box-sizing: border-box; }

        html { background: #000; }

        body {
            margin: 0;
            min-height: 100vh;
            position: relative;
            background:
                radial-gradient(circle at top, rgba(119, 73, 190, 0.16), transparent 28%),
                radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.1), transparent 18%),
                radial-gradient(circle at 18% 88%, rgba(125, 75, 187, 0.1), transparent 20%),
                linear-gradient(180deg, #000 0%, #090410 50%, #000 100%);
            color: var(--text);
            font-family: 'Philosopher', sans-serif;
            overflow-x: hidden;
        }

        a { color: inherit; }

        .ambient-glow {
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 14% 16%, rgba(212, 175, 55, 0.08), transparent 20%),
                radial-gradient(circle at 88% 12%, rgba(177, 111, 255, 0.12), transparent 24%);
        }

        .shell {
            position: relative;
            z-index: 1;
            width: min(1120px, calc(100% - 24px));
            margin: 0 auto;
            padding: 0 0 40px;
        }

        #portalNavMount {
            min-height: 70px;
        }

        @media (max-width: 900px) {
            #portalNavMount {
                min-height: 60px;
            }
        }

        /* Navbar and menu are fully owned by portal-shell.css to keep all pages identical. */

        .hero {
            display: grid;
            justify-items: center;
            gap: 8px;
            text-align: center;
            padding: 18px 0 14px;
            animation: heroFade .45s ease-out both;
        }

        .hero-intro {
            display: grid;
            gap: 8px;
            width: 100%;
            justify-items: center;
            overflow: hidden;
            transition: max-height .42s ease, opacity .28s ease, transform .36s ease, margin .36s ease;
            max-height: 720px;
        }

        .hero-intro.is-hidden {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
            margin: 0;
            pointer-events: none;
        }

        .hero-banner {
            position: relative;
            --hero-voice-columns: 24fr 23fr 24fr 29fr;
            width: min(820px, calc(100% - 28px));
            margin: 0 auto 8px;
            aspect-ratio: 16 / 10.5;
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background:
                linear-gradient(180deg, rgba(10, 6, 18, 0.06), rgba(10, 6, 18, 0.22)),
                radial-gradient(circle at top, rgba(255, 224, 170, 0.12), transparent 58%),
                #120a1c;
            box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
            isolation: isolate;
        }

        .hero-banner::before {
            content: "";
            position: absolute;
            inset: -8% -24%;
            background:
                linear-gradient(115deg, rgba(255, 255, 255, 0) 28%, rgba(255, 232, 175, 0.16) 44%, rgba(255, 245, 214, 0.36) 50%, rgba(245, 205, 103, 0.18) 56%, rgba(255, 255, 255, 0) 72%);
            transform: translateX(-45%) rotate(-8deg);
            opacity: 0.78;
            mix-blend-mode: screen;
            pointer-events: none;
            z-index: 2;
            animation: heroBannerGoldSweep 7.8s ease-in-out infinite;
        }

        .hero-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 24%, rgba(255, 220, 147, 0.18), transparent 26%),
                radial-gradient(circle at 78% 18%, rgba(255, 234, 188, 0.12), transparent 24%),
                linear-gradient(180deg, rgba(255, 223, 151, 0.04), transparent 22%, transparent 58%, rgba(9, 6, 16, 0.72) 100%);
            pointer-events: none;
            z-index: 1;
            animation: heroBannerGlowPulse 5.2s ease-in-out infinite;
        }

        .hero-banner-media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center 24%;
            filter: saturate(1.03) contrast(1.02) brightness(1.01);
            transform: scale(1.01);
            transition: opacity .38s ease, transform .52s ease, filter .38s ease;
            z-index: 0;
        }

        .hero-banner-image {
            opacity: 1;
        }

        .hero-banner-video {
            opacity: 0;
            pointer-events: none;
        }

        .hero-banner-video.is-active-life {
            opacity: 1;
            transform: scale(1.02);
            filter: saturate(1.06) contrast(1.03) brightness(1.02);
        }

        .hero-banner.is-lively .hero-banner-image {
            opacity: 0;
            transform: scale(1.035);
            filter: saturate(1.08) contrast(1.04) brightness(1.03);
        }

        .hero-banner-voices {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: grid;
            grid-template-columns: var(--hero-voice-columns);
            pointer-events: auto;
        }

        .hero-banner-voice {
            position: relative;
            border-right: 1px solid rgba(255, 248, 234, 0.08);
            background: linear-gradient(180deg, rgba(7, 4, 14, 0.16), rgba(7, 4, 14, 0.08));
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
            opacity: 0.74;
            transition: opacity .24s ease, background .24s ease, box-shadow .24s ease, filter .24s ease;
            min-width: 0; overflow: hidden;
            cursor: pointer;
            pointer-events: auto;
        }

        .hero-banner-voice:last-child {
            border-right: none;
        }

        .hero-banner-voice::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 232, 171, 0.12), transparent 28%, rgba(9, 6, 16, 0.24) 100%);
            opacity: 0;
            transition: opacity .24s ease;
        }

        .hero-banner-voice__badge,
        .hero-banner-voice__name {
            position: absolute;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .hero-banner-voice__badge {
            top: 10px;
            left: 10px;
            right: 10px;
            padding: 5px 8px;
            border-radius: 999px;
            background: rgba(11, 7, 20, 0.48);
            border: 1px solid rgba(212, 175, 55, 0.12);
            color: rgba(255, 244, 215, 0.82);
            font: 700 9px/1 'Philosopher', sans-serif;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .hero-banner-voice__name {
            left: 10px;
            right: 10px;
            bottom: 10px;
            gap: 4px;
            padding: 6px 8px;
            border-radius: 999px;
            background: rgba(11, 7, 20, 0.56);
            border: 1px solid rgba(212, 175, 55, 0.14);
            color: rgba(255, 244, 215, 0.76);
            font: 700 10px/1 'Cinzel', serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-banner-voice.is-daily-guardian {
            opacity: 1;
            background: linear-gradient(180deg, rgba(255, 231, 165, 0.08), rgba(255, 220, 129, 0.03) 24%, rgba(7, 4, 14, 0.16) 100%);
            box-shadow:
                inset 0 0 0 1px rgba(255, 236, 186, 0.1),
                inset 0 -84px 120px rgba(255, 212, 103, 0.08),
                0 0 0 1px rgba(255, 236, 186, 0.06);
            filter: saturate(1.03);
        }

        .hero-banner.is-navmap-ready .hero-banner-voice {
            cursor: pointer;
            pointer-events: auto;
        }

        .hero-banner.is-navmap-ready .hero-banner-voices {
            pointer-events: auto;
        }

        .hero-banner.is-navmap-ready .hero-banner-voice:hover,
        .hero-banner.is-navmap-ready .hero-banner-voice:focus-visible {
            opacity: 1;
            background: linear-gradient(180deg, rgba(255, 225, 150, 0.1), rgba(255, 225, 150, 0.05) 30%, rgba(7, 4, 14, 0.16) 100%);
            box-shadow: inset 0 0 0 1px rgba(255, 236, 186, 0.18), inset 0 -70px 110px rgba(255, 212, 103, 0.14);
            filter: saturate(1.08);
            outline: none;
        }

        .hero-banner.is-navmap-ready .hero-banner-voice:hover .hero-banner-voice__badge,
        .hero-banner.is-navmap-ready .hero-banner-voice:focus-visible .hero-banner-voice__badge {
            border-color: rgba(255, 221, 143, 0.36);
            color: #fff0c7;
            box-shadow: 0 0 16px rgba(255, 210, 117, 0.16);
        }

        .hero-banner.is-navmap-ready .hero-banner-voice:hover .hero-banner-voice__name,
        .hero-banner.is-navmap-ready .hero-banner-voice:focus-visible .hero-banner-voice__name {
            border-color: rgba(255, 221, 143, 0.52);
            color: #fff4d2;
            box-shadow: 0 0 18px rgba(255, 210, 117, 0.22);
        }

        .hero-banner-voice.is-daily-guardian .hero-banner-voice__badge {
            border-color: rgba(255, 221, 143, 0.28);
            color: #fff0c7;
            background: rgba(33, 22, 8, 0.54);
            box-shadow:
                0 0 16px rgba(255, 210, 117, 0.12),
                inset 0 0 0 1px rgba(255, 236, 186, 0.05);
        }

        .hero-banner-voice.is-daily-guardian .hero-banner-voice__name {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #fff4d2;
            border-color: rgba(255, 221, 143, 0.42);
            box-shadow:
                0 0 20px rgba(255, 210, 117, 0.18),
                inset 0 0 0 1px rgba(255, 236, 186, 0.08);
        }

        .hero-banner-voice.is-daily-guardian .hero-banner-voice__name::before {
            content: "✦";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #f7d97b;
            font-size: 10px;
            line-height: 1;
            text-shadow: 0 0 12px rgba(255, 216, 110, 0.4);
        }

        .hero-banner-voice.is-active,
        .hero-banner-voices.is-all-active .hero-banner-voice {
            opacity: 1;
            background: linear-gradient(180deg, rgba(255, 225, 150, 0.08), rgba(255, 225, 150, 0.04) 30%, rgba(7, 4, 14, 0.14) 100%);
            box-shadow: inset 0 0 0 1px rgba(255, 236, 186, 0.12), inset 0 -70px 110px rgba(255, 212, 103, 0.12);
            filter: saturate(1.06);
        }

        .hero-banner-voice.is-active::after,
        .hero-banner-voices.is-all-active .hero-banner-voice::after {
            opacity: 1;
        }

        .hero-banner-voice.is-active .hero-banner-voice__badge,
        .hero-banner-voices.is-all-active .hero-banner-voice .hero-banner-voice__badge {
            border-color: rgba(255, 221, 143, 0.3);
            color: #ffefc0;
        }

        .hero-banner-voice.is-active .hero-banner-voice__name,
        .hero-banner-voices.is-all-active .hero-banner-voice .hero-banner-voice__name {
            border-color: rgba(255, 221, 143, 0.42);
            color: #fff1c4;
            box-shadow: 0 0 18px rgba(255, 210, 117, 0.16);
        }

        .hero-copy {
            display: grid;
            gap: 8px;
            justify-items: center;
            width: 100%;
        }

        .magic-particles,
        #magicParticles,
        .particle,
        [class*="particle"] {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .hero-portrait {
            position: relative;
            width: 88px;
            height: 88px;
            padding: 3px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(181, 118, 255, 0.88));
            box-shadow: 0 0 22px rgba(212, 175, 55, 0.14);
            overflow: hidden;
            isolation: isolate;
            cursor: pointer;
            transition: transform .22s ease, box-shadow .22s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .hero-portrait:hover,
        .hero-portrait:focus-visible {
            transform: translateY(-1px) scale(1.03);
            box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
            outline: none;
        }

        .hero-portrait.is-tapped {
            transform: scale(0.98);
        }

        .hero-portrait::before {
            content: "";
            position: absolute;
            inset: -14%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(181, 118, 255, 0.1) 42%, transparent 70%);
            filter: blur(10px);
            animation: portraitGlowPulse 4.8s ease-in-out infinite;
            z-index: 0;
        }

        .hero-portrait-frame,
        .hero-portrait-core,
        .hero-portrait-orbit,
        .hero-portrait-shimmer,
        .hero-portrait-flash {
            position: absolute;
            inset: 0;
            border-radius: 50%;
        }

        .hero-portrait-frame {
            inset: 2px;
            border: 1px solid rgba(255, 248, 234, 0.18);
            z-index: 2;
            pointer-events: none;
        }

        .hero-portrait-core {
            inset: 3px;
            overflow: hidden;
            z-index: 1;
            background: #110a1d;
        }

        .hero-portrait-media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            opacity: 0;
            transform: scale(1.04);
            transition: opacity .7s ease, transform 1.1s ease;
        }

        .hero-portrait-media.is-active {
            opacity: 1;
            transform: scale(1);
        }

        .hero-portrait-media[data-hero-pose="portrait"] {
            object-position: center 18%;
        }

        .hero-portrait-media[data-hero-pose="jolanda"] {
            object-position: center 18%;
        }

        .hero-portrait-media[data-hero-pose="bogumila"] {
            object-position: center 16%;
        }

        .hero-portrait-media[data-hero-pose="lunaria"] {
            object-position: center 18%;
        }

        .hero-portrait-shimmer {
            inset: 8px;
            background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,0.06) 34%, transparent 58%);
            transform: translateX(-120%);
            animation: portraitShimmer 6.4s ease-in-out infinite;
            z-index: 3;
            pointer-events: none;
        }

        .hero-portrait-orbit {
            z-index: 4;
            pointer-events: none;
        }

        .hero-portrait-orbit::before,
        .hero-portrait-orbit::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,248,234,0.95) 0%, rgba(212,175,55,0.88) 35%, rgba(181,118,255,0.2) 100%);
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.28);
        }

        .hero-portrait-orbit::before {
            top: 6px;
            left: 50%;
            margin-left: -4px;
            animation: orbitDriftA 8s linear infinite;
        }

        .hero-portrait-orbit::after {
            bottom: 8px;
            right: 16px;
            width: 6px;
            height: 6px;
            animation: orbitDriftB 9.5s linear infinite;
        }

        .hero-portrait-flash {
            background: radial-gradient(circle at 50% 42%, rgba(255,248,234,0.56) 0%, rgba(212,175,55,0.22) 24%, rgba(181,118,255,0.16) 44%, transparent 72%);
            opacity: 0;
            transform: scale(0.8);
            z-index: 5;
            pointer-events: none;
        }

        .hero-portrait.is-flashing .hero-portrait-flash {
            animation: portraitFlash .7s ease-out 1;
        }

        .hero h1 {
            margin: 0;
            font-family: 'Cinzel', serif;
            max-width: 22ch;
            font-size: clamp(24px, 5vw, 44px);
            line-height: 1.12;
            letter-spacing: -0.01em;
            color: #f6e3a0;
        }

        .hero h1 span {
            display: block;
        }

        .hero p {
            margin: 0;
            max-width: 28ch;
            font-size: clamp(15px, 2.5vw, 18px);
            line-height: 1.42;
            color: var(--text-soft);
        }

        .hero-motif {
            width: min(940px, calc(100% - 12px));
            margin: 2px auto 0;
            padding: 12px 14px;
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: linear-gradient(135deg, rgba(42, 24, 68, 0.78), rgba(24, 14, 40, 0.84));
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
            display: grid;
            gap: 8px;
        }

        .hero-motif-guardian {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            min-width: 0;
            padding: 10px 12px;
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            background:
                radial-gradient(circle at left top, rgba(255, 226, 160, 0.12), transparent 42%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 12px 22px rgba(0, 0, 0, 0.18);
        }

        .hero-motif-guardian--intro {
            width: min(100%, 440px);
            margin-top: 2px;
        }

        .hero-portrait--guardian {
            width: 52px;
            height: 52px;
            flex: 0 0 52px;
            padding: 2px;
            box-shadow:
                0 0 0 3px rgba(255, 229, 163, 0.08),
                0 0 20px rgba(212, 175, 55, 0.22);
        }

        .hero-portrait--guardian .hero-portrait-shimmer {
            inset: 6px;
        }

        .hero-portrait--guardian .hero-portrait-orbit::before,
        .hero-portrait--guardian .hero-portrait-orbit::after {
            width: 6px;
            height: 6px;
        }

        .hero-portrait--guardian .hero-portrait-orbit::before {
            top: 4px;
            margin-left: -3px;
        }

        .hero-portrait--guardian .hero-portrait-orbit::after {
            bottom: 6px;
            right: 10px;
            width: 5px;
            height: 5px;
        }

        .hero-motif-guardian-copy {
            min-width: 0;
            display: grid;
            gap: 4px;
            text-align: left;
            transition: transform .22s ease, opacity .22s ease;
        }

        .hero-motif-guardian-copy strong {
            color: #f8e8b3;
            font: 700 10px/1.1 'Cinzel', serif;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-shadow: 0 0 16px rgba(255, 226, 154, 0.14);
        }

        .hero-motif-guardian-copy span {
            color: rgba(255, 248, 234, 0.76);
            font: 700 18px/1.12 'Philosopher', sans-serif;
            letter-spacing: 0.01em;
            text-wrap: balance;
        }

        .hero-motif-guardian.is-speaking {
            border-color: rgba(255, 225, 150, 0.34);
            background:
                radial-gradient(circle at left top, rgba(255, 226, 160, 0.18), transparent 42%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028));
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.06),
                0 14px 28px rgba(0, 0, 0, 0.22),
                0 0 0 1px rgba(255, 225, 150, 0.08);
        }

        .hero-motif-guardian.is-speaking .hero-motif-guardian-copy {
            transform: translateY(-1px);
        }

        .hero-motif-guardian.is-speaking .hero-motif-guardian-copy span {
            color: #fff4d2;
            text-shadow: 0 0 18px rgba(255, 221, 143, 0.16);
        }

        .hero-motif-kicker {
            display: block;
            margin-bottom: 4px;
            font-size: 11px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(212, 175, 55, 0.84);
        }

        .hero-motif-title {
            margin: 0;
            font: 700 18px/1.22 'Cinzel', serif;
            color: #f8e8b3;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            max-width: 100%;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;
            overflow-wrap: anywhere;
            text-wrap: balance;
        }

        .hero-motif-head {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: nowrap;
            min-width: 0;
            width: 100%;
        }

        .hero-motif-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.32);
            background: rgba(255, 255, 255, 0.04);
            color: #f8e8b3;
            font: 700 16px/1 'Cinzel', serif;
            box-shadow: 0 0 14px rgba(212, 175, 55, 0.18);
        }

        .hero-motif-icon[hidden] {
            display: none;
        }

        .hero-motif-body {
            margin: 0;
            font-size: 13px;
            line-height: 1.42;
            color: rgba(255, 248, 234, 0.8);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;
            overflow-wrap: anywhere;
            text-wrap: pretty;
        }

        .hero-motif-progress {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            grid-auto-flow: column;
            gap: 4px;
            margin-top: 2px;
        }

        .hero-motif-progress__dot {
            position: relative;
            min-height: 8px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
            transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease, filter .22s ease;
        }

        .hero-motif-progress__dot.is-done {
            border-color: rgba(98, 221, 161, 0.54);
            background: rgba(98, 221, 161, 0.26);
        }

        .hero-motif-progress__dot.is-active {
            border-color: rgba(245, 209, 118, 0.9);
            background: linear-gradient(90deg, rgba(230, 194, 112, 0.96), rgba(122, 205, 255, 0.9));
            box-shadow: 0 0 0 1px rgba(122, 205, 255, 0.28), 0 0 16px rgba(245, 209, 118, 0.28), 0 0 26px rgba(122, 205, 255, 0.34);
            animation: heroMotifProgressGlow 1.45s ease-in-out infinite;
        }

        .hero-motif-progress__dot.is-active::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.76) 48%, transparent 68%);
            opacity: 0;
            pointer-events: none;
            animation: heroMotifProgressSweep 1.45s ease-in-out infinite;
        }

        .hero-motif-extra {
            display: grid;
            gap: 8px;
        }

        @media (min-width: 1024px) {
            .hero-motif {
                width: min(760px, calc(100% - 32px));
                margin-top: 10px;
                padding: 18px 20px 20px;
                gap: 12px;
                border-radius: 24px;
                box-shadow:
                    0 22px 52px rgba(0, 0, 0, 0.34),
                    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
            }

            .hero-motif-kicker {
                margin-bottom: 2px;
                font-size: 12px;
                letter-spacing: 0.18em;
            }

            .hero-motif-title {
                font-size: 19px;
                line-height: 1.28;
                max-width: 27ch;
                margin-inline: auto;
                text-align: center;
            }

            .hero-motif-body {
                max-width: 38ch;
                margin-inline: auto;
                font-size: 15px;
                line-height: 1.5;
                text-align: center;
            }

            .hero-motif-progress {
                gap: 6px;
                margin-top: 4px;
            }

            .hero-motif-progress__dot {
                min-height: 9px;
            }

            .hero-motif-extra {
                gap: 14px;
            }

            .hero-motif-energy-stack,
            .hero-motif-card-mini,
            .hero-motif-card-summary,
            .hero-motif-energy-summary,
            .hero-motif-lotto,
            .hero-motif-quote,
            .hero-motif-reward-summary,
            .hero-motif-reward-showcase,
            .hero-motif-reward-draw,
            .hero-motif-countdown,
            .hero-motif-reward,
            .hero-motif-profile-card {
                width: min(100%, 620px);
                margin-inline: auto;
                padding: 16px 18px 14px;
                border-radius: 20px;
                gap: 12px;
                background:
                    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 56%),
                    linear-gradient(145deg, rgba(60, 35, 93, 0.72), rgba(28, 16, 45, 0.92));
                box-shadow:
                    0 18px 34px rgba(0, 0, 0, 0.22),
                    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
            }

            .hero-motif-profile-card__copy {
                gap: 6px;
                text-align: center;
                justify-items: center;
            }

            .hero-motif-profile-card__copy strong {
                max-width: 28ch;
                font-size: 15px;
                line-height: 1.28;
                letter-spacing: 0.05em;
            }

            .hero-motif-profile-card__copy span {
                max-width: 42ch;
                font-size: 13px;
                line-height: 1.5;
            }

            .hero-motif-profile-card__fields {
                max-width: 100%;
            }

            .hero-motif-profile-card__fields input {
                min-height: 42px;
                padding: 0 16px;
                font-size: 14px;
            }

            .hero-motif-profile-card__actions {
                justify-content: center;
            }

            .hero-motif-profile-card__submit {
                min-height: 40px;
                padding: 0 18px;
                font-size: 13px;
                letter-spacing: 0.04em;
            }

            .hero-motif-profile-card__status {
                font-size: 13px;
                line-height: 1.45;
                text-align: center;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__fields {
                display: grid;
                grid-template-columns: minmax(0, 1fr) auto;
                align-items: center;
                gap: 12px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__actions,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__actions {
                display: contents;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__submit {
                min-width: 188px;
            }

            .hero-motif-card-summary,
            .hero-motif-energy-summary,
            .hero-motif-reward-summary,
            .hero-motif-quote,
            .hero-motif-reward {
                padding: 14px 16px;
                border-radius: 18px;
            }

            .hero-motif-card-summary {
                grid-template-columns: 74px minmax(0, 1fr);
                gap: 14px;
            }

            .hero-motif-card-summary img {
                width: 62px;
                height: 92px;
                border-radius: 12px;
            }

            .hero-motif-card-summary strong,
            .hero-motif-energy-summary__copy strong,
            .hero-motif-reward-summary__copy strong,
            .hero-motif-quote strong {
                font-size: 14px;
            }

            .hero-motif-card-summary__name,
            .hero-motif-energy-summary__copy span,
            .hero-motif-reward-summary__copy span,
            .hero-motif-quote span {
                font-size: 14px;
                line-height: 1.5;
            }

            .hero-motif-card-summary__typed {
                min-height: 44px;
                font-size: 13px;
                line-height: 1.48;
            }

            .hero-motif-energy-summary {
                grid-template-columns: 52px minmax(0, 1fr);
                gap: 14px;
                padding-block: 16px;
            }

            .hero-motif-energy-summary__icon,
            .hero-motif-reward-summary__icon {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }

            .hero-motif-quote {
                grid-template-columns: 52px minmax(0, 1fr);
                gap: 14px;
            }

            .hero-motif-quote__avatar {
                width: 46px;
                height: 46px;
            }

            .hero-motif-quote__typed {
                min-height: 64px;
            }

            .hero-motif-lotto {
                grid-template-columns: repeat(6, 74px);
                gap: 16px;
                padding: 20px 22px 16px;
                justify-content: center;
                justify-items: center;
                border-radius: 22px;
            }

            .hero-motif-lotto__header {
                margin-bottom: 4px;
                font-size: 14px;
                letter-spacing: 0.08em;
            }

            .hero-motif-lotto__ball {
                width: 74px;
                min-width: 74px;
                min-height: 74px;
                font-size: 25px;
                box-shadow:
                    inset 0 5px 10px rgba(255,255,255,0.84),
                    inset 0 -14px 20px rgba(38, 58, 125, 0.3),
                    0 14px 28px rgba(7, 5, 16, 0.34),
                    0 0 0 4px rgba(255, 210, 117, 0.08);
            }

            .hero-motif-lotto__ball::before {
                top: 10px;
                left: 13px;
                width: 27px;
                height: 17px;
            }

            .hero-motif-lotto__ball::after {
                left: 15px;
                bottom: 11px;
                width: 44px;
                height: 20px;
            }

            .hero-motif-lotto__sub {
                margin-top: 6px;
                max-width: 48ch;
                font-size: 13px;
                line-height: 1.45;
                text-align: center;
            }

            .hero-motif-countdown {
                margin-bottom: 14px;
                padding: 14px 18px;
                border-radius: 18px;
            }

            .hero-motif-countdown strong {
                font-size: 28px;
            }

            .hero-motif-actions {
                width: min(100%, 720px);
                margin: 2px auto 0;
                gap: 12px;
                align-items: center;
            }

            .hero-motif-cta {
                min-height: 42px;
                padding: 0 22px;
                font-size: 14px;
            }

            .hero-motif-nav__btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .hero-motif-hint {
                max-width: 50ch;
                margin-inline: auto;
                font-size: 14px;
                line-height: 1.45;
                text-align: center;
            }
        }

        @media (min-width: 1024px) and (max-width: 1180px) {
            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__fields {
                grid-template-columns: 1fr;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__actions,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__actions {
                display: flex;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__submit {
                min-width: 0;
            }
        }

        .hero-motif-card-mini {
            display: inline-grid;
            gap: 8px;
            justify-items: center;
            width: 100%;
        }

        .hero-motif-card-mini__face {
            position: relative;
            width: 72px;
            height: 108px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.4);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.28);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .hero-motif-card-mini__face img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-motif-card-mini__face::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
            mix-blend-mode: screen;
            pointer-events: none;
        }

        .hero-motif-card-mini.is-ready .hero-motif-card-mini__face {
            animation: heroMotifMiniCardPulse 3.2s cubic-bezier(.24, .8, .3, 1) infinite;
            cursor: pointer;
        }

        .hero-motif-card-mini.is-ready .hero-motif-card-mini__face:hover,
        .hero-motif-card-mini.is-ready .hero-motif-card-mini__face:focus-visible {
            transform: translateY(-1px) scale(1.03);
            border-color: rgba(245, 209, 118, 0.82);
            box-shadow: 0 0 18px rgba(245, 209, 118, 0.34), 0 10px 26px rgba(0, 0, 0, 0.32);
            outline: none;
        }

        .hero-motif-card-mini__label {
            margin: 0;
            color: rgba(255, 248, 234, 0.76);
            font-size: 11px;
            line-height: 1.35;
            text-align: center;
        }

        .hero-motif-ritual-start {
            position: relative;
            display: grid;
            gap: 14px;
            justify-items: center;
            padding: 18px 16px 16px;
            border-radius: 24px;
            border: 1px solid rgba(245, 210, 120, 0.2);
            background:
                radial-gradient(circle at 50% 20%, rgba(255, 233, 183, 0.14), transparent 34%),
                linear-gradient(180deg, rgba(22, 12, 34, 0.94), rgba(15, 9, 24, 0.98));
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 18px 34px rgba(0,0,0,0.22);
        }

        .hero-motif-ritual-start.is-pending {
            box-shadow:
                inset 0 0 0 1px rgba(255,255,255,0.03),
                0 18px 34px rgba(0,0,0,0.22),
                0 0 0 1px rgba(255, 225, 155, 0.12);
        }

        .hero-motif-ritual-start::before {
            content: '';
            position: absolute;
            inset: -18% -10% auto;
            height: 58%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 238, 189, 0.18), rgba(160, 115, 255, 0.1) 34%, rgba(124, 205, 255, 0) 68%);
            filter: blur(10px);
            pointer-events: none;
        }

        .hero-motif-ritual-start__orb {
            position: relative;
            display: grid;
            place-items: center;
            width: 132px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 0;
            background:
                radial-gradient(circle at 34% 30%, rgba(255,255,255,0.96), rgba(255,235,182,0.88) 16%, rgba(191,136,255,0.7) 44%, rgba(67,35,111,0.82) 70%, rgba(13,7,25,0.98) 100%);
            box-shadow:
                inset 0 0 26px rgba(255,255,255,0.18),
                0 0 28px rgba(191, 136, 255, 0.34),
                0 18px 34px rgba(7, 5, 16, 0.42);
            animation: heroRitualOrbFloat 4.8s ease-in-out infinite;
            cursor: pointer;
            transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
            -webkit-tap-highlight-color: transparent;
        }

        button.hero-motif-ritual-start__orb {
            padding: 0;
            appearance: none;
        }

        .hero-motif-ritual-start__orb-label {
            position: relative;
            z-index: 1;
            display: inline-block;
            padding: 6px 14px 7px;
            border-radius: 999px;
            border: 1px solid rgba(255, 232, 176, 0.3);
            background: linear-gradient(180deg, rgba(36, 20, 60, 0.26), rgba(18, 9, 30, 0.44));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.18),
                0 10px 18px rgba(7, 5, 16, 0.24),
                0 0 16px rgba(245, 209, 118, 0.16);
            color: rgba(255, 245, 220, 0.98);
            font: 700 22px/1 'Cinzel', serif;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-indent: 0.18em;
            text-shadow:
                0 1px 0 rgba(84, 49, 14, 0.52),
                0 0 10px rgba(255, 231, 166, 0.28);
            pointer-events: none;
            user-select: none;
            -webkit-user-select: none;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hero-motif-ritual-start__orb:hover,
        .hero-motif-ritual-start__orb:focus-visible {
            transform: translateY(-2px) scale(1.03);
            box-shadow:
                inset 0 0 28px rgba(255,255,255,0.24),
                0 0 34px rgba(191, 136, 255, 0.44),
                0 22px 38px rgba(7, 5, 16, 0.46);
            filter: saturate(1.08);
            outline: none;
        }

        .hero-motif-ritual-start__orb[disabled] {
            cursor: default;
            opacity: 0.78;
            filter: saturate(0.9);
        }

        .hero-motif-ritual-start__orb[disabled] .hero-motif-ritual-start__orb-label {
            opacity: 0.76;
        }

        .hero-motif-ritual-start__orb[disabled]:hover,
        .hero-motif-ritual-start__orb[disabled]:focus-visible {
            transform: none;
            box-shadow:
                inset 0 0 26px rgba(255,255,255,0.18),
                0 0 28px rgba(191, 136, 255, 0.34),
                0 18px 34px rgba(7, 5, 16, 0.42);
            filter: saturate(0.9);
        }

        .hero-motif-ritual-start.is-bursting .hero-motif-ritual-start__orb {
            animation:
                heroRitualOrbBurst .72s cubic-bezier(.18,.82,.24,1) 1,
                heroRitualOrbFloat 4.8s ease-in-out .72s infinite;
        }

        .hero-motif-ritual-start.is-bursting .hero-motif-ritual-start__orb::before {
            animation:
                heroRitualOrbShockwave .72s ease-out 1,
                heroRitualOrbRing 3.8s ease-in-out .72s infinite;
        }

        .hero-motif-ritual-start.is-bursting .hero-motif-ritual-start__orb::after {
            animation:
                heroRitualOrbShockwave .72s ease-out reverse 1,
                heroRitualOrbRing 3.8s ease-in-out .72s infinite reverse;
        }

        .hero-motif-ritual-start__burst {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0;
        }

        .hero-motif-ritual-start.is-bursting .hero-motif-ritual-start__burst {
            opacity: 1;
        }

        .hero-motif-ritual-start__burst span {
            position: absolute;
            top: 46%;
            left: 50%;
            width: 10px;
            height: 10px;
            margin-left: -5px;
            margin-top: -5px;
            border-radius: 999px;
            background:
                radial-gradient(circle at 35% 35%, rgba(255,255,255,0.96), rgba(255,228,164,0.92) 42%, rgba(124,205,255,0.18) 100%);
            box-shadow: 0 0 16px rgba(245, 209, 118, 0.35);
            transform: translate(0, 0) scale(0.35);
            opacity: 0;
        }

        .hero-motif-ritual-start.is-bursting .hero-motif-ritual-start__burst span {
            animation: heroRitualBurstParticle .78s ease-out 1;
        }

        .hero-motif-ritual-start__burst span:nth-child(1) { --burst-x: -78px; --burst-y: -46px; }
        .hero-motif-ritual-start__burst span:nth-child(2) { --burst-x: -18px; --burst-y: -82px; }
        .hero-motif-ritual-start__burst span:nth-child(3) { --burst-x: 46px; --burst-y: -70px; }
        .hero-motif-ritual-start__burst span:nth-child(4) { --burst-x: 86px; --burst-y: -12px; }
        .hero-motif-ritual-start__burst span:nth-child(5) { --burst-x: 72px; --burst-y: 58px; }
        .hero-motif-ritual-start__burst span:nth-child(6) { --burst-x: 10px; --burst-y: 92px; }
        .hero-motif-ritual-start__burst span:nth-child(7) { --burst-x: -62px; --burst-y: 70px; }
        .hero-motif-ritual-start__burst span:nth-child(8) { --burst-x: -90px; --burst-y: 8px; }

        .hero-motif-ritual-start__orb::before,
        .hero-motif-ritual-start__orb::after {
            content: '';
            position: absolute;
            inset: 50% auto auto 50%;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .hero-motif-ritual-start__orb::before {
            width: 160px;
            height: 160px;
            border: 1px solid rgba(255, 232, 176, 0.22);
            animation: heroRitualOrbRing 3.8s ease-in-out infinite;
        }

        .hero-motif-ritual-start__orb::after {
            width: 188px;
            height: 188px;
            border: 1px solid rgba(126, 208, 255, 0.18);
            animation: heroRitualOrbRing 3.8s ease-in-out infinite reverse;
        }

        .hero-motif-ritual-start__stars {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-motif-ritual-start__stars span {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,1) 0 20%, rgba(255,229,165,0.98) 21% 58%, rgba(124,205,255,0) 59% 100%);
            box-shadow: 0 0 12px rgba(255, 230, 164, 0.82);
            animation: heroRitualStarTwinkle 2.2s ease-in-out infinite;
        }

        .hero-motif-ritual-start__stars span:nth-child(1) { top: 18px; left: 16%; animation-delay: .15s; }
        .hero-motif-ritual-start__stars span:nth-child(2) { top: 38px; right: 18%; animation-delay: .8s; }
        .hero-motif-ritual-start__stars span:nth-child(3) { bottom: 40px; left: 20%; animation-delay: 1.25s; }
        .hero-motif-ritual-start__stars span:nth-child(4) { bottom: 20px; right: 16%; animation-delay: .45s; }

        .hero-motif-ritual-start__copy {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 6px;
            text-align: center;
        }

        .hero-motif-ritual-start__eyebrow {
            margin: 0;
            color: rgba(255, 220, 147, 0.86);
            font: 700 11px/1.2 'Cinzel', serif;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .hero-motif-ritual-start__copy strong {
            color: rgba(255, 248, 234, 0.97);
            font: 700 clamp(19px, 4vw, 26px)/1.08 'Cinzel', serif;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            text-wrap: balance;
        }

        .hero-motif-ritual-start__copy span {
            color: rgba(255, 245, 225, 0.78);
            font-size: 13px;
            line-height: 1.48;
            text-wrap: balance;
        }

        .hero-motif-ritual-start__tap {
            margin: -2px 0 0;
            color: rgba(255, 232, 181, 0.92);
            font: 700 11px/1.25 'Cinzel', serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
            animation: heroRitualTapPulse 1.85s ease-in-out infinite;
        }

        .hero-motif-ritual-start__tap.is-pending {
            color: rgba(255, 241, 209, 0.7);
            animation: none;
        }

        .hero-motif-ritual-start__status {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.2);
            background: rgba(255,255,255,0.04);
            color: rgba(255, 244, 220, 0.86);
            font: 700 11px/1 'Cinzel', serif;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero-motif-ritual-start__status.is-silent {
            align-items: flex-start;
            max-width: min(100%, 340px);
            border-radius: 14px;
            text-transform: none;
            letter-spacing: 0.01em;
            font: 600 12px/1.35 'Philosopher', serif;
            color: rgba(255, 244, 220, 0.94);
        }

        .hero-motif-ritual-start__status-text {
            display: inline-block;
            text-wrap: balance;
        }

        .hero-motif-ritual-start__status-dots {
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .hero-motif-ritual-start__status-dots span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 231, 173, 0.34);
            box-shadow: 0 0 10px rgba(245, 209, 118, 0.18);
            animation: heroRitualStatusDot 1.2s ease-in-out infinite;
        }

        .hero-motif-ritual-start__status-dots span:nth-child(2) {
            animation-delay: .18s;
        }

        .hero-motif-ritual-start__status-dots span:nth-child(3) {
            animation-delay: .36s;
        }

        .hero-motif-ritual-start__benefits {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .hero-motif-ritual-start__benefits b {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 30px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.2);
            background: rgba(255,255,255,0.04);
            color: rgba(255, 244, 216, 0.9);
            font: 700 11px/1 'Cinzel', serif;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .hero-motif-ritual-start__benefits b.is-active {
            border-color: rgba(245, 209, 118, 0.52);
            background: linear-gradient(135deg, rgba(236, 199, 113, 0.22), rgba(124, 205, 255, 0.14));
            box-shadow: 0 0 16px rgba(245, 209, 118, 0.18);
            animation: heroRitualBenefitPulse 1.8s ease-in-out infinite;
        }

        .hero-motif-ritual-start__benefits b.is-next {
            border-color: rgba(124, 205, 255, 0.22);
            color: rgba(231, 244, 255, 0.72);
        }

        .hero-motif-profile-card {
            display: grid;
            gap: 8px;
            padding: 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] {
            gap: 12px;
            padding: 14px 14px 15px;
            border-radius: 18px;
            border-color: rgba(245, 209, 118, 0.26);
            background:
                radial-gradient(circle at 50% 0%, rgba(255, 227, 155, 0.08), transparent 42%),
                linear-gradient(180deg, rgba(44, 24, 69, 0.88), rgba(18, 10, 30, 0.96));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.04),
                0 10px 24px rgba(0,0,0,0.18);
        }

        .hero-motif-profile-card__copy {
            display: grid;
            gap: 2px;
        }

        .hero-motif-profile-card__copy strong {
            color: rgba(255, 248, 234, 0.94);
            font: 700 12px/1.25 'Cinzel', serif;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong {
            font-size: 21px;
            line-height: 1.08;
            letter-spacing: 0.06em;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong {
            display: inline-block;
            transform-origin: 50% 50%;
            animation: heroRitualNameHeadlineBeat 1.05s ease-in-out infinite;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy {
            justify-items: center;
            text-align: center;
            gap: 6px;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy span {
            color: rgba(255, 243, 217, 0.72);
            font-size: 13px;
            line-height: 1.38;
            letter-spacing: 0.01em;
            max-width: 22ch;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__copy {
            text-align: center;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__copy strong {
            display: block;
            font-size: 25px;
            line-height: 1.08;
            text-shadow:
                0 0 0 rgba(245, 209, 118, 0),
                0 0 0 rgba(124, 205, 255, 0);
            will-change: transform, filter, text-shadow;
            transform-origin: 50% 50%;
            animation: heroRitualEmailHeadlineSync 1.55s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-motif-profile-card__copy span {
            color: rgba(255, 248, 234, 0.72);
            font-size: 11px;
            line-height: 1.36;
        }

        .hero-motif-profile-card__fields {
            display: grid;
            gap: 6px;
        }

        .hero-motif-profile-card__input-wrap {
            position: relative;
            display: block;
            width: 100%;
        }

        .hero-motif-profile-card__fields input {
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(8, 6, 17, 0.78);
            color: rgba(255, 248, 234, 0.92);
            font-size: 12px;
            font-weight: 600;
        }

        .hero-motif-profile-card__input-icon {
            position: absolute;
            top: 50%;
            right: 10px;
            width: 22px;
            height: 22px;
            display: inline-grid;
            place-items: center;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.38);
            background:
                radial-gradient(circle at 32% 28%, rgba(255, 250, 241, 0.34), transparent 46%),
                linear-gradient(145deg, rgba(245, 209, 118, 0.18), rgba(124, 205, 255, 0.18));
            color: rgba(255, 244, 222, 0.96);
            font: 700 12px/1 'Cinzel', serif;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 12px rgba(245, 209, 118, 0.2);
            transform: translateY(-50%);
            pointer-events: none;
            animation: heroRitualEmailAtPulse 4.4s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input,
        .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__fields input {
            padding-right: 42px;
            font-size: 16px;
            line-height: 1.2;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input {
            min-height: 52px;
            padding-left: 18px;
            border-radius: 19px;
            border-color: rgba(245, 209, 118, 0.34);
            background:
                linear-gradient(180deg, rgba(12, 8, 22, 0.96), rgba(20, 12, 33, 0.98));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.04),
                inset 0 0 0 1px rgba(255,255,255,0.015),
                0 8px 16px rgba(6, 4, 12, 0.22);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input:focus {
            border-color: rgba(255, 220, 136, 0.78);
            box-shadow:
                0 0 0 2px rgba(245, 209, 118, 0.16),
                0 0 18px rgba(245, 209, 118, 0.16),
                0 10px 20px rgba(6, 4, 12, 0.28);
            transform: translateY(-1px);
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input::placeholder {
            color: rgba(255, 248, 234, 0.54);
            font-weight: 700;
        }

        .hero-motif-profile-card__input-icon--name {
            background:
                radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.36), transparent 46%),
                linear-gradient(145deg, rgba(245, 209, 118, 0.24), rgba(191, 136, 255, 0.24));
            color: rgba(255, 244, 222, 0.98);
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.04) inset,
                0 0 16px rgba(245, 209, 118, 0.24);
            animation: heroRitualNameHeadlineBeat 1.9s ease-in-out infinite;
        }

        .hero-motif-profile-card__fields input:focus {
            outline: none;
            border-color: rgba(245, 209, 118, 0.62);
            box-shadow: 0 0 0 2px rgba(245, 209, 118, 0.14);
        }

        .hero-motif-profile-card__fields input::placeholder {
            color: rgba(255, 248, 234, 0.46);
        }

        .hero-motif-profile-card__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__actions {
            width: 100%;
        }

        .hero-motif-profile-card__submit {
            min-height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.48);
            background: linear-gradient(135deg, rgba(225, 190, 106, 0.24), rgba(124, 205, 255, 0.24));
            color: rgba(255, 248, 234, 0.95);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.03em;
            cursor: pointer;
            transition: transform .2s ease, border-color .2s ease;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit {
            animation: heroRitualNameButtonBeat 1.35s ease-in-out infinite;
            min-height: 46px;
            width: 100%;
            padding: 0 18px;
            border-radius: 18px;
            border-color: rgba(245, 209, 118, 0.62);
            background:
                linear-gradient(135deg, rgba(121, 90, 70, 0.92), rgba(88, 76, 109, 0.92) 48%, rgba(67, 86, 130, 0.94));
            color: rgba(255, 249, 239, 0.98);
            font-size: 14px;
            letter-spacing: 0.02em;
            text-transform: none;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.16),
                0 10px 20px rgba(9, 6, 18, 0.28),
                0 0 0 rgba(245, 209, 118, 0);
            text-shadow: 0 1px 0 rgba(0,0,0,0.2);
        }

        .hero-motif-profile-card__submit:hover,
        .hero-motif-profile-card__submit:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(245, 209, 118, 0.74);
            outline: none;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit:hover,
        .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit:focus-visible {
            transform: translateY(-1px) scale(1.01);
            border-color: rgba(255, 226, 152, 0.82);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.18),
                0 14px 26px rgba(9, 6, 18, 0.32),
                0 0 22px rgba(245, 209, 118, 0.16);
        }

        .hero-motif-profile-card__status {
            margin: 0;
            color: rgba(255, 248, 234, 0.64);
            font-size: 11px;
            line-height: 1.35;
        }

        .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__status {
            text-align: center;
            font-size: 10px;
            line-height: 1.2;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .hero-motif-profile-card--module-choice {
            gap: 12px;
            padding: 14px 14px 15px;
            border-radius: 18px;
            border-color: rgba(245, 209, 118, 0.26);
            background:
                radial-gradient(circle at 50% 0%, rgba(255, 227, 155, 0.08), transparent 42%),
                linear-gradient(180deg, rgba(44, 24, 69, 0.88), rgba(18, 10, 30, 0.96));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.04),
                0 10px 24px rgba(0,0,0,0.18),
                0 0 0 1px rgba(255,255,255,0.02);
        }

        .hero-motif-profile-card--module-choice .hero-motif-profile-card__copy {
            justify-items: center;
            text-align: center;
            gap: 7px;
        }

        .hero-motif-profile-card__eyebrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.28);
            background:
                linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            color: rgba(255, 238, 195, 0.82);
            font: 700 10px/1 'Philosopher', sans-serif;
            letter-spacing: 0.11em;
            text-transform: uppercase;
            font-style: normal;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
        }

        .hero-motif-profile-card--module-choice .hero-motif-profile-card__copy strong {
            max-width: 22ch;
            font-size: 20px;
            line-height: 1.12;
            letter-spacing: 0.02em;
            text-transform: none;
        }

        .hero-motif-profile-card--module-choice .hero-motif-profile-card__copy span {
            max-width: 34ch;
            color: rgba(255, 243, 217, 0.78);
            font-size: 13px;
            line-height: 1.38;
            letter-spacing: 0.01em;
        }

        .hero-motif-profile-card__actions--split {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 8px;
            width: 100%;
        }

        .hero-motif-profile-card__submit--module {
            position: relative;
            min-height: 46px;
            width: 100%;
            padding: 0 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 239, 205, 0.2);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.01em;
            text-transform: none;
            color: rgba(255, 249, 239, 0.98);
            text-decoration: none;
            text-align: center;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.16),
                0 14px 26px rgba(9, 6, 18, 0.32),
                0 0 0 1px rgba(255,255,255,0.03);
            overflow: hidden;
            isolation: isolate;
        }

        .hero-motif-profile-card__submit--module > span {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero-motif-profile-card__submit--module > span::after {
            content: '→';
            font-size: 15px;
            line-height: 1;
            transform: translateX(0);
            transition: transform .22s ease;
        }

        .hero-motif-profile-card__submit--module::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(112deg, rgba(255,255,255,0) 24%, rgba(255,255,255,0.22) 48%, rgba(255,255,255,0) 72%);
            transform: translateX(-140%);
            opacity: 0;
            transition: opacity .24s ease;
            pointer-events: none;
        }

        .hero-motif-profile-card__submit--selena {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.92), rgba(183, 110, 121, 0.9));
            color: #1a1028;
        }

        .hero-motif-profile-card__submit--jolanda {
            background:
                radial-gradient(circle at 14% 50%, rgba(255, 228, 171, 0.18), transparent 24%),
                linear-gradient(135deg, rgba(123, 82, 201, 0.98), rgba(211, 140, 255, 0.94));
        }

        .hero-motif-profile-card__submit--bogumila {
            background: linear-gradient(135deg, rgba(125, 211, 252, 0.96), rgba(181, 140, 255, 0.9));
            color: #120d1d;
        }

        .hero-motif-profile-card__submit--lunaria {
            background: linear-gradient(135deg, rgba(157, 164, 255, 0.97), rgba(123, 214, 255, 0.92));
            color: #120d1d;
        }

        .hero-motif-profile-card__secondary {
            min-height: 38px;
            width: 100%;
            padding: 0 16px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
            color: rgba(255, 248, 234, 0.82);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.01em;
            cursor: pointer;
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
        }

        .hero-motif-profile-card__helper {
            margin-top: -2px;
            color: rgba(255, 243, 217, 0.68);
            font-size: 11px;
            line-height: 1.34;
            text-align: center;
        }

        .hero-motif-profile-card__secondary:hover,
        .hero-motif-profile-card__secondary:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(245, 209, 118, 0.42);
            background: rgba(255, 255, 255, 0.06);
            outline: none;
        }

        .hero-motif-profile-card__submit--module:hover,
        .hero-motif-profile-card__submit--module:focus-visible {
            transform: translateY(-1px) scale(1.01);
            border-color: rgba(255, 233, 187, 0.42);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.2),
                0 18px 32px rgba(9, 6, 18, 0.36),
                0 0 24px rgba(245, 209, 118, 0.12);
            outline: none;
        }

        .hero-motif-profile-card__submit--module:hover::before,
        .hero-motif-profile-card__submit--module:focus-visible::before {
            opacity: 1;
            animation: heroPrimaryCtaShimmer 1.6s ease-out 1;
        }

        .hero-motif-profile-card__submit--module:hover > span::after,
        .hero-motif-profile-card__submit--module:focus-visible > span::after {
            transform: translateX(2px);
        }

        .hero-motif-profile-card[data-hero-share-card="ritual-facebook"] {
            gap: 6px;
            padding: 9px 12px;
            text-align: center;
        }

        .hero-motif-profile-card[data-hero-share-card="ritual-facebook"] .hero-motif-profile-card__copy {
            justify-items: center;
            gap: 2px;
        }

        .hero-motif-profile-card[data-hero-share-card="ritual-facebook"] .hero-motif-profile-card__copy strong {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: max-content;
            max-width: 100%;
            font-size: 11px;
            line-height: 1;
            letter-spacing: 0.005em;
            text-transform: none;
            white-space: nowrap;
        }

        .hero-motif-profile-card[data-hero-share-card="ritual-facebook"] .hero-motif-profile-card__copy span {
            font-size: 9px;
            line-height: 1.1;
            color: rgba(255, 248, 234, 0.78);
        }

        .hero-motif-share-card__icon {
            width: 20px;
            height: 20px;
            flex: 0 0 20px;
            display: inline-block;
            color: #1877f2;
            filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.28));
        }

        .hero-motif-profile-card[data-hero-share-card="ritual-facebook"] .hero-motif-profile-card__actions {
            width: 100%;
        }

        .hero-motif-share-card__button {
            width: 100%;
            min-height: 34px;
            padding: 0 12px;
            font-size: 11px;
            letter-spacing: 0.01em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background:
                linear-gradient(135deg, rgba(108, 81, 66, 0.94), rgba(74, 93, 145, 0.94));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.14),
                0 6px 14px rgba(9, 6, 18, 0.22);
        }

        .hero-motif-share-card__button:disabled,
        .hero-motif-share-card__button[aria-disabled="true"] {
            opacity: 0.88;
            cursor: default;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.08),
                0 2px 8px rgba(9, 6, 18, 0.14);
        }

        .hero-motif-profile-card__status.is-error {
            color: rgba(255, 173, 173, 0.94);
        }

        @media (hover: none), (pointer: coarse) {
            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__fields {
                grid-template-columns: minmax(0, 1fr);
                gap: 10px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__actions,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__actions {
                display: flex;
                justify-content: stretch;
                width: 100%;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__submit,
            .hero-motif-profile-card__input-icon {
                animation: none !important;
                transform: none !important;
            }

            .hero-motif-share-card__button {
                white-space: normal;
                min-height: 36px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__copy strong {
                animation: heroRitualEmailHeadlineSync 1.55s cubic-bezier(.22,.78,.26,1) infinite !important;
                transform-origin: 50% 50%;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong {
                animation: heroRitualNameHeadlineBeat 1.05s ease-in-out infinite !important;
                transform-origin: 50% 50%;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit {
                animation: heroRitualNameButtonBeat 1.35s ease-in-out infinite !important;
            }

            .hero-motif-profile-card__submit {
                width: 100%;
                transition: border-color .2s ease, background .2s ease, box-shadow .2s ease !important;
                touch-action: manipulation;
            }
        }

        .hero-ritual-card-fly {
            position: fixed;
            width: 72px;
            height: 108px;
            border-radius: 12px;
            border: 1px solid rgba(245, 209, 118, 0.86);
            overflow: hidden;
            z-index: 12000;
            box-shadow: 0 0 24px rgba(245, 209, 118, 0.4), 0 18px 34px rgba(0, 0, 0, 0.48);
            transition: transform .68s cubic-bezier(.2, .8, .2, 1), left .68s cubic-bezier(.2, .8, .2, 1), top .68s cubic-bezier(.2, .8, .2, 1), opacity .44s ease;
            pointer-events: none;
        }

        .hero-ritual-card-fly img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-ritual-card-flash {
            position: fixed;
            inset: 0;
            z-index: 11999;
            pointer-events: none;
            background: radial-gradient(circle at 50% 48%, rgba(255, 232, 163, 0.22), rgba(255, 232, 163, 0));
            opacity: 0;
            animation: heroRitualFlash .52s ease-out both;
        }

        .hero-ritual-reward-reveal {
            position: fixed;
            inset: 0;
            z-index: 13120;
            display: grid;
            place-items: center;
            pointer-events: none;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 36%, rgba(255, 239, 187, 0.24), rgba(255, 239, 187, 0) 28%),
                radial-gradient(circle at 50% 58%, rgba(124, 205, 255, 0.16), rgba(124, 205, 255, 0) 42%),
                rgba(7, 4, 14, 0.62);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            animation: heroRewardRevealBackdrop 1.5s ease-out both;
        }

        .hero-ritual-reward-reveal::before,
        .hero-ritual-reward-reveal::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .hero-ritual-reward-reveal::before {
            width: min(92vw, 760px);
            aspect-ratio: 1;
            background: radial-gradient(circle, rgba(255, 225, 134, 0.28) 0%, rgba(142, 214, 255, 0.16) 34%, rgba(255, 255, 255, 0) 72%);
            animation: heroRewardRevealHalo 1.45s cubic-bezier(.18,.82,.22,1) both;
        }

        .hero-ritual-reward-reveal::after {
            width: min(72vw, 520px);
            aspect-ratio: 1;
            border: 1px solid rgba(255, 233, 178, 0.54);
            box-shadow: 0 0 36px rgba(245, 209, 118, 0.26), 0 0 80px rgba(124, 205, 255, 0.18);
            animation: heroRewardRevealRing 1.35s cubic-bezier(.18,.82,.22,1) both;
        }

        .hero-ritual-reward-reveal__card {
            position: relative;
            z-index: 1;
            min-width: min(82vw, 420px);
            padding: 26px 28px 24px;
            display: grid;
            justify-items: center;
            gap: 8px;
            border-radius: 28px;
            border: 1px solid rgba(255, 231, 169, 0.52);
            background:
                radial-gradient(circle at 20% 18%, rgba(255,255,255,0.14), transparent 26%),
                linear-gradient(180deg, rgba(54, 33, 83, 0.96), rgba(21, 12, 35, 0.98));
            box-shadow:
                0 0 0 1px rgba(255, 231, 169, 0.12) inset,
                0 28px 68px rgba(0, 0, 0, 0.42),
                0 0 42px rgba(124, 205, 255, 0.16);
            animation: heroRewardRevealCard 1.42s cubic-bezier(.16,.84,.22,1) both;
        }

        .hero-ritual-reward-reveal__eyebrow {
            color: rgba(255, 232, 178, 0.9);
            font: 700 13px/1.2 'Cinzel', serif;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .hero-ritual-reward-reveal__amount {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: rgba(255, 248, 234, 0.98);
            text-shadow: 0 0 26px rgba(124, 205, 255, 0.22), 0 0 22px rgba(245, 209, 118, 0.18);
        }

        .hero-ritual-reward-reveal__icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at 32% 28%, rgba(255,255,255,0.98), rgba(148, 224, 255, 0.94) 30%, rgba(56, 118, 218, 0.82) 72%, rgba(15, 38, 94, 0.98) 100%);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.4),
                0 0 18px rgba(106, 196, 255, 0.44),
                0 0 28px rgba(245, 209, 118, 0.2);
            font-size: 28px;
            line-height: 1;
            animation: heroRewardRevealCrystal 1.32s ease-in-out both;
        }

        .hero-ritual-reward-reveal__amount strong {
            font: 700 clamp(56px, 12vw, 108px)/0.94 'Cinzel', serif;
            letter-spacing: 0.02em;
            animation: heroRewardRevealAmount 1.26s cubic-bezier(.16,.84,.22,1) both;
        }

        .hero-ritual-reward-reveal__label {
            color: rgba(255, 242, 211, 0.88);
            font: 700 16px/1.2 'Philosopher', sans-serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-ritual-reward-reveal__note {
            color: rgba(255, 248, 234, 0.76);
            font: 700 14px/1.45 'Philosopher', sans-serif;
            text-align: center;
            max-width: 28ch;
        }

        .hero-motif-energy {
            display: grid;
            gap: 6px;
            width: 100%;
            padding: 0;
            border: 0;
            background: none;
            text-align: left;
            cursor: pointer;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }

        .hero-motif-energy__track {
            min-height: 12px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
        }

        .hero-motif-energy__fill {
            display: block;
            width: 0%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.96), rgba(125, 205, 255, 0.92));
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.28);
            transition: width .24s ease;
        }

        .hero-motif-energy__meta {
            color: rgba(255, 248, 234, 0.72);
            font-size: 12px;
            font-weight: 700;
            line-height: 1.3;
        }

        .hero-motif-lotto {
            display: grid;
            grid-template-columns: repeat(3, minmax(58px, 72px));
            gap: 12px 14px;
            justify-content: center;
            justify-items: center;
            align-items: center;
            padding: 12px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background:
                radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 46%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
        }

        .hero-motif-lotto__header {
            grid-column: 1 / -1;
            margin: 0;
            color: rgba(255, 248, 234, 0.84);
            font: 700 12px/1.25 'Philosopher', sans-serif;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-motif-lotto__ball {
            width: 64px;
            min-width: 64px;
            min-height: 64px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            border: 2px solid rgba(255, 246, 216, 0.94);
            background:
                radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 1) 0, rgba(255, 250, 234, 0.98) 24%, rgba(255, 233, 165, 0.96) 46%, rgba(130, 195, 255, 0.94) 72%, rgba(67, 99, 189, 0.98) 100%);
            color: rgba(47, 25, 6, 0.96);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font: 700 22px/1 'Cinzel', serif;
            font-weight: 700;
            text-shadow: 0 1px 0 rgba(255,255,255,0.3);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
            position: relative;
            overflow: hidden;
            box-shadow:
                inset 0 4px 8px rgba(255,255,255,0.84),
                inset 0 -12px 18px rgba(38, 58, 125, 0.3),
                0 10px 20px rgba(7, 5, 16, 0.32),
                0 0 0 4px rgba(255, 210, 117, 0.08);
        }

        .hero-motif-lotto__ball::before,
        .hero-motif-lotto__ball::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-motif-lotto__ball::before {
            top: 8px;
            left: 11px;
            width: 24px;
            height: 15px;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.98), rgba(255,255,255,0.2) 68%, transparent 100%);
            opacity: 0.96;
        }

        .hero-motif-lotto__ball::after {
            left: 13px;
            bottom: 9px;
            width: 40px;
            height: 18px;
            background: radial-gradient(circle at 50% 50%, rgba(40, 62, 135, 0.18), transparent 72%);
            opacity: 0.84;
        }

        .hero-motif-lotto__ball.is-pending {
            color: rgba(255, 248, 234, 0.66);
            border-color: rgba(212, 175, 55, 0.34);
            background: radial-gradient(circle at 32% 28%, rgba(145, 122, 183, 0.9), rgba(90, 61, 131, 0.96) 45%, rgba(29, 18, 46, 0.99) 100%);
            text-shadow: none;
            box-shadow:
                inset 0 3px 5px rgba(255,255,255,0.12),
                inset 0 -10px 14px rgba(0,0,0,0.32),
                0 8px 16px rgba(7, 5, 16, 0.24);
            animation: heroLottoSpinPulse 1.2s ease-in-out infinite;
            animation-delay: calc(var(--ball-index, 0) * 80ms);
        }

        .hero-motif-lotto__ball.is-visible,
        .hero-motif-lotto__ball.is-revealed {
            border-color: rgba(255, 246, 216, 0.96);
            box-shadow:
                inset 0 4px 8px rgba(255,255,255,0.84),
                inset 0 -12px 18px rgba(38, 58, 125, 0.3),
                0 12px 24px rgba(7, 5, 16, 0.34),
                0 0 0 4px rgba(255, 210, 117, 0.1),
                0 0 20px rgba(129, 194, 255, 0.2);
        }

        .hero-motif-lotto__ball.is-revealed {
            animation: heroLottoBallReveal .78s cubic-bezier(.18,.82,.24,1) both;
        }

        .hero-motif-lotto__sub {
            grid-column: 1 / -1;
            margin: 0;
            color: rgba(255, 248, 234, 0.68);
            font-size: 11px;
            line-height: 1.35;
        }

        .hero-motif-quote {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 8px;
            align-items: center;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.03);
        }

        .hero-motif-quote > div {
            min-width: 0;
        }

	        .hero-motif-quote__avatar {
	            width: 40px;
	            height: 40px;
	            border-radius: 999px;
	            border: 2px solid rgba(212, 175, 55, 0.45);
	            object-fit: cover;
              object-position: center 24%;
              display: block;
              background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.18), rgba(17, 10, 27, 0.95));
	        }

	        .hero-motif-quote__avatar[data-hero-fortune-crystal] {
	            cursor: pointer;
              box-shadow: 0 0 0 1px rgba(86, 194, 255, 0.42), 0 0 14px rgba(86, 194, 255, 0.48), 0 0 24px rgba(212, 175, 55, 0.24);
              filter: saturate(1.1);
              animation: heroFortuneCrystalShimmer 1.6s ease-in-out infinite;
              transition: transform .18s ease, box-shadow .2s ease, filter .2s ease;
	        }

          .hero-motif-quote__avatar[data-hero-fortune-crystal]:hover,
          .hero-motif-quote__avatar[data-hero-fortune-crystal]:focus-visible {
              transform: translateY(-1px) scale(1.04);
              box-shadow: 0 0 0 1px rgba(96, 204, 255, 0.54), 0 0 18px rgba(96, 204, 255, 0.62), 0 0 30px rgba(212, 175, 55, 0.32);
              filter: saturate(1.2) brightness(1.06);
              outline: none;
          }

	        .hero-motif-quote__avatar[data-hero-fortune-crystal]:active {
	            transform: translateY(1px) scale(0.97);
	        }

          .hero-motif-quote__avatar[data-hero-fortune-crystal].is-claimed,
          .hero-motif-reward-summary__icon[data-hero-fortune-crystal].is-claimed {
              animation: heroFortuneCrystalClaim .52s cubic-bezier(.2,.82,.24,1.08) both;
          }

          .hero-crystal-burst {
              position: fixed;
              z-index: 2300;
              width: 18px;
              height: 18px;
              pointer-events: none;
              transform: translate(-50%, -50%);
          }

          .hero-crystal-burst__piece {
              position: absolute;
              left: 50%;
              top: 50%;
              width: 18px;
              height: 18px;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 15px;
              line-height: 1;
              opacity: 0;
              transform: translate(-50%, -50%) scale(.35);
              animation: heroCrystalBurstFly .72s cubic-bezier(.18,.72,.2,1) forwards;
          }

        @keyframes heroFortuneCrystalShimmer {
            0%, 100% {
                box-shadow: 0 0 0 1px rgba(86, 194, 255, 0.42), 0 0 12px rgba(86, 194, 255, 0.44), 0 0 22px rgba(212, 175, 55, 0.2);
                filter: saturate(1.05) brightness(1);
            }
            50% {
                box-shadow: 0 0 0 1px rgba(112, 214, 255, 0.58), 0 0 20px rgba(112, 214, 255, 0.66), 0 0 34px rgba(212, 175, 55, 0.34);
                filter: saturate(1.24) brightness(1.1);
            }
        }

        @keyframes heroFortuneCrystalClaim {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 1px rgba(96, 204, 255, 0.5), 0 0 16px rgba(96, 204, 255, 0.52), 0 0 28px rgba(212, 175, 55, 0.28);
                filter: saturate(1.15) brightness(1);
            }
            35% {
                transform: scale(1.18);
                box-shadow: 0 0 0 3px rgba(96, 204, 255, 0.28), 0 0 26px rgba(96, 204, 255, 0.72), 0 0 40px rgba(212, 175, 55, 0.42);
                filter: saturate(1.35) brightness(1.18);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 1px rgba(86, 194, 255, 0.42), 0 0 14px rgba(86, 194, 255, 0.48), 0 0 24px rgba(212, 175, 55, 0.24);
                filter: saturate(1.1) brightness(1);
            }
        }

        @keyframes heroCrystalBurstFly {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) translate(0, 0) scale(.35);
            }
            18% {
                opacity: 1;
                transform: translate(-50%, -50%) translate(calc(var(--dx, 0px) * .22), calc(var(--dy, 0px) * .22)) scale(1.08);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) translate(var(--dx, 0px), var(--dy, 0px)) scale(.58);
            }
        }

        .hero-motif-quote strong {
            color: rgba(255, 248, 234, 0.92);
            font: 700 13px/1.2 'Philosopher', sans-serif;
        }

        .hero-motif-quote span {
            display: block;
            margin-top: 2px;
            color: rgba(255, 248, 234, 0.76);
            font-size: 12px;
            line-height: 1.4;
        }

        .hero-motif-card-summary {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 8px;
            align-items: center;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.03);
        }

        .hero-motif-card-summary img {
            width: 40px;
            height: 60px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.34);
            object-fit: cover;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .hero-motif-card-summary strong {
            display: block;
            color: rgba(255, 248, 234, 0.92);
            font: 700 12px/1.25 'Cinzel', serif;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .hero-motif-card-summary__name {
            display: block;
            margin-top: 2px;
            color: rgba(255, 248, 234, 0.8);
            font-size: 12px;
            line-height: 1.35;
            font-weight: 700;
        }

        .hero-motif-card-summary__typed {
            display: block;
            margin-top: 4px;
            min-height: 34px;
            color: rgba(255, 248, 234, 0.74);
            font-size: 11px;
            line-height: 1.38;
            font-weight: 400;
        }

        .hero-motif-card-summary.is-typing .hero-motif-card-summary__typed::after {
            content: '';
            display: inline-block;
            width: 1px;
            height: 1em;
            margin-left: 3px;
            background: rgba(255, 248, 234, 0.8);
            animation: heroTypeCaretBlink .8s step-end infinite;
            vertical-align: text-bottom;
        }

        .hero-motif-energy-stack {
            display: grid;
            gap: 8px;
        }

        .hero-motif-energy-summary {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.03);
        }

        .hero-motif-energy-summary.is-energy-flash {
            animation: heroEnergySummaryPulse 1.35s cubic-bezier(.2,.72,.26,1) 1;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 0 28px rgba(212, 175, 55, 0.24);
        }

        .hero-motif-energy-summary.is-energy-flash::after {
            content: '';
            position: absolute;
            inset: -1px -34%;
            pointer-events: none;
            background: linear-gradient(108deg, rgba(255,255,255,0) 26%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0) 74%);
            mix-blend-mode: screen;
            transform: translateX(-120%);
            animation: heroEnergySummarySweep 1.05s ease-out 1;
        }

        .hero-motif-energy-summary.is-energy-flash .hero-motif-energy-summary__icon {
            animation: heroEnergySummaryIconPop 1.05s cubic-bezier(.22,.8,.25,1) 1;
        }

        .hero-motif-energy-summary__icon {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 1;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .hero-motif-energy-summary__copy strong {
            display: block;
            color: rgba(255, 248, 234, 0.92);
            font: 700 12px/1.2 'Cinzel', serif;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .hero-motif-energy-summary__copy span {
            display: block;
            margin-top: 3px;
            color: rgba(255, 248, 234, 0.82);
            font-size: 12px;
            line-height: 1.35;
            font-weight: 700;
        }

        .hero-motif-energy-summary--water {
            border-color: rgba(125, 205, 255, 0.52);
            background: linear-gradient(135deg, rgba(92, 157, 224, 0.16), rgba(127, 211, 255, 0.08));
        }

        .hero-motif-energy-summary--fire {
            border-color: rgba(245, 169, 109, 0.58);
            background: linear-gradient(135deg, rgba(215, 122, 69, 0.2), rgba(245, 194, 113, 0.1));
        }

        .hero-motif-energy-summary--air {
            border-color: rgba(190, 221, 255, 0.56);
            background: linear-gradient(135deg, rgba(168, 201, 245, 0.16), rgba(205, 226, 255, 0.08));
        }

        .hero-motif-energy-summary--earth {
            border-color: rgba(148, 210, 152, 0.56);
            background: linear-gradient(135deg, rgba(100, 166, 108, 0.2), rgba(172, 214, 131, 0.09));
        }

        .hero-motif-energy-summary--aether {
            border-color: rgba(214, 175, 255, 0.54);
            background: linear-gradient(135deg, rgba(173, 122, 244, 0.2), rgba(123, 205, 255, 0.09));
        }

        .hero-energy-finale-blast {
            position: fixed;
            inset: 0;
            z-index: 13000;
            pointer-events: none;
            overflow: hidden;
            background:
                radial-gradient(circle at center, rgba(255, 248, 214, 0.78) 0%, rgba(255, 214, 122, 0.42) 14%, rgba(164, 227, 255, 0.22) 26%, rgba(17, 10, 31, 0.08) 48%, rgba(5, 3, 12, 0) 72%);
            animation: heroEnergyFinaleBackdrop .82s ease-out both;
        }

        .hero-energy-finale-blast__core,
        .hero-energy-finale-blast__ring,
        .hero-energy-finale-blast__ray {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .hero-energy-finale-blast__core {
            width: min(34vw, 240px);
            aspect-ratio: 1;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(255,255,255,0.98) 0%, rgba(255,232,159,0.96) 26%, rgba(255,184,97,0.5) 58%, rgba(255,184,97,0) 100%);
            filter: blur(2px);
            animation: heroEnergyFinaleCore .76s cubic-bezier(.18,.82,.22,1) both;
        }

        .hero-energy-finale-blast__ring {
            width: min(82vw, 760px);
            aspect-ratio: 1;
            border-radius: 999px;
            border: 2px solid rgba(255, 232, 173, 0.72);
            box-shadow: 0 0 26px rgba(255, 206, 116, 0.38), 0 0 90px rgba(124, 205, 255, 0.22);
            animation: heroEnergyFinaleRing .84s cubic-bezier(.16,.82,.24,1) both;
        }

        .hero-energy-finale-blast__ray {
            width: min(72vw, 620px);
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,239,190,0.98), rgba(255,255,255,0));
            opacity: 0;
            mix-blend-mode: screen;
            animation: heroEnergyFinaleRay .78s ease-out both;
            transform-origin: center center;
        }

        .hero-energy-finale-blast__ray--b {
            animation-delay: 40ms;
            transform: translate(-50%, -50%) rotate(35deg);
        }

        .hero-energy-finale-blast__ray--c {
            animation-delay: 70ms;
            transform: translate(-50%, -50%) rotate(72deg);
        }

        .hero-energy-finale-blast__ray--d {
            animation-delay: 100ms;
            transform: translate(-50%, -50%) rotate(108deg);
        }

        .hero-energy-finale-blast__ray--e {
            animation-delay: 130ms;
            transform: translate(-50%, -50%) rotate(145deg);
        }

        .hero-energy-finale-blast--mobile {
            background:
                radial-gradient(circle at center, rgba(255, 248, 214, 0.92) 0%, rgba(255, 214, 122, 0.52) 18%, rgba(164, 227, 255, 0.18) 34%, rgba(17, 10, 31, 0.06) 54%, rgba(5, 3, 12, 0) 74%);
            animation-duration: .62s;
        }

        .hero-energy-finale-blast--mobile .hero-energy-finale-blast__core {
            width: min(44vw, 220px);
            animation-duration: .58s;
        }

        .hero-energy-finale-blast--mobile .hero-energy-finale-blast__ring {
            width: min(94vw, 560px);
            animation-duration: .64s;
            box-shadow: 0 0 18px rgba(255, 206, 116, 0.34), 0 0 52px rgba(124, 205, 255, 0.16);
        }

        .hero-energy-finale-blast--mobile .hero-energy-finale-blast__ray {
            display: none;
        }

        .hero-motif-quote__typed {
            display: block;
            min-height: 52px;
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .hero-motif-quote.is-typing .hero-motif-quote__typed::after {
            content: '';
            display: inline-block;
            width: 1px;
            height: 1em;
            margin-left: 3px;
            background: rgba(255, 248, 234, 0.84);
            animation: heroTypeCaretBlink .8s step-end infinite;
            vertical-align: text-bottom;
        }

        .hero-motif-reward {
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 248, 234, 0.86);
            font-size: 12px;
            line-height: 1.42;
        }

        .hero-motif-reward__eyebrow {
            display: block;
            margin-bottom: 3px;
            color: rgba(245, 209, 118, 0.92);
            font: 700 10px/1.2 'Cinzel', serif;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .hero-motif-reward strong {
            display: block;
            color: rgba(255, 248, 234, 0.96);
            font: 700 14px/1.2 'Cinzel', serif;
            letter-spacing: 0.03em;
        }

        .hero-motif-reward span {
            display: block;
            margin-top: 4px;
            color: rgba(255, 248, 234, 0.8);
        }

        .hero-motif-reward-summary {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            align-items: center;
            min-height: 72px;
            padding: 9px 10px;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.26);
            background: rgba(255, 255, 255, 0.03);
        }

        .hero-motif-reward-summary__icon {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            line-height: 1;
            border: 1px solid rgba(212, 175, 55, 0.34);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .hero-motif-reward-summary__icon[data-hero-fortune-crystal] {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            padding: 0;
            color: inherit;
            font: inherit;
            filter: saturate(1.12);
            animation: heroFortuneCrystalShimmer 1.6s ease-in-out infinite;
        }

        .hero-motif-reward-summary__icon[data-hero-fortune-crystal]:hover,
        .hero-motif-reward-summary__icon[data-hero-fortune-crystal]:focus-visible {
            transform: translateY(-1px) scale(1.05);
            border-color: rgba(96, 204, 255, 0.56);
            box-shadow: 0 0 0 1px rgba(96, 204, 255, 0.22), 0 0 16px rgba(96, 204, 255, 0.34), 0 0 24px rgba(212, 175, 55, 0.18);
            outline: none;
        }

        .hero-motif-reward-summary__icon[data-hero-fortune-crystal]:active {
            transform: translateY(1px) scale(0.97);
        }

        .hero-motif-reward-summary__copy strong {
            display: block;
            color: rgba(255, 248, 234, 0.94);
            font: 700 12px/1.25 'Cinzel', serif;
            letter-spacing: 0.03em;
        }

        .hero-motif-reward-summary__copy span {
            display: block;
            margin-top: 2px;
            color: rgba(255, 248, 234, 0.78);
            font-size: 11px;
            line-height: 1.25;
            font-weight: 700;
        }

        .hero-motif-reward-summary__icon[data-hero-reward-tap] {
            animation: heroFortuneCrystalShimmer 1.6s ease-in-out infinite, heroRewardTapPulse 1.9s ease-in-out infinite;
        }

        .hero-motif-reward-summary--combo {
            min-height: 0;
            padding: 10px 12px;
            gap: 10px;
        }

        .hero-motif-reward-summary__copy--combo {
            display: grid;
            gap: 2px;
        }

        .hero-motif-reward-summary__copy--combo strong {
            font-size: 12px;
            line-height: 1.2;
        }

        .hero-motif-reward-summary__copy--combo > span {
            margin-top: 0;
            font-size: 11px;
            line-height: 1.25;
        }

        .hero-motif-reward-summary__subreward {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            column-gap: 8px;
            row-gap: 1px;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid rgba(125, 205, 255, 0.18);
        }

        .hero-motif-reward-summary__subicon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            grid-row: 1 / span 2;
            background:
                radial-gradient(circle at 32% 28%, rgba(255,255,255,0.92), rgba(148, 224, 255, 0.88) 30%, rgba(56, 118, 218, 0.78) 70%, rgba(15, 38, 94, 0.94) 100%);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.34),
                0 0 12px rgba(106, 196, 255, 0.3);
            font-size: 11px;
            line-height: 1;
        }

        .hero-motif-reward-summary__subreward b {
            color: rgba(255, 248, 234, 0.96);
            font: 700 12px/1.15 'Cinzel', serif;
            letter-spacing: 0.03em;
        }

        .hero-motif-reward-summary__subreward em {
            color: rgba(255, 248, 234, 0.72);
            font: 700 10px/1.2 'Philosopher', sans-serif;
            font-style: normal;
        }

        .hero-motif-reward-summary--crystals {
            border-color: rgba(125, 205, 255, 0.58);
            background: linear-gradient(135deg, rgba(92, 157, 224, 0.2), rgba(127, 211, 255, 0.08));
        }

        .hero-motif-reward-summary--fortune {
            border-color: rgba(214, 175, 255, 0.56);
            background: linear-gradient(135deg, rgba(173, 122, 244, 0.2), rgba(123, 205, 255, 0.08));
        }

        .hero-motif-reward-summary--discount {
            border-color: rgba(245, 194, 113, 0.58);
            background: linear-gradient(135deg, rgba(205, 140, 66, 0.2), rgba(245, 194, 113, 0.09));
        }

        .hero-motif-countdown {
            display: grid;
            gap: 4px;
            justify-items: center;
            text-align: center;
            margin-bottom: 10px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid rgba(245, 209, 118, 0.72);
            background:
                radial-gradient(120% 150% at 50% 0%, rgba(255, 232, 171, 0.22), rgba(255, 255, 255, 0.02) 68%),
                linear-gradient(135deg, rgba(128, 88, 24, 0.36), rgba(82, 58, 16, 0.28));
            box-shadow:
                0 0 0 1px rgba(255, 226, 154, 0.22) inset,
                0 10px 26px rgba(0, 0, 0, 0.32),
                0 0 18px rgba(245, 209, 118, 0.2);
        }

        .hero-motif-countdown__kicker {
            color: rgba(255, 234, 181, 0.92);
            font: 700 11px/1.2 'Cinzel', serif;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-motif-countdown strong {
            color: rgba(255, 242, 206, 0.98);
            font: 700 22px/1.05 'Cinzel', serif;
            letter-spacing: 0.08em;
            font-variant-numeric: tabular-nums;
            font-feature-settings: 'tnum' 1;
            text-shadow: 0 0 14px rgba(245, 209, 118, 0.28);
        }

        .hero-motif-countdown__sub {
            color: rgba(255, 242, 206, 0.72);
            font: 700 10px/1.2 'Philosopher', sans-serif;
            letter-spacing: 0.03em;
        }

        .hero-motif-complete-stack {
            display: grid;
            gap: 6px;
        }

        .hero-motif-complete-stack .hero-motif-countdown {
            margin-bottom: 0;
        }

        .hero-motif-reward--draw {
            display: grid;
            gap: 8px;
            justify-items: center;
            text-align: center;
            padding: 12px 10px;
            border-color: rgba(245, 209, 118, 0.62);
            background: radial-gradient(circle at 50% 20%, rgba(255, 230, 160, 0.14), rgba(255, 255, 255, 0.02));
        }

        .hero-motif-reward__coin {
            width: 44px;
            height: 44px;
            border-radius: 999px;
            border: 1px solid rgba(245, 209, 118, 0.82);
            background: radial-gradient(circle at 30% 30%, rgba(255, 236, 183, 0.9), rgba(220, 175, 65, 0.95));
            box-shadow: 0 0 20px rgba(245, 209, 118, 0.44);
            animation: heroRewardCoinSpin 1.05s linear infinite;
        }

        .hero-motif-reward-draw {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 8px;
        }

        .hero-motif-reward-draw__chip {
            position: relative;
            min-height: 52px;
            display: grid;
            justify-items: center;
            align-content: center;
            gap: 3px;
            padding: 7px 4px 8px;
            border-radius: 14px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            background:
                radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14), transparent 36%),
                linear-gradient(180deg, rgba(41, 25, 66, 0.96), rgba(18, 10, 31, 0.98));
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.05),
                0 0 0 rgba(125, 205, 255, 0);
            overflow: hidden;
            animation: heroRewardChipSpotlight 4s ease-in-out infinite;
            animation-delay: calc(var(--hero-reward-chip-index, 0) * .3s);
        }

        .hero-motif-reward-draw__chip::before {
            content: '';
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(120deg, rgba(255,255,255,0) 18%, rgba(125, 205, 255, 0.24) 50%, rgba(255,255,255,0) 82%);
            opacity: 0;
            transform: translateX(-135%);
            pointer-events: none;
            animation: heroRewardChipSweep 4s ease-in-out infinite;
            animation-delay: calc(var(--hero-reward-chip-index, 0) * .3s);
        }

        .hero-motif-reward-draw.is-rolling .hero-motif-reward-draw__chip {
            animation:
                heroRewardChipHop 1.25s cubic-bezier(.18,.82,.22,1) infinite,
                heroRewardChipSpotlight 1.25s ease-in-out infinite;
            animation-delay: calc(var(--hero-reward-chip-index, 0) * 90ms);
        }

        .hero-motif-reward-draw.is-rolling .hero-motif-reward-draw__chip::before {
            animation: heroRewardChipSweep 1.25s ease-in-out infinite;
            animation-delay: calc(var(--hero-reward-chip-index, 0) * 90ms);
        }

        .hero-motif-reward-draw__icon {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background:
                radial-gradient(circle at 32% 28%, rgba(255,255,255,0.92), rgba(148, 224, 255, 0.88) 30%, rgba(56, 118, 218, 0.78) 70%, rgba(15, 38, 94, 0.94) 100%);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.34),
                0 0 10px rgba(106, 196, 255, 0.3);
            font-size: 10px;
            line-height: 1;
        }

        .hero-motif-reward-draw.is-rolling .hero-motif-reward-draw__icon {
            animation: heroRewardCrystalPulse 1.25s ease-in-out infinite;
            animation-delay: calc(var(--hero-reward-chip-index, 0) * 90ms);
        }

        .hero-motif-reward-draw__value {
            color: rgba(255, 248, 234, 0.96);
            font: 700 13px/1 'Cinzel', serif;
            text-shadow: 0 1px 0 rgba(84, 49, 14, 0.28);
        }

        .hero-motif-reward-showcase {
            position: relative;
            min-height: 72px;
        }

        .hero-motif-reward-showcase__item {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: translateY(8px) scale(0.985);
            animation: heroRewardShowcaseSwap 9.2s ease-in-out infinite;
            animation-delay: var(--hero-reward-rotation-delay, 0s);
        }

        .hero-motif-reward-showcase__item--lottery .hero-motif-reward-summary {
            box-shadow:
                0 0 0 1px rgba(125, 205, 255, 0.08),
                0 10px 24px rgba(0, 0, 0, 0.18),
                0 0 18px rgba(125, 205, 255, 0.14);
        }

        .hero-motif-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-top: 2px;
        }

        .hero-motif-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 248, 234, 0.94);
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
            transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
            cursor: pointer;
            flex: 1 1 auto;
            position: relative;
            overflow: visible;
            isolation: isolate;
        }

        .hero-motif-cta.is-next-step {
            border-color: rgba(245, 209, 118, 0.54);
            background: linear-gradient(135deg, rgba(222, 188, 111, 0.2), rgba(124, 205, 255, 0.24));
        }

        .hero-motif-cta.is-ritual-start {
            min-height: 54px;
            padding: 0 22px;
            border-color: rgba(255, 231, 169, 0.82);
            background:
                radial-gradient(circle at 18% 50%, rgba(255, 244, 197, 0.32), transparent 28%),
                radial-gradient(circle at 82% 50%, rgba(139, 223, 255, 0.26), transparent 30%),
                linear-gradient(135deg, rgba(244, 207, 118, 0.46), rgba(127, 211, 255, 0.38) 52%, rgba(191, 136, 255, 0.42));
            box-shadow:
                0 0 0 1px rgba(255, 236, 186, 0.18),
                0 18px 36px rgba(8, 6, 18, 0.34),
                inset 0 0 26px rgba(255, 240, 194, 0.18);
            color: #221126;
            text-shadow: 0 1px 0 rgba(255, 251, 242, 0.42);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-motif-cta.is-ritual-start::before,
        .hero-motif-cta.is-ritual-start::after {
            content: '';
            position: absolute;
            inset: 50% auto auto 50%;
            pointer-events: none;
            border-radius: 999px;
            transform: translate(-50%, -50%);
        }

        .hero-motif-cta.is-ritual-start::before {
            width: calc(100% + 24px);
            height: calc(100% + 24px);
            border: 1px solid rgba(255, 233, 180, 0.42);
            opacity: 0.72;
            animation: heroRitualStartHalo 2.8s ease-in-out infinite;
        }

        .hero-motif-cta.is-ritual-start::after {
            width: 18px;
            height: 18px;
            left: 18px;
            top: 50%;
            background:
                radial-gradient(circle, rgba(255,255,255,1) 0 24%, rgba(255,231,173,0.98) 25% 56%, rgba(170,223,255,0.92) 57% 100%);
            box-shadow: 0 0 18px rgba(255, 232, 170, 0.9);
            animation: heroRitualStartSpark 1.8s ease-in-out infinite;
        }

        .hero-motif-cta.is-energy-step {
            border-color: rgba(245, 209, 118, 0.62);
            background: linear-gradient(135deg, rgba(232, 198, 117, 0.24), rgba(124, 205, 255, 0.3));
            box-shadow: 0 0 0 1px rgba(245, 209, 118, 0.14), 0 10px 22px rgba(8, 12, 26, 0.36);
        }

        .hero-motif-cta.is-energy-step::before,
        .hero-motif-cta.is-energy-step::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 12px;
            height: 12px;
            margin-top: -6px;
            border-radius: 999px;
            opacity: 0;
            pointer-events: none;
            z-index: 1;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 24%, rgba(248, 226, 137, 0.94) 25% 56%, rgba(123, 207, 255, 0.8) 57% 100%);
            filter: drop-shadow(0 0 8px rgba(247, 223, 138, 0.72));
        }

        .hero-motif-cta.is-energy-step::before {
            left: 24%;
        }

        .hero-motif-cta.is-energy-step::after {
            right: 24%;
        }

        .hero-motif-cta.is-energy-sparking {
            animation: heroEnergyCtaPulse .44s cubic-bezier(.2,.82,.25,1) both;
        }

        .hero-motif-cta.is-energy-sparking::before {
            animation: heroEnergySparkLeft .62s cubic-bezier(.18,.85,.24,1) both;
        }

        .hero-motif-cta.is-energy-sparking::after {
            animation: heroEnergySparkRight .62s cubic-bezier(.18,.85,.24,1) both;
        }

        .hero-motif-cta.is-energy-step > span {
            position: relative;
            z-index: 2;
        }

        .hero-motif-cta.is-next-tarot {
            position: relative;
            padding-left: 44px;
            border-color: rgba(245, 209, 118, 0.7);
            background: linear-gradient(135deg, rgba(234, 201, 124, 0.32), rgba(124, 205, 255, 0.32));
            box-shadow: 0 0 0 1px rgba(245, 209, 118, 0.16), 0 12px 24px rgba(0, 0, 0, 0.22), inset 0 0 18px rgba(255, 235, 178, 0.14);
            text-shadow: 0 1px 10px rgba(255, 231, 166, 0.32);
        }

        .hero-motif-cta.is-next-tarot::before,
        .hero-motif-cta.is-next-tarot::after {
            content: '';
            position: absolute;
            pointer-events: none;
        }

        .hero-motif-cta.is-next-tarot::before {
            left: 12px;
            top: 50%;
            width: 24px;
            height: 30px;
            border-radius: 6px;
            border: 1px solid rgba(245, 209, 118, 0.76);
            margin-top: -15px;
            background: linear-gradient(145deg, rgba(26, 14, 44, 0.5), rgba(255, 255, 255, 0.04)), url('/tarot-cards/CardBacks.jpg') center / cover no-repeat;
            box-shadow: 0 0 0 1px rgba(9, 6, 18, 0.45), 0 0 18px rgba(255, 228, 156, 0.58), 0 5px 12px rgba(0, 0, 0, 0.34);
            transform: rotate(-8deg);
            animation: heroTarotIconBeacon 1.8s ease-in-out infinite;
            z-index: 1;
        }

        .hero-motif-cta.is-next-tarot::after {
            left: 9px;
            top: 50%;
            width: 30px;
            height: 30px;
            margin-top: -15px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(255, 238, 179, 0.82) 0%, rgba(230, 161, 255, 0.42) 55%, rgba(124, 205, 255, 0) 100%);
            filter: blur(1px);
            animation: heroTarotIconGlow 1.8s ease-in-out infinite;
            z-index: 0;
        }

        .hero-motif-cta.is-pulsing {
            animation: heroMotifCtaPulse 5.2s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-motif-cta.is-next-tarot.is-pulsing {
            animation: heroMotifCtaPulseStrong 4.4s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-motif-cta.is-ritual-start.is-pulsing {
            animation: heroMotifCtaPulseStrong 3.3s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-motif-cta.is-processing {
            transform: translateY(-1px) scale(0.992);
            border-color: rgba(255, 233, 180, 0.72);
            box-shadow: 0 0 0 1px rgba(255, 236, 186, 0.18), 0 0 24px rgba(129, 204, 255, 0.24), 0 14px 26px rgba(0, 0, 0, 0.22);
            animation: heroMotifBusyFlash .38s ease-out both;
        }

        .hero-motif-cta:hover,
        .hero-motif-cta:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(212, 175, 55, 0.46);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            outline: none;
        }

        .hero-motif-nav {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex: 0 0 auto;
        }

        .hero-motif-nav[hidden] {
            display: none !important;
        }

        .hero-motif-nav__btn {
            min-width: 34px;
            min-height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 248, 234, 0.94);
            font: 700 18px/1 'Cinzel', serif;
            cursor: pointer;
            transition: transform .2s ease, border-color .2s ease;
        }

        .hero-motif-nav__btn:hover,
        .hero-motif-nav__btn:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(212, 175, 55, 0.48);
            outline: none;
        }

        .hero-motif-hint {
            margin: 0;
            color: rgba(255, 248, 234, 0.64);
            font-size: 11px;
            line-height: 1.35;
        }

        .hero-motif-hint:empty {
            display: none;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong,
            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__copy strong,
            .hero-motif-profile-card__input-icon,
            .choice-card.is-navmap-target,
            .choice-card.is-mobile-current .card-action,
            .hero-motif-progress__dot.is-active,
            .hero-motif-progress__dot.is-active::after,
            .hero-motif-cta.is-energy-sparking,
            .hero-motif-cta.is-energy-sparking::before,
            .hero-motif-cta.is-energy-sparking::after,
            .hero-motif-energy-summary.is-energy-flash,
            .hero-motif-energy-summary.is-energy-flash::after,
            .hero-motif-energy-summary.is-energy-flash .hero-motif-energy-summary__icon {
                animation: none;
            }
            .hero-motif-cta.is-energy-sparking::before,
            .hero-motif-cta.is-energy-sparking::after,
            .hero-motif-energy-summary.is-energy-flash::after {
                opacity: 0;
            }
        }

        @keyframes heroRitualNameButtonBeat {
            0%, 100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 0 0 rgba(245, 209, 118, 0);
                filter: brightness(1);
                opacity: 0.96;
            }
            40% {
                transform: translateY(-1px) scale(1.03);
                box-shadow: 0 0 18px rgba(245, 209, 118, 0.24), 0 0 34px rgba(124, 205, 255, 0.16);
                filter: brightness(1.1);
                opacity: 1;
            }
        }

        @keyframes heroRitualNameHeadlineBeat {
            0%, 100% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(245, 209, 118, 0);
                filter: brightness(1);
                opacity: 0.78;
            }
            40% {
                transform: scale(1.045);
                text-shadow: 0 0 14px rgba(245, 209, 118, 0.46);
                filter: brightness(1.12);
                opacity: 1;
            }
        }

        @keyframes heroRitualEmailHeadlineSync {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                filter: brightness(1);
                text-shadow:
                    0 0 0 rgba(245, 209, 118, 0),
                    0 0 0 rgba(124, 205, 255, 0);
            }
            38% {
                opacity: 1;
                transform: scale(1.075);
                filter: brightness(1.2);
                text-shadow:
                    0 0 16px rgba(245, 209, 118, 0.24),
                    0 0 28px rgba(124, 205, 255, 0.12);
            }
            62% {
                opacity: 1;
                transform: scale(1.028);
                filter: brightness(1.08);
                text-shadow:
                    0 0 8px rgba(245, 209, 118, 0.14),
                    0 0 18px rgba(124, 205, 255, 0.08);
            }
        }

        @keyframes heroRitualEmailAtPulse {
            0%, 46%, 100% {
                opacity: 0.86;
                transform: translateY(-50%) scale(1);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 10px rgba(245, 209, 118, 0.16);
                filter: brightness(1);
            }
            7% {
                opacity: 1;
                transform: translateY(-50%) scale(1.08);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 16px rgba(245, 209, 118, 0.34), 0 0 24px rgba(124, 205, 255, 0.18);
                filter: brightness(1.08);
            }
            14% {
                opacity: 0.96;
                transform: translateY(-50%) scale(0.98);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 14px rgba(245, 209, 118, 0.24);
                filter: brightness(1.04);
            }
            21% {
                opacity: 1;
                transform: translateY(-50%) scale(1.06);
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 0 18px rgba(245, 209, 118, 0.3), 0 0 26px rgba(124, 205, 255, 0.2);
                filter: brightness(1.14);
            }
        }

        @keyframes heroEnergySummaryPulse {
            0% {
                transform: scale(0.985);
                filter: brightness(1);
            }
            36% {
                transform: scale(1.022);
                filter: brightness(1.16);
            }
            100% {
                transform: scale(1);
                filter: brightness(1);
            }
        }

        @keyframes heroEnergySummarySweep {
            0% { transform: translateX(-120%); opacity: 0; }
            24% { opacity: 1; }
            100% { transform: translateX(120%); opacity: 0; }
        }

        @keyframes heroEnergySummaryIconPop {
            0% { transform: scale(0.92); filter: brightness(1); }
            40% { transform: scale(1.18); filter: brightness(1.22); }
            100% { transform: scale(1); filter: brightness(1); }
        }

        @keyframes heroEnergyFinaleBackdrop {
            0% { opacity: 0; }
            20% { opacity: 1; }
            100% { opacity: 0; }
        }

        @keyframes heroEnergyFinaleCore {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.16); }
            38% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(1.86); }
        }

        @keyframes heroEnergyFinaleRing {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.14); }
            28% { opacity: 0.96; }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); }
        }

        @keyframes heroEnergyFinaleRay {
            0% { opacity: 0; transform: translate(-50%, -50%) scaleX(0.12); }
            36% { opacity: 1; }
            100% { opacity: 0; transform: translate(-50%, -50%) scaleX(1.18); }
        }

        @keyframes heroMotifProgressGlow {
            0%, 100% {
                transform: scale(1);
                filter: brightness(1);
            }
            50% {
                transform: scale(1.04);
                filter: brightness(1.16);
            }
        }

        @keyframes heroMotifProgressSweep {
            0% {
                opacity: 0;
                transform: translateX(-150%);
            }
            32% {
                opacity: 0.82;
            }
            56% {
                opacity: 0.4;
                transform: translateX(145%);
            }
            100% {
                opacity: 0;
                transform: translateX(150%);
            }
        }

        @keyframes heroMotifCtaPulse {
            0%, 52%, 100% {
                box-shadow: 0 0 0 rgba(245, 209, 118, 0), 0 0 0 rgba(124, 205, 255, 0);
                transform: translateY(0) scale(1);
            }
            8% {
                box-shadow: 0 0 0 5px rgba(245, 209, 118, 0.16), 0 0 24px rgba(124, 205, 255, 0.25);
                transform: translateY(-1px) scale(1.014);
            }
            16% {
                box-shadow: 0 0 0 2px rgba(245, 209, 118, 0.08), 0 0 10px rgba(124, 205, 255, 0.12);
                transform: translateY(0) scale(1.002);
            }
            24% {
                box-shadow: 0 0 0 6px rgba(245, 209, 118, 0.18), 0 0 28px rgba(124, 205, 255, 0.28);
                transform: translateY(-1px) scale(1.02);
            }
        }

        @keyframes heroMotifCtaPulseStrong {
            0%, 48%, 100% {
                box-shadow: 0 0 0 rgba(245, 209, 118, 0), 0 0 0 rgba(124, 205, 255, 0);
                transform: translateY(0) scale(1);
            }
            7% {
                box-shadow: 0 0 0 6px rgba(245, 209, 118, 0.2), 0 0 28px rgba(124, 205, 255, 0.35);
                transform: translateY(-1px) scale(1.02);
            }
            14% {
                box-shadow: 0 0 0 2px rgba(245, 209, 118, 0.1), 0 0 12px rgba(124, 205, 255, 0.16);
                transform: translateY(0) scale(1.004);
            }
            21% {
                box-shadow: 0 0 0 7px rgba(245, 209, 118, 0.24), 0 0 32px rgba(124, 205, 255, 0.4);
                transform: translateY(-1px) scale(1.028);
            }
        }

        @keyframes heroMotifBusyFlash {
            0% {
                transform: translateY(0) scale(1);
                filter: saturate(1);
            }
            45% {
                transform: translateY(-1px) scale(0.988);
                filter: saturate(1.08) brightness(1.04);
            }
            100% {
                transform: translateY(-1px) scale(0.992);
                filter: saturate(1) brightness(1);
            }
        }

        @keyframes heroRitualStartHalo {
            0%, 100% {
                opacity: 0.46;
                transform: translate(-50%, -50%) scale(0.98);
            }
            50% {
                opacity: 0.9;
                transform: translate(-50%, -50%) scale(1.04);
            }
        }

        @keyframes heroRitualStartSpark {
            0%, 100% {
                transform: translate(0, -50%) scale(0.92);
                opacity: 0.86;
            }
            50% {
                transform: translate(2px, -50%) scale(1.18);
                opacity: 1;
            }
        }

        @keyframes heroRitualOrbFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-5px) scale(1.02);
            }
        }

        @keyframes heroRitualOrbBurst {
            0% {
                transform: scale(1);
                filter: brightness(1);
            }
            34% {
                transform: scale(1.18);
                filter: brightness(1.18) saturate(1.14);
            }
            68% {
                transform: scale(0.84);
                filter: brightness(1.04);
            }
            100% {
                transform: scale(1);
                filter: brightness(1);
            }
        }

        @keyframes heroRitualOrbShockwave {
            0% {
                opacity: 0.2;
                transform: translate(-50%, -50%) scale(0.72);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.24);
            }
        }

        @keyframes heroRitualOrbRing {
            0%, 100% {
                opacity: 0.34;
                transform: translate(-50%, -50%) scale(0.96);
            }
            50% {
                opacity: 0.72;
                transform: translate(-50%, -50%) scale(1.04);
            }
        }

        @keyframes heroRitualStarTwinkle {
            0%, 100% {
                opacity: 0.4;
                transform: scale(0.76);
            }
            50% {
                opacity: 1;
                transform: scale(1.18);
            }
        }

        @keyframes heroRitualTapPulse {
            0%, 100% {
                opacity: 0.72;
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 230, 172, 0);
            }
            50% {
                opacity: 1;
                transform: scale(1.06);
                text-shadow: 0 0 14px rgba(255, 230, 172, 0.34);
            }
        }

        @keyframes heroRitualStatusDot {
            0%, 80%, 100% {
                transform: scale(0.72);
                opacity: 0.36;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes heroRitualBenefitPulse {
            0%, 100% {
                transform: translateY(0);
                box-shadow: 0 0 16px rgba(245, 209, 118, 0.12);
            }
            50% {
                transform: translateY(-1px);
                box-shadow: 0 0 20px rgba(245, 209, 118, 0.26);
            }
        }

        @keyframes heroRitualBurstParticle {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.25);
            }
            18% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(var(--burst-x, 0), var(--burst-y, 0)) scale(1.02);
            }
        }

        @keyframes heroTarotIconBeacon {
            0%, 100% {
                transform: rotate(-8deg) scale(1);
                filter: brightness(1);
            }
            50% {
                transform: rotate(-8deg) scale(1.1);
                filter: brightness(1.16);
            }
        }

        @keyframes heroTarotIconGlow {
            0%, 100% {
                opacity: 0.68;
                transform: scale(0.96);
            }
            50% {
                opacity: 1;
                transform: scale(1.15);
            }
        }

        @keyframes heroEnergyCtaPulse {
            0% {
                transform: translateY(0) scale(1);
            }
            45% {
                transform: translateY(-1px) scale(1.02);
            }
            100% {
                transform: translateY(0) scale(1);
            }
        }

        @keyframes heroEnergySparkLeft {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.55);
            }
            34% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(-28px, -16px) scale(1.15);
            }
        }

        @keyframes heroEnergySparkRight {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.55);
            }
            34% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(28px, -16px) scale(1.15);
            }
        }

        @keyframes heroPrimaryCtaPulse {
            0%, 56%, 100% {
                box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26), 0 0 0 rgba(245, 209, 118, 0);
                filter: brightness(1);
            }
            10% {
                box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28), 0 0 0 5px rgba(245, 209, 118, 0.16), 0 0 28px rgba(124, 205, 255, 0.26);
                filter: brightness(1.04);
            }
            18% {
                box-shadow: 0 17px 29px rgba(0, 0, 0, 0.27), 0 0 0 2px rgba(245, 209, 118, 0.09), 0 0 14px rgba(124, 205, 255, 0.15);
                filter: brightness(1.015);
            }
        }

        @keyframes heroPrimaryCtaShimmer {
            0%, 58%, 100% {
                transform: translateX(-150%);
                opacity: 0;
            }
            9% {
                transform: translateX(-20%);
                opacity: 1;
            }
            18% {
                transform: translateX(120%);
                opacity: 0.8;
            }
            24% {
                transform: translateX(160%);
                opacity: 0;
            }
        }

        @keyframes heroLottoBallReveal {
            0% {
                opacity: 0;
                transform: translateY(6px) scale(0.88);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes heroLottoSpinPulse {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0.82;
            }
            50% {
                transform: translateY(-1px) scale(1.04);
                opacity: 1;
            }
        }

        @keyframes heroMotifMiniCardPulse {
            0%, 100% {
                box-shadow: 0 0 0 rgba(245, 209, 118, 0), 0 10px 24px rgba(0, 0, 0, 0.28);
            }
            45% {
                box-shadow: 0 0 18px rgba(245, 209, 118, 0.3), 0 12px 28px rgba(0, 0, 0, 0.34);
            }
        }

        @keyframes heroTypeCaretBlink {
            0%, 45% {
                opacity: 1;
            }
            46%, 100% {
                opacity: 0;
            }
        }

        @keyframes heroRewardCoinSpin {
            0% {
                transform: rotateY(0deg);
            }
            100% {
                transform: rotateY(360deg);
            }
        }

        @keyframes heroRewardChipHop {
            0% {
                transform: translateY(0) scale(0.96);
                opacity: 0.74;
            }
            34% {
                transform: translateY(-5px) scale(1.03);
                opacity: 1;
            }
            72% {
                transform: translateY(3px) scale(0.98);
                opacity: 0.9;
            }
            100% {
                transform: translateY(0) scale(0.96);
                opacity: 0.74;
            }
        }

        @keyframes heroRewardChipSpotlight {
            0%,
            100% {
                border-color: rgba(212, 175, 55, 0.22);
                box-shadow:
                    inset 0 1px 0 rgba(255,255,255,0.05),
                    0 0 0 rgba(125, 205, 255, 0);
                filter: brightness(0.96) saturate(0.94);
            }
            24%,
            38% {
                border-color: rgba(125, 205, 255, 0.66);
                box-shadow:
                    inset 0 1px 0 rgba(255,255,255,0.08),
                    0 0 16px rgba(125, 205, 255, 0.22),
                    0 0 0 1px rgba(125, 205, 255, 0.1);
                filter: brightness(1.08) saturate(1.08);
            }
        }

        @keyframes heroRewardChipSweep {
            0%,
            100% {
                opacity: 0;
                transform: translateX(-135%);
            }
            18% {
                opacity: 0;
                transform: translateX(-135%);
            }
            34% {
                opacity: 1;
            }
            46% {
                opacity: 1;
                transform: translateX(135%);
            }
            60% {
                opacity: 0;
                transform: translateX(135%);
            }
        }

        @keyframes heroRewardCrystalPulse {
            0%,
            100% {
                transform: scale(0.96);
                box-shadow:
                    inset 0 1px 0 rgba(255,255,255,0.34),
                    0 0 10px rgba(106, 196, 255, 0.3);
            }
            32% {
                transform: scale(1.12);
                box-shadow:
                    inset 0 1px 0 rgba(255,255,255,0.44),
                    0 0 16px rgba(106, 196, 255, 0.42),
                    0 0 24px rgba(125, 205, 255, 0.18);
            }
        }

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

        @keyframes heroRewardShowcaseSwap {
            0%,
            8% {
                opacity: 0;
                transform: translateY(8px) scale(0.985);
            }
            14%,
            42% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            50%,
            100% {
                opacity: 0;
                transform: translateY(-7px) scale(0.99);
            }
        }

        @keyframes heroRitualFlash {
            0% {
                opacity: 0;
            }
            12% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        @keyframes heroRewardRevealBackdrop {
            0% {
                opacity: 0;
            }
            18% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        @keyframes heroRewardRevealHalo {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.36);
            }
            28% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.24);
            }
        }

        @keyframes heroRewardRevealRing {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.18);
            }
            24% {
                opacity: 0.94;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.08);
            }
        }

        @keyframes heroRewardRevealCard {
            0% {
                opacity: 0;
                transform: translateY(34px) scale(0.82);
                filter: brightness(0.84);
            }
            26% {
                opacity: 1;
                transform: translateY(-4px) scale(1.04);
                filter: brightness(1.08);
            }
            68% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: brightness(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-12px) scale(0.96);
                filter: brightness(0.96);
            }
        }

        @keyframes heroRewardRevealCrystal {
            0% {
                opacity: 0;
                transform: scale(0.24) rotate(-16deg);
            }
            30% {
                opacity: 1;
                transform: scale(1.16) rotate(6deg);
            }
            56% {
                transform: scale(1) rotate(0deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes heroRewardRevealAmount {
            0% {
                opacity: 0;
                transform: translateY(18px) scale(0.84);
            }
            34% {
                opacity: 1;
                transform: translateY(-4px) scale(1.08);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-actions {
            margin-top: 2px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .hero.is-ritual-engaged .hero-actions,
        .hero.is-ritual-complete .hero-actions {
            margin-top: 6px;
        }

        .hero-quick-picks {
            width: min(560px, 100%);
            display: grid;
            gap: 8px;
            justify-items: center;
            margin-top: 2px;
        }

        .hero-quick-picks__lead {
            margin: 0;
            color: rgba(255, 248, 234, 0.68);
            font-size: 12px;
            line-height: 1.35;
            text-align: center;
        }

        .hero-quick-picks__grid {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }

        .hero-quick-picks__link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.028);
            color: rgba(255, 248, 234, 0.9);
            text-decoration: none;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
            transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
        }

        .hero-quick-picks__link:hover,
        .hero-quick-picks__link:focus-visible {
            outline: none;
            transform: translateY(-1px);
            border-color: rgba(212, 175, 55, 0.38);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
        }

        .hero-quick-picks__link.is-recommended {
            border-color: rgba(129, 204, 255, 0.4);
            background: linear-gradient(135deg, rgba(255, 226, 133, 0.12), rgba(129, 204, 255, 0.14));
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(129, 204, 255, 0.14);
        }

        .hero-quick-picks__label {
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.02em;
        }

        .hero-flow-note {
            margin: -2px 0 0;
            color: rgba(255, 248, 234, 0.64);
            font-size: 12px;
            line-height: 1.45;
            text-align: center;
            white-space: normal;
            max-width: 34ch;
        }

        .hero-scroll-hint {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
            color: rgba(255, 240, 192, 0.88);
            text-decoration: none;
            gap: 6px;
            animation: heroScrollHintPulse 2s ease-in-out infinite;
        }

        .hero-scroll-hint__arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.03);
            font-size: 16px;
            line-height: 1;
        }

        .hero-scroll-hint__text {
            font-size: 11px;
            line-height: 1.3;
            color: rgba(255, 248, 234, 0.74);
            letter-spacing: 0.01em;
        }

        .hero-scroll-hint:hover,
        .hero-scroll-hint:focus-visible {
            outline: none;
            color: rgba(255, 248, 234, 0.96);
        }

        .hero-scroll-hint:hover .hero-scroll-hint__arrow,
        .hero-scroll-hint:focus-visible .hero-scroll-hint__arrow {
            border-color: rgba(212, 175, 55, 0.42);
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition: transform .2s ease, filter .2s ease, box-shadow .22s ease;
        }

        .hero-cta:hover,
        .hero-cta:focus-visible {
            transform: translateY(-1px);
            filter: brightness(1.04);
            outline: none;
        }

        .hero-cta--primary {
            position: relative;
            overflow: hidden;
            color: #1a1028;
            background: linear-gradient(135deg, rgba(240, 201, 77, 0.98), rgba(129, 204, 255, 0.95));
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26), 0 0 24px rgba(212, 175, 55, 0.12);
            animation: heroPrimaryCtaPulse 5.4s cubic-bezier(.22,.78,.26,1) infinite;
        }

        .hero-cta--primary::after {
            content: '';
            position: absolute;
            inset: -2px -26%;
            background: linear-gradient(110deg, rgba(255,255,255,0) 26%, rgba(255,255,255,0.34) 50%, rgba(255,255,255,0) 74%);
            transform: translateX(-150%);
            animation: heroPrimaryCtaShimmer 5.4s ease-in-out infinite;
            pointer-events: none;
            mix-blend-mode: screen;
        }

        .hero-cta--secondary {
            color: rgba(255, 248, 234, 0.92);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
        }

        .hero.is-ritual-idle .hero-cta--secondary {
            opacity: 0.88;
        }

        .hero.is-ritual-engaged .hero-cta--primary,
        .hero.is-ritual-complete .hero-cta--primary {
            animation-duration: 4.2s;
        }

        .hero-trust-signals {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: -2px;
        }

        .hero-trust-signals span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-height: 22px;
            padding: 0;
            color: rgba(255, 248, 234, 0.8);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .hero-trust-signals--inline {
            margin-top: 2px;
            margin-bottom: 2px;
            gap: 14px;
        }

        .hero-live {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 9px;
            width: min(520px, calc(100% - 8px));
            margin-top: 4px;
            justify-items: stretch;
            min-height: 110px;
            align-content: start;
        }

        #heroLiveSignals:empty {
            min-height: 110px;
        }

        .hero-live-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            width: 100%;
        }

        .hero-stat-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-height: 44px;
            padding: 0 8px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.14);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 248, 234, 0.78);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
            white-space: nowrap;
            overflow: hidden;
        }

        .hero-stat-icon {
            font-size: 12px;
            line-height: 1;
            flex: 0 0 auto;
        }

        .hero-stat-chip strong {
            color: #f6e3a0;
            font: 700 13px/1 'Philosopher', sans-serif;
            flex: 0 0 auto;
        }

        .hero-stat-label {
            color: rgba(255, 248, 234, 0.74);
            font: 600 11px/1 'Philosopher', sans-serif;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .hero-stat-chip.is-asked .hero-stat-icon {
            filter: drop-shadow(0 0 6px rgba(141, 212, 255, 0.35));
        }

        .hero-stat-chip.is-chat .hero-stat-icon {
            filter: drop-shadow(0 0 7px rgba(126, 255, 172, 0.42));
        }

        .hero-alert-chip {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 9px;
            width: 100%;
            min-height: 46px;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 148, 197, 0.42);
            background: linear-gradient(135deg, rgba(255, 148, 197, 0.16), rgba(185, 109, 255, 0.2));
            color: #fff1dc;
            text-decoration: none;
            font: 700 13px/1.2 'Philosopher', sans-serif;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 148, 197, 0.2);
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .hero-alert-chip:hover,
        .hero-alert-chip:focus-visible {
            outline: none;
            transform: translateY(-1px);
            border-color: rgba(255, 169, 207, 0.58);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 148, 197, 0.26);
        }

        .hero-alert-chip.is-unread {
            box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(255, 148, 197, 0.24), 0 0 18px rgba(255, 124, 178, 0.18);
        }

        .hero-alert-icon {
            font-size: 13px;
            line-height: 1;
            filter: drop-shadow(0 0 8px rgba(255, 124, 178, 0.45));
            transform-origin: 50% 10%;
            animation: heroBellBlink 1.15s steps(2, end) infinite;
        }

        .hero-alert-chip.is-unread .hero-alert-icon {
            animation: heroBellRing 1.6s ease-in-out infinite, heroBellBlink 1.05s steps(2, end) infinite;
        }

        @keyframes homeInboxDotPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 124, 178, 0.5);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 124, 178, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 124, 178, 0);
            }
        }

        @keyframes heroBellRing {
            0%, 52%, 100% {
                transform: rotate(0deg) scale(1);
            }
            8% {
                transform: rotate(14deg) scale(1.05);
            }
            16% {
                transform: rotate(-12deg) scale(1.04);
            }
            24% {
                transform: rotate(10deg);
            }
            32% {
                transform: rotate(-8deg);
            }
            40% {
                transform: rotate(5deg);
            }
            48% {
                transform: rotate(-3deg);
            }
        }

        @keyframes heroBellBlink {
            0%, 100% {
                opacity: 1;
                filter: drop-shadow(0 0 8px rgba(255, 124, 178, 0.45));
            }
            50% {
                opacity: 0.35;
                filter: drop-shadow(0 0 2px rgba(255, 124, 178, 0.22));
            }
        }

        @keyframes heroScrollHintPulse {
            0%, 100% { transform: translateY(0); opacity: 0.72; }
            50% { transform: translateY(3px); opacity: 1; }
        }

        @keyframes homeNavMapCardPulse {
            0% {
                transform: translateY(0) scale(1);
                box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4), 0 0 0 rgba(245, 209, 118, 0);
            }
            35% {
                transform: translateY(-3px) scale(1.015);
                box-shadow: 0 36px 92px rgba(0, 0, 0, 0.46), 0 0 34px rgba(245, 209, 118, 0.28);
            }
            100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4), 0 0 0 rgba(245, 209, 118, 0);
            }
        }

        @keyframes heroBannerGoldSweep {
            0%, 100% {
                transform: translateX(-52%) rotate(-8deg);
                opacity: 0.2;
            }
            18% {
                opacity: 0.28;
            }
            48% {
                transform: translateX(8%) rotate(-8deg);
                opacity: 0.78;
            }
            62% {
                opacity: 0.42;
            }
            100% {
                transform: translateX(46%) rotate(-8deg);
                opacity: 0.16;
            }
        }

        @keyframes heroBannerGlowPulse {
            0%, 100% {
                opacity: 0.82;
                filter: saturate(1);
            }
            50% {
                opacity: 1;
                filter: saturate(1.06);
            }
        }

        @keyframes heroBannerGuardianStarPulse {
            0%, 100% {
                opacity: 0.72;
                transform: scale(1);
            }
            40% {
                opacity: 1;
                transform: scale(1.18);
            }
        }

        @media (max-width: 640px) {
            .hero {
                grid-template-columns: 1fr;
                justify-items: center;
                gap: 6px;
                text-align: center;
                padding: 8px 10px 6px;
            }

            .hero-intro {
                gap: 5px;
            }

            .hero-banner {
                width: min(100%, calc(100vw - 20px));
                aspect-ratio: 16 / 9.6;
                margin-bottom: 4px;
                border-radius: 18px;
            }

            .hero-banner-media {
                object-position: center 20%;
            }
            .hero-banner {
                --hero-voice-columns: 24fr 23fr 24fr 29fr;
            }
            .hero-banner-voice__badge {
                top: 5px;
                left: 4px;
                right: 4px;
                padding: 3px 4px;
                font-size: 7px;
                letter-spacing: 0.08em;
            }

            .hero-banner-voice__name {
                left: 4px;
                right: 4px;
                bottom: 5px;
                padding: 4px 4px;
                font-size: 8px;
                letter-spacing: 0.03em;
            }

            .hero-banner-voice.is-daily-guardian .hero-banner-voice__name {
                gap: 4px;
            }

            .hero-banner-voice.is-daily-guardian .hero-banner-voice__name::before {
                font-size: 8px;
            }

            .hero-portrait {
                width: 58px;
                height: 58px;
                justify-self: center;
                align-self: center;
            }

            .hero-portrait--guardian {
                width: 48px;
                height: 48px;
                flex-basis: 48px;
            }

            .hero-motif-guardian {
                gap: 8px;
                padding: 9px 10px;
                border-radius: 16px;
            }

            .hero-motif-guardian--intro {
                width: min(100%, calc(100vw - 28px));
                margin-top: 0;
            }

            .hero-motif-guardian-copy strong {
                font-size: 9px;
                letter-spacing: 0.14em;
            }

            .hero-motif-guardian-copy span {
                font-size: 15px;
                line-height: 1.08;
            }

            .hero-motif-cta {
                min-height: 36px;
                font-size: 12px;
            }

            .hero h1 {
                max-width: none;
                width: 100%;
                font-size: clamp(14px, 4vw, 19px);
                line-height: 1.08;
                letter-spacing: 0;
                text-align: center;
            }

            .hero h1 span {
                white-space: normal;
            }

            .hero p {
                max-width: none;
                justify-self: center;
            }

            .hero p {
                font-size: 11.5px;
                line-height: 1.34;
            }

            .hero-motif-cta {
                min-height: 36px;
                font-size: 12px;
                padding: 0 12px;
            }

            .hero-motif-cta.is-next-tarot {
                padding-left: 40px;
            }

            .hero-motif-cta.is-next-tarot::before {
                left: 10px;
                width: 22px;
                height: 28px;
                margin-top: -14px;
            }

            .hero-motif-cta.is-next-tarot::after {
                left: 7px;
            }

            .hero-live {
                width: min(100%, calc(100vw - 28px));
                gap: 6px;
                margin-top: 2px;
                min-height: 100px;
            }

            .hero-live-stats {
                gap: 6px;
            }

            #heroLiveSignals:empty {
                min-height: 100px;
            }

            .hero-trust-signals--inline {
                width: min(100%, calc(100vw - 28px));
                justify-content: center;
                gap: 8px 12px;
                margin-top: 0;
            }

            .hero-trust-signals span {
                font-size: 11px;
                line-height: 1.3;
                text-align: center;
            }

            .hero-actions {
                width: min(100%, calc(100vw - 28px));
                display: grid;
                grid-template-columns: minmax(0, 1fr);
                gap: 8px;
            }

            .hero-quick-picks {
                width: min(100%, calc(100vw - 28px));
                gap: 6px;
            }

            .hero-quick-picks__lead {
                font-size: 11px;
                line-height: 1.3;
            }

            .hero-quick-picks__grid {
                gap: 6px;
            }

            .hero-quick-picks__link {
                min-height: 32px;
                padding: 0 12px;
            }

            .hero-quick-picks__label {
                font-size: 12px;
            }

            .hero-cta {
                width: 100%;
                min-height: 42px;
                padding: 0 16px;
                font-size: 14px;
            }

            .hero-cta--secondary {
                min-height: 38px;
                font-size: 13px;
                background: rgba(255, 255, 255, 0.025);
            }

            .hero-flow-note {
                max-width: min(100%, calc(100vw - 34px));
                margin-top: -1px;
                font-size: 11px;
                line-height: 1.35;
            }

            .hero-stat-chip {
                min-height: 40px;
                padding: 0 6px;
            }

            .hero-stat-chip strong {
                font-size: 12px;
            }

            .hero-stat-label {
                font-size: 10px;
            }

            .hero-alert-chip {
                min-height: 44px;
                font-size: 12px;
                padding: 0 12px;
            }

            .hero-scroll-hint {
                display: none;
            }

            .hero-scroll-hint__arrow {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .hero-scroll-hint__text {
                font-size: 10px;
            }
        }

        .wr-cookie-banner {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 99999;
            padding: 10px 12px 12px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
            background: rgba(7, 4, 14, 0.94);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
            font-family: 'Philosopher', sans-serif;
            color: rgba(255, 255, 255, 0.78);
            font-size: 12.5px;
            line-height: 1.34;
            animation: wrCookieSlideUp 0.4s ease-out;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .wr-cookie-banner__inner {
            width: min(960px, 100%);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 10px 12px;
            flex-wrap: wrap;
        }

        .wr-cookie-banner__copy {
            flex: 1 1 240px;
            min-width: 0;
        }

        .wr-cookie-banner__copy--compact {
            display: none;
        }

        .wr-cookie-banner__icon,
        .wr-cookie-banner__link {
            color: rgba(212, 175, 55, 0.82);
        }

        .wr-cookie-banner__link {
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .wr-cookie-banner__actions {
            display: flex;
            gap: 6px;
            flex-shrink: 0;
        }

        .wr-cookie-banner__accept,
        .wr-cookie-banner__reject {
            min-height: 36px;
            border-radius: 999px;
            font-family: 'Philosopher', sans-serif;
            cursor: pointer;
            transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
        }

        .wr-cookie-banner__accept:hover,
        .wr-cookie-banner__accept:focus-visible,
        .wr-cookie-banner__reject:hover,
        .wr-cookie-banner__reject:focus-visible {
            outline: none;
            transform: translateY(-1px);
        }

        .wr-cookie-banner__accept {
            border: none;
            padding: 0 18px;
            background: linear-gradient(135deg, rgba(240, 201, 77, 0.9) 0%, rgba(183, 110, 121, 0.85) 100%);
            color: #1a1028;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .wr-cookie-banner__reject {
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 0 14px;
            background: transparent;
            color: rgba(255, 255, 255, 0.66);
            font-size: 12px;
        }

        @media (max-width: 640px) {
            body.has-cookie-banner {
                padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            }

            body.home-hero-editing #wrCookieBanner {
                opacity: 0;
                transform: translateY(18px);
                pointer-events: none;
            }

            .hero.is-ritual-engaged .hero-actions,
            .hero.is-ritual-engaged .hero-quick-picks,
            .hero.is-ritual-engaged .hero-flow-note {
                display: none;
            }

            .wr-cookie-banner {
                padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
                font-size: 10px;
                line-height: 1.16;
            }

            .wr-cookie-banner__inner {
                gap: 5px;
            }

            .wr-cookie-banner__copy {
                flex-basis: 100%;
            }

            .wr-cookie-banner__copy--full {
                display: none;
            }

            .wr-cookie-banner__copy--compact {
                display: block;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 9.5px;
                line-height: 1.14;
            }

            .wr-cookie-banner__actions {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                align-items: center;
            }

            .wr-cookie-banner__accept,
            .wr-cookie-banner__reject {
                min-height: 28px;
                font-size: 10px;
            }
        }

        .speech-bubble {
            position: fixed;
            left: 50%;
            top: 96px;
            z-index: 1215;
            width: min(520px, calc(100% - 32px));
            max-height: 0;
            margin: 0;
            padding: 0 16px;
            border-radius: 20px;
            border: 0 solid rgba(212, 175, 55, 0.22);
            background: linear-gradient(180deg, rgba(34, 20, 58, 0.92), rgba(16, 10, 30, 0.94));
            color: #f3e2a7;
            font-family: 'Cinzel', serif;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.48;
            letter-spacing: 0.16px;
            text-align: center;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 24px rgba(212, 175, 55, 0.08);
            opacity: 0;
            filter: blur(6px);
            overflow: hidden;
            pointer-events: none;
            transform: translate(-50%, 10px);
            transition: opacity 0.28s ease, transform 0.32s ease, filter 0.32s ease, max-height 0.32s ease, padding 0.32s ease, border-width 0.32s ease, top 0.22s ease;
        }

        .speech-bubble.show {
            max-height: min(280px, calc(100vh - 120px));
            padding: 12px 16px;
            border-width: 1px;
            opacity: 1;
            filter: blur(0);
            transform: translate(-50%, 0);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 640px) {
            .speech-bubble {
                width: min(100%, calc(100vw - 24px));
                padding: 12px 14px;
                font-size: 13px;
                line-height: 1.42;
                border-radius: 18px;
                top: 88px;
            }
        }

        .speech-bubble.is-soft {
            color: rgba(243, 226, 167, 0.94);
            border-color: rgba(212, 175, 55, 0.18);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26), 0 0 18px rgba(212, 175, 55, 0.06);
        }

        .cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin: 0 0 16px;
        }

        .choice-card.is-last-action {
            border-color: rgba(255, 240, 192, 0.32);
            box-shadow: 0 32px 88px rgba(0, 0, 0, 0.42), 0 0 34px rgba(212, 175, 55, 0.18);
        }

        .choice-card.is-context-priority {
            border-color: rgba(212, 175, 55, 0.42);
            box-shadow: 0 32px 88px rgba(0, 0, 0, 0.42), 0 0 36px rgba(212, 175, 55, 0.24);
        }

        .choice-card.is-last-action .card-action {
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 20px rgba(212, 175, 55, 0.18);
        }

        .choice-card.is-last-action .card-helper {
            color: rgba(255, 248, 234, 0.82);
        }

        .card-badge {
            display: inline-flex;
            align-items: center;
            min-height: 26px;
            margin-left: 10px;
            padding: 0 10px;
            border-radius: 999px;
            border: 1px solid rgba(240, 201, 77, 0.24);
            background: linear-gradient(135deg, rgba(240, 201, 77, 0.22), rgba(183, 110, 121, 0.18));
            color: rgba(255, 240, 192, 0.92);
            font: 700 11px/1 'Philosopher', sans-serif;
            letter-spacing: 0.04em;
            white-space: nowrap;
        }

        .card-badge[hidden],
        .card-signal[hidden] {
            display: none !important;
        }

        .card-badge--duty {
            border-color: rgba(124, 207, 255, 0.34);
            background: linear-gradient(135deg, rgba(124, 207, 255, 0.22), rgba(113, 129, 255, 0.18));
            color: rgba(227, 245, 255, 0.94);
        }

        .card-role-tag {
            display: inline-flex;
            align-items: center;
            min-height: 24px;
            margin-top: -4px;
            padding: 0 10px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 240, 192, 0.86);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            width: fit-content;
        }

        .card-signals {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .card-signal {
            display: inline-flex;
            align-items: center;
            min-height: 22px;
            padding: 0 9px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.14);
            background: rgba(255, 255, 255, 0.02);
            color: rgba(255, 248, 234, 0.68);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .card-signal--duty {
            border-color: rgba(124, 207, 255, 0.32);
            background: rgba(124, 207, 255, 0.08);
            color: rgba(227, 245, 255, 0.92);
        }

        .choice-card.is-daily-lead {
            box-shadow:
                0 26px 64px rgba(18, 10, 30, 0.44),
                0 0 0 1px rgba(124, 207, 255, 0.16),
                0 0 36px rgba(124, 207, 255, 0.14);
        }

        .choice-card.is-jolanda .card-badge {
            margin-left: 50px;
            margin-top: -2px;
            min-height: 24px;
            padding: 0 9px;
            font-size: 10px;
            letter-spacing: 0.02em;
        }

        body.home--returning .hero {
            padding-bottom: 16px;
        }

        body.home--returning #homeCardsSection {
            margin-top: 6px;
        }

        body.home--returning .micro-trust,
        body.home--returning #homeContentSection {
            opacity: 0.96;
        }

        .choice-card {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 0;
            border-radius: 30px;
            border: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(20, 12, 31, 0.96), rgba(8, 5, 15, 0.98));
            box-shadow: var(--shadow);
            text-decoration: none;
            cursor: default;
            transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
        }

        .choice-card .card-hover-ring {
            position: absolute;
            inset: 10px;
            z-index: 2;
            border-radius: 24px;
            border: 1px solid rgba(255, 248, 234, 0.05);
            opacity: 0;
            pointer-events: none;
            transition: opacity .24s ease, box-shadow .24s ease, border-color .24s ease;
        }

        .choice-card::before {
            content: "";
            position: absolute;
            inset: -24%;
            z-index: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity .28s ease, transform .28s ease;
        }

        .choice-card::after {
            content: "";
            position: absolute;
            top: -22%;
            left: -42%;
            width: 42%;
            height: 138%;
            z-index: 1;
            opacity: 0;
            pointer-events: none;
            background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.08) 48%, transparent 82%);
            transform: translateX(-140%) rotate(12deg);
            transition: transform .42s ease, opacity .3s ease;
        }

        .choice-card:hover,
        .choice-card:focus-visible,
        .choice-card.is-hovered,
        .choice-card.is-pressed {
            transform: translateY(-6px) scale(1.025);
            border-color: rgba(255, 240, 192, 0.28);
            box-shadow: 0 38px 96px rgba(0, 0, 0, 0.46);
            outline: none;
        }

        .choice-card.is-selena:hover,
        .choice-card.is-selena:focus-visible,
        .choice-card.is-selena.is-hovered,
        .choice-card.is-selena.is-pressed {
            border-color: rgba(240, 201, 77, 0.36);
            box-shadow: 0 36px 94px rgba(0, 0, 0, 0.46), 0 0 42px rgba(212, 175, 55, 0.26);
        }

        .choice-card.is-selena::before {
            background: radial-gradient(circle at 24% 20%, rgba(212, 175, 55, 0.16) 0%, rgba(183, 110, 121, 0.08) 34%, transparent 62%);
        }

        .choice-card.is-jolanda {
            border-color: rgba(176, 121, 255, 0.24);
        }

        .choice-card.is-primary-jolanda,
        .choice-card.is-primary-jolanda:hover,
        .choice-card.is-primary-jolanda:focus-visible,
        .choice-card.is-primary-jolanda.is-hovered,
        .choice-card.is-primary-jolanda.is-pressed {
            border: 2px solid #d4af37;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
        }

        .choice-card.is-jolanda:hover,
        .choice-card.is-jolanda:focus-visible,
        .choice-card.is-jolanda.is-hovered,
        .choice-card.is-jolanda.is-pressed {
            border-color: rgba(193, 131, 255, 0.42);
            box-shadow: 0 36px 94px rgba(0, 0, 0, 0.46), 0 0 42px rgba(176, 121, 255, 0.28);
        }

        .choice-card.is-jolanda::before {
            background: radial-gradient(circle at 24% 20%, rgba(176, 121, 255, 0.18) 0%, rgba(255, 222, 255, 0.06) 38%, transparent 62%);
        }

        .choice-card.is-bogumila {
            border-color: rgba(125, 211, 252, 0.24);
        }

        .choice-card.is-bogumila:hover,
        .choice-card.is-bogumila:focus-visible,
        .choice-card.is-bogumila.is-hovered,
        .choice-card.is-bogumila.is-pressed {
            border-color: rgba(138, 216, 255, 0.42);
            box-shadow: 0 36px 94px rgba(0, 0, 0, 0.46), 0 0 42px rgba(125, 211, 252, 0.22);
        }

        .choice-card.is-bogumila::before {
            background: radial-gradient(circle at 24% 20%, rgba(125, 211, 252, 0.18) 0%, rgba(181, 140, 255, 0.08) 38%, transparent 62%);
        }

        .choice-card.is-lunaria {
            border-color: rgba(157, 164, 255, 0.24);
        }

        .choice-card.is-lunaria:hover,
        .choice-card.is-lunaria:focus-visible,
        .choice-card.is-lunaria.is-hovered,
        .choice-card.is-lunaria.is-pressed {
            border-color: rgba(196, 199, 255, 0.4);
            box-shadow: 0 36px 94px rgba(0, 0, 0, 0.46), 0 0 42px rgba(136, 159, 255, 0.24);
        }

        .choice-card.is-lunaria::before {
            background: radial-gradient(circle at 24% 20%, rgba(151, 165, 255, 0.18) 0%, rgba(116, 213, 255, 0.08) 34%, transparent 62%);
        }

        .choice-card:hover::before,
        .choice-card:focus-visible::before,
        .choice-card.is-hovered::before,
        .choice-card.is-pressed::before {
            opacity: 1;
            transform: scale(1.04);
        }

        .choice-card:hover::after,
        .choice-card:focus-visible::after,
        .choice-card.is-hovered::after,
        .choice-card.is-pressed::after {
            opacity: 1;
            transform: translateX(260%) rotate(12deg);
        }

        @media (hover: none), (pointer: coarse) {
            .choice-card::after {
                display: none;
            }

            .choice-card:hover,
            .choice-card:focus-visible,
            .choice-card.is-hovered {
                transform: none;
                box-shadow: var(--shadow);
            }

            .choice-card:hover .card-image img,
            .choice-card.is-hovered .card-image img {
                transform: none;
                filter: saturate(0.96) brightness(0.96);
            }
        }

        .choice-card:hover .card-hover-ring,
        .choice-card:focus-visible .card-hover-ring,
        .choice-card.is-hovered .card-hover-ring,
        .choice-card.is-pressed .card-hover-ring {
            opacity: 1;
        }

        .choice-card.is-selena:hover .card-hover-ring,
        .choice-card.is-selena:focus-visible .card-hover-ring,
        .choice-card.is-selena.is-hovered .card-hover-ring,
        .choice-card.is-selena.is-pressed .card-hover-ring {
            border-color: rgba(240, 201, 77, 0.24);
            box-shadow: inset 0 0 0 1px rgba(240, 201, 77, 0.12), 0 0 24px rgba(212, 175, 55, 0.14);
        }

        .choice-card.is-jolanda:hover .card-hover-ring,
        .choice-card.is-jolanda:focus-visible .card-hover-ring,
        .choice-card.is-jolanda.is-hovered .card-hover-ring,
        .choice-card.is-jolanda.is-pressed .card-hover-ring {
            border-color: rgba(193, 131, 255, 0.26);
            box-shadow: inset 0 0 0 1px rgba(193, 131, 255, 0.14), 0 0 24px rgba(176, 121, 255, 0.16);
        }

        .choice-card.is-bogumila:hover .card-hover-ring,
        .choice-card.is-bogumila:focus-visible .card-hover-ring,
        .choice-card.is-bogumila.is-hovered .card-hover-ring,
        .choice-card.is-bogumila.is-pressed .card-hover-ring {
            border-color: rgba(138, 216, 255, 0.22);
            box-shadow: inset 0 0 0 1px rgba(138, 216, 255, 0.12), 0 0 24px rgba(125, 211, 252, 0.14);
        }

        .choice-card.is-lunaria:hover .card-hover-ring,
        .choice-card.is-lunaria:focus-visible .card-hover-ring,
        .choice-card.is-lunaria.is-hovered .card-hover-ring,
        .choice-card.is-lunaria.is-pressed .card-hover-ring {
            border-color: rgba(196, 199, 255, 0.22);
            box-shadow: inset 0 0 0 1px rgba(196, 199, 255, 0.12), 0 0 24px rgba(136, 159, 255, 0.14);
        }

        .card-image {
            position: relative;
            min-height: 220px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
            filter: saturate(0.96) brightness(0.96);
            transition: transform .28s ease, filter .28s ease;
        }

        .choice-card:hover .card-image img,
        .choice-card:focus-visible .card-image img,
        .choice-card.is-hovered .card-image img,
        .choice-card.is-pressed .card-image img {
            transform: scale(1.05);
            filter: saturate(1.08) brightness(1.06);
        }

        .card-image::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 42%;
            background: linear-gradient(180deg, rgba(7, 4, 14, 0) 0%, rgba(7, 4, 14, 0.88) 72%, rgba(7, 4, 14, 0.98) 100%);
        }

        .card-body {
            position: relative;
            z-index: 1;
            display: flex;
            flex: 1;
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
            padding: 22px 22px 24px;
        }

        .card-body h2 {
            margin: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-family: 'Cinzel', serif;
            font-size: clamp(20px, 6vw, 30px);
            line-height: 1.02;
            letter-spacing: 0.02em;
            color: #f6e3a0;
        }

        .card-body h2 > span:nth-child(2) {
            min-width: 0;
            flex: 0 1 auto;
        }

        .card-title-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            flex: 0 0 38px;
            border-radius: 50%;
            background: linear-gradient(180deg, rgba(132, 96, 214, 0.26), rgba(95, 58, 166, 0.18));
            font-size: 20px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .card-title-icon.is-selena {
            background: linear-gradient(180deg, rgba(123, 92, 220, 0.42), rgba(78, 48, 150, 0.34));
            color: #f6d76f;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.16),
                0 0 0 1px rgba(240, 201, 77, 0.14);
        }

        .card-title-icon.is-jolanda {
            background: linear-gradient(180deg, rgba(134, 91, 225, 0.4), rgba(96, 55, 182, 0.3));
            color: #f3e7ff;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 0 0 1px rgba(193, 131, 255, 0.14);
        }

        .card-title-icon.is-bogumila {
            background: linear-gradient(180deg, rgba(116, 179, 255, 0.34), rgba(81, 113, 215, 0.26));
            color: #f6f1d0;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 0 0 1px rgba(138, 216, 255, 0.14);
        }

        .card-title-icon.is-lunaria {
            background: linear-gradient(180deg, rgba(149, 154, 255, 0.38), rgba(88, 93, 196, 0.26));
            color: #f6e8b8;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 0 0 1px rgba(196, 199, 255, 0.14);
        }

        .card-body p {
            margin: 0;
            flex: 1;
            max-width: none;
            color: rgba(255, 248, 234, 0.8);
            font-size: 15px;
            line-height: 1.62;
            letter-spacing: 0;
            text-wrap: pretty;
        }

        .card-action {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 56px;
            padding: 0 24px;
            border-radius: 999px;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.02em;
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
            transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            z-index: 3;
        }

        .card-helper {
            margin-top: 2px;
            display: block;
            align-self: center;
            min-height: 0;
            padding: 0;
            border: 0;
            background: none;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 248, 234, 0.44);
        }

        .card-helper-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            justify-content: center;
            margin-top: 8px;
        }

        .card-helper-links a {
            color: rgba(255, 244, 214, 0.82);
            font-size: 11px;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.24);
            padding-bottom: 1px;
        }

        .card-helper-links a:hover,
        .card-helper-links a:focus-visible {
            color: #fff2bf;
            border-bottom-color: rgba(212, 175, 55, 0.56);
            outline: none;
        }

        .choice-card:hover .card-body h2,
        .choice-card:focus-visible .card-body h2,
        .choice-card.is-hovered .card-body h2,
        .choice-card.is-pressed .card-body h2 {
            color: #ffefb5;
        }

        .choice-card:hover .card-helper,
        .choice-card:focus-visible .card-helper,
        .choice-card.is-hovered .card-helper,
        .choice-card.is-pressed .card-helper {
            color: rgba(255, 248, 234, 0.64);
        }

        .is-selena .card-action {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.96), rgba(183, 110, 121, 0.86));
            color: #1a1028;
        }

        .is-jolanda .card-action {
            background: linear-gradient(135deg, rgba(111, 73, 182, 0.98), rgba(193, 131, 255, 0.94));
            color: #fff8ea;
        }

        .is-bogumila .card-action {
            background: linear-gradient(135deg, rgba(125, 211, 252, 0.96), rgba(181, 140, 255, 0.9));
            color: #120d1d;
        }

        .is-lunaria .card-action {
            background: linear-gradient(135deg, rgba(157, 164, 255, 0.97), rgba(123, 214, 255, 0.92));
            color: #120d1d;
        }

        .choice-card:hover .card-action,
        .choice-card:focus-visible .card-action {
            transform: translateY(-1px);
            filter: brightness(1.04) saturate(1.06);
        }

        .choice-card.is-selena:hover .card-action,
        .choice-card.is-selena:focus-visible .card-action {
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(212, 175, 55, 0.2);
        }

        .choice-card.is-jolanda:hover .card-action,
        .choice-card.is-jolanda:focus-visible .card-action {
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(176, 121, 255, 0.22);
        }

        .choice-card.is-bogumila:hover .card-action,
        .choice-card.is-bogumila:focus-visible .card-action {
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(125, 211, 252, 0.2);
        }

        .choice-card.is-lunaria:hover .card-action,
        .choice-card.is-lunaria:focus-visible .card-action {
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 22px rgba(151, 165, 255, 0.2);
        }

        .choice-card.is-navmap-target {
            animation: homeNavMapCardPulse 1.1s cubic-bezier(.2,.82,.24,1) 1;
            scroll-margin-top: 96px;
        }

        .choice-card.is-mobile-current {
            border-color: rgba(255, 240, 192, 0.34);
            box-shadow: 0 30px 82px rgba(0, 0, 0, 0.4), 0 0 26px rgba(212, 175, 55, 0.14);
        }

        .choice-card.is-mobile-current .card-hover-ring {
            opacity: 1;
            border-color: rgba(255, 240, 192, 0.18);
        }

        .choice-card.is-mobile-current .card-action {
            animation: homeCardCtaPulse 1.55s ease-in-out infinite;
            box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 240, 192, 0.18);
            filter: brightness(1.05) saturate(1.06);
        }

        .choice-card.is-mobile-current .card-helper {
            color: rgba(255, 248, 234, 0.78);
        }

        .home-portal-stack {
            display: grid;
            gap: 22px;
            margin-bottom: 26px;
        }

        .home-section-head {
            margin-bottom: 12px;
            text-align: left;
        }

        .home-section-head h2 {
            margin: 0;
            font-family: 'Cinzel', serif;
            font-size: clamp(20px, 4.2vw, 32px);
            line-height: 1.12;
            color: #f6e3a0;
        }

        .home-section-head p {
            margin: 8px 0 0;
            color: rgba(255, 248, 234, 0.72);
            font-size: 14px;
            line-height: 1.52;
            max-width: 66ch;
        }

        .home-daily-signal {
            padding: 22px 18px 18px;
            border-radius: 28px;
            border: 1px solid rgba(212, 175, 55, 0.18);
            background: linear-gradient(180deg, rgba(22, 13, 36, 0.92), rgba(10, 6, 18, 0.96));
            box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
        }

        .home-daily-signal__mount {
            min-height: 120px;
        }

        .home-daily-signal__mini {
            display: grid;
            gap: 10px;
            margin-top: 14px;
            min-height: 58px;
        }

        #homeDailySignalMiniMount:empty {
            min-height: 58px;
        }

        .daily-mini-insight {
            border-radius: 18px;
            border: 1px solid rgba(212, 175, 55, 0.14);
            background: rgba(255, 255, 255, 0.02);
            padding: 12px 14px;
        }

        .daily-mini-insight__title {
            margin: 0 0 5px;
            color: #f7e8be;
            font: 700 15px/1.3 'Cinzel', serif;
        }

        .daily-mini-insight p {
            margin: 0;
            color: rgba(255, 248, 234, 0.68);
            font-size: 13px;
            line-height: 1.45;
        }

        .daily-mini-insight a {
            margin-top: 8px;
            display: inline-flex;
            text-decoration: none;
            color: rgba(149, 211, 255, 0.92);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .home-discovery {
            padding: 20px 18px 18px;
            border-radius: 28px;
            border: 1px solid rgba(212, 175, 55, 0.14);
            background: linear-gradient(180deg, rgba(18, 11, 30, 0.9), rgba(8, 5, 14, 0.96));
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .discovery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        #homeDiscoveryMount:empty {
            min-height: 280px;
        }

        .discovery-card {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 14px;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
            transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .discovery-card:hover,
        .discovery-card:focus-within {
            border-color: rgba(212, 175, 55, 0.28);
            transform: translateY(-1px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        .discovery-card__badge {
            display: inline-flex;
            align-items: center;
            min-height: 24px;
            width: fit-content;
            padding: 0 9px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.22);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 240, 192, 0.9);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .discovery-card h3 {
            margin: 0;
            color: #f7e8be;
            font: 700 20px/1.18 'Cinzel', serif;
        }

        .discovery-card p {
            margin: 0;
            color: rgba(255, 248, 234, 0.74);
            font-size: 14px;
            line-height: 1.48;
        }

        .discovery-card a {
            display: inline-flex;
            width: fit-content;
            min-height: 34px;
            align-items: center;
            justify-content: center;
            padding: 0 14px;
            border-radius: 999px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            background: rgba(255, 255, 255, 0.02);
            color: rgba(255, 248, 234, 0.92);
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }

        .home-faq {
            padding: 20px 18px;
            border-radius: 24px;
            border: 1px solid rgba(212, 175, 55, 0.14);
            background: linear-gradient(180deg, rgba(13, 8, 22, 0.92), rgba(8, 5, 14, 0.96));
        }

        .home-faq-list {
            display: grid;
            gap: 8px;
        }

        .home-faq-item {
            border-radius: 14px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            background: rgba(255, 255, 255, 0.02);
            overflow: clip;
        }

        .home-faq-item summary {
            cursor: pointer;
            list-style: none;
            padding: 12px 14px;
            font: 700 14px/1.4 'Cinzel', serif;
            color: #f7e8be;
        }

        .home-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .home-faq-item p {
            margin: 0;
            padding: 0 14px 12px;
            color: rgba(255, 248, 234, 0.74);
            font-size: 13px;
            line-height: 1.52;
        }

        .trust {
            margin: 0 auto 28px;
            max-width: none;
            padding: 24px 20px 20px;
            border-radius: 28px;
            border: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(16, 10, 27, 0.88), rgba(10, 6, 18, 0.94));
            box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
        }

        .trust h2,
        .trust h3 {
            margin: 0 0 8px;
            text-align: center;
            font-family: 'Cinzel', serif;
            font-size: 20px;
            color: #f6e3a0;
        }

        .trust-intro {
            margin: 0 auto 14px;
            max-width: 40ch;
            text-align: center;
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .trust-list {
            display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .trust-list li {
            position: relative;
            min-height: 0;
            padding: 14px 14px 14px 38px;
            border-radius: 22px;
            border: 1px solid rgba(212, 175, 55, 0.12);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            color: var(--text-soft);
            line-height: 1.45;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .trust-list li::before {
            content: "\2726";
            position: absolute;
            left: 16px;
            top: 16px;
            color: rgba(212, 175, 55, 0.82);
            font-size: 13px;
        }

        .trust-list strong {
            display: block;
            margin-bottom: 5px;
            font-family: 'Cinzel', serif;
            font-size: 14px;
            color: #f7e8be;
            line-height: 1.28;
        }

        .trust-list span {
            display: block;
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.45;
        }

        @media (max-width: 640px) {
            .hero-motif {
                width: min(100%, calc(100vw - 24px));
                padding: 8px 10px 9px;
                gap: 4px;
            }

            .hero-motif-head {
                gap: 4px;
            }

            .hero-motif-title {
                font-size: 14px;
                line-height: 1.08;
                -webkit-line-clamp: 2;
                line-clamp: 2;
            }

            .hero-motif-icon {
                width: 22px;
                height: 22px;
                font-size: 13px;
            }

            .hero-motif-body {
                font-size: 11px;
                line-height: 1.25;
                -webkit-line-clamp: 3;
                line-clamp: 3;
            }

            .hero-motif-progress {
                gap: 2px;
            }

            .hero-motif-progress__dot {
                min-height: 6px;
            }

            .hero-motif-extra {
                gap: 4px;
            }

            .hero-motif-profile-card {
                gap: 4px;
                padding: 8px 9px;
                border-radius: 11px;
            }

            .hero-motif-profile-card__copy strong,
            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__copy strong {
                font-size: 9.5px;
                line-height: 1.14;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong {
                font-size: 17px;
                line-height: 1.08;
                letter-spacing: 0.05em;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy span {
                font-size: 11px;
            }

            .hero-motif-profile-card__copy span {
                font-size: 9px;
                line-height: 1.18;
            }

            .hero-motif-profile-card--module-choice {
                gap: 9px;
                padding: 12px 12px 10px;
                border-radius: 15px;
            }

            .hero-motif-profile-card__eyebrow {
                min-height: 24px;
                padding: 0 9px;
                font-size: 8.5px;
                letter-spacing: 0.08em;
            }

            .hero-motif-profile-card--module-choice .hero-motif-profile-card__copy strong {
                max-width: 100%;
                font-size: 13.5px;
                line-height: 1.04;
                letter-spacing: 0.01em;
                white-space: nowrap;
            }

            .hero-motif-profile-card--module-choice .hero-motif-profile-card__copy span {
                max-width: 100%;
                font-size: 9px;
                line-height: 1.12;
                white-space: nowrap;
                overflow: visible;
                text-overflow: clip;
            }

            .hero-motif-profile-card__actions--split {
                gap: 7px;
            }

            .hero-motif-profile-card__submit--module {
                min-height: 40px;
                padding: 0 12px;
                border-radius: 14px;
                font-size: 11.5px;
            }

            .hero-motif-profile-card__secondary {
                min-height: 32px;
                padding: 0 10px;
                border-radius: 12px;
                font-size: 9.5px;
            }

            .hero-motif-profile-card__helper {
                display: none;
            }

            .hero-motif-profile-card__fields {
                gap: 4px;
            }

            .hero-motif-profile-card__fields input {
                min-height: 30px;
                padding: 0 10px;
                font-size: 10.5px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input,
            .hero-motif-profile-card[data-hero-profile-form="ritual-email"] .hero-motif-profile-card__fields input {
                padding-right: 38px;
                font-size: 16px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__fields input {
                min-height: 34px;
                padding-left: 12px;
                border-radius: 14px;
            }

            .hero-motif-profile-card__input-icon {
                right: 8px;
                width: 20px;
                height: 20px;
                font-size: 10.5px;
            }

            .hero-motif-profile-card__submit {
                min-height: 28px;
                padding: 0 11px;
                font-size: 10px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__submit {
                min-height: 34px;
                border-radius: 14px;
                font-size: 10.5px;
            }

            .hero-motif-profile-card__status {
                font-size: 9px;
                line-height: 1.16;
            }

            .hero-motif-lotto {
                grid-template-columns: repeat(3, minmax(52px, 64px));
                gap: 8px 10px;
            }

            .hero-motif-lotto__ball {
                width: 58px;
                min-width: 58px;
                min-height: 58px;
                font-size: 20px;
            }

            .hero-motif-card-summary img {
                width: 34px;
                height: 52px;
            }

            .hero-motif-energy-summary {
                padding: 7px;
                gap: 7px;
            }

            .hero-motif-energy-summary__icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .hero-motif-reward-summary {
                padding: 7px;
                gap: 7px;
            }

            .hero-motif-reward-summary__icon {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .hero-motif-actions {
                gap: 5px;
                margin-top: 0;
            }

            .hero-motif-nav {
                gap: 3px;
            }

            .hero-motif-nav__btn {
                min-width: 30px;
                min-height: 30px;
                font-size: 16px;
            }

            .hero-motif-hint {
                font-size: 9px;
                line-height: 1.15;
            }

            .hero-actions {
                gap: 6px;
                margin-top: 0;
            }

            .hero-quick-picks {
                gap: 5px;
            }

            .hero-quick-picks__lead {
                font-size: 10px;
            }

            .hero-quick-picks__grid {
                gap: 5px;
            }

            .hero-quick-picks__link {
                min-height: 30px;
                padding: 0 11px;
            }

            .hero-quick-picks__label {
                font-size: 11px;
            }

            .hero-cta {
                min-height: 36px;
                padding: 0 14px;
                font-size: 12px;
            }

            .hero-trust-signals span {
                min-height: 18px;
                font-size: 10px;
                gap: 4px;
            }

            .cards {
                gap: 14px;
                margin-bottom: 18px;
            }

            .choice-card {
                border-radius: 26px;
            }

            .card-image {
                min-height: 188px;
            }

            .card-body {
                gap: 10px;
                padding: 18px 18px 20px;
            }

            .card-body h2 {
                gap: 10px;
                font-size: clamp(22px, 7vw, 28px);
            }

            .card-title-icon {
                width: 34px;
                height: 34px;
                flex-basis: 34px;
                font-size: 18px;
            }

            .card-body p {
                font-size: 14px;
                line-height: 1.5;
            }

            .card-role-tag {
                min-height: 22px;
                margin-top: -2px;
                padding: 0 9px;
                font-size: 10px;
            }

            .card-signals {
                gap: 5px;
            }

            .card-signal {
                min-height: 20px;
                padding: 0 8px;
                font-size: 9px;
            }

            .choice-card.is-jolanda .card-badge {
                margin-left: 44px;
                padding: 0 8px;
                font-size: 9px;
            }

            .card-action {
                min-height: 52px;
                padding: 0 18px;
                font-size: 15px;
                letter-spacing: 0.01em;
            }

            .card-helper {
                font-size: 9px;
                letter-spacing: 0.1em;
            }

            .card-helper-links {
                gap: 6px 8px;
                margin-top: 4px;
            }

            .card-helper-links a {
                font-size: 10px;
            }

            .home-portal-stack {
                gap: 16px;
            }

            .home-daily-signal,
            .home-discovery,
            .home-faq {
                padding: 16px 12px;
                border-radius: 20px;
            }

            .home-section-head h2 {
                font-size: 24px;
            }

            .home-section-head p {
                font-size: 13px;
            }

            .trust {
                padding: 20px 14px 16px;
                border-radius: 24px;
            }

            .trust h2,
            .trust h3 {
                font-size: 17px;
            }

            .trust-intro {
                margin-bottom: 12px;
                font-size: 12px;
                max-width: 28ch;
            }

            .trust-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .trust-list li {
                padding: 12px 12px 12px 30px;
                border-radius: 18px;
            }

            .trust-list li::before {
                left: 12px;
                top: 12px;
                font-size: 11px;
            }

            .trust-list strong {
                font-size: 12px;
                margin-bottom: 4px;
            }

            .trust-list span {
                font-size: 11.5px;
                line-height: 1.35;
            }
        }

        .footer {
            padding: 0 0 10px;
            text-align: center;
        }

        .footer-disclaimer {
            max-width: 760px;
            margin: 0 auto 16px;
            color: var(--text-muted);
            font-size: 12px;
            line-height: 1.75;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.24);
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.38);
            font-size: 12px;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .footer-copy {
            color: rgba(255, 255, 255, 0.28);
            font-size: 12px;
        }

        @keyframes heroFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes portraitGlowPulse {
            0%, 100% { opacity: 0.72; transform: scale(0.96); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        @keyframes portraitShimmer {
            0%, 100% { transform: translateX(-135%) rotate(10deg); opacity: 0; }
            18% { opacity: 0.66; }
            42% { transform: translateX(145%) rotate(10deg); opacity: 0.22; }
            43%, 100% { opacity: 0; }
        }

        @keyframes orbitDriftA {
            0% { transform: translate(-18px, 0px) scale(0.92); opacity: 0.9; }
            25% { transform: translate(12px, 10px) scale(1); opacity: 1; }
            50% { transform: translate(22px, 32px) scale(0.85); opacity: 0.72; }
            75% { transform: translate(-12px, 18px) scale(1.05); opacity: 0.92; }
            100% { transform: translate(-18px, 0px) scale(0.92); opacity: 0.9; }
        }

        @keyframes orbitDriftB {
            0% { transform: translate(0, 0) scale(0.88); opacity: 0.72; }
            30% { transform: translate(-22px, -14px) scale(1); opacity: 1; }
            65% { transform: translate(-8px, -28px) scale(0.82); opacity: 0.68; }
            100% { transform: translate(0, 0) scale(0.88); opacity: 0.72; }
        }

        @keyframes portraitFlash {
            0% { opacity: 0; transform: scale(0.82); }
            24% { opacity: 0.9; transform: scale(1.08); }
            58% { opacity: 0.26; transform: scale(1.18); }
            100% { opacity: 0; transform: scale(1.24); }
        }

        @keyframes homeCardCtaPulse {
            0%, 100% {
                transform: translateY(0);
                box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 18px rgba(255, 240, 192, 0.16);
                filter: brightness(1.02) saturate(1.03);
            }
            50% {
                transform: translateY(-1px);
                box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3), 0 0 28px rgba(255, 240, 192, 0.28);
                filter: brightness(1.08) saturate(1.08);
            }
        }

        @media (min-width: 920px) {
            .shell { width: min(1240px, calc(100% - 56px)); padding-top: 0; }

            .hero {
                max-width: 1140px;
                margin: 0 auto 18px;
                grid-template-columns: 1fr;
                justify-content: center;
                justify-items: center;
                align-items: start;
                column-gap: 0;
                row-gap: 14px;
                text-align: center;
                padding: 10px 0 12px;
            }

            .hero-intro {
                gap: 12px;
            }

            .hero-banner {
                grid-column: 1;
                width: min(920px, calc(100% - 32px));
                max-height: none;
                aspect-ratio: 16 / 4;
                margin-bottom: 0;
                border-radius: 24px;
                box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
            }

            .hero-banner::before {
                inset: -10% -18%;
                opacity: 0.38;
                animation-duration: 10.8s;
            }

            .hero-banner::after {
                background:
                    radial-gradient(circle at 20% 24%, rgba(255, 220, 147, 0.1), transparent 24%),
                    radial-gradient(circle at 78% 18%, rgba(255, 234, 188, 0.07), transparent 22%),
                    linear-gradient(180deg, rgba(255, 223, 151, 0.03), transparent 22%, transparent 70%, rgba(9, 6, 16, 0.38) 100%);
            }

            .hero-banner-media {
                object-position: center 20%;
            }

            .hero-banner-voice__badge {
                left: 14px;
                right: 14px;
                top: 12px;
                padding: 6px 10px;
                font-size: 10px;
            }

            .hero-banner-voice__name {
                left: 14px;
                right: 14px;
                bottom: 12px;
                padding: 7px 10px;
                font-size: 11px;
            }

            .hero-copy {
                grid-column: 1;
                justify-items: center;
                align-self: center;
                gap: 10px;
                padding: 0;
                max-width: 980px;
            }

            .hero-portrait {
                grid-column: 1;
                grid-row: auto;
                width: 96px;
                height: 96px;
                justify-self: center;
                align-self: center;
            }

            .hero h1 {
                grid-column: 1;
                font-family: 'Noto Serif', 'Cinzel', serif;
                font-weight: 700;
                max-width: 24ch;
                width: 100%;
                font-size: clamp(30px, 3.6vw, 46px);
                line-height: 1.04;
                letter-spacing: -0.01em;
                text-align: center;
                text-wrap: balance;
            }

            .hero h1 span {
                display: block;
                white-space: normal;
            }

            .hero h1 span:first-child {
                margin-bottom: 0.08em;
            }

            .hero h1 span + span::before {
                content: none;
            }

            .hero p {
                grid-column: 1;
                max-width: 50ch;
                width: auto;
                font-size: 15px;
                line-height: 1.5;
                text-align: center;
                white-space: normal;
            }

            .hero-live {
                grid-column: 1;
                width: min(620px, 100%);
                gap: 10px;
            }

            .hero-live-stats {
                gap: 10px;
            }

            .hero-stat-chip {
                min-height: 42px;
            }

            .hero-alert-chip {
                min-height: 48px;
                font-size: 14px;
            }

            .hero-motif {
                grid-column: 1;
                grid-row: auto;
                width: min(980px, 100%);
                margin: 0 auto;
                padding: 28px 34px 28px;
                gap: 18px;
                border-radius: 28px;
                background:
                    radial-gradient(circle at top, rgba(125, 73, 201, 0.14), transparent 52%),
                    linear-gradient(160deg, rgba(49, 24, 78, 0.94), rgba(24, 12, 41, 0.98));
                box-shadow:
                    0 28px 70px rgba(0, 0, 0, 0.42),
                    0 0 0 1px rgba(212, 175, 55, 0.14) inset,
                    0 0 0 1px rgba(255, 255, 255, 0.03);
            }

            .hero-motif-kicker {
                margin-bottom: 4px;
                text-align: left;
                font-size: 12px;
                letter-spacing: 0.22em;
            }

            .hero-motif-guardian {
                justify-content: center;
                width: min(100%, 620px);
                min-width: 0;
                padding: 12px 18px;
                border-radius: 20px;
                background:
                    radial-gradient(circle at top, rgba(255, 236, 186, 0.08), transparent 58%),
                    linear-gradient(145deg, rgba(54, 31, 79, 0.88), rgba(26, 15, 43, 0.96));
                box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(212, 175, 55, 0.18) inset;
            }

            .hero-portrait--guardian {
                width: 54px;
                height: 54px;
                flex-basis: 54px;
            }

            .hero-motif-guardian-copy strong {
                font-size: 15px;
            }

            .hero-motif-guardian-copy span {
                font-size: 12px;
                line-height: 1.4;
            }

            .hero-motif-guardian--intro {
                width: fit-content;
                max-width: min(100%, 620px);
                margin-top: 0;
            }

            .hero-motif-head {
                display: grid;
                grid-template-columns: 40px minmax(0, 1fr);
                align-items: center;
                gap: 14px;
                text-align: left;
                justify-content: stretch;
            }

            .hero-motif-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                justify-self: start;
            }

            .hero-motif-body,
            .hero-motif-hint {
                text-align: left;
                justify-content: flex-start;
                margin-inline: 0;
            }

            .hero-motif-title {
                font-size: 28px;
                line-height: 1.12;
                max-width: none;
                text-wrap: pretty;
            }

            .hero-motif-body {
                max-width: 58ch;
                font-size: 16px;
                line-height: 1.56;
            }

            .hero-motif-progress {
                gap: 10px;
                margin-top: 2px;
            }

            .hero-motif-progress__dot {
                min-height: 10px;
            }

            .hero-motif-extra {
                width: 100%;
                gap: 22px;
            }

            .hero-motif-extra.is-complete {
                gap: 12px;
            }

            .hero-motif-ritual-start {
                grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
                grid-template-areas:
                    "orb copy"
                    "orb status"
                    "tap benefits";
                align-items: center;
                justify-items: stretch;
                gap: 14px 32px;
                padding: 28px 30px 26px;
                overflow: visible;
            }

            .hero-motif-ritual-start::before {
                inset: -12% 16% auto;
                height: 66%;
                filter: blur(16px);
            }

            .hero-motif-ritual-start__orb {
                grid-area: orb;
                justify-self: center;
                align-self: center;
                width: 164px;
            }

            .hero-motif-ritual-start__orb::before {
                width: 194px;
                height: 194px;
            }

            .hero-motif-ritual-start__orb::after {
                width: 228px;
                height: 228px;
            }

            .hero-motif-ritual-start__copy {
                grid-area: copy;
                align-self: end;
                gap: 8px;
                text-align: left;
            }

            .hero-motif-ritual-start__copy strong {
                font-size: clamp(28px, 2.3vw, 38px);
                line-height: 1.04;
                text-wrap: balance;
            }

            .hero-motif-ritual-start__copy span {
                max-width: 44ch;
                font-size: 15px;
                line-height: 1.6;
                text-wrap: pretty;
            }

            .hero-motif-ritual-start__status {
                grid-area: status;
                justify-self: start;
                max-width: min(100%, 500px);
            }

            .hero-motif-ritual-start__status.is-silent {
                max-width: min(100%, 500px);
            }

            .hero-motif-ritual-start__benefits {
                grid-area: benefits;
                justify-content: flex-start;
                align-self: start;
                gap: 10px;
            }

            .hero-motif-ritual-start__tap {
                grid-area: tap;
                align-self: start;
                margin: 0;
                max-width: 220px;
                text-align: center;
            }

            .hero-motif-countdown,
            .hero-motif-reward-summary,
            .hero-motif-reward-showcase,
            .hero-motif-reward-draw,
            .hero-motif-reward,
            .hero-motif-profile-card {
                width: 100%;
                max-width: none;
            }

            .hero-motif-countdown {
                padding: 18px 24px;
                border-radius: 20px;
            }

            .hero-motif-countdown__kicker {
                font-size: 13px;
                letter-spacing: 0.12em;
            }

            .hero-motif-countdown strong {
                font-size: 34px;
            }

            .hero-motif-countdown__sub {
                font-size: 12px;
            }

            .hero-motif-reward-summary,
            .hero-motif-reward,
            .hero-motif-profile-card {
                padding: 18px 20px;
                border-radius: 20px;
            }

            .hero-motif-reward-summary {
                grid-template-columns: 54px minmax(0, 1fr);
                gap: 14px;
                align-items: center;
            }

            .hero-motif-reward-summary__icon {
                width: 54px;
                height: 54px;
                font-size: 24px;
            }

            .hero-motif-reward-summary__copy {
                text-align: left;
            }

            .hero-motif-reward-summary__copy strong {
                font-size: 20px;
                line-height: 1.16;
            }

            .hero-motif-reward-summary__copy span {
                margin-top: 6px;
                font-size: 15px;
                line-height: 1.5;
            }

            .hero-motif-profile-card {
                gap: 12px;
            }

            .hero-motif-profile-card__copy {
                justify-items: center;
                text-align: center;
            }

            .hero-motif-profile-card__copy strong {
                max-width: 32ch;
                font-size: 18px;
            }

            .hero-motif-profile-card[data-hero-profile-form="ritual-name"] .hero-motif-profile-card__copy strong {
                font-size: 20px;
            }

            .hero-motif-profile-card__copy span {
                max-width: 52ch;
                font-size: 14px;
            }

            .hero-motif-profile-card__fields input {
                min-height: 48px;
                font-size: 15px;
            }

            .hero-motif-profile-card__submit {
                min-height: 46px;
                padding: 0 24px;
                font-size: 14px;
            }

            .hero-motif-profile-card__status {
                font-size: 13px;
            }

            .hero-motif-actions {
                width: 100%;
                margin-top: 2px;
                gap: 14px;
                align-items: center;
            }

            .hero-motif-cta {
                flex: 1 1 auto;
                min-height: 52px;
                padding: 0 24px;
                font-size: 17px;
                letter-spacing: 0.01em;
            }

            .hero-motif-nav {
                gap: 8px;
                flex: 0 0 auto;
            }

            .hero-motif-nav__btn {
                min-width: 44px;
                min-height: 44px;
                font-size: 18px;
            }

            .hero-motif-hint {
                max-width: 56ch;
                font-size: 14px;
            }

            .hero-trust-signals {
                grid-column: 1;
                justify-content: center;
                margin-top: 0;
            }

            .hero-actions {
                grid-column: 1;
                justify-content: center;
                gap: 12px;
                flex-wrap: wrap;
            }

            .hero-cta {
                min-height: 46px;
                padding: 0 20px;
            }

            .hero-cta--primary,
            .hero-cta--secondary {
                width: fit-content;
            }

            .home-portal-stack {
                gap: 24px;
            }

            .home-daily-signal__mini {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .discovery-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .speech-bubble {
                width: min(980px, calc(100% - 72px));
                margin-bottom: 18px;
                font-size: 14px;
            }

            .cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 24px;
                margin-bottom: 24px;
            }

            .choice-card { min-height: 0; }
            .card-image { min-height: 320px; }
            .card-body { padding: 24px 24px 26px; }
            .card-body h2 { font-size: clamp(28px, 3vw, 36px); }
            .card-body p { font-size: 16px; }

            .trust {
                max-width: 1120px;
                padding: 28px 24px 24px;
            }

            .trust-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
            }

            .trust-list li {
                min-height: 0;
            }
        }

        @media (min-width: 1280px) {
            .shell { width: min(1320px, calc(100% - 72px)); }
            .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .card-image { min-height: 290px; }
            .hero h1 {
                max-width: 23ch;
                font-size: clamp(40px, 3.5vw, 50px);
            }
        }

@keyframes wrCookieSlideUp {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      @media (max-width: 600px) {
        #wrCookieBanner > .wr-cookie-banner__inner { flex-direction: column !important; text-align: center !important; }
        #wrCookieBanner > .wr-cookie-banner__inner > .wr-cookie-banner__actions { justify-content: center !important; width: 100% !important; }
        #wrCookieBanner > .wr-cookie-banner__inner > .wr-cookie-banner__actions button:first-child { flex: 1 !important; }
      }
