﻿:root {
            --gold-primary: #d4af37;
            --gold-light: #f9e29c;
            --gold-dark: #8e6d13;
            --gold-gradient: linear-gradient(135deg, #a67c00 0%, #d4af37 50%, #f9e29c 100%);
            --jade-luxe: #30d3a4;
            --jade-soft: rgba(48, 211, 164, 0.12);
            --amber-shadow: rgba(212, 175, 55, 0.08);
            --emerald-soft: rgba(48, 211, 164, 0.1);
            --bg-dark: #050505;
            --card-bg: rgba(18, 18, 18, 0.85);
            --glass-border: rgba(212, 175, 55, 0.25);
            --hate-color: #ff6b6b;
            --energy-color: #4CAF50;
            --social-color: #2196F3;
            --ink-muted: #aaa;
            --veil: rgba(0, 0, 0, 0.38);
            --line-soft: rgba(255, 255, 255, 0.1);
            --panel-deep: rgba(7, 6, 3, 0.72);
       }

        html { 
            background-color: #000000; 
            overscroll-behavior: none; 
        }

        body {
            margin: 0; font-family: 'Montserrat', sans-serif;
            background:
                linear-gradient(145deg, rgba(212, 175, 55, 0.075) 0%, transparent 28%),
                radial-gradient(circle at 50% 0%, #1f1704 0%, #050505 58%, #000000 100%);
            color: #ffffff; -webkit-font-smoothing: antialiased; overflow-x: hidden; min-height: 100vh;
            overscroll-behavior: none;
        }

        body::before {
            content: '';
            position: fixed;
            inset: -20%;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 30% 18%, rgba(212, 175, 55, 0.13), transparent 22%),
                radial-gradient(circle at 72% 10%, rgba(48, 211, 164, 0.06), transparent 24%),
                radial-gradient(circle at 48% 80%, rgba(48, 211, 164, 0.05), transparent 28%);
            filter: blur(18px);
            opacity: 0.75;
            animation: auraDrift 18s ease-in-out infinite alternate;
        }

        #stars { position: fixed; top: 0; left: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }

        .home-return {
            position: fixed;
            top: 18px;
            left: 18px;
            z-index: 80;
            min-height: 40px;
            padding: 0 14px;
            border: 1px solid rgba(249, 226, 156, 0.24);
            border-radius: 999px;
            background: rgba(5, 5, 5, 0.72);
            color: var(--gold-light);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 12px 28px rgba(0,0,0,0.35), 0 0 18px rgba(212,175,55,0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
        }
        .home-return:hover {
            transform: translateY(-2px);
            border-color: rgba(249, 226, 156, 0.48);
            color: #fff4c8;
            background: rgba(12, 10, 4, 0.84);
        }
        .home-return span {
            font-size: 14px;
            line-height: 1;
        }

        .container {
            position: relative; z-index: 1; width: 100%; max-width: 600px; margin: 0 auto;
            min-height: 100vh; display: grid; grid-template-rows: 1fr auto 1fr; padding: 20px; box-sizing: border-box;
            align-items: center; overflow-x: hidden;
        }

        .container::before, .container::after { content: ''; }

        .page, .result-block, details {
            max-width: 100%;
            box-sizing: border-box;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        
        #resultOutput img, #resultOutput canvas {
            max-width: 100%;
            height: auto;
        }

        .page {
            grid-row: 2; width: 100%; background: linear-gradient(160deg, rgba(18, 18, 18, 0.92), rgba(9, 7, 18, 0.88)); padding: 45px 30px;
            border: 1px solid var(--glass-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.64), 0 0 60px rgba(212, 175, 55, 0.06), inset 0 1px 0 rgba(255,255,255,0.05); 
            border-radius: 12px; box-sizing: border-box; min-width: 0;
            transform-origin: center 58%;
            will-change: opacity, transform, filter;
            position: relative;
        }

        .page::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            background: linear-gradient(135deg, rgba(249,226,156,0.08), transparent 28%, rgba(48,211,164,0.045) 100%);
            opacity: 0.78;
            mix-blend-mode: screen;
        }

        .page > * {
            position: relative;
            z-index: 1;
        }

        .page.page-enter {
            animation: pageEnter 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .page.page-exit {
            animation: pageExit 240ms cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
            pointer-events: none;
        }

        .page-animated {
            background: linear-gradient(-45deg, rgba(30, 25, 0, 0.86), rgba(8, 10, 9, 0.96), rgba(13, 29, 23, 0.62), rgba(40, 30, 0, 0.86));
            background-size: 400% 400%;
            animation: gradientBG 12s ease infinite;
        }

        .page-animated.page-enter {
            animation: gradientBG 12s ease infinite, pageEnter 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .page-animated.page-exit {
            animation: gradientBG 12s ease infinite, pageExit 240ms cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes pageEnter {
            0% { opacity: 0; transform: translateY(18px) scale(0.985); filter: blur(7px); }
            58% { opacity: 1; filter: blur(0); }
            100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
        }
        @keyframes pageExit {
            0% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
            100% { opacity: 0; transform: translateY(-10px) scale(0.985); filter: blur(5px); }
        }
        @keyframes auraDrift {
            0% { transform: translate3d(-1.5%, -1%, 0) rotate(0deg) scale(1); }
            100% { transform: translate3d(1.5%, 1%, 0) rotate(4deg) scale(1.04); }
        }

        .step-enter {
            animation: stepEnter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .step-exit {
            animation: stepExit 180ms ease both;
            pointer-events: none;
        }

        @keyframes stepEnter {
            from { opacity: 0; transform: translateX(12px); filter: blur(4px); }
            to { opacity: 1; transform: translateX(0); filter: blur(0); }
        }

        @keyframes stepExit {
            from { opacity: 1; transform: translateX(0); filter: blur(0); }
            to { opacity: 0; transform: translateX(-10px); filter: blur(4px); }
        }

        h1 {
            font-family: 'Cinzel', serif; font-size: 24px; letter-spacing: 3px; text-transform: uppercase;
            background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            margin-top: 0; margin-bottom: 20px; line-height: 1.3; text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
        }

        p { font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.6; color: #dcdcdc; margin-bottom: 25px; }
        ul { padding-left: 20px; }

        .question-box { text-align: left; margin-bottom: 20px; }
        .question-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--gold-primary); margin-bottom: 8px; display: block; font-weight: 600; }

        select, .custom-input {
            width: 100%; padding: 15px; background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.2); color: #fff; font-size: 16px;
            font-family: 'Montserrat', sans-serif; border-radius: 6px; box-sizing: border-box;
            outline: none; transition: 0.3s;
        }

        select {
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d4af37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 12px auto;
            appearance: none; -webkit-appearance: none; cursor: pointer;
        }

        select:focus, .custom-input:focus { border-color: var(--gold-primary); background-color: rgba(255, 255, 255, 0.08); box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
        .btn-gold:focus-visible, select:focus-visible, .custom-input:focus-visible, summary:focus-visible, .admin-link:focus-visible, .payment-method:focus-visible, .custom-select-trigger:focus-visible {
            outline: 2px solid var(--gold-light);
            outline-offset: 3px;
        }
        select option { background: #1a1a1a; color: #fff; }

        .native-select-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .custom-select-wrap {
            position: relative;
            z-index: 4;
        }

        .custom-select-wrap.open {
            z-index: 20;
        }

        .custom-select-trigger {
            width: 100%;
            min-height: 54px;
            padding: 15px 46px 15px 15px;
            color: #fff;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 6px;
            box-sizing: border-box;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            text-align: left;
            position: relative;
            transition: border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
        }

        .custom-select-trigger:hover,
        .custom-select-wrap.open .custom-select-trigger {
            border-color: var(--gold-primary);
            background: rgba(255, 255, 255, 0.075);
            box-shadow: 0 0 18px rgba(212, 175, 55, 0.1);
        }

        .custom-select-arrow {
            position: absolute;
            right: 17px;
            top: 50%;
            width: 9px;
            height: 9px;
            border-right: 2px solid var(--gold-primary);
            border-bottom: 2px solid var(--gold-primary);
            transform: translateY(-65%) rotate(45deg);
            transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .custom-select-wrap.open .custom-select-arrow {
            transform: translateY(-35%) rotate(225deg);
        }

        .custom-options {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 8px);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-8px) scale(0.985);
            transform-origin: top center;
            background: rgba(8, 8, 8, 0.96);
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 8px;
            box-shadow: 0 18px 36px rgba(0,0,0,0.55), 0 0 26px rgba(212,175,55,0.08);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transition: max-height 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease, transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .custom-select-wrap.open .custom-options {
            max-height: 280px;
            opacity: 1;
            transform: translateY(0) scale(1);
            overflow-y: auto;
        }

        .custom-option {
            width: 100%;
            padding: 13px 15px;
            border: 0;
            color: #ddd;
            background: transparent;
            cursor: pointer;
            display: block;
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            transition: color 0.2s ease, background 0.2s ease, padding-left 0.22s ease;
        }

        .custom-option:hover,
        .custom-option.selected {
            color: var(--gold-light);
            background: rgba(212, 175, 55, 0.08);
            padding-left: 20px;
        }

        .custom-option + .custom-option {
            border-top: 1px solid rgba(255,255,255,0.055);
        }

        .btn-gold {
            background: rgba(212, 175, 55, 0.05); border: 1px solid var(--gold-primary); color: var(--gold-primary);
            padding: 16px 10px; font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; cursor: pointer; width: 100%;
            margin-top: 10px; border-radius: 6px; transition: all 0.3s ease; position: relative;
            display: flex; align-items: center; justify-content: center; gap: 10px; overflow: hidden;
        }
        .btn-gold::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(249, 226, 156, 0.2) 48%, transparent 58%, transparent 100%);
            transform: translateX(-110%);
            transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .btn-gold:hover::after { transform: translateX(110%); }
        .btn-gold:active { transform: scale(0.98); background: var(--gold-primary); color: #000; }
        .btn-gold:disabled { border-color: #555; color: #555; cursor: not-allowed; background: transparent; }
        .btn-gold:hover:not(:disabled) { border-color: var(--gold-light); color: var(--gold-light); box-shadow: inset 0 0 0 1px rgba(249, 226, 156, 0.08), 0 0 24px rgba(212, 175, 55, 0.08); }
        .btn-muted { border-color: #555; color: #aaa; background: transparent; }
        .btn-light { border-color: var(--gold-light); color: var(--gold-light); }
        .btn-filled, .btn-pay { background: var(--gold-primary); color: #000; }
        .btn-filled:hover:not(:disabled), .btn-pay:hover:not(:disabled) { color: #000; background: var(--gold-light); }
        .btn-pay { font-size: 15px; padding: 18px; }
        .btn-ghost { border-color: rgba(255,255,255,0.18); color: #999; background: transparent; }
        .btn-small { margin-top: 25px; font-size: 11px; }
        .btn-top-gap { margin-top: 30px; }
        .btn-spaced { margin-top: 15px; }

        .range-slider {
            -webkit-appearance: none; width: 100%; height: 4px;
            background: rgba(212, 175, 55, 0.3); border-radius: 5px; outline: none;
            margin: 15px 0; transition: 0.3s;
        }
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none;
            width: 22px; height: 22px; border-radius: 50%;
            background: var(--gold-primary); cursor: pointer;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }

        #photoInput { margin-bottom: 20px; font-size: 12px; color: #888; width: 100%; padding: 15px; border: 1px dashed var(--glass-border); border-radius: 6px; box-sizing: border-box; cursor: pointer; background: rgba(255,255,255,0.02); }
        .scanner-container { position: relative; width: 100%; max-width: 250px; aspect-ratio: 1; margin: 20px auto; border: 2px solid rgba(212, 175, 55, 0.1); border-radius: 12px; overflow: hidden; display: none; box-shadow: 0 0 30px rgba(212, 175, 55, 0.05); }
        .scanner-container::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(249,226,156,0.1) 50%, transparent 100%);
            opacity: 0;
            animation: scannerBreath 2.8s ease-in-out infinite;
            pointer-events: none;
        }
        #previewImg { width: 100%; height: 100%; object-fit: cover; filter: sepia(40%) contrast(1.1); }
        .scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold-primary); box-shadow: 0 0 15px var(--gold-primary), 0 0 30px var(--gold-primary); z-index: 10; animation: scanMove 2s infinite linear; display: none; }
        @keyframes scanMove { 0% { top: 0%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
        @keyframes scannerBreath { 0%, 100% { opacity: 0.08; transform: scale(1); } 50% { opacity: 0.22; transform: scale(1.02); } }

        .status-msg { font-family: 'Cinzel', serif; font-size: 11px; color: var(--gold-primary); margin: 15px 0; letter-spacing: 1px; min-height: 15px; text-align: center; text-shadow: 0 0 10px rgba(212,175,55,0.3); }

        .premium-offer { margin-top: 20px; padding: 20px; background: linear-gradient(135deg, rgba(255,255,255,0.035), rgba(0,0,0,0.16)); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; text-align: left; position: relative; overflow: hidden; }
        .premium-offer::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--gold-gradient); opacity: 0.7; }
        .premium-offer-compatibility { border-color: rgba(212, 175, 55, 0.5); }
        .premium-offer-full { border-color: var(--gold-primary); background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0,0,0,0.2)); }
        .premium-offer:hover { border-color: rgba(212, 175, 55, 0.38); transform: translateY(-3px); transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease; box-shadow: 0 18px 40px rgba(0,0,0,0.28), 0 0 28px rgba(212,175,55,0.06); }
        .price-tag { font-family: 'Cinzel', serif; color: var(--gold-primary); font-weight: 700; font-size: 22px; display: block; margin-bottom: 5px; }
        .offer-title { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--gold-primary); }
        .offer-title-light { color: #fff; }
        .offer-title-gold { color: var(--gold-light); }
        .offer-copy { font-size: 13px; margin: 10px 0; }
        .offer-list { margin: 12px 0 18px; padding-left: 18px; color: #d7d0bd; font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 1.55; }
        .offer-list li { margin-bottom: 7px; }
        .offer-badge { float: right; border: 1px solid rgba(249, 226, 156, 0.25); color: var(--gold-light); border-radius: 999px; padding: 5px 9px; font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 0.7px; text-transform: uppercase; background: rgba(212, 175, 55, 0.06); }
        
        .hidden { display: none !important; }

        .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 1000; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
        .modal-content { background: var(--bg-dark); padding: 30px; border-radius: 12px; border: 1px solid var(--gold-primary); width: 90%; max-width: 400px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
        .modal-content input { width: 100%; }
        .modal-content textarea { width: 100%; resize: vertical; min-height: 140px; }
        .modal-title { font-family: 'Cinzel', serif; font-size: 18px; color: var(--gold-primary); margin-top: 0; text-transform: uppercase; letter-spacing: 1px; }
        .admin-input { margin-bottom: 10px; }
        .admin-input-last { margin-bottom: 20px; }
        .form-error { color: var(--hate-color); font-size: 12px; margin-bottom: 10px; }
        .feedback-modal-content { max-width: 520px; text-align: left; }
        .feedback-modal-copy { color: var(--ink-muted); font-size: 13px; line-height: 1.6; margin: -4px 0 14px; }
        .feedback-textarea { margin-bottom: 10px; line-height: 1.55; }

        .theme-water { border-color: rgba(76, 175, 80, 0.4) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 40px rgba(76, 175, 80, 0.1) !important; }
        .theme-air { border-color: rgba(33, 150, 243, 0.4) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 40px rgba(33, 150, 243, 0.1) !important; }
        .theme-earth { border-color: rgba(158, 158, 158, 0.4) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 40px rgba(158, 158, 158, 0.1) !important; }
        .theme-fire { border-color: rgba(211, 47, 47, 0.4) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 40px rgba(211, 47, 47, 0.1) !important; }

        .result-header { margin-bottom: 20px; border-bottom: 1px dashed var(--glass-border); padding-bottom: 15px; }
        .result-subtitle { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-light); font-size: 15px; margin-top: -10px; margin-bottom: 10px; }
        
        .result-block { background: rgba(255, 255, 255, 0.03); border-left: 3px solid var(--gold-primary); padding: 15px 20px; margin-bottom: 15px; text-align: left; border-radius: 0 6px 6px 0; }
        .result-block h3 { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--gold-primary); margin-top: 0; margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
        .result-block p { font-size: 14px; margin: 0; color: #e0e0e0; line-height: 1.6; }
        .result-block.hate-block { border-left-color: var(--hate-color); background: rgba(255, 107, 107, 0.04); }
        .result-block.hate-block h3 { color: var(--hate-color); }
        .love-language-visual {
            --ll-accent: var(--gold-primary);
            --ll-glow: rgba(212, 175, 55, 0.14);
            display: grid;
            grid-template-columns: minmax(136px, 190px) minmax(0, 1fr);
            align-items: center;
            gap: 18px;
            overflow: hidden;
            position: relative;
            border-left-color: var(--ll-accent);
            background:
                linear-gradient(145deg, var(--ll-glow), rgba(255,255,255,0.026)),
                rgba(255, 255, 255, 0.03);
        }
        .love-language-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(90deg, rgba(255,255,255,0.055), transparent 46%);
            opacity: 0.7;
        }
        .love-language-visual--service { --ll-accent: var(--jade-luxe); --ll-glow: rgba(48, 211, 164, 0.14); }
        .love-language-visual--touch { --ll-accent: #ef9a9a; --ll-glow: rgba(239, 154, 154, 0.13); }
        .love-language-visual--gifts { --ll-accent: var(--gold-light); --ll-glow: rgba(249, 226, 156, 0.13); }
        .love-language-visual--words { --ll-accent: var(--social-color); --ll-glow: rgba(33, 150, 243, 0.13); }
        .love-language-visual--time { --ll-accent: #b7d7c5; --ll-glow: rgba(183, 215, 197, 0.12); }
        .love-language-art,
        .love-language-copy {
            position: relative;
            z-index: 1;
        }
        .love-language-art {
            min-height: 126px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            background:
                radial-gradient(circle at 50% 38%, var(--ll-glow), transparent 62%),
                rgba(0,0,0,0.22);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 24px rgba(0,0,0,0.28);
        }
        .love-language-art svg {
            width: 100%;
            height: auto;
            max-height: 142px;
            display: block;
        }
        .love-language-copy span {
            display: block;
            margin-bottom: 7px;
            color: rgba(255,255,255,0.58);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }
        .love-language-copy h3 {
            margin-bottom: 8px;
            color: var(--ll-accent);
        }
        .love-language-copy p {
            color: #e8e1d4;
            font-size: 13px;
        }
        .ll-soft-panel {
            fill: rgba(0,0,0,0.16);
            stroke: rgba(255,255,255,0.06);
            stroke-width: 1;
        }
        .ll-line,
        .ll-card {
            fill: none;
            stroke: rgba(255,255,255,0.76);
            stroke-width: 4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .ll-card {
            fill: rgba(0,0,0,0.22);
            stroke: rgba(249, 226, 156, 0.74);
        }
        .ll-accent-line {
            stroke: var(--ll-accent);
        }
        .ll-accent-fill {
            fill: var(--ll-accent);
            opacity: 0.9;
        }
        .ll-text {
            fill: var(--ll-accent);
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 1px;
            dominant-baseline: middle;
        }
        .gift-download-block {
            border-left-color: var(--jade-luxe);
            background:
                linear-gradient(145deg, rgba(48, 211, 164, 0.08), rgba(212, 175, 55, 0.035)),
                rgba(255, 255, 255, 0.03);
        }
        .gift-download-block h3 { color: var(--jade-luxe); }
        .gift-download-link {
            width: 100%;
            min-height: 46px;
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-sizing: border-box;
            border: 1px solid rgba(48, 211, 164, 0.42);
            border-radius: 8px;
            background: rgba(48, 211, 164, 0.1);
            color: #e9fff8;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1px;
            line-height: 1.2;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
        }
        .gift-download-link:hover,
        .gift-download-link:focus-visible {
            transform: translateY(-1px);
            border-color: rgba(249, 226, 156, 0.55);
            background: rgba(48, 211, 164, 0.17);
            color: #fff8d9;
            outline: none;
        }
        .gift-download-icon {
            flex: 0 0 24px;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(249, 226, 156, 0.28);
            border-radius: 50%;
            color: var(--gold-light);
            font-size: 16px;
            line-height: 1;
        }

        details { background: rgba(255, 255, 255, 0.03); padding: 15px 20px; margin-bottom: 15px; cursor: pointer; transition: background 0.3s ease; border-radius: 6px; }
        details.benefits-block { border-left: 3px solid #888; border-radius: 0 6px 6px 0; }
        .intro-benefits { margin-top: 10px; margin-bottom: 30px; background: rgba(0,0,0,0.3); border-color: var(--gold-primary); }
        .intro-summary { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 15px; }
        details.premium-details { border-top: 1px solid rgba(212,175,55,0.2); background: transparent; padding: 15px 0 0 0; margin-top: 15px; margin-bottom: 10px; border-radius: 0; }
        summary { font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold-primary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
        summary::-webkit-details-marker { display: none; }
        summary::after { content: '+'; font-size: 20px; color: var(--gold-light); font-family: 'Montserrat', sans-serif; transition: transform 0.3s ease; }
        details[open] summary::after { content: '−'; }
        
        .details-content { margin-top: 15px; animation: fadeIn 0.4s ease-in-out; text-align: left; }
        .details-lead { margin-bottom: 15px; font-size: 14px; font-family: 'Playfair Display', serif; color: #ddd; }
        .details-content ol { margin: 0; padding-left: 20px; font-family: 'Playfair Display', serif; font-size: 14px; color: #ccc; line-height: 1.6; }
        .details-content ol li { margin-bottom: 15px; }
        .details-content ol li strong { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-size: 14px; display: block; margin-bottom: 4px; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

        .premium-text-block { margin-bottom: 15px; font-size: 14px; color: #ddd; line-height: 1.6; }
        .premium-text-block strong { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-size: 14px; display: block; margin-bottom: 5px; }
        .separator-line { border: 0; border-top: 1px dashed rgba(255,255,255,0.1); margin: 15px 0; }

        .anim-element { opacity: 0; transform: translateY(15px); animation: slideUpFade 0.5s forwards; }
        @keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }
        .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; } .delay-5 { animation-delay: 0.5s; } .delay-6 { animation-delay: 0.6s; }

        .premium-icon-wrapper { font-size: 40px; margin-bottom: 10px; text-shadow: 0 0 20px rgba(255,255,255,0.2); text-align: center; }
        .premium-title { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: var(--gold-primary); margin-bottom: 25px; text-align: center; letter-spacing: 2px; line-height: 1.4; text-shadow: 0 2px 10px rgba(212,175,55,0.3); }

        .info-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; padding: 20px; margin-bottom: 15px; text-align: left; position: relative; overflow: hidden; }
        .info-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold-gradient); }
        .info-card.shadow-card::before { background: linear-gradient(135deg, #555, #999); }
        .info-card.energy-card::before { background: linear-gradient(135deg, #4CAF50, #8BC34A); } 

        .card-label { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 700; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
        .card-text { font-family: 'Playfair Display', serif; font-size: 14px; color: #ddd; line-height: 1.6; margin: 0; }
        .card-text strong { font-family: 'Montserrat', sans-serif; color: #fff; font-weight: 700; }
        .vip-accordion-card { padding: 0; }
        .vip-accordion-summary { min-height: 62px; padding: 18px 20px 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; }
        .vip-accordion-summary::-webkit-details-marker { display: none; }
        .vip-accordion-summary::after { content: none; display: none; }
        .vip-accordion-summary .card-label { margin-bottom: 0; min-width: 0; line-height: 1.35; }
        .vip-accordion-plus { flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid rgba(249, 226, 156, 0.28); border-radius: 50%; position: relative; background: rgba(212, 175, 55, 0.05); }
        .vip-accordion-plus::before,
        .vip-accordion-plus::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; border-radius: 2px; background: var(--gold-light); transform: translate(-50%, -50%); }
        .vip-accordion-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.2s ease; }
        .vip-accordion-card[open] .vip-accordion-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
        .vip-accordion-card > .card-text { padding: 0 20px 20px 24px; }
        .archetype-essence-card .card-text p { margin: 0 0 12px; }
        .archetype-essence-card h4 { margin: 18px 0 10px; color: var(--gold-light); font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 0.7px; text-transform: uppercase; }
        .archetype-essence-card h4:first-child { margin-top: 4px; }
        .archetype-detail-list, .archetype-imbalance-list { margin: 0 0 12px; padding-left: 18px; color: #d8d8d8; }
        .archetype-detail-list li, .archetype-imbalance-list li { margin-bottom: 9px; line-height: 1.55; }
        .archetype-detail-list strong { display: block; color: #fff; margin-bottom: 4px; }
        .archetype-detail-list span { display: block; color: #cfcfcf; }
        .energy-source-card .card-text p { margin: 0 0 13px; }
        .energy-source-card .card-text p:last-child { margin-bottom: 0; }
        .shadow-side-card .card-text p { margin: 0 0 13px; }
        .shadow-side-card .card-text p:last-child { margin-bottom: 0; }
        .soul-essence-card .card-text p { margin: 0 0 13px; }
        .soul-essence-card .card-text p:last-child { margin-bottom: 0; }
        .soul-essence-card ul { margin: 0 0 14px; padding-left: 18px; color: #ddd; }
        .soul-essence-card li { margin-bottom: 7px; line-height: 1.55; }
        .vip-secondary-card .card-text p { margin: 0 0 13px; }
        .vip-secondary-card .card-text p:last-child { margin-bottom: 0; }
        .vip-secondary-section { margin-top: 22px; }
        .vip-secondary-section:first-child { margin-top: 0; }
        .vip-secondary-section h4 { margin: 0 0 12px; color: var(--gold-light); font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 0.8px; text-transform: uppercase; }
        .vip-secondary-card ul { margin: 0 0 14px; padding-left: 18px; color: #ddd; }
        .vip-secondary-card li { margin-bottom: 7px; line-height: 1.55; }
        .wellbeing-suite {
            margin-top: 28px;
            padding-top: 22px;
            border-top: 1px solid rgba(249, 226, 156, 0.16);
        }
        .wellbeing-suite h2 {
            margin: 4px 0 18px;
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 18px;
            line-height: 1.35;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-align: left;
        }
        .wellbeing-card {
            border-color: rgba(249, 226, 156, 0.14);
            background:
                linear-gradient(145deg, rgba(249,226,156,0.045), rgba(48,211,164,0.025)),
                rgba(255,255,255,0.025);
        }
        .wellbeing-card::before {
            background: linear-gradient(180deg, var(--gold-primary), rgba(48,211,164,0.8));
        }
        .wellbeing-card .card-text p {
            margin: 0 0 13px;
        }
        .wellbeing-card ul {
            margin: 0 0 14px;
            padding-left: 18px;
            color: #ddd;
        }
        .wellbeing-card li {
            margin-bottom: 7px;
            line-height: 1.55;
        }
        .wellbeing-earth::before { background: linear-gradient(180deg, #d4af37, #8e6d13); }
        .wellbeing-fire::before { background: linear-gradient(180deg, #ffb347, #d33b2f); }
        .wellbeing-air::before { background: linear-gradient(180deg, #f6a7c8, #30d3a4); }
        .wellbeing-water::before { background: linear-gradient(180deg, #7dc7ff, #7b7dff); }
        .wellbeing-integration {
            border-color: rgba(48, 211, 164, 0.2);
            background:
                linear-gradient(145deg, rgba(48,211,164,0.065), rgba(212,175,55,0.035)),
                rgba(0,0,0,0.22);
        }
        .practical-partner-card {
            border-color: rgba(48, 211, 164, 0.22);
            background:
                linear-gradient(145deg, rgba(48,211,164,0.07), rgba(212,175,55,0.035)),
                rgba(0,0,0,0.24);
        }
        .compatibility-value-card {
            border-color: rgba(48, 211, 164, 0.26);
            background:
                linear-gradient(145deg, rgba(48,211,164,0.08), rgba(212,175,55,0.05)),
                rgba(0,0,0,0.24);
        }
        .compatibility-value-card::before {
            background: linear-gradient(180deg, var(--jade-luxe), var(--gold-primary));
        }
        .vip-summary-text {
            min-width: 0;
            display: grid;
            gap: 5px;
        }
        .vip-summary-text small {
            color: #d7cfbd;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0;
            line-height: 1.35;
            text-transform: none;
        }
        .compatibility-value-copy p {
            margin: 0 0 13px;
        }
        .compatibility-value-copy ul,
        .compatibility-value-copy ol {
            margin: 0 0 14px;
            padding-left: 18px;
            color: #ddd;
        }
        .compatibility-value-copy li {
            margin-bottom: 8px;
            line-height: 1.58;
        }
        .compatibility-value-copy li strong {
            color: #fff;
        }
        .compatibility-value-lead {
            padding: 13px 0 13px 16px;
            border-left: 2px solid rgba(48, 211, 164, 0.55);
            color: #f2ead5;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.58;
        }
        .temperament-match-list {
            display: grid;
            gap: 14px;
            margin: 2px 0 16px;
        }
        .temperament-match-item {
            padding-top: 14px;
            border-top: 1px dashed rgba(249, 226, 156, 0.16);
        }
        .temperament-match-item:first-child {
            padding-top: 0;
            border-top: 0;
        }
        .temperament-match-item strong {
            display: block;
            margin-bottom: 7px;
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 13px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .temperament-match-item p:last-child {
            margin-bottom: 0;
        }
        .compatibility-value-cta {
            margin-top: 24px;
            padding-top: 18px;
            border-top: 1px solid rgba(48, 211, 164, 0.2);
        }
        .compatibility-value-action {
            width: 100%;
            margin: 8px 0 14px;
        }
        .compatibility-value-closing {
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.5;
        }
        .healthy-relationships-card {
            border-color: rgba(249, 226, 156, 0.24);
            background:
                linear-gradient(145deg, rgba(249,226,156,0.06), rgba(48,211,164,0.045)),
                rgba(0,0,0,0.25);
        }
        .healthy-relationships-card::before {
            background: linear-gradient(180deg, var(--gold-primary), var(--jade-luxe));
        }
        .healthy-relationships-copy p {
            margin: 0 0 13px;
        }
        .healthy-relationships-copy ul,
        .healthy-relationships-copy ol {
            margin: 0 0 14px;
            padding-left: 18px;
            color: #ddd;
        }
        .healthy-relationships-copy li {
            margin-bottom: 8px;
            line-height: 1.58;
        }
        .healthy-relationships-copy li strong {
            color: #fff;
        }
        .healthy-relationships-lead {
            padding: 13px 0 13px 16px;
            border-left: 2px solid rgba(249, 226, 156, 0.55);
            color: #f6ecd0;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.58;
        }
        .relationship-match-grid {
            display: grid;
            gap: 8px;
            margin: 14px 0 16px;
            font-family: 'Montserrat', sans-serif;
        }
        .relationship-match-head,
        .relationship-match-row {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 10px;
            align-items: center;
        }
        .relationship-match-head {
            color: #9f9786;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .relationship-match-row {
            min-height: 40px;
            padding: 10px 12px;
            border: 1px solid rgba(249, 226, 156, 0.14);
            border-radius: 6px;
            background: rgba(255,255,255,0.025);
            color: #e7dfcd;
            font-size: 12px;
            line-height: 1.35;
        }
        .relationship-match-row strong {
            color: var(--gold-light);
            font-size: 12px;
        }
        .healthy-relationships-closing {
            margin-top: 24px;
            padding-top: 18px;
            border-top: 1px solid rgba(249, 226, 156, 0.18);
        }
        .healthy-relationships-closing p:last-child {
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.5;
        }
        @media (max-width: 480px) {
            .relationship-match-head,
            .relationship-match-row {
                grid-template-columns: 1fr;
                gap: 4px;
            }
            .relationship-match-head {
                display: none;
            }
            .relationship-match-row span {
                color: #9f9786;
                font-size: 10px;
                font-weight: 800;
                letter-spacing: 0.8px;
                text-transform: uppercase;
            }
        }
        .bullet-point { margin-top: 15px; padding-left: 15px; border-left: 2px solid rgba(212, 175, 55, 0.3); }
        .bullet-point .card-label { font-size: 13px; margin-bottom: 8px; text-shadow: none; }

        .shadow-title { color: var(--hate-color); text-shadow: 0 0 15px rgba(255, 107, 107, 0.4); }
        .energy-title { color: var(--energy-color); text-shadow: 0 0 15px rgba(76, 175, 80, 0.4); }
        .general-shadow-guide { background: rgba(0, 0, 0, 0.3); border: 1px dashed rgba(255, 255, 255, 0.15); padding: 20px; text-align: center; margin-top: 25px; border-radius: 8px; }

        .checkout-summary { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 8px; border-left: 3px solid var(--gold-primary); margin-bottom: 25px; text-align: left; }
        .checkout-summary h3 { margin: 0 0 5px 0; color: var(--gold-light); font-size: 14px; font-family: 'Cinzel', serif; letter-spacing: 2px; text-transform: uppercase; }
        .checkout-summary p { margin: 0; color: #fff; font-size: 24px; font-weight: bold; font-family: 'Montserrat', sans-serif; }
        .paysera-panel,
        .purchase-info-panel,
        .legal-note {
            padding: 18px;
            border: 1px solid rgba(48, 211, 164, 0.18);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(48, 211, 164, 0.06), rgba(212,175,55,0.035)),
                rgba(0,0,0,0.22);
            text-align: left;
        }
        .paysera-panel {
            margin-bottom: 18px;
        }
        .paysera-mark {
            display: inline-flex;
            min-height: 28px;
            align-items: center;
            padding: 0 10px;
            border: 1px solid rgba(249, 226, 156, 0.2);
            border-radius: 999px;
            color: var(--gold-light);
            background: rgba(0,0,0,0.24);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.1px;
            text-transform: uppercase;
        }
        .paysera-panel h2 {
            margin: 14px 0 10px;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            line-height: 1.4;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .paysera-panel p,
        .purchase-info-panel p,
        .legal-note p {
            margin: 0;
            color: #d7cfbd;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.62;
        }
        .paysera-method-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-top: 14px;
        }
        .paysera-method-list span {
            min-height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
            border: 1px solid rgba(249, 226, 156, 0.13);
            border-radius: 6px;
            background: rgba(255,255,255,0.03);
            color: #d8cfae;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            text-align: center;
        }
        .checkout-consent {
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 10px;
            align-items: start;
            margin-top: 12px;
            padding: 14px;
            border: 1px dashed rgba(249, 226, 156, 0.22);
            border-radius: 8px;
            background: rgba(0,0,0,0.2);
            color: #d6ccb8;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.55;
            text-align: left;
        }
        .checkout-consent input {
            width: 18px;
            height: 18px;
            accent-color: var(--gold-primary);
            margin: 0;
        }
        .checkout-legal-links,
        .policy-link-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 14px 0 18px;
        }
        .checkout-legal-links button,
        .policy-link-row button {
            min-height: 34px;
            padding: 0 11px;
            border: 1px solid rgba(249, 226, 156, 0.16);
            border-radius: 6px;
            background: rgba(0,0,0,0.18);
            color: #d8cfae;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .checkout-legal-links button:hover,
        .checkout-legal-links button:focus-visible,
        .policy-link-row button:hover,
        .policy-link-row button:focus-visible {
            color: var(--gold-light);
            border-color: rgba(249, 226, 156, 0.44);
        }
        .purchase-info-panel {
            margin: 20px 0 0;
        }
        .purchase-info-panel strong,
        .legal-note strong {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.45;
        }
        .purchase-info-panel .policy-link-row,
        .policy-link-row-bottom {
            margin-bottom: 18px;
        }
        .legal-page .info-stack {
            margin-bottom: 18px;
        }
        .legal-note {
            margin: 0 0 20px;
            border-color: rgba(249, 226, 156, 0.18);
            background:
                linear-gradient(145deg, rgba(212,175,55,0.055), rgba(0,0,0,0.18)),
                rgba(0,0,0,0.18);
        }
        
        .payment-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .payment-method { min-height: 52px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); padding: 15px 10px; border-radius: 6px; text-align: center; cursor: pointer; transition: 0.3s; color: #aaa; font-size: 12px; font-weight: 600; text-transform: uppercase; font-family: 'Montserrat', sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .payment-method.active { border-color: var(--gold-primary); background: rgba(212, 175, 55, 0.05); color: var(--gold-primary); box-shadow: 0 0 15px rgba(212,175,55,0.1); }
        .payment-method:hover:not(.active) { border-color: rgba(255,255,255,0.3); color: #fff; }
        .secure-badge { text-align: center; color: #777; font-size: 11px; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Montserrat', sans-serif; }

        .compatibility-visual {
            --compat-color: var(--gold-primary);
            --compat-soft: rgba(212, 175, 55, 0.16);
            position: relative;
            padding: 22px 16px 20px;
            margin: 0 auto 26px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            background:
                radial-gradient(circle at 50% 35%, var(--compat-soft), transparent 54%),
                rgba(255,255,255,0.025);
            overflow: hidden;
            text-align: center;
        }
        .compatibility-visual::before,
        .compatibility-visual::after {
            content: '';
            position: absolute;
            inset: 18px;
            border: 1px solid var(--compat-soft);
            border-radius: 50%;
            opacity: 0.38;
            animation: compatRing 4.2s ease-in-out infinite;
            pointer-events: none;
        }
        .compatibility-visual::after {
            inset: 36px;
            animation-delay: 0.8s;
            animation-direction: reverse;
        }
        .compat-high {
            --compat-color: #30d36f;
            --compat-soft: rgba(48, 211, 111, 0.18);
        }
        .compat-medium {
            --compat-color: #f2c94c;
            --compat-soft: rgba(242, 201, 76, 0.2);
        }
        .compat-low {
            --compat-color: #ff5d5d;
            --compat-soft: rgba(255, 93, 93, 0.2);
        }
        .compatibility-pair {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            color: #f7efd9;
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }
        .compatibility-pair span {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 8px;
            background: rgba(0,0,0,0.2);
        }
        .compatibility-pair b {
            color: var(--compat-color);
            font-size: 18px;
            text-shadow: 0 0 16px var(--compat-soft);
        }
        .compatibility-pair i {
            color: var(--compat-color);
            font-style: normal;
            font-size: 18px;
            text-shadow: 0 0 18px var(--compat-color);
        }
        .pie-chart {
            width: 160px; height: 160px;
            border-radius: 50%;
            background: conic-gradient(var(--compat-color) var(--percentage), rgba(255,255,255,0.1) 0);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 18px;
            position: relative;
            box-shadow: 0 0 34px var(--compat-soft), inset 0 0 20px rgba(0,0,0,0.22);
            animation: compatPulse 2.8s ease-in-out infinite;
        }
        .pie-chart::after {
            content: ''; position: absolute; width: 126px; height: 126px;
            background: linear-gradient(160deg, rgba(18,18,18,0.96), rgba(7,7,7,0.92)); border-radius: 50%;
            box-shadow: inset 0 0 22px rgba(0,0,0,0.55);
        }
        .pie-value {
            position: relative; z-index: 1; font-family: 'Montserrat', sans-serif;
            font-size: 30px; font-weight: bold; color: var(--compat-color);
            text-shadow: 0 0 18px var(--compat-soft);
        }
        .compatibility-meter {
            position: relative;
            z-index: 2;
            width: min(320px, 100%);
            height: 9px;
            margin: 0 auto 12px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
        }
        .compatibility-meter span {
            display: block;
            height: 100%;
            width: var(--meter);
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(255,255,255,0.24), var(--compat-color));
            box-shadow: 0 0 18px var(--compat-soft);
            animation: meterFill 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
            transform-origin: left center;
        }
        .compatibility-score-label {
            position: relative;
            z-index: 2;
            color: var(--compat-color);
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.4px;
            text-transform: uppercase;
        }
        .compatibility-text {
            border-left-color: var(--compat-color);
        }
        .compatibility-text h3 {
            color: var(--compat-color);
        }
        .compatibility-advice {
            margin-top: 18px;
        }
        .compatibility-advice p {
            margin-bottom: 12px;
        }
        .compatibility-advice ul {
            margin: 0 0 14px;
            padding-left: 18px;
            color: #e0e0e0;
            font-size: 14px;
            line-height: 1.65;
        }
        .compatibility-advice li {
            margin-bottom: 7px;
        }
        .same-type-note {
            margin-top: 18px;
            padding: 16px;
            border: 1px solid rgba(255, 93, 93, 0.24);
            border-left: 3px solid #ff7777;
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(255,93,93,0.08), rgba(212,175,55,0.035)),
                rgba(0,0,0,0.2);
        }
        .same-type-note strong {
            display: block;
            margin-bottom: 8px;
            color: #ffb0b0;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .same-type-note p {
            margin: 0 0 12px;
        }
        .same-type-note p:last-child {
            margin-bottom: 0;
        }
        @keyframes compatPulse {
            0%, 100% { transform: scale(1); filter: saturate(1); }
            50% { transform: scale(1.035); filter: saturate(1.25); }
        }
        @keyframes compatRing {
            0%, 100% { transform: scale(0.94) rotate(0deg); opacity: 0.18; }
            50% { transform: scale(1.04) rotate(12deg); opacity: 0.5; }
        }
        @keyframes meterFill {
            from { transform: scaleX(0); opacity: 0.4; }
            to { transform: scaleX(1); opacity: 1; }
        }

        .admin-link-wrap { text-align: center; margin-top: 28px; }
        .admin-link { max-width: 680px; margin: 0 auto; color: #aaa; font-size: 12px; line-height: 1.65; letter-spacing: 0; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; font-family: 'Montserrat', sans-serif; padding: 14px 16px; }
        .preview-panel {
            margin-top: 24px;
            padding: 16px;
            border: 1px dashed rgba(249, 226, 156, 0.28);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.26);
        }
        .home-preview-tools {
            margin-top: 18px;
        }
        .preview-kicker {
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            cursor: pointer;
            list-style: none;
        }
        .preview-kicker::-webkit-details-marker {
            display: none;
        }
        .preview-kicker::after {
            content: '+';
            float: right;
            color: var(--gold-primary);
            font-size: 14px;
            line-height: 1;
        }
        .home-preview-tools[open] .preview-kicker::after {
            content: '−';
        }
        .preview-panel p {
            margin: 0 0 14px;
            color: #bfb7a2;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.5;
        }
        .preview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }
        .preview-grid button {
            min-height: 38px;
            border: 1px solid rgba(212, 175, 55, 0.24);
            border-radius: 6px;
            background: rgba(212, 175, 55, 0.06);
            color: var(--gold-primary);
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
        }
        .preview-grid button:hover {
            transform: translateY(-2px);
            border-color: var(--gold-light);
            color: var(--gold-light);
        }
        .brand-lockup {
            display: block;
            justify-content: center;
            align-items: center;
            margin: 0 0 20px;
            text-align: center;
        }
        .brand-lockup h1 {
            margin: 0;
            text-align: center;
        }
        .brand-title-premium {
            position: relative;
            display: inline-block;
            max-width: 100%;
            font-family: 'Cinzel', serif;
            font-size: 34px;
            font-weight: 600;
            font-style: normal;
            letter-spacing: 0.14em;
            line-height: 1.14;
            text-transform: uppercase;
            background: linear-gradient(110deg, #f9e29c 0%, #d4af37 42%, #fff4c8 78%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 14px 30px rgba(0,0,0,0.48), 0 0 10px rgba(212,175,55,0.1);
        }
        .brand-title-premium::after {
            content: '';
            position: absolute;
            left: 18%;
            right: 18%;
            bottom: -7px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249,226,156,0.62), transparent);
            box-shadow: 0 0 14px rgba(212,175,55,0.18);
        }
        .brand-logo-shell {
            width: 78px;
            height: 78px;
            padding: 6px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 45%, rgba(249,226,156,0.18), rgba(212,175,55,0.08) 46%, rgba(0,0,0,0.28)),
                #e7e3d8;
            border: 1px solid rgba(249, 226, 156, 0.28);
            box-shadow: 0 0 28px rgba(212,175,55,0.12), inset 0 0 0 1px rgba(0,0,0,0.08);
            animation: logoBreathe 5.4s ease-in-out infinite;
            overflow: hidden;
        }
        .brand-logo-shell img,
        .info-logo-mini img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 50%;
        }
        .trust-nav {
            display: grid;
            gap: 12px;
            margin: 24px 0 0;
        }
        .trust-nav button,
        .trust-nav-user {
            min-height: 38px;
            border: 1px solid rgba(249, 226, 156, 0.16);
            border-radius: 6px;
            background: rgba(0,0,0,0.18);
            color: #d8cfae;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
        }
        .trust-nav button:hover,
        .trust-nav button:focus-visible,
        .trust-nav-user:hover,
        .trust-nav-user:focus-visible {
            color: var(--gold-light);
            border-color: rgba(249, 226, 156, 0.42);
            transform: translateY(-2px);
        }
        .trust-nav-user {
            min-height: 72px;
            display: grid;
            grid-template-columns: 42px 1fr;
            gap: 12px;
            align-items: center;
            padding: 12px 14px;
            border-color: rgba(48, 211, 164, 0.34);
            background:
                radial-gradient(circle at 12% 20%, rgba(48,211,164,0.16), transparent 34%),
                linear-gradient(135deg, rgba(212,175,55,0.1), rgba(48,211,164,0.07)),
                rgba(0,0,0,0.32);
            color: #fff4c8;
            overflow: hidden;
            position: relative;
            text-align: left;
            animation: userZoneGlow 5.2s ease-in-out infinite;
        }
        .trust-nav-user::after {
            content: '';
            position: absolute;
            inset: -70% -35%;
            background: linear-gradient(110deg, transparent 42%, rgba(249,226,156,0.16), transparent 58%);
            transform: translateX(-72%);
            animation: userZoneSweep 6.4s ease-in-out infinite;
            pointer-events: none;
        }
        .trust-nav-user > * {
            position: relative;
            z-index: 1;
        }
        .trust-nav-icon {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(249, 226, 156, 0.26);
            border-radius: 50%;
            color: var(--gold-light);
            background: rgba(0,0,0,0.22);
            font-size: 18px;
            box-shadow: 0 0 24px rgba(48,211,164,0.12);
        }
        .trust-nav-user strong,
        .trust-nav-user small {
            display: block;
            font-family: 'Montserrat', sans-serif;
            overflow-wrap: anywhere;
        }
        .trust-nav-user strong {
            color: var(--gold-light);
            font-size: 13px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .trust-nav-user small {
            margin-top: 4px;
            color: #c9c0ad;
            font-size: 11px;
            line-height: 1.35;
            letter-spacing: 0;
            text-transform: none;
        }
        .trust-nav-groups {
            display: grid;
            grid-template-columns: 1fr 1.45fr 1fr;
            gap: 9px;
        }
        .trust-nav-group {
            padding: 10px;
            border: 1px solid rgba(249, 226, 156, 0.11);
            border-radius: 8px;
            background: rgba(0,0,0,0.18);
            box-sizing: border-box;
        }
        .trust-nav-label {
            display: block;
            margin: 0 0 8px;
            color: #9f9786;
            font-family: 'Montserrat', sans-serif;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 1.3px;
            text-transform: uppercase;
        }
        .trust-nav-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 7px;
        }
        .trust-nav-row button {
            min-height: 34px;
            padding: 0 8px;
            background: rgba(255,255,255,0.025);
        }
        @keyframes userZoneGlow {
            0%, 100% { box-shadow: 0 0 0 rgba(48,211,164,0), inset 0 1px 0 rgba(255,255,255,0.05); }
            50% { box-shadow: 0 0 28px rgba(48,211,164,0.13), inset 0 1px 0 rgba(255,255,255,0.07); }
        }
        @keyframes userZoneSweep {
            0%, 42% { opacity: 0; transform: translateX(-72%); }
            54% { opacity: 1; }
            76%, 100% { opacity: 0; transform: translateX(72%); }
        }
        @media (max-width: 380px) {
            .trust-nav-row {
                grid-template-columns: 1fr;
            }
        }
        @keyframes logoBreathe {
            0%, 100% { transform: scale(1); box-shadow: 0 0 28px rgba(212,175,55,0.12), inset 0 0 0 1px rgba(0,0,0,0.08); }
            50% { transform: scale(1.025); box-shadow: 0 0 42px rgba(212,175,55,0.22), inset 0 0 0 1px rgba(0,0,0,0.08); }
        }
        .ritual-kicker { font-family: 'Montserrat', sans-serif; font-size: 11px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; opacity: 0.82; }
        .hero-archetype-icons {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 8px;
            margin: 2px 0 22px;
        }
        .hero-archetype-icons span {
            min-height: 72px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid rgba(212, 175, 55, 0.16);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.045), rgba(0,0,0,0.18)),
                rgba(0,0,0,0.18);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
            animation: heroSymbolFloat 4.8s ease-in-out infinite;
            animation-delay: var(--delay);
            position: relative;
            overflow: hidden;
        }
        .hero-archetype-icons span::after {
            content: '';
            position: absolute;
            --shine-y: -14px;
            inset: -40% -70%;
            background: linear-gradient(110deg, transparent 38%, rgba(249,226,156,0.16), transparent 62%);
            transform: translateX(-80%) translateY(var(--shine-y));
            animation: heroSymbolShine 5.8s ease-in-out infinite;
            animation-delay: var(--delay);
        }
        .hero-archetype-icons b {
            color: var(--gold-light);
            font-size: 24px;
            line-height: 1;
            text-shadow: 0 0 18px rgba(212,175,55,0.25);
        }
        .hero-archetype-icons small {
            color: #d8cfae;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        @keyframes heroSymbolFloat {
            0%, 100% { transform: translateY(0); border-color: rgba(212, 175, 55, 0.16); }
            50% { transform: translateY(-5px); border-color: rgba(249, 226, 156, 0.34); }
        }
        @keyframes heroSymbolShine {
            0%, 52% { transform: translateX(-85%) translateY(var(--shine-y)); opacity: 0; }
            62% { opacity: 1; }
            78%, 100% { transform: translateX(85%) translateY(var(--shine-y)); opacity: 0; }
        }
        .hero-art-panel {
            position: relative;
            height: 168px;
            margin: 0 0 20px;
            border: 1px solid rgba(249, 226, 156, 0.18);
            border-radius: 10px;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 38%, rgba(249,226,156,0.16), transparent 42%),
                rgba(215,207,189,0.13);
            box-shadow: 0 18px 44px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.06);
            isolation: isolate;
        }
        .hero-art-panel::before,
        .hero-art-panel::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
        }
        .hero-art-panel::before {
            background:
                linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.26)),
                radial-gradient(circle at 16% 12%, rgba(212,175,55,0.16), transparent 34%),
                radial-gradient(circle at 86% 20%, rgba(48,211,164,0.14), transparent 36%);
        }
        .hero-art-panel::after {
            inset: auto 18px 14px 18px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249,226,156,0.74), rgba(48,211,164,0.46), transparent);
            opacity: 0.72;
            box-shadow: 0 0 18px rgba(212,175,55,0.2);
        }
        .hero-art-panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 44%;
            opacity: 0;
            filter: grayscale(1) sepia(0.12) contrast(1.08) brightness(1.04);
            transform: scale(1.04);
            animation: heroArtFade 24s ease-in-out infinite;
            animation-delay: var(--art-delay);
        }
        .hero-art-panel img:nth-child(2) {
            object-position: center 50%;
        }
        .hero-art-panel img:nth-child(3) {
            object-position: center 44%;
        }
        .hero-art-panel img:nth-child(4) {
            object-position: center 38%;
        }
        @keyframes heroArtFade {
            0% { opacity: 0.86; transform: scale(1.045); }
            7% { opacity: 0.9; }
            25% { opacity: 0.9; transform: scale(1.01); }
            33% { opacity: 0; transform: scale(1); }
            100% { opacity: 0; transform: scale(1.045); }
        }
        .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: -6px 0 22px; }
        .trust-row span { min-height: 34px; display: flex; align-items: center; justify-content: center; text-align: center; color: #d8cfae; border: 1px solid rgba(212, 175, 55, 0.16); background: rgba(0,0,0,0.18); border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 0.7px; text-transform: uppercase; }
        .home-auth-box {
            margin: 0 0 24px;
            padding: 14px;
            border: 1px solid rgba(249, 226, 156, 0.18);
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.26);
            text-align: left;
        }
        .home-auth-state {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 190px;
            gap: 14px;
            align-items: center;
        }
        .home-auth-state strong,
        .home-auth-state small {
            display: block;
            overflow-wrap: anywhere;
        }
        .home-auth-state strong {
            margin-top: 4px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.35;
        }
        .home-auth-state small {
            margin-top: 4px;
            color: #a9a08d;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.45;
        }
        .home-auth-btn {
            margin-top: 0;
            min-height: 46px;
            font-size: 10px;
            letter-spacing: 1.3px;
        }
        .home-logout {
            width: 100%;
        }
        .hero-start-btn {
            margin: 18px 0 16px;
            background: var(--gold-primary);
            color: #000;
            box-shadow: 0 14px 30px rgba(212, 175, 55, 0.14);
        }
        .hero-start-btn:hover:not(:disabled) {
            color: #000;
            background: var(--gold-light);
        }
        .home-proof {
            margin: 0 0 16px;
            padding: 14px 0 12px;
            border-top: 1px solid rgba(249, 226, 156, 0.14);
            border-bottom: 1px solid rgba(48, 211, 164, 0.12);
            text-align: left;
        }
        .home-proof-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-bottom: 12px;
        }
        .home-proof-stat {
            min-height: 74px;
            padding: 12px;
            border: 1px solid rgba(249, 226, 156, 0.14);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(212,175,55,0.055), rgba(48,211,164,0.035)),
                rgba(0,0,0,0.18);
            box-sizing: border-box;
        }
        .home-proof-stat span,
        .home-proof-stat small,
        .home-testimonial-strip span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .home-proof-stat span,
        .home-testimonial-strip span {
            color: #b8af9b;
            font-size: 9px;
            font-weight: 700;
        }
        .home-proof-stat strong {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin: 5px 0 2px;
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 25px;
            line-height: 1;
            letter-spacing: 1px;
        }
        .home-proof-stat strong small {
            color: #d8cfae;
            font-size: 11px;
            letter-spacing: 0;
            text-transform: none;
        }
        .home-proof-stat > small {
            color: #9f9786;
            font-size: 10px;
            line-height: 1.35;
            text-transform: none;
            letter-spacing: 0;
        }
        .home-accuracy-card {
            border-color: rgba(48, 211, 164, 0.24);
            background:
                linear-gradient(145deg, rgba(48,211,164,0.08), rgba(212,175,55,0.045)),
                rgba(0,0,0,0.2);
        }
        .home-accuracy-card strong {
            color: #e9ffe8;
        }
        .accuracy-meter {
            height: 5px;
            margin: 9px 0 7px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
        }
        .accuracy-meter span {
            width: 0%;
            height: 100%;
            display: block;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--gold-primary), var(--jade-luxe));
            box-shadow: 0 0 16px rgba(48,211,164,0.22);
            transition: width 0.45s ease;
        }
        .home-testimonial-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
            margin-top: 10px;
        }
        .home-testimonial-strip article {
            min-height: 70px;
            padding: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            background: rgba(255,255,255,0.025);
            box-sizing: border-box;
        }
        .home-testimonial-strip p {
            margin: 6px 0 0;
            color: #e7ddc7;
            font-family: 'Playfair Display', serif;
            font-size: 12px;
            line-height: 1.38;
        }
        .process-section,
        .analysis-preview,
        .privacy-section,
        .unlock-preview {
            margin: 24px 0;
            text-align: left;
        }
        .section-eyebrow {
            color: var(--gold-primary);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .process-section h2,
        .analysis-preview h2,
        .privacy-section h2,
        .unlock-preview h2 {
            margin: 0 0 14px;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            line-height: 1.38;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .process-grid,
        .insight-grid,
        .privacy-grid,
        .unlock-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .process-step {
            min-height: 136px;
            padding: 14px;
            border: 1px solid rgba(249, 226, 156, 0.14);
            border-radius: 8px;
            background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(0,0,0,0.2));
        }
        .process-step span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            margin-bottom: 10px;
            border: 1px solid rgba(212, 175, 55, 0.34);
            border-radius: 50%;
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 11px;
            background: rgba(212, 175, 55, 0.06);
        }
        .process-step strong,
        .privacy-grid strong,
        .unlock-grid strong,
        .insight-card strong {
            display: block;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.45;
        }
        .process-step p {
            margin: 8px 0 0;
            color: #bfb7a4;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.55;
        }
        .process-showcase {
            padding: 22px;
            border: 1px solid rgba(249, 226, 156, 0.16);
            border-radius: 12px;
            background:
                radial-gradient(circle at 16% 12%, rgba(212,175,55,0.12), transparent 32%),
                radial-gradient(circle at 86% 18%, rgba(48,211,164,0.1), transparent 34%),
                linear-gradient(145deg, rgba(255,255,255,0.055), rgba(0,0,0,0.28));
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 55px rgba(0,0,0,0.22);
        }
        .process-showcase .process-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            align-items: stretch;
        }
        .process-card {
            min-height: 148px;
            padding: 18px 18px 16px;
            border-color: rgba(212, 175, 55, 0.18);
            border-radius: 12px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
                rgba(8, 8, 8, 0.72);
            color: #f5efe2;
            box-shadow: 0 18px 42px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
            text-align: left;
            position: relative;
            overflow: visible;
        }
        .process-card:not(:last-child)::after {
            display: none;
        }
        .process-card .process-number {
            width: auto;
            height: auto;
            margin: 0 0 10px;
            border: 0;
            color: #f4df9d;
            background: transparent;
            box-shadow: none;
            font-size: 12px;
            letter-spacing: 0.14em;
            justify-content: flex-start;
        }
        .process-card strong {
            color: #fff6dd;
            font-size: 13px;
        }
        .process-card p {
            color: #cfc6b4;
            font-size: 12px;
            line-height: 1.52;
            margin-bottom: 0;
        }
        .process-mock {
            margin-top: 16px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 14px;
            background: rgba(0,0,0,0.28);
            box-shadow: 0 16px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.045);
            color: #f5efe2;
            font-family: 'Montserrat', sans-serif;
        }
        .mock-question {
            padding: 14px;
            text-align: left;
        }
        .mock-progress {
            height: 6px;
            border-radius: 999px;
            background: rgba(255,255,255,0.1);
            margin-bottom: 14px;
            overflow: hidden;
        }
        .mock-progress i {
            display: block;
            width: 58%;
            height: 100%;
            background: linear-gradient(90deg, #d4af37, #30d3a4);
            border-radius: inherit;
            animation: meterFill 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        .mock-question b {
            display: block;
            font-size: 11px;
            line-height: 1.35;
            margin-bottom: 10px;
        }
        .mock-question em,
        .mock-question small {
            display: inline-flex;
            align-items: center;
            min-height: 26px;
            margin-bottom: 6px;
            font-style: normal;
            font-size: 10px;
        }
        .mock-question em {
            width: 24px;
            justify-content: center;
            border: 1px solid rgba(212,175,55,0.28);
            border-radius: 50%;
            color: #d4af37;
            margin-right: 7px;
        }
        .mock-question small {
            width: calc(100% - 35px);
            padding: 0 8px;
            border: 1px solid rgba(212,175,55,0.13);
            border-radius: 8px;
            background: rgba(255,255,255,0.035);
            color: #d9d0bf;
        }
        .mock-question em.active,
        .mock-question small.active {
            background: linear-gradient(135deg, #d4af37, #30d3a4);
            color: #11100d;
            border-color: transparent;
        }
        .mock-face {
            min-height: 170px;
            display: grid;
            place-items: center;
            padding: 18px;
        }
        .face-outline {
            width: 112px;
            height: 132px;
            border-radius: 48% 48% 44% 44%;
            border: 2px solid rgba(212,175,55,0.28);
            background:
                radial-gradient(circle at 50% 34%, rgba(212,175,55,0.16) 0 8%, transparent 9%),
                linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.18));
            position: relative;
            overflow: hidden;
        }
        .face-outline::before,
        .face-outline::after {
            content: '';
            position: absolute;
            background: rgba(212,175,55,0.34);
        }
        .face-outline::before {
            left: 50%;
            top: 12%;
            width: 1px;
            height: 76%;
        }
        .face-outline::after {
            left: 14%;
            right: 14%;
            top: 48%;
            height: 1px;
        }
        .face-outline i {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #f0d47a;
            box-shadow: 0 0 14px rgba(212,175,55,0.42);
        }
        .face-outline i:nth-child(1) { left: 30%; top: 34%; }
        .face-outline i:nth-child(2) { right: 30%; top: 34%; }
        .face-outline i:nth-child(3) { left: 48%; top: 52%; }
        .face-outline i:nth-child(4) { left: 35%; bottom: 22%; }
        .face-outline i:nth-child(5) { right: 35%; bottom: 22%; }
        .mock-face span {
            color: #d4af37;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .mock-signals {
            min-height: 168px;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 10px;
            align-items: center;
            padding: 14px;
        }
        .mock-signals div {
            padding: 10px;
            border: 1px solid rgba(212,175,55,0.13);
            border-radius: 10px;
            background: rgba(255,255,255,0.035);
        }
        .mock-signals b {
            display: block;
            font-size: 10px;
            margin-bottom: 8px;
        }
        .mock-signals span,
        .mock-result i {
            display: block;
            height: 4px;
            margin: 7px 0;
            border-radius: 999px;
            background: rgba(212,175,55,0.18);
        }
        .mock-signals i {
            width: 58px;
            height: 58px;
            display: inline-grid;
            place-items: center;
            border-radius: 50%;
            color: #14110a;
            font-style: normal;
            background: radial-gradient(circle at 35% 25%, #fff1b8, #d4af37 42%, #30d3a4);
            box-shadow: 0 0 28px rgba(212,175,55,0.18);
            animation: compatPulse 3s ease-in-out infinite;
        }
        .mock-result {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 12px;
            align-items: center;
            padding: 14px;
            text-align: left;
        }
        .mini-ring {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #f4df9d;
            font-weight: 800;
            background: conic-gradient(#d4af37 0 58%, #30d3a4 58% 85%, rgba(255,255,255,0.12) 0);
            position: relative;
        }
        .mini-ring::after {
            content: '';
            position: absolute;
            inset: 10px;
            border-radius: 50%;
            background: #11100d;
        }
        .mini-ring {
            isolation: isolate;
        }
        .mini-ring::before {
            content: '85%';
            position: relative;
            z-index: 2;
            color: #f4df9d;
        }
        .mock-result .mini-ring {
            font-size: 0;
        }
        .mock-result b {
            display: block;
            font-size: 11px;
            margin-bottom: 5px;
        }
        .mock-result span {
            display: block;
            color: #30d3a4;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .analysis-preview {
            position: relative;
            padding: 20px;
            border: 1px solid rgba(48, 211, 164, 0.18);
            border-radius: 10px;
            background:
                linear-gradient(150deg, rgba(48, 211, 164, 0.07), rgba(212, 175, 55, 0.05) 46%, rgba(0,0,0,0.22)),
                rgba(0,0,0,0.18);
            overflow: hidden;
        }
        .preview-orbit {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 86px;
            height: 86px;
            opacity: 0.42;
            pointer-events: none;
        }
        .preview-orbit span {
            position: absolute;
            inset: 50%;
            width: 58px;
            height: 58px;
            border: 1px solid rgba(249, 226, 156, 0.34);
            border-radius: 50%;
            transform: translate(-50%, -50%) rotate(0deg);
            animation: orbitSpin 14s linear infinite;
        }
        .preview-orbit span:nth-child(2) {
            width: 76px;
            height: 42px;
            border-color: rgba(48, 211, 164, 0.34);
            animation-duration: 18s;
            animation-direction: reverse;
        }
        .preview-orbit span:nth-child(3) {
            width: 40px;
            height: 76px;
            border-color: rgba(48, 211, 164, 0.22);
            animation-duration: 22s;
        }
        @keyframes orbitSpin {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        .preview-lead {
            margin: 0 0 16px;
            max-width: 92%;
            color: #ddd4c1;
            font-size: 14px;
        }
        .insight-card,
        .privacy-grid div,
        .unlock-grid div {
            min-height: 84px;
            padding: 13px;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            background: rgba(255,255,255,0.03);
            box-sizing: border-box;
        }
        .insight-card-featured {
            grid-column: 1 / -1;
            border-color: rgba(212, 175, 55, 0.28);
            background:
                linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(48, 211, 164, 0.035)),
                rgba(255,255,255,0.035);
        }
        .insight-card span,
        .unlock-grid span {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-primary);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.1px;
            text-transform: uppercase;
        }
        .wow-preview {
            margin-top: 14px;
            padding: 16px 18px;
            border-left: 2px solid var(--gold-primary);
            background: linear-gradient(90deg, rgba(212,175,55,0.1), rgba(48,211,164,0.04), transparent);
        }
        .wow-preview span {
            display: block;
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .wow-preview p {
            margin: 0;
            color: #f0eadc;
            font-size: 15px;
            line-height: 1.55;
        }
        .insight-card-featured strong {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            line-height: 1.6;
            color: #f7eed9;
        }
        .privacy-section {
            padding: 18px;
            border-top: 1px solid rgba(249,226,156,0.15);
            border-bottom: 1px solid rgba(48,211,164,0.14);
            background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(48,211,164,0.035));
        }
        .privacy-grid span {
            display: block;
            margin-top: 6px;
            color: #b7af9c;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.5;
        }
        .testimonial-section {
            margin: 26px 0;
            text-align: left;
        }
        .testimonial-section h2 {
            margin: 0 0 12px;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            line-height: 1.38;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .testimonial-note {
            margin: 0 0 14px;
            color: #bfb7a4;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.55;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        .testimonial-grid article {
            min-height: 178px;
            padding: 15px;
            border: 1px solid rgba(249, 226, 156, 0.14);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(212,175,55,0.055), rgba(0,0,0,0.2)),
                rgba(255,255,255,0.025);
            position: relative;
            overflow: hidden;
        }
        .testimonial-grid article::before {
            content: '“';
            position: absolute;
            top: -18px;
            right: 10px;
            color: rgba(249,226,156,0.12);
            font-family: 'Playfair Display', serif;
            font-size: 82px;
            line-height: 1;
        }
        .testimonial-grid span,
        .testimonial-grid strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
        }
        .testimonial-grid span {
            color: var(--gold-primary);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.1px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .testimonial-grid p {
            margin: 0 0 12px;
            color: #e8dfcb;
            font-size: 14px;
            line-height: 1.55;
        }
        .testimonial-grid strong {
            color: #9f9786;
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .info-page {
            text-align: left;
        }
        .info-logo-mini {
            width: 74px;
            height: 74px;
            padding: 6px;
            margin: 0 0 18px;
            border-radius: 50%;
            border: 1px solid rgba(249,226,156,0.24);
            background: #e7e3d8;
            box-shadow: 0 0 26px rgba(212,175,55,0.12);
            overflow: hidden;
        }
        .info-stack {
            display: grid;
            gap: 10px;
            margin: 20px 0 24px;
        }
        .info-stack div {
            padding: 16px;
            border: 1px solid rgba(249, 226, 156, 0.14);
            border-radius: 8px;
            background: rgba(255,255,255,0.03);
        }
        .info-stack strong,
        .info-stack span {
            display: block;
            font-family: 'Montserrat', sans-serif;
        }
        .info-stack strong {
            color: var(--gold-light);
            font-size: 13px;
            margin-bottom: 7px;
        }
        .info-stack span {
            color: #c9c0ad;
            font-size: 12px;
            line-height: 1.55;
        }
        .founder-story {
            margin: 6px 0 24px;
            padding: 22px 0 0;
            border-top: 1px solid rgba(249, 226, 156, 0.16);
            font-family: 'Montserrat', sans-serif;
        }
        .founder-story-kicker {
            display: block;
            margin-bottom: 9px;
            color: var(--gold-primary);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
        }
        .founder-story h2 {
            margin: 0 0 13px;
            color: var(--gold-light);
            font-family: 'Cinzel', serif;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.35;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .founder-story-lead {
            margin: 0 0 18px;
            color: #e6dcc7;
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            line-height: 1.68;
        }
        .founder-story-details {
            margin: 0;
            padding: 0;
            border: 0;
            background: transparent;
        }
        .founder-story-details summary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            min-height: 40px;
            padding: 0 14px;
            border: 1px solid rgba(249, 226, 156, 0.22);
            border-radius: 999px;
            background: rgba(249, 226, 156, 0.055);
            color: var(--gold-light);
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.9px;
            text-transform: uppercase;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }
        .founder-story-details summary:hover {
            border-color: rgba(249, 226, 156, 0.42);
            background: rgba(249, 226, 156, 0.095);
            transform: translateY(-1px);
        }
        .founder-story-details summary::marker,
        .founder-story-details summary::-webkit-details-marker {
            display: none;
        }
        .founder-story-details summary::after {
            content: '+';
            display: inline-flex;
            width: 18px;
            height: 18px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.18);
            color: #fff4c8;
            font-size: 14px;
            line-height: 1;
        }
        .founder-story-details[open] summary::after {
            content: '-';
        }
        .founder-story-body {
            margin-top: 18px;
            padding: 18px 18px 2px;
            border-left: 2px solid rgba(212, 175, 55, 0.42);
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.065), transparent 70%);
        }
        .founder-story-body p {
            margin: 0 0 16px;
            color: #d8cfbd;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.76;
        }
        .project-author-panel {
            margin: 0 0 24px;
            padding: 16px;
            border: 1px solid rgba(249, 226, 156, 0.16);
            border-radius: 8px;
            background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(0,0,0,0.24));
            font-family: 'Montserrat', sans-serif;
        }
        .project-meta-line {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }
        .project-meta-line span {
            color: #9f9786;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .project-meta-line strong {
            color: var(--gold-light);
            font-size: 14px;
            text-align: right;
            overflow-wrap: anywhere;
        }
        .project-rights {
            margin: 0;
            color: #9f9786;
            font-size: 11px;
            line-height: 1.5;
        }
        .faq-list {
            margin: 22px 0 24px;
        }
        .faq-list details {
            cursor: default;
        }
        .faq-list p {
            margin: 12px 0 0;
            color: #d6ccb8;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.58;
        }
        .scan-trust-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 18px 0 20px;
            text-align: left;
        }
        .scan-trust-panel div {
            min-height: 100px;
            padding: 14px;
            border: 1px solid rgba(48, 211, 164, 0.16);
            border-radius: 8px;
            background: linear-gradient(145deg, rgba(48, 211, 164, 0.055), rgba(0,0,0,0.18));
        }
        .scan-trust-panel strong {
            display: block;
            color: #f4ead3;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.4;
        }
        .scan-trust-panel span {
            display: block;
            margin-top: 7px;
            color: #bcb4a3;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.55;
        }
        .unlock-preview {
            padding: 18px 0 4px;
        }
        .unlock-grid div {
            border-color: rgba(212, 175, 55, 0.13);
            background: linear-gradient(145deg, rgba(212,175,55,0.045), rgba(0,0,0,0.16));
        }
        .progress-rail { display: grid; grid-template-columns: 28px 1fr 28px 1fr 28px; align-items: center; gap: 8px; margin-bottom: 24px; }
        .progress-rail > span:not(.progress-dot) { height: 1px; background: rgba(212, 175, 55, 0.22); }
        .progress-dot { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(212, 175, 55, 0.25); color: #8f8258; font-family: 'Montserrat', sans-serif; font-size: 11px; background: rgba(255,255,255,0.025); }
        .progress-dot.active { color: #000; background: var(--gold-primary); border-color: var(--gold-light); box-shadow: 0 0 18px rgba(212, 175, 55, 0.25); }
        .progress-dot.active { animation: pulseDot 2.2s ease-in-out infinite; }
        .progress-dot.done { color: var(--gold-light); border-color: rgba(249, 226, 156, 0.5); }
        @keyframes pulseDot { 0%, 100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.22); } 50% { box-shadow: 0 0 28px rgba(212, 175, 55, 0.42); } }
        .page-title-small { font-size: 18px; }
        .button-row, .field-row, .range-row { display: flex; gap: 15px; align-items: center; }
        .button-row { gap: 10px; }
        .muted-copy { font-size: 14px; }
        .feedback-panel { margin-top: 25px; padding: 20px; background: var(--veil); border-radius: 8px; text-align: center; border: 1px dashed var(--line-soft); }
        .feedback-title { font-size: 14px; margin-top: 0; color: #fff; }
        .feedback-hint { font-size: 12px; color: var(--ink-muted); margin-bottom: 10px; }
        .range-row span { font-family:'Cinzel', serif; color:var(--gold-primary); }
        .range-value { font-size:20px; color:var(--gold-light); font-weight:bold; font-family:'Montserrat', sans-serif; margin-top:10px; }
        .feedback-thanks { color: var(--gold-light); font-size: 13px; margin: 15px 0 0 0; font-weight: 600; }
        .gold-divider { border: 0; border-top: 1px solid rgba(212,175,55,0.2); margin: 30px 0; }
        .member-gate, .member-panel {
            margin-bottom: 22px;
            padding: 18px;
            border: 1px solid rgba(249, 226, 156, 0.2);
            background: rgba(0, 0, 0, 0.32);
            border-radius: 8px;
            text-align: left;
        }
        .member-gate h2 {
            margin: 4px 0 10px;
            font-family: 'Cinzel', serif;
            font-size: 17px;
            line-height: 1.35;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: var(--gold-light);
        }
        .member-gate p {
            margin: 0 0 16px;
            color: #d4cbb6;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.55;
        }
        .gate-kicker {
            display: block;
            color: var(--gold-primary);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }
        .btn-google {
            min-height: 46px;
            border-color: #dadce0;
            background: #ffffff;
            color: #3c4043;
            box-shadow: 0 1px 2px rgba(0,0,0,0.16);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0;
            text-transform: none;
        }
        .btn-google::before {
            content: '';
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            display: inline-block;
            background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.611 20.083H42V20H24v8h11.303C33.654 32.657 29.223 36 24 36c-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z'/%3E%3Cpath fill='%23FF3D00' d='M6.306 14.691l6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238C29.211 35.091 26.715 36 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.611 20.083H42V20H24v8h11.303c-.792 2.237-2.231 4.166-4.087 5.571l.003-.002 6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z'/%3E%3C/svg%3E");
        }
        .btn-google::after {
            display: none;
        }
        .btn-google:hover:not(:disabled) {
            border-color: #c4c7c5;
            background: #f8fafd;
            color: #202124;
            box-shadow: 0 2px 5px rgba(60,64,67,0.18);
        }
        .btn-google:active {
            transform: scale(0.99);
            background: #f1f3f4;
            color: #202124;
        }
        .member-head {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            align-items: flex-start;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .member-head strong, .member-head small {
            display: block;
            overflow-wrap: anywhere;
        }
        .member-head strong {
            margin-top: 4px;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
        }
        .member-head small {
            margin-top: 3px;
            color: #a9a08d;
            font-size: 11px;
        }
        .member-logout {
            flex: 0 0 auto;
            border: 1px solid rgba(255,255,255,0.14);
            background: transparent;
            color: #aaa;
            border-radius: 6px;
            padding: 8px 10px;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.9px;
        }
        .member-logout:hover { color: #fff; border-color: rgba(249, 226, 156, 0.28); }
        .plan-status-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 14px;
        }
        .plan-status-grid div {
            min-height: 62px;
            padding: 12px;
            border: 1px solid rgba(212, 175, 55, 0.13);
            border-radius: 6px;
            background: rgba(255,255,255,0.025);
        }
        .plan-status-grid span, .plan-status-grid strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
        }
        .plan-status-grid span {
            color: #9f9786;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .plan-status-grid strong {
            color: var(--gold-light);
            font-size: 13px;
            line-height: 1.35;
        }
        .member-actions { margin-top: 6px; }
        .user-zone-open {
            margin-top: 12px;
        }
        .user-zone-summary {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 16px;
            align-items: stretch;
            margin: 20px 0 24px;
        }
        .user-photo-card {
            min-height: 170px;
            border: 1px solid rgba(249, 226, 156, 0.18);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(212,175,55,0.055), rgba(48,211,164,0.04)),
                rgba(0,0,0,0.28);
            overflow: hidden;
            display: grid;
            place-items: center;
            color: #9f9786;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            line-height: 1.45;
            text-align: center;
            padding: 14px;
            box-sizing: border-box;
        }
        .user-photo-card img {
            width: 100%;
            height: 100%;
            min-height: 142px;
            object-fit: cover;
            border-radius: 6px;
            filter: sepia(24%) contrast(1.05);
        }
        .user-zone-meta {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .user-zone-meta div,
        .user-zone-profile-summary div,
        .answer-snapshot-grid div {
            padding: 13px;
            border: 1px solid rgba(249, 226, 156, 0.13);
            border-radius: 8px;
            background: rgba(255,255,255,0.03);
            box-sizing: border-box;
        }
        .user-zone-meta span,
        .user-zone-profile-summary span,
        .answer-snapshot-grid span {
            display: block;
            margin-bottom: 6px;
            color: #9f9786;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .user-zone-meta strong,
        .user-zone-profile-summary strong,
        .answer-snapshot-grid strong {
            display: block;
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.42;
            overflow-wrap: anywhere;
        }
        .user-zone-section {
            margin: 26px 0;
            text-align: left;
        }
        .user-zone-section h2 {
            margin: 0 0 14px;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 16px;
            line-height: 1.38;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }
        .user-zone-profile-summary,
        .answer-snapshot-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .user-zone-profile-summary {
            margin-bottom: 10px;
        }
        .user-zone-empty {
            margin: 0;
            padding: 16px;
            border: 1px dashed rgba(249, 226, 156, 0.18);
            border-radius: 8px;
            color: #c9c0ad;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            line-height: 1.55;
        }
        .comparison-history {
            display: grid;
            gap: 12px;
        }
        .comparison-history-card {
            padding: 16px;
            border: 1px solid rgba(249, 226, 156, 0.15);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.035), rgba(0,0,0,0.22)),
                rgba(0,0,0,0.18);
        }
        .comparison-history-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }
        .comparison-history-head span {
            display: block;
            margin-bottom: 5px;
            color: #9f9786;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .comparison-history-head strong {
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            line-height: 1.35;
        }
        .compat-score {
            min-width: 58px;
            min-height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid rgba(249, 226, 156, 0.18);
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
        }
        .compat-score.high { color: #30d36f; border-color: rgba(48, 211, 111, 0.32); }
        .compat-score.medium { color: #f2c94c; border-color: rgba(242, 201, 76, 0.34); }
        .compat-score.low { color: #ff7777; border-color: rgba(255, 93, 93, 0.34); }
        .comparison-archetypes {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 8px;
            align-items: center;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
        }
        .comparison-archetypes span {
            min-height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(249,226,156,0.12);
            border-radius: 6px;
            color: #f3e8c9;
            background: rgba(255,255,255,0.025);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
        }
        .comparison-archetypes i {
            color: var(--gold-primary);
            font-style: normal;
            font-size: 16px;
        }
        .comparison-history-card p {
            margin: 0 0 12px;
            color: #d7cfbd;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: 1.58;
        }
        .same-type-pill {
            display: inline-flex;
            min-height: 28px;
            align-items: center;
            padding: 0 10px;
            border: 1px solid rgba(255, 93, 93, 0.28);
            border-radius: 999px;
            color: #ff9c9c;
            background: rgba(255, 93, 93, 0.06);
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-style: normal;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .comparison-answer-details {
            margin-top: 12px;
            border-top: 1px dashed rgba(249, 226, 156, 0.14);
            padding-top: 12px;
        }
        .comparison-answer-details summary {
            color: var(--gold-light);
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }
        .comparison-answer-details .answer-snapshot-grid {
            margin-top: 10px;
        }
        .user-zone-actions {
            margin-top: 22px;
        }
        .upgrade-note { padding: 16px 18px; border: 1px solid rgba(212,175,55,0.18); background: var(--panel-deep); border-radius: 8px; margin-bottom: 20px; }
        .upgrade-note span, .upgrade-note strong { display: block; }
        .upgrade-note span { color: #aaa; font-family: 'Montserrat', sans-serif; font-size: 12px; margin-bottom: 6px; }
        .upgrade-note strong { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.4; font-weight: 700; }
        .checkout-title { font-size: 22px; margin-bottom: 15px; text-align: center; }
        .section-kicker { font-size: 12px; text-align: left; margin-bottom: 10px; color: var(--ink-muted); text-transform: uppercase; font-family: 'Cinzel', serif; letter-spacing: 1px; }
        .compact-form { margin-bottom: 10px; }
        .stacked-input { margin-bottom: 15px; }
        .center-note { text-align:center; margin-top: 30px; }
        .premium-page-title { font-size: 22px; color: var(--gold-light); margin-bottom: 30px; text-align: center; }
        .partner-title { font-size: 22px; color: #fff; margin-bottom: 30px; text-align: center; }
        .partner-copy { font-size: 15px; color: #ccc; text-align: center; margin-bottom: 30px; }
        .result-desire { border-left-color: var(--energy-color); background: rgba(76, 175, 80, 0.04); }
        .result-desire h3 { color: var(--energy-color); }
        .result-title { font-size: 24px; color: var(--gold-primary); text-transform: uppercase; }
        .text-center { text-align: center; }
        .result-note { padding: 14px 16px; margin: 0 0 18px; border: 1px solid rgba(212, 175, 55, 0.16); border-radius: 8px; background: rgba(0,0,0,0.25); color: #d7cfbd; font-size: 14px; }
        .result-block .tone-trimmed { display: block; margin-top: 12px; padding-top: 12px; border-top: 1px dashed rgba(249, 226, 156, 0.14); color: #d7cfbd; font-style: normal; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 1ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 1ms !important;
            }
        }

        @media (min-width: 1025px) {
            .container { max-width: 880px; padding: 44px 24px; }
            .page { padding: 58px 52px; }
            h1 { font-size: 32px; letter-spacing: 3px; margin-bottom: 18px; }
            p { font-size: 16px; line-height: 1.64; }
            .ritual-kicker,
            .section-eyebrow,
            .gate-kicker { font-size: 11px; }
            .brand-lockup { gap: 14px; margin-bottom: 20px; }
            .brand-logo-shell { width: 82px; height: 82px; }
            .trust-nav button { min-height: 40px; font-size: 10px; }
            .hero-archetype-icons { gap: 10px; margin-bottom: 22px; }
            .hero-archetype-icons span { min-height: 78px; }
            .hero-archetype-icons b { font-size: 26px; }
            .hero-archetype-icons small { font-size: 10px; }
            .hero-art-panel { height: 190px; }
            .trust-row span { min-height: 38px; font-size: 11px; }
            .home-auth-box,
            .member-gate,
            .member-panel { padding: 18px; }
            .brand-title-premium {
                font-size: 38px;
                letter-spacing: 0.15em;
            }
            .home-auth-state strong,
            .member-head strong { font-size: 14px; }
            .home-auth-state small,
            .member-head small { font-size: 12px; }
            .btn-gold { min-height: 50px; font-size: 12px; }
            .payment-method-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .process-section h2,
            .analysis-preview h2,
            .privacy-section h2,
            .unlock-preview h2,
            .testimonial-section h2 { font-size: 18px; }
            .process-step { min-height: 154px; padding: 16px; }
            .process-step strong,
            .privacy-grid strong,
            .unlock-grid strong,
            .insight-card strong,
            .scan-trust-panel strong { font-size: 13px; }
            .insight-card-featured strong { font-size: 16px; }
            .process-step p,
            .privacy-grid span,
            .scan-trust-panel span,
            .info-stack span,
            .offer-list,
            .preview-panel p,
            .testimonial-note { font-size: 12px; }
            .preview-lead,
            .muted-copy,
            .result-note { font-size: 14px; }
            .insight-card,
            .privacy-grid div,
            .unlock-grid div { min-height: 96px; padding: 15px; }
            .insight-card span,
            .unlock-grid span,
            .wow-preview span,
            .preview-kicker,
            .plan-status-grid span,
            .upgrade-note span { font-size: 11px; }
            .wow-preview p,
            .upgrade-note strong { font-size: 16px; }
            .premium-offer { padding: 22px; }
            .testimonial-grid article { padding: 16px; }
            .testimonial-grid p { font-size: 14px; }
            .info-stack strong { font-size: 13px; }
            .faq-list p { font-size: 13px; }
            .price-tag { font-size: 24px; }
            .offer-title { font-size: 13px; }
            .offer-copy,
            .member-gate p { font-size: 13px; }
            .card-text,
            .result-block p { font-size: 15px; line-height: 1.68; }
            .compatibility-visual { padding: 24px 20px 22px; }
            .pie-chart { width: 166px; height: 166px; }
            .pie-chart::after { width: 128px; height: 128px; }
            .pie-value { font-size: 30px; }
            .compatibility-pair { font-size: 12px; }
            .compatibility-score-label { font-size: 11px; }
            .question-label,
            .status-msg { font-size: 11px; }
            .custom-select-trigger,
            select,
            .custom-input { font-size: 15px; min-height: 52px; }
            .details-content ol li,
            details summary { font-size: 15px; }
        }

        @media (min-width: 501px) and (max-width: 1024px) {
            .container { max-width: 700px; }
            .result-block p { font-size: 17px; line-height: 1.8; color: #ececec; }
            .result-block h3 { font-size: 19px; margin-bottom: 12px; }
            .card-text { font-size: 16px; line-height: 1.7; }
            details summary { font-size: 16px; }
            .details-content ol li { font-size: 16px; }
            .premium-text-block { font-size: 16px; }
            .premium-text-block strong { font-size: 16px; }
            .process-showcase .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .process-card { min-height: 148px; }
            .process-card:not(:last-child)::after { display: none; }
        }

        @media (max-width: 600px) {
            .container { padding: 15px; max-width: 390px; } .page { width: 100%; padding: 35px 20px; }
            .home-return {
                top: 10px;
                left: 10px;
                min-height: 36px;
                padding: 0 11px;
                font-size: 10px;
            }
            h1 { font-size: 20px; letter-spacing: 2px; }
            .brand-title-premium {
                font-size: 25px;
                letter-spacing: 0.08em;
            }
            p, .card-text, .result-block p, .benefits-block ol { font-size: 14px; }
            .love-language-visual {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 14px 16px;
            }
            .love-language-art {
                min-height: 116px;
            }
            .love-language-art svg {
                max-height: 126px;
            }
            .love-language-copy span {
                font-size: 9px;
            }
            .premium-offer { padding: 15px; } .result-header h1 { font-size: 18px !important; } .premium-title { font-size: 18px; }
            .card-label { font-size: 14px; }
            .field-row { gap: 10px; }
            .payment-method { font-size: 11px; padding: 12px 8px; }
            .paysera-method-list { grid-template-columns: 1fr; }
            .checkout-legal-links,
            .policy-link-row { display: grid; grid-template-columns: 1fr; }
            .brand-lockup { justify-content: center; gap: 10px; margin-bottom: 18px; }
            .brand-logo-shell { width: 66px; height: 66px; }
            .trust-nav { grid-template-columns: 1fr; }
            .trust-nav-user {
                grid-template-columns: 38px 1fr;
                min-height: 68px;
            }
            .trust-nav-icon {
                width: 38px;
                height: 38px;
            }
            .trust-nav-groups {
                grid-template-columns: 1fr;
            }
            .trust-nav-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .hero-archetype-icons { grid-template-columns: 1fr 1fr; }
            .hero-archetype-icons span { min-height: 64px; }
            .hero-art-panel {
                height: 132px;
                margin-bottom: 18px;
            }
            .compatibility-pair { grid-template-columns: 1fr; }
            .compatibility-pair i { line-height: 1; }
            .pie-chart { width: 138px; height: 138px; }
            .pie-chart::after { width: 106px; height: 106px; }
            .pie-value { font-size: 25px; }
            .trust-row { grid-template-columns: 1fr; }
            .home-auth-state { grid-template-columns: 1fr; }
            .home-auth-btn { width: 100%; }
            .home-proof-stats {
                grid-template-columns: 1fr;
            }
            .home-proof-stat {
                min-height: 66px;
            }
            .home-proof-stat strong {
                font-size: 23px;
            }
            .home-testimonial-strip {
                display: flex;
                gap: 8px;
                overflow-x: auto;
                padding-bottom: 4px;
                scroll-snap-type: x mandatory;
            }
            .home-testimonial-strip article {
                flex: 0 0 178px;
                min-height: 74px;
                scroll-snap-align: start;
            }
            .process-grid,
            .insight-grid,
            .privacy-grid,
            .testimonial-grid,
            .unlock-grid,
            .scan-trust-panel { grid-template-columns: 1fr; }
            .process-showcase { padding: 16px; }
            .process-showcase .process-grid { grid-template-columns: 1fr; gap: 18px; }
            .process-card { min-height: auto; padding: 16px; }
            .process-card:not(:last-child)::after {
                content: '↓';
                top: auto;
                right: 50%;
                bottom: -22px;
                transform: translateX(50%);
                font-size: 22px;
            }
            .mock-signals,
            .mock-result { grid-template-columns: 1fr; }
            .mock-result { justify-items: center; text-align: center; }
            .process-step,
            .insight-card,
            .privacy-grid div,
            .unlock-grid div,
            .scan-trust-panel div { min-height: auto; }
            .analysis-preview,
            .privacy-section { padding: 16px; }
            .preview-lead { max-width: 100%; }
            .preview-orbit { width: 62px; height: 62px; opacity: 0.26; }
            .preview-grid { grid-template-columns: 1fr 1fr; }
            .offer-badge { float: none; display: inline-block; margin-bottom: 10px; }
            .member-head { flex-direction: column; }
            .member-logout { width: 100%; }
            .plan-status-grid { grid-template-columns: 1fr; }
            .user-zone-summary,
            .user-zone-profile-summary,
            .answer-snapshot-grid,
            .comparison-archetypes { grid-template-columns: 1fr; }
            .user-photo-card { min-height: 160px; }
            .comparison-history-head { align-items: center; }
        }

        /* Design audit fixes */
        .hero-copy {
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .home-accuracy-card.is-empty {
            border-color: rgba(249, 226, 156, 0.18);
            background:
                linear-gradient(145deg, rgba(212,175,55,0.055), rgba(48,211,164,0.028)),
                rgba(0,0,0,0.18);
        }
        .home-accuracy-card.is-empty strong {
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            letter-spacing: 0.3px;
            text-transform: none;
        }
        .home-accuracy-card.is-empty .accuracy-meter {
            display: none;
        }

        .custom-options {
            z-index: 40;
            scrollbar-width: thin;
            scrollbar-color: rgba(249, 226, 156, 0.48) rgba(255,255,255,0.055);
        }
        .custom-options::-webkit-scrollbar {
            width: 8px;
        }
        .custom-options::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.045);
            border-radius: 999px;
        }
        .custom-options::-webkit-scrollbar-thumb {
            background: rgba(249, 226, 156, 0.46);
            border-radius: 999px;
            border: 2px solid rgba(8, 8, 8, 0.96);
        }
        .custom-select-wrap.open .custom-options {
            max-height: var(--options-max-height, 280px);
        }
        .custom-select-wrap.open.open-up .custom-options {
            top: auto;
            bottom: calc(100% + 8px);
            transform-origin: bottom center;
        }

        .photo-upload-wrap {
            position: relative;
            margin: 0 0 18px;
        }
        .photo-skip-row {
            margin: -6px 0 18px;
        }
        .scan-skip-btn {
            margin-top: 0;
        }
        #photoInput {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 2;
            cursor: pointer;
            padding: 0;
            border: 0;
        }
        .photo-upload-label {
            min-height: 68px;
            display: grid;
            grid-template-columns: 42px 1fr;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            border: 1px dashed rgba(249, 226, 156, 0.28);
            border-radius: 8px;
            background:
                linear-gradient(145deg, rgba(249,226,156,0.055), rgba(48,211,164,0.035)),
                rgba(255,255,255,0.025);
            color: #fff;
            box-sizing: border-box;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }
        #photoInput:focus-visible + .photo-upload-label,
        .photo-upload-label:hover {
            border-color: rgba(249, 226, 156, 0.55);
            background:
                linear-gradient(145deg, rgba(249,226,156,0.08), rgba(48,211,164,0.05)),
                rgba(255,255,255,0.04);
            box-shadow: 0 0 22px rgba(212,175,55,0.08);
        }
        .photo-upload-icon {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(249, 226, 156, 0.28);
            border-radius: 50%;
            background: rgba(0,0,0,0.24);
        }
        .photo-upload-icon::before {
            content: '+';
            color: var(--gold-light);
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            line-height: 1;
            margin-top: -2px;
        }
        .photo-upload-label strong,
        .photo-upload-label small {
            display: block;
            font-family: 'Montserrat', sans-serif;
        }
        .photo-upload-label strong {
            color: var(--gold-light);
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .photo-upload-label small {
            color: #afa793;
            font-size: 12px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .btn-google {
            border-color: rgba(249, 226, 156, 0.22);
            background:
                linear-gradient(145deg, rgba(255,255,255,0.06), rgba(0,0,0,0.12)),
                rgba(5, 5, 5, 0.72);
            color: #f2e5bd;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
        }
        .btn-google:hover:not(:disabled) {
            border-color: rgba(249, 226, 156, 0.45);
            background:
                linear-gradient(145deg, rgba(249,226,156,0.09), rgba(48,211,164,0.035)),
                rgba(5, 5, 5, 0.82);
            color: #fff4c8;
            box-shadow: 0 0 22px rgba(212,175,55,0.08);
        }
        .btn-google:active {
            background: rgba(12, 10, 4, 0.92);
            color: #fff4c8;
        }

        .payment-method span[aria-hidden="true"] {
            width: 16px;
            height: 16px;
            flex: 0 0 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0;
            border: 1px solid rgba(249, 226, 156, 0.28);
            border-radius: 50%;
        }
        .payment-method span[aria-hidden="true"]::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold-primary);
            opacity: 0.8;
        }

        .unlock-preview {
            position: relative;
            isolation: isolate;
            animation: unlockPreviewReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        .unlock-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249,226,156,0.72), rgba(48,211,164,0.34), transparent);
            transform: scaleX(0);
            transform-origin: left center;
            animation: unlockLineDraw 920ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
            pointer-events: none;
        }
        .unlock-preview .section-eyebrow,
        .unlock-preview h2 {
            animation: unlockTextRise 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        .unlock-preview h2 {
            animation-delay: 90ms;
        }
        .unlock-grid div {
            position: relative;
            overflow: hidden;
            animation: unlockCardReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
            transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
        }
        .unlock-grid div::after {
            content: '';
            position: absolute;
            inset: -45% -70%;
            background: linear-gradient(110deg, transparent 38%, rgba(249,226,156,0.18), transparent 62%);
            transform: translateX(-78%);
            animation: unlockCardSweep 1500ms cubic-bezier(0.16, 1, 0.3, 1) both;
            pointer-events: none;
        }
        .unlock-preview .section-eyebrow,
        .unlock-preview h2,
        .unlock-grid span,
        .unlock-grid strong {
            position: relative;
            z-index: 1;
        }
        .unlock-grid div:hover {
            transform: translateY(-3px);
            border-color: rgba(249, 226, 156, 0.32);
            background: linear-gradient(145deg, rgba(212,175,55,0.07), rgba(48,211,164,0.03));
        }
        .unlock-grid div:nth-child(1) { animation-delay: 140ms; }
        .unlock-grid div:nth-child(2) { animation-delay: 220ms; }
        .unlock-grid div:nth-child(3) { animation-delay: 300ms; }
        .unlock-grid div:nth-child(4) { animation-delay: 380ms; }
        .unlock-grid div:nth-child(1)::after { animation-delay: 300ms; }
        .unlock-grid div:nth-child(2)::after { animation-delay: 410ms; }
        .unlock-grid div:nth-child(3)::after { animation-delay: 520ms; }
        .unlock-grid div:nth-child(4)::after { animation-delay: 630ms; }
        @keyframes unlockPreviewReveal {
            from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
            to { opacity: 1; transform: translateY(0); filter: blur(0); }
        }
        @keyframes unlockLineDraw {
            from { opacity: 0; transform: scaleX(0); }
            to { opacity: 1; transform: scaleX(1); }
        }
        @keyframes unlockTextRise {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes unlockCardReveal {
            from { opacity: 0; transform: translateY(16px) scale(0.985); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes unlockCardSweep {
            0%, 28% { opacity: 0; transform: translateX(-78%); }
            42% { opacity: 1; }
            100% { opacity: 0; transform: translateX(78%); }
        }

        @media (min-width: 1025px) {
            .container { padding: 28px 24px; }
            #page1 { padding: 42px 52px 46px; }
            #page1 .ritual-kicker { margin-bottom: 10px; }
            #page1 .brand-lockup { margin-bottom: 16px; }
            #page1 .brand-title-premium {
                font-size: 36px;
                letter-spacing: 0.13em;
            }
            #page1 .hero-archetype-icons {
                margin: 2px 0 18px;
            }
            #page1 .hero-archetype-icons span {
                min-height: 62px;
            }
            #page1 .hero-archetype-icons b {
                font-size: 22px;
            }
            #page1 .hero-copy {
                margin-bottom: 18px;
                font-size: 15px;
                line-height: 1.55;
            }
            #page1 .home-proof {
                margin-bottom: 12px;
                padding: 10px 0;
            }
            #page1 .home-proof-stat {
                min-height: 60px;
                padding: 10px 12px;
            }
            #page1 .home-testimonial-strip article {
                min-height: 54px;
                padding: 9px 10px;
            }
            #page1 .home-testimonial-strip p {
                font-size: 11px;
                line-height: 1.3;
            }
            #page1 .home-auth-box,
            #page1 .member-gate,
            #page1 .member-panel {
                padding: 14px 16px;
            }
            #page1 .admin-link {
                padding: 10px 14px;
                line-height: 1.5;
            }
            #page1 .trust-nav {
                margin-top: 14px;
            }
        }

        @media (max-width: 600px) {
            .has-home-return .container {
                padding-top: 64px;
            }
            #page1 {
                padding: 20px 16px 26px;
            }
            #page1 .ritual-kicker {
                margin-bottom: 7px;
                letter-spacing: 1.4px;
            }
            #page1 .brand-lockup {
                margin-bottom: 10px;
            }
            #page1 .brand-title-premium {
                line-height: 1.18;
            }
            #page1 .hero-archetype-icons {
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 6px;
                margin: 0 0 10px;
            }
            #page1 .hero-archetype-icons span {
                min-height: 48px;
                gap: 5px;
            }
            #page1 .hero-archetype-icons b {
                font-size: 20px;
            }
            #page1 .hero-archetype-icons small {
                font-size: 8px;
                letter-spacing: 0.7px;
            }
            #page1 .hero-art-panel {
                height: 92px;
                margin-bottom: 12px;
            }
            #page1 .hero-copy {
                margin-bottom: 10px;
                font-size: 13px;
                line-height: 1.42;
            }
            #page1 .hero-start-btn {
                margin: 10px 0 10px;
                padding: 14px 10px;
            }
            #page1 .home-auth-box {
                margin-bottom: 12px;
                padding: 11px;
            }
            #page1 .home-auth-state {
                gap: 9px;
            }
            #page1 .home-auth-state strong {
                font-size: 12px;
            }
            #page1 .home-auth-state small {
                font-size: 10px;
                line-height: 1.35;
            }
            #page1 .home-auth-btn {
                min-height: 42px;
            }
            #page1 .home-proof {
                margin-bottom: 12px;
                padding: 10px 0;
            }
            #page1 .home-testimonial-strip {
                display: grid;
                grid-template-columns: 1fr;
                overflow: visible;
                padding-bottom: 0;
                scroll-snap-type: none;
            }
            #page1 .home-testimonial-strip article {
                flex: initial;
                min-height: auto;
                scroll-snap-align: none;
            }
            #page1 .home-testimonial-strip article:nth-child(n+2) {
                display: none;
            }
            .btn-gold,
            .trust-nav button,
            .question-label,
            .gate-kicker {
                letter-spacing: 1px;
            }
            .photo-upload-label {
                grid-template-columns: 38px 1fr;
                min-height: 62px;
                padding: 12px 14px;
            }
            .photo-upload-icon {
                width: 38px;
                height: 38px;
            }
        }
