/*
Theme Name: Destiny Archive GPT-83
Theme URI: https://fengshui.icu
Description: Premium destiny reading and personal fortune interpretation theme with refined funnel logic
Version: 8.2.0
Author: OpenAI GPT-83
Text Domain: lumina-spiritual
Requires PHP: 7.4
*/

/* ============================================================
   CORE VARIABLES
============================================================ */

 :root{
    --color-primary: #16233B;
    --color-primary-dark: #0F1A2D;
    --color-primary-light: #2B3A57;
    --color-secondary: #B28C57;
    --color-secondary-light: #D2B07A;
    --color-accent: #F2AB3A;
    --color-text: #2A2A2A;
    --color-text-light: #6E6A64;
    --color-bg: #F7F4EF;
    --color-bg-dark: #101826;
    --color-success: #20B858;
    --color-warning: #D9A441;
    --color-error: #C75B5B;

    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-dark: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.32);
    --glass-blur: 20px;

    --shadow-sm: 0 1px 2px 0 rgba(17, 24, 39, 0.05);
    --shadow-md: 0 8px 18px rgba(22, 35, 59, 0.08);
    --shadow-lg: 0 16px 36px rgba(22, 35, 59, 0.10);
    --shadow-xl: 0 24px 54px rgba(22, 35, 59, 0.12);
    --shadow-2xl: 0 32px 70px rgba(22, 35, 59, 0.16);
    --shadow-colored: 0 20px 40px -10px rgba(22, 35, 59, 0.18);
    --shadow-glow: 0 0 20px rgba(178, 140, 87, 0.16);
    --shadow-glow-hover: 0 0 28px rgba(178, 140, 87, 0.24);

    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================================
   RESET & BASE STYLES
============================================================ */

*,
*::before,
*::after{
    box-sizing: border-box;
}

html{
    font-size: 16px;
    scroll-behavior: smooth;
}

body{
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

html, body, #page, .site, .site-main{
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip){
    html, body, #page, .site, .site-main{
        overflow-x: hidden;
    }
}

img,
picture,
video,
canvas,
svg{
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select{
    font: inherit;
}

a{
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

h1{ font-size: clamp(2.5rem, 5vw, 4rem); }
h2{ font-size: clamp(2rem, 4vw, 3rem); }
h3{ font-size: clamp(1.5rem, 3vw, 2rem); }

p{
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

/* ============================================================
   UTILITY CLASSES
============================================================ */

.container{
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.container-wide{
    max-width: 1400px;
}

.container-narrow{
    max-width: 800px;
}

.text-center{ text-align: center; }
.text-left{ text-align: left; }
.text-right{ text-align: right; }

.flex{ display: flex; }
.flex-col{ flex-direction: column; }
.items-center{ align-items: center; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-sm{ gap: var(--spacing-sm); }
.gap-md{ gap: var(--spacing-md); }
.gap-lg{ gap: var(--spacing-lg); }

.grid{ display: grid; }
.grid-cols-1{ grid-template-columns: repeat(1, 1fr); }
.grid-cols-2{ grid-template-columns: repeat(2, 1fr); }
.grid-cols-3{ grid-template-columns: repeat(3, 1fr); }

.hidden{ display: none !important; }
.sr-only,
.screen-reader-text{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary{
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-secondary{
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover{
    background: var(--color-primary);
    color: #ffffff;
}







.btn-large{
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

.btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   LANDING PAGE STYLES
============================================================ */

.lumina-landing{
    min-height: 100vh;
    background: linear-gradient(180deg, #F9FAFB 0%, #F3E8FF 100%);
}

.hero-section{
    padding: var(--spacing-2xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content{
    max-width: 920px;
    margin: 0 auto;
}

.hero-content h1{
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle{
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin: 0 auto var(--spacing-xl);
    max-width: 760px;
    line-height: 1.85;
}


.hero-buttons{
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}


.trust-badges{
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-badge{
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.how-it-works{
    padding: var(--spacing-2xl) 0;
    background: #ffffff;
}

.steps-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.step-card{
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    background: var(--color-bg);
    transition: transform var(--transition-base);
}

.step-card:hover{
    transform: translateY(-5px);
}

.step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
}

/* ============================================================
   FUNNEL PAGE STYLES
============================================================ */

.lumina-funnel{
    min-height: 100vh;
    background: #ffffff;
}

.funnel-container{
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.form-section{
    padding: var(--spacing-xl);
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}



.result-section{
    padding: var(--spacing-xl);
    background: #ffffff;
}

/* ============================================================
   READING PROCESS STYLES
============================================================ */

.process-stage{
    text-align: center;
    padding: var(--spacing-2xl);
}

.stage-icon{
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.stage-1 .stage-icon{ animation: pulse 2s infinite; }
.stage-2 .stage-icon{ animation: spin 3s linear infinite; }
.stage-3 .stage-icon{ animation: float 2s ease-in-out infinite; }
.stage-4 .stage-icon{ animation: glow 1.5s ease-in-out infinite; }

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

@keyframes spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow{
    0%, 100% { filter: drop-shadow(0 0 10px var(--color-primary)); }
    50% { filter: drop-shadow(0 0 30px var(--color-secondary)); }
}

.process-progress{
    margin: var(--spacing-xl) auto;
    max-width: 400px;
}

.progress-bar{
    height: 8px;
    background: #E5E7EB;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill{
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.stage-labels{
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-sm);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ============================================================
   RESULT STYLES
============================================================ */

.reading-result{
    max-width: 700px;
    margin: 0 auto;
}

.partial-result{
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--color-primary);
}

.full-result{
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #ffffff 0%, #F9FAFB 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.result-card{
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.unlock-section{
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
    border-radius: var(--border-radius-lg);
    margin-top: var(--spacing-xl);
}

.unlock-price{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: var(--spacing-md) 0;
}

.share-unlock-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.share-option{
    padding: var(--spacing-lg);
    background: #ffffff;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.share-option h4{
    margin-bottom: var(--spacing-sm);
}

.click-counter{
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: #F3E8FF;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.click-counter svg{
    width: 16px;
    height: 16px;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */

.whatsapp-float{
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.whatsapp-float.visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-float-btn{
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #E8D5F2 0%, #C4AED8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(196, 174, 216, 0.25);
    transition: all var(--transition-base);
    border: 1px solid #C4AED8;
}

.whatsapp-float-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(196, 174, 216, 0.35);
    background: linear-gradient(135deg, #D9C4E8 0%, #B59FC8 100%);
}

.whatsapp-float-btn svg{
    width: 28px;
    height: 28px;
    fill: #4A3B52;
}

.whatsapp-tooltip{
    position: absolute;
    right: 70px;
    background: #1F2937;
    color: #ffffff;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip{
    opacity: 1;
}

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

@media (max-width: 768px){
    .hero-section{
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .hero-content{
    max-width: 920px;
    margin: 0 auto;
}

.hero-content h1{
        font-size: 2.5rem;
    }
    
    .hero-buttons{
        flex-direction: column;
    }

    .hero-bullets{
        gap: 0.6rem;
    }

    .hero-bullets span{
        width: 100%;
        text-align: center;
        font-size: 0.92rem;
    }
    
    .hero-buttons .btn{
        width: 100%;
    }
    
    .steps-grid{
        grid-template-columns: 1fr;
    }

    .insight-grid{
        grid-template-columns: 1fr;
    }
    
    .funnel-container{
        padding: var(--spacing-md);
    }
    
    .share-unlock-container{
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float{
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .whatsapp-float-btn{
        width: 50px;
        height: 50px;
    }
}

/* ============================================================
   ANIMATIONS
============================================================ */

.fade-in{
    animation: fadeIn 0.5s ease-out;
}

.slide-up{
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ============================================================
   ACCESSIBILITY
============================================================ */

:focus-visible{
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

.sr-only:focus{
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* ============================================================
   PRINT STYLES
============================================================ */

@media print{
    .whatsapp-float,
    .hero-buttons,
    .unlock-section{
        display: none !important;
    }
    
    body{
        background: #ffffff;
    }
}

.lumina-disclaimer,
.lumina-privacy-note{
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.lumina-privacy-note{
    margin: 0 0 1rem;
}

/* Alerts */
.alerts-container{
    margin-bottom: 1rem;
}
.alert{
    padding: 0.875rem 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.alert-error{
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
.alert-warning{
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}
.alert-info{
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}


/* Generic page styling */
.site-main .entry-title{ margin-bottom: 1rem; }
.lumina-generic-page{
    max-width: 820px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}
.lumina-generic-page .entry-content p:last-child{ margin-bottom: 0; }


/* ============================================================
   FUNNEL FORM POLISH
============================================================ */

.lumina-funnel{
    background:
        radial-gradient(circle at top center, rgba(139, 92, 246, 0.12), transparent 34%),
        linear-gradient(180deg, #faf7ff 0%, #f6f3ff 48%, #f9fafb 100%);
    padding: 2rem 0 4rem;
}

.lumina-funnel .funnel-container{
    max-width: 760px;
}

.lumina-funnel .form-section,
.lumina-funnel .reading-container{
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 22px 55px rgba(31, 41, 55, 0.09);
    backdrop-filter: blur(8px);
}

.lumina-funnel .text-center h1{
    margin-bottom: 1rem;
    color: #1f2540;
}

.lumina-funnel .text-center > p{
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.lumina-form{
    max-width: 560px;
    margin: 2rem auto 0;
}

.form-group{
    margin-bottom: 1.25rem;
}

.form-group label{
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2540;
    margin-bottom: 0.55rem;
    letter-spacing: 0.01em;
}

.required{
    color: var(--color-primary-dark);
}

.lumina-form input,
.lumina-form textarea,
.lumina-form select{
    width: 100%;
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
}

.lumina-form textarea{
    min-height: 160px;
    resize: vertical;
}

.lumina-form input::placeholder,
.lumina-form textarea::placeholder{
    color: #9ca3af;
}

.lumina-form input:hover,
.lumina-form textarea:hover,
.lumina-form select:hover{
    border-color: #d8b4fe;
}

.lumina-form input:focus,
.lumina-form textarea:focus,
.lumina-form select:focus{
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
    outline: none;
}

.lumina-privacy-note{
    margin: 0.25rem 0 1.5rem;
    text-align: left;
    line-height: 1.7;
}

.lumina-privacy-note a{
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lumina-form .btn-large{
    width: 100%;
    min-height: 60px;
    border-radius: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

#alerts-container{
    max-width: 560px;
    margin: 0 auto 1.25rem;
}

.reading-experience{
    position: relative;
    overflow: hidden;
}

.reading-experience::before,
.reading-experience::after{
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.55;
}

.reading-experience::before{
    width: 180px;
    height: 180px;
    top: -40px;
    right: -30px;
    background: rgba(236, 72, 153, 0.15);
}

.reading-experience::after{
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -70px;
    background: rgba(139, 92, 246, 0.16);
}



.aura-ring,
.aura-core{
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.aura-ring-outer{
    border: 2px solid rgba(139, 92, 246, 0.18);
    animation: luminaSpin 8s linear infinite;
}

.aura-ring-outer::before,
.aura-ring-middle::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.82), rgba(236, 72, 153, 0.6), rgba(139, 92, 246, 0));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
}

.aura-ring-middle{
    inset: 18px;
    border: 2px solid rgba(139, 92, 246, 0.14);
    animation: luminaSpinReverse 6s linear infinite;
}

.aura-core{
    inset: 42px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98), rgba(232, 216, 255, 0.98));
    box-shadow: inset 0 0 24px rgba(139, 92, 246, 0.12), 0 0 30px rgba(139, 92, 246, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: luminaPulse 2.2s ease-in-out infinite;
}

.aura-glyph{
    font-size: 2rem;
    line-height: 1;
    color: var(--color-primary);
    text-shadow: 0 0 18px rgba(139, 92, 246, 0.28);
}

.floating-spark{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(139, 92, 246, 0.55));
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.28);
    animation: luminaFloat 3.2s ease-in-out infinite;
}

.spark-1{ top: 20px; left: 18px; animation-delay: 0s; }
.spark-2{ top: 26px; right: 12px; animation-delay: 0.6s; }
.spark-3{ bottom: 26px; left: 10px; animation-delay: 1.2s; }
.spark-4{ right: 22px; bottom: 16px; animation-delay: 1.8s; }

.reading-status-wrap{
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.reading-eyebrow{
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    font-weight: 700;
}

.reading-progress-title{
    margin-bottom: 0.8rem;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.reading-status-text{
    margin: 0 auto;
    max-width: 36ch;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--color-text-light);
    min-height: 3.6em;
}



















.reading-glow-note{
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.progress-spinner{
    display: none;
}



#partial-reading{
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5ecff 0%, #eef2ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.08);
}

#unlock-section{
    margin-top: 1.5rem;
}


@keyframes luminaSpin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes luminaSpinReverse{
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes luminaPulse{
    0%, 100% { transform: scale(0.96); box-shadow: inset 0 0 24px rgba(139, 92, 246, 0.12), 0 0 24px rgba(139, 92, 246, 0.12); }
    50% { transform: scale(1.03); box-shadow: inset 0 0 28px rgba(139, 92, 246, 0.16), 0 0 36px rgba(139, 92, 246, 0.18); }
}

@keyframes luminaFloat{
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.45; }
    50% { transform: translate3d(0, -12px, 0) scale(1.08); opacity: 1; }
}

@keyframes luminaProgress{
    0% { background-position: 0% 50%; transform: scaleX(0.34); transform-origin: left center; }
    50% { background-position: 100% 50%; transform: scaleX(0.78); transform-origin: left center; }
    100% { background-position: 0% 50%; transform: scaleX(0.58); transform-origin: left center; }
}

@media (max-width: 768px){
    .lumina-funnel{
        padding: 1rem 0 3rem;
    }

    .lumina-funnel .funnel-container{
        padding: 1rem;
    }

    .lumina-funnel .form-section,
    .lumina-funnel .reading-container{
        padding: 1.5rem 1.1rem;
        border-radius: 24px;
    }

    .lumina-funnel .text-center h1{
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 1.1;
    }

    .lumina-funnel .text-center > p{
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .form-group{
        margin-bottom: 1rem;
    }

    .form-group label{
        font-size: 0.98rem;
        margin-bottom: 0.45rem;
    }

    .lumina-form input,
    .lumina-form textarea,
    .lumina-form select{
        padding: 0.9rem 0.95rem;
        border-radius: 12px;
        font-size: 16px;
    }

    .lumina-form textarea{
        min-height: 140px;
    }

    .lumina-form .btn-large{
        min-height: 56px;
        padding: 1rem 1.25rem;
        font-size: 1.06rem;
    }

    

    .aura-core{
        inset: 34px;
    }

    .reading-progress-title{
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

    .reading-status-text{
        font-size: 0.98rem;
        min-height: 4.2em;
    }

    

    

    

    

    .site-header-inner{
        padding: 0.85rem 0 !important;
    }

    .site-title{
        font-size: 1rem;
        word-break: break-word;
    }
}


.hero-kicker{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-bullets{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto 2rem;
    max-width: 780px;
}

.hero-bullets span{
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(139,92,246,0.12);
    box-shadow: 0 10px 22px rgba(139,92,246,0.06);
    font-size: 0.95rem;
    font-weight: 600;
    color: #312e81;
}

.session-note{
    margin: 1rem auto 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.value-section{
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,243,255,0.95));
}

.value-intro{
    max-width: 760px;
    margin: 0 auto 2rem;
}

.insight-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

.insight-card{
    padding: 1.4rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(139,92,246,0.12);
    box-shadow: 0 16px 36px rgba(31, 41, 55, 0.06);
}

.insight-card h3{
    margin-bottom: 0.65rem;
    color: #1f2540;
}

.insight-card p{
    margin-bottom: 0;
    color: var(--color-text-light);
}

.cta-subcopy{
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.top-funnel-actions{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.restart-inline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(139,92,246,0.14);
    background: rgba(255,255,255,0.78);
    color: var(--color-primary-dark);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(139,92,246,0.08);
}

.restart-inline:hover{
    transform: translateY(-1px);
}

.reading-restart-row{
    margin-top: 1rem;
}


.whatsapp-float.visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-float-pill{
    width: auto;
    min-width: 64px;
    height: 56px;
    padding: 0 16px;
    border-radius: 999px;
    color: #1f2937;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.whatsapp-float a{
    text-decoration: none;
}

.top-disclaimer{
    display: none;
}




.whatsapp-float{
    bottom: 96px;
    right: 18px;
}

.whatsapp-float-pill{
    min-width: 132px;
    height: 58px;
    padding: 0 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.32);
}

.whatsapp-float-pill:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(18, 140, 126, 0.38);
}

.whatsapp-tooltip{
    right: 0;
    bottom: 68px;
}

@media (max-width: 768px){
    

    .whatsapp-float{
        bottom: 110px;
        right: 14px;
    }

    .whatsapp-float-pill{
        min-width: 118px;
        height: 52px;
        font-size: 0.88rem;
        padding: 0 14px;
    }
}


/* ============================================================
   UNIFIED WHATSAPP FLOAT
============================================================ */
.whatsapp-float{
    position: fixed;
    right: 18px;
    bottom: 104px;
    z-index: 9999;
}

.whatsapp-float-link{
    text-decoration: none;
}

.whatsapp-float-pill{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 178px;
    height: 62px;
    padding: 10px 16px 10px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 16px 38px rgba(19, 114, 67, 0.28);
}

.whatsapp-float-icon{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.whatsapp-float-icon svg{
    width: 24px;
    height: 24px;
    display: block;
}

.whatsapp-float-copy{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}

.whatsapp-float-copy strong{
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.whatsapp-float-copy small{
    color: rgba(255,255,255,0.88);
    font-size: 0.74rem;
    margin-top: 4px;
}

.whatsapp-float-pill:hover{
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 42px rgba(19, 114, 67, 0.34);
}

.whatsapp-tooltip{
    right: 6px;
    bottom: 72px;
    background: rgba(18, 24, 38, 0.92);
    border-radius: 12px;
    padding: 10px 12px;
}







@media (max-width: 768px){
    .whatsapp-float{
        right: 14px;
        bottom: 114px;
    }

    .whatsapp-float-pill{
        min-width: 154px;
        height: 56px;
        padding: 8px 14px 8px 10px;
        gap: 10px;
    }

    .whatsapp-float-icon{
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .whatsapp-float-copy strong{
        font-size: 0.9rem;
    }

    .whatsapp-float-copy small{
        font-size: 0.68rem;
    }

    
}


/* ============================================================
   LATEST FLOAT + FORM REFINEMENTS
============================================================ */
.hero-buttons .btn.btn-secondary.btn-large[href*="wa.me"]{
    display: none;
}



.whatsapp-float{
    right: 16px;
    bottom: 108px;
    z-index: 10000;
}

.whatsapp-float-pill{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 164px;
    height: 56px;
    padding: 8px 14px 8px 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: 0 14px 32px rgba(21, 128, 61, 0.28);
    backdrop-filter: blur(10px);
}

.whatsapp-float-icon{
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    background: rgba(255,255,255,0.16);
}

.whatsapp-float-copy{
    gap: 2px;
}

.whatsapp-float-copy strong{
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.whatsapp-float-copy small{
    font-size: 0.7rem;
    color: rgba(255,255,255,0.92);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-top: 0;
}

.whatsapp-float-copy .status-dot{
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #dcfce7;
    box-shadow: 0 0 0 4px rgba(220,252,231,0.18);
    display: inline-block;
}

.whatsapp-float-pill:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(21, 128, 61, 0.34);
}

.whatsapp-tooltip{
    display: none !important;
}

.lumina-form select,
.lumina-form input[type="date"]{
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #1f2937 50%), linear-gradient(135deg, #1f2937 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 52px;
}

.lumina-form input[type="date"]::-webkit-calendar-picker-indicator{
    opacity: 0.01;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 768px){
    .whatsapp-float{
        right: 12px;
        bottom: 94px;
    }

    .whatsapp-float-pill{
        min-width: 148px;
        height: 52px;
        padding: 7px 12px 7px 9px;
        border-radius: 16px;
        gap: 9px;
    }

    .whatsapp-float-icon{
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 12px;
    }

    .whatsapp-float-copy strong{
        font-size: 0.84rem;
    }

    .whatsapp-float-copy small{
        font-size: 0.64rem;
    }
}


/* ============================================================
   BRANDING + DATE FIELDS + LOADING ENHANCEMENTS
============================================================ */

.site-branding .custom-logo-link,
.footer-brand-wrap .custom-logo-link{
    display: inline-flex;
    align-items: center;
}

.lumina-brand{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}





.lumina-brand-copy{
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.lumina-brand-copy strong{
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #1f2540;
    letter-spacing: 0.02em;
}

.lumina-brand-copy small{
    margin-top: 0.18rem;
    color: #7c3aed;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer .site-description{
    max-width: 560px;
    margin: 0.8rem auto 0;
}

.birthdate-grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0.85rem;
}

.birthdate-help{
    margin-top: 0.55rem;
    color: var(--color-text-light);
    font-size: 0.88rem;
}





.reading-status-text{
    min-height: 3.2em;
}

.whatsapp-float{
    bottom: max(110px, env(safe-area-inset-bottom) + 88px);
    right: 18px;
}

.whatsapp-float-pill{
    background: linear-gradient(135deg, #25D366 0%, #1FA855 100%);
    border: 1px solid rgba(14, 116, 58, 0.18);
    box-shadow: 0 16px 34px rgba(25, 135, 84, 0.26);
    padding: 0.78rem 1rem 0.78rem 0.82rem;
    gap: 0.72rem;
}

.whatsapp-float-icon{
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.18);
}

.whatsapp-float-copy strong,
.whatsapp-float-copy small,
.whatsapp-float-copy .status-dot{
    color: #fff;
}

.whatsapp-float-copy small{
    opacity: 0.92;
}

.whatsapp-float-copy .status-dot{
    background: #d1fae5;
}

@media (max-width: 767px){
    

    .lumina-brand-copy strong{
        font-size: 1rem;
    }

    .lumina-brand-copy small{
        font-size: 0.66rem;
    }

    .birthdate-grid{
        grid-template-columns: 1fr;
    }

    

    .whatsapp-float{
        bottom: max(102px, env(safe-area-inset-bottom) + 82px);
        right: 14px;
    }

    .whatsapp-float-pill{
        padding: 0.68rem 0.88rem 0.68rem 0.74rem;
        border-radius: 999px;
    }

    .whatsapp-float-copy strong{
        font-size: 0.95rem;
    }

    .whatsapp-float-copy small{
        font-size: 0.73rem;
    }
}


/* Brand header/footer refinement */
.site-branding,
.footer-brand-wrap{
    display: flex;
    justify-content: center;
}

.site-header{
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139,92,246,0.08);
}

.lumina-brand{
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}



.lumina-brand-copy strong{
    font-size: 1.05rem;
}

.lumina-brand-copy small{
    font-size: 0.68rem;
    letter-spacing: 0.1em;
}





.birthdate-grid select{
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #7C3AED 50%), linear-gradient(135deg, #7C3AED 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.6rem;
}

@media (max-width: 767px){
    .lumina-brand{
        gap: 0.65rem;
    }

    

    .lumina-brand-copy strong{
        font-size: 0.98rem;
    }

    .lumina-brand-copy small{
        font-size: 0.62rem;
    }

    .birthdate-grid{
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    
}


/* Header logo refinement */
.site-header .site-header-inner{
    padding: 0.7rem 0 !important;
}

.site-header .site-branding{
    justify-content: flex-start;
}

.site-header .lumina-brand{
    gap: 0.55rem;
}



.site-header .lumina-brand-copy strong{
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-header .lumina-brand-copy small{
    display: none;
}

.site-footer .lumina-brand{
    justify-content: center;
}



.site-footer .lumina-brand-copy strong{
    font-size: 1rem;
}

.site-footer .lumina-brand-copy small{
    font-size: 0.64rem;
}

@media (max-width: 767px){
    

    .site-header .lumina-brand-copy strong{
        font-size: 0.88rem;
    }
}


/* Confirmation modal + single date input refinement */
body.lumina-modal-open{
    overflow: hidden;
}

#birth_date{
    letter-spacing: 0.04em;
}

.lumina-confirm-overlay{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(8px);
    padding: 1.25rem;
    align-items: center;
    justify-content: center;
}

.lumina-confirm-modal{
    position: relative;
    width: min(680px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    background: linear-gradient(180deg, #ffffff 0%, #fcf7ff 100%);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px rgba(88, 28, 135, 0.24);
    border: 1px solid rgba(167, 139, 250, 0.22);
}

.lumina-confirm-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    background: rgba(124, 58, 237, 0.08);
    color: #5b21b6;
    font-size: 1.5rem;
    cursor: pointer;
}

.lumina-confirm-eyebrow{
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.08);
    color: #6d28d9;
    font-size: 0.82rem;
    font-weight: 700;
}

.lumina-confirm-text{
    margin: 0.65rem 0 1.2rem;
    color: var(--color-text-light);
}

.lumina-confirm-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.confirm-item,
.confirm-question-box{
    border-radius: 18px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(167, 139, 250, 0.18);
    padding: 1rem 1.05rem;
}

.confirm-item span,
.confirm-question-box span{
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-bottom: 0.4rem;
}

.confirm-item strong{
    display: block;
    color: #1f2540;
    font-size: 1rem;
    word-break: break-word;
}

.confirm-question-box{
    margin-top: 0.95rem;
}

.confirm-question-box p{
    margin: 0;
    color: #1f2540;
    line-height: 1.7;
    white-space: pre-wrap;
}

.lumina-confirm-actions{
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

@media (max-width: 767px){
    .lumina-confirm-modal{
        padding: 1.15rem;
        border-radius: 20px;
    }

    .lumina-confirm-grid{
        grid-template-columns: 1fr;
    }

    .lumina-confirm-actions{
        flex-direction: column-reverse;
    }

    .lumina-confirm-actions .btn{
        width: 100%;
    }
}


/* Refined text-only brand */
.lumina-brand--text{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #1f2937;
}

.lumina-brand--text .lumina-brand-copy strong{
    display: inline-block;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2c2240;
}

.lumina-brand--text .lumina-brand-copy small,
.lumina-brand--text .lumina-brand-mark{
    display: none !important;
}

.site-header .site-branding,
.site-header .site-branding .custom-logo-link,
.site-header .site-branding .lumina-brand{
    max-width: none;
}

.birthdate-split{
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.birthdate-split input{
    width: auto;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

#birth_month,
#birth_day{
    flex: 0 0 76px;
}

#birth_year{
    flex: 0 0 108px;
}

.birthdate-sep{
    color: #8b6fb5;
    font-size: 1.1rem;
    font-weight: 700;
}

.whatsapp-float{
    bottom: 98px;
}

@media (max-width: 768px){
    .whatsapp-float{
        right: 16px;
        bottom: 88px;
    }

    .whatsapp-float-pill{
        width: 56px;
        height: 56px;
        border-radius: 999px;
        padding: 0;
        justify-content: center;
        box-shadow: 0 14px 28px rgba(17, 24, 39, 0.22);
    }

    .whatsapp-float-copy,
    .whatsapp-tooltip{
        display: none !important;
    }

    .whatsapp-float-icon{
        width: 56px;
        height: 56px;
        border-radius: 999px;
        background: linear-gradient(135deg, #25D366, #16A34A);
        box-shadow: none;
    }

    .whatsapp-float-icon svg{
        width: 28px;
        height: 28px;
    }

    .birthdate-split{
        gap: 0.45rem;
    }

    #birth_month,
    #birth_day{
        flex-basis: 64px;
    }

    #birth_year{
        flex-basis: 92px;
    }

    .lumina-brand--text .lumina-brand-copy strong{
        font-size: 0.92rem;
        letter-spacing: 0.06em;
    }
}


/* Final stability fixes: WhatsApp color + single US birth date field */
#birth_date{
    letter-spacing: 0.04em;
}

@media (max-width: 768px){
    .whatsapp-float .whatsapp-float-pill,
    .whatsapp-float .whatsapp-float-icon{
        background: linear-gradient(135deg, #25D366 0%, #16A34A 100%) !important;
        color: #ffffff !important;
        border-color: transparent !important;
    }

    .whatsapp-float .whatsapp-float-pill{
        box-shadow: 0 14px 28px rgba(22, 163, 74, 0.32) !important;
    }

    .whatsapp-float .whatsapp-float-icon svg path:last-child{
        fill: #ffffff !important;
    }
}


/* Stable segmented date input + circular WhatsApp */
.birthdate-fields{
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.birthdate-fields input{
    text-align: center;
    font-variant-numeric: tabular-nums;
}

#birth_month,
#birth_day{
    width: 74px;
    flex: 0 0 74px;
}

#birth_year{
    width: 108px;
    flex: 0 0 108px;
}

.birthdate-slash{
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.05rem;
}

.whatsapp-float-link{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.whatsapp-float-orb{
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #16A34A 100%);
    box-shadow: 0 16px 34px rgba(22, 163, 74, 0.32);
}

.whatsapp-float-orb .whatsapp-float-icon{
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-orb .whatsapp-float-icon svg{
    width: 30px;
    height: 30px;
}

.whatsapp-float-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.78);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.whatsapp-float-pill,
.whatsapp-tooltip,
.whatsapp-float-copy{
    display: none !important;
}

@media (max-width: 768px){
    .birthdate-fields{
        gap: 0.45rem;
    }

    #birth_month,
    #birth_day{
        width: 64px;
        flex-basis: 64px;
    }

    #birth_year{
        width: 92px;
        flex-basis: 92px;
    }

    .whatsapp-float{
        right: 14px;
        bottom: 86px;
    }

    .whatsapp-float-orb{
        width: 58px;
        height: 58px;
    }

    .whatsapp-float-orb .whatsapp-float-icon{
        width: 58px;
        height: 58px;
    }

    .whatsapp-float-orb .whatsapp-float-icon svg{
        width: 28px;
        height: 28px;
    }

    .whatsapp-float-label{
        min-width: 68px;
        padding: 5px 9px;
        font-size: 0.7rem;
    }
}


/* Final native date + WhatsApp visual override */
#birth_date{
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.whatsapp-float .whatsapp-float-link{
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.whatsapp-float .whatsapp-float-orb{
    width: 72px !important;
    height: 72px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #25D366 0%, #16A34A 100%) !important;
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.34) !important;
}

.whatsapp-float .whatsapp-float-icon{
    width: 72px !important;
    height: 72px !important;
    border-radius: 999px !important;
    background: transparent !important;
}

.whatsapp-float .whatsapp-float-icon svg{
    width: 34px !important;
    height: 34px !important;
}

.whatsapp-float .whatsapp-float-label{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 78px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: rgba(17, 24, 39, 0.82) !important;
    color: #ffffff !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.whatsapp-float .whatsapp-float-pill,
.whatsapp-float .whatsapp-tooltip,
.whatsapp-float .whatsapp-float-copy{
    display: none !important;
}

@media (max-width: 768px){
    .whatsapp-float{
        right: 14px !important;
        bottom: 86px !important;
    }

    .whatsapp-float .whatsapp-float-orb,
    .whatsapp-float .whatsapp-float-icon{
        width: 62px !important;
        height: 62px !important;
    }

    .whatsapp-float .whatsapp-float-icon svg{
        width: 30px !important;
        height: 30px !important;
    }
}


/* Final UI overrides */
.site-branding .lumina-brand--text strong{ font-family: var(--font-heading); font-size: 1.12rem; letter-spacing: 0.04em; color: #1f2937; }







#birth_date{ letter-spacing: .04em; }
@media (max-width: 767px){    }


@media(max-width:767px){}

/* Compact WhatsApp FAB override */






@media(max-width:767px){}


/* ============================================================
   FINAL MOBILE MODAL + WHATSAPP FAB REFINEMENTS
============================================================ */
body.lumina-modal-open{
    overflow: hidden;
}

.lumina-confirm-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(18px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom));
}

.lumina-confirm-modal{
    width: min(560px, 100%);
    max-height: calc(100vh - max(36px, env(safe-area-inset-top)) - max(28px, env(safe-area-inset-bottom)));
    margin: 0 auto;
    padding: 22px 22px 20px;
    border-radius: 24px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.lumina-confirm-head{
    margin-bottom: 16px;
    padding-right: 42px;
}

.lumina-confirm-modal h3{
    margin: 10px 0 8px;
    font-size: clamp(1.7rem, 4vw, 2.2rem);
    line-height: 1.06;
    color: #182033;
}

.lumina-confirm-text{
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
}

.lumina-confirm-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.confirm-item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 88px;
}

.confirm-item--full{
    grid-column: 1 / -1;
}

.confirm-label{
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #7c3aed;
    opacity: 0.86;
}

.confirm-value{
    display: block;
    font-size: 1.02rem;
    line-height: 1.45;
    color: #172033;
    font-weight: 700;
    word-break: break-word;
}

.confirm-question-box{
    margin-top: 12px;
}

.confirm-question-box p{
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.7;
}

.lumina-confirm-actions{
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(252,247,255,0) 0%, rgba(252,247,255,0.94) 22%, #fcf7ff 100%);
    padding-top: 16px;
    margin-top: 16px;
}

.lumina-confirm-actions .btn{
    min-height: 54px;
}

.lumina-confirm-close{
    top: 12px;
    right: 12px;
}













@media (max-width: 767px){
    .lumina-confirm-overlay{
        align-items: flex-start;
        padding: calc(env(safe-area-inset-top) + 10px) 14px calc(env(safe-area-inset-bottom) + 14px);
    }

    .lumina-confirm-modal{
        width: 100%;
        max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 24px);
        padding: 18px 16px 16px;
        border-radius: 22px;
        margin-top: 8px;
    }

    .lumina-confirm-head{
        padding-right: 36px;
        margin-bottom: 14px;
    }

    .lumina-confirm-modal h3{
        font-size: 1.38rem;
        line-height: 1.12;
        margin: 8px 0 8px;
    }

    .lumina-confirm-text{
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .lumina-confirm-grid{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .confirm-item{
        min-height: 0;
        padding: 14px 14px;
        gap: 6px;
        border-radius: 16px;
    }

    .confirm-question-box{
        margin-top: 10px;
        padding: 14px 14px;
        border-radius: 16px;
    }

    .confirm-value{
        font-size: 0.98rem;
        line-height: 1.42;
    }

    .lumina-confirm-actions{
        flex-direction: column-reverse;
        gap: 10px;
        padding-top: 14px;
        margin-top: 14px;
    }

    .lumina-confirm-actions .btn{
        width: 100%;
    }

    

    

    

    
}


/* Final mobile polish overrides */
#confirm-overlay.hidden{display:none !important;}
#confirm-overlay{position:fixed !important;inset:0 !important;z-index:10030 !important;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(10,14,24,.58);backdrop-filter:blur(6px);}
#confirm-overlay .lumina-confirm-modal{background:#fcf7ff !important;border-radius:24px !important;box-shadow:0 24px 80px rgba(15,23,42,.22) !important;}
#confirm-overlay .lumina-confirm-grid{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:12px !important;}
#confirm-overlay .confirm-item{background:#fff !important;border:1px solid rgba(124,58,237,.10) !important;border-radius:16px !important;padding:14px !important;min-height:auto !important;}
#confirm-overlay .confirm-question-box{background:#fff !important;border:1px solid rgba(124,58,237,.10) !important;border-radius:18px !important;padding:14px !important;}
#confirm-overlay .lumina-confirm-actions{display:flex !important;gap:12px !important;justify-content:space-between !important;position:sticky !important;bottom:0 !important;background:linear-gradient(180deg,rgba(252,247,255,0) 0%,rgba(252,247,255,.94) 22%,#fcf7ff 100%) !important;}
#confirm-overlay .lumina-confirm-actions .btn{flex:1 1 0 !important;width:auto !important;}






@media (max-width: 767px){#confirm-overlay{padding:14px !important;align-items:center !important;}#confirm-overlay .lumina-confirm-modal{width:100% !important;max-height:84vh !important;padding:18px 16px 16px !important;border-radius:22px !important;}#confirm-overlay .lumina-confirm-grid{grid-template-columns:1fr !important;}#confirm-overlay .lumina-confirm-actions{flex-direction:column-reverse !important;gap:10px !important;}    }

/* ============================================================
   VISUAL ENHANCEMENT STYLES
   Based on web-design-master professional design principles
============================================================ */

/* Hero Section Enhancement */
.hero-section{
    position: relative;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3E4FF 50%, #FDF2F8 100%);
    overflow: hidden;
}

.hero-section::before{
    content: "";
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero-section::after{
    content: "";
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float{
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Hero Kicker Badge */
.hero-kicker{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.15rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.hero-kicker:hover{
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.12);
}



/* Hero Content */
.hero-content{
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-content h1{
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.1));
    margin-bottom: 1.5rem;
}

.hero-subtitle{
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Hero Bullets */
.hero-bullets{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}





.bullet-icon{
    font-size: 1.2rem;
}

/* Trust Badges */
.trust-badges{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge{
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Section Kicker */
.section-kicker{
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

/* Value Section Enhancement */
.value-section{
    background: white;
    padding: 5rem 0;
}

.value-intro{
    max-width: 800px;
    margin: 0 auto 4rem;
}

.value-intro h2{
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Insight Cards Enhancement */
.insight-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insight-card{
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.insight-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insight-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.2);
}

.insight-card:hover::before{
    opacity: 1;
}

.insight-icon{
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.2));
}

.insight-card h3{
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.insight-card p{
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works{
    background: linear-gradient(180deg, #F9FAFB 0%, #F3E4FF 100%);
    padding: 5rem 0;
}

.how-it-works h2{
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works > .container > .text-center > p{
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* Step Cards */
.steps-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card{
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.08);
    position: relative;
}

.step-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
}

.step-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3);
}

.step-card h3{
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-card p{
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section{
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.cta-section h2{
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subcopy{
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .hero-buttons{
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary{
    background: white;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover{
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Session Note */
.session-note{
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 1rem;
    color: #92400E;
    font-weight: 600;
    margin-top: 1rem;
}

/* Container Enhancements */
.container{
    position: relative;
    z-index: 1;
}

/* Responsive Enhancements */
@media (max-width: 768px){
    .hero-content{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-bullets{
        flex-direction: column;
        align-items: center;
    }
    
    
    
    .hero-buttons{
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large{
        width: 100%;
        max-width: 350px;
    }
    
    .trust-badges{
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge{
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    
    .insight-grid,
    .steps-grid{
        grid-template-columns: 1fr;
    }
    
    .section-kicker{
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce){
    [data-lux-reveal]{opacity:1!important;transform:none!important;transition:none!important}
    .da-hero__inner,.da-button::after{animation:none!important}

    *,
    *::before,
    *::after{
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   READING RESULT REDESIGN - preview + full interpretation only
============================================================ */

#reading-results{
    display: grid;
    gap: 1.6rem;
}





















.reading-focus-chip{
    display: inline-flex;
    align-items: flex-start;
    gap: 0.7rem;
    max-width: 100%;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 14px 34px rgba(139, 92, 246, 0.08);
}



.reading-focus-text{
    color: #32284d;
    line-height: 1.65;
}







#partial-reading-content{
    display: grid;
    gap: 0.95rem;
}





#partial-reading-content p,
#partial-reading-content ul,
#partial-reading-content ol{
    margin: 0;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(139, 92, 246, 0.10);
    box-shadow: 0 10px 26px rgba(139, 92, 246, 0.05);
    color: #3c3355;
}

#partial-reading-content blockquote{
    margin: 0;
    padding: 1.1rem 1.1rem 1.1rem 1.25rem;
    border-radius: 20px;
    border-left: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10), rgba(236, 72, 153, 0.07));
    color: #34284f;
    box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.10);
}

#partial-reading-content ul,
#partial-reading-content ol{
    padding-left: 1.4rem;
}

#partial-reading-content::after{
    content: "";
    display: block;
    height: 80px;
    margin-top: -0.2rem;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 75%);
    pointer-events: none;
}



















@media (min-width: 769px){
    

    
}

@media (max-width: 768px){
    #reading-results{
        gap: 1.15rem;
    }

    

    

    

    

    

    .reading-focus-chip{
        flex-direction: column;
        gap: 0.35rem;
        border-radius: 16px;
        padding: 0.85rem 0.9rem;
    }

    #partial-reading-content p,
    #partial-reading-content ul,
    #partial-reading-content ol,
    #partial-reading-content blockquote{
        padding: 0.95rem 0.95rem;
        border-radius: 16px;
    }

    #partial-reading-content::after{
        height: 62px;
    }

    
}

/* ============================================================
   READING RESULT POLISH - BAZI + inline unlock + WhatsApp CTA
============================================================ */

















.bazi-pill{
    padding: 0.95rem 0.9rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(6px);
}

.bazi-pill span{
    display: block;
    margin-bottom: 0.38rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.bazi-pill strong{
    display: block;
    color: #ffffff;
    font-size: 1.06rem;
    line-height: 1.2;
}





















.unlock-section{
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248, 244, 255, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.10);
}

.unlock-section-intro{
    max-width: 760px;
    margin: 0 auto 1rem;
}

.unlock-section-intro h3{
    margin-bottom: 0.45rem;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    color: #251a3d;
}

.unlock-section-intro p{
    margin: 0;
    color: #5e5575;
    line-height: 1.75;
}

.share-options--inline{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    margin-top: 0.9rem;
}

.share-option{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.08);
}

.share-option-badge{
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.10);
    color: #7c3aed;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-option h4{
    margin: 0 0 0.35rem;
    color: #22183b;
    font-size: 1.16rem;
}

.share-option p{
    margin: 0;
    color: #5c5572;
    line-height: 1.75;
}

.share-option--share{
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.share-option--pay{
    background: linear-gradient(180deg, #fffafc 0%, #f8f1ff 100%);
}

.share-progress{
    margin-top: 1rem;
}

.share-count,
.share-status{
    margin-top: 0.65rem;
}

.unlock-action-btn{
    width: 100%;
    margin-top: auto;
    min-height: 52px;
}

.unlock-price{
    margin: 0.85rem 0 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1;
}















@media (max-width: 768px){
    

    

    .reading-bazi-grid,
    .share-options--inline{
        grid-template-columns: 1fr;
    }

    .reading-section-card,
    .share-option,
    .unlock-section{
        border-radius: 18px;
    }

    

    

    

    

    

    

    

    

    
}


/* ============================================================
   FINAL READING EXPERIENCE OVERRIDE - compact preview / inline unlock / refined full reading
============================================================ */



#partial-reading-content{
    max-width: 760px;
}































.unlock-section{
    padding: 1rem 1.1rem 1.1rem;
    border-radius: 22px;
}

.unlock-section-intro{
    margin: 0 auto 0.85rem;
}

.share-options--inline{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}

.share-option{
    padding: 1rem;
    border-radius: 18px;
}

.share-option h4{
    font-size: 1.05rem;
}

.share-option p{
    margin-bottom: 0.75rem;
}

.unlock-price{
    margin: 0.35rem 0 0.8rem;
    font-size: 1.8rem;
}

.unlock-action-btn{
    min-height: 48px;
}













@media (max-width: 768px){
    

    

    .share-options--inline{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .share-option{
        padding: 0.9rem;
    }

    .share-option-badge{
        margin-bottom: 0.55rem;
    }

    .share-option h4{
        font-size: 0.98rem;
    }

    .share-option p,
    .unlock-section-intro p{
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .unlock-price{
        font-size: 1.55rem;
    }

    .unlock-action-btn{
        min-height: 46px;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        font-size: 0.93rem;
    }

    

    

    

    
}

/* v9 refinements: cleaner teaser preview + compact profile meta */




















@media (max-width: 767px){
    

    

    

    
}

/* v11 full reading layout refinements */




































.reading-highlight-intro{
    margin: 0 0 1rem;
    padding: 1rem 1rem 0.95rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(225, 243, 252, 0.92), rgba(237, 248, 255, 0.86));
}

.reading-highlight-intro p{
    margin: 0 !important;
    color: #22354f !important;
    font-weight: 700;
    line-height: 1.8 !important;
}

.reading-sub-block{
    margin: 0 0 1rem;
}

.reading-sub-title{
    margin: 0 0 0.5rem;
    color: #2d2148;
    font-size: 1.1rem;
    line-height: 1.5;
}

.reading-dot-line{
    position: relative;
    margin: 0 0 0.55rem;
    padding-left: 1rem;
    color: #473d60;
    line-height: 1.9;
}

.reading-dot-line::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #3fc3f1;
}

.reading-bullet-list{
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.reading-bullet-list li{
    position: relative;
    margin: 0 0 0.65rem;
    padding-left: 1rem;
    color: #473d60;
    line-height: 1.9;
}

.reading-bullet-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #3fc3f1;
}

@media (max-width: 767px){
    

    

    

    

    

    

    .reading-highlight-intro{
        padding: 0.9rem 0.85rem;
        border-radius: 16px;
    }
}


/* v12 reference bazi layout */



































@media (max-width: 767px){
    

    

    

    

    

    

    

    
}

/* v13 refined BaZi header + WhatsApp brand pill */



















































@media (max-width: 767px){
    

    

    

    

    

    

    

    

    

    

    

    

    
}

/* v14 polished BaZi sheet + refined WhatsApp CTA */

























































@media (max-width: 767px){
    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    
}


/* v15 strict reference BaZi layout */





























































@media (max-width: 768px){
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}


/* v16 exact mobile proportion tuning */





























































@media (max-width: 768px){
    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    
}

/* v17 clean bazi layout */


.bazi-compact-panel{
    background: #f6f2fb;
    border: 1px solid #eadff6;
    border-radius: 22px;
    padding: 16px;
}

.bazi-compact-meta{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.bazi-compact-meta-col{
    background: #f2ede4;
    border: 1px solid #e4dbcf;
    border-radius: 18px;
    overflow: hidden;
}

.bazi-compact-meta-row{
    display: grid;
    grid-template-columns: 68px minmax(0,1fr);
    gap: 10px;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-bottom: 1px solid #e4dbcf;
}

.bazi-compact-meta-row:last-child{
    border-bottom: 0;
}

.bazi-compact-meta-row--stacked{
    grid-template-columns: 76px minmax(0,1fr);
}

.bazi-compact-meta-label{
    font-size: 13px;
    line-height: 1.25;
    color: #60584e;
    font-weight: 500;
}

.bazi-compact-meta-value{
    font-size: 13px;
    line-height: 1.35;
    color: #26221d;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.bazi-compact-meta-value--muted{
    color: #8d857a;
}

.bazi-compact-table{
    display: grid;
    grid-template-columns: 62px repeat(4, minmax(0, 1fr));
    border: 1px solid #e4dbcf;
    border-radius: 18px;
    overflow: hidden;
    background: #efe8de;
}

.bazi-compact-cell{
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    border-right: 1px solid #e1d8cb;
    border-bottom: 1px solid #e1d8cb;
    background: #f6f2ea;
}

.bazi-compact-cell:nth-child(5n){
    border-right: 0;
}

.bazi-compact-cell:nth-last-child(-n/**/+5){
    border-bottom: 0;
}

.bazi-compact-cell--blank,
.bazi-compact-cell--head,
.bazi-compact-cell--side,
.bazi-compact-cell--god{
    background: #eee8df;
}

.bazi-compact-cell--head{
    font-size: 14px;
    font-weight: 700;
    color: #37322c;
}

.bazi-compact-cell--side{
    justify-content: flex-start;
    padding-left: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #3f3932;
}

.bazi-compact-cell--god{
    min-height: 46px;
}

.bazi-compact-god{
    font-size: 11px;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
}

.bazi-compact-char{
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
}

.bazi-compact-god--metal, .bazi-compact-char--metal{ color: #e1a437; }
.bazi-compact-god--fire, .bazi-compact-char--fire{ color: #e05a4d; }
.bazi-compact-god--earth, .bazi-compact-char--earth{ color: #a27f52; }
.bazi-compact-god--wood, .bazi-compact-char--wood{ color: #56a864; }
.bazi-compact-god--water, .bazi-compact-char--water{ color: #4f93d2; }
.bazi-compact-god--master{ color: #26221d; }
.bazi-compact-char--default{ color: #3d3730; }













@media (max-width: 768px){
    .bazi-compact-panel{
        padding: 12px;
        border-radius: 18px;
    }

    .bazi-compact-meta{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .bazi-compact-meta-col{
        border-radius: 14px;
    }

    .bazi-compact-meta-row{
        grid-template-columns: 44px minmax(0,1fr);
        gap: 8px;
        min-height: 38px;
        padding: 0 10px;
    }

    .bazi-compact-meta-row--stacked{
        grid-template-columns: 52px minmax(0,1fr);
    }

    .bazi-compact-meta-label,
    .bazi-compact-meta-value{
        font-size: 11px;
    }

    .bazi-compact-table{
        grid-template-columns: 46px repeat(4, minmax(0, 1fr));
        border-radius: 14px;
    }

    .bazi-compact-cell{
        min-height: 48px;
        padding: 5px 2px;
    }

    .bazi-compact-cell--head{
        font-size: 12px;
    }

    .bazi-compact-cell--side{
        padding-left: 6px;
        font-size: 11px;
    }

    .bazi-compact-cell--god{
        min-height: 40px;
    }

    .bazi-compact-god{
        font-size: 8px;
    }

    .bazi-compact-char{
        font-size: 24px;
    }

    

    

    

    

    
}

/* v18 final unified bazi layout + compact whatsapp */
















































/* neutralize older bazi variants if present */














@media (max-width: 767px){
    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    

    
}

/* v19 clean rebuilt bazi + whatsapp */
/* ===== Final clean Bazi + WhatsApp styles ===== */
.eo-bazi-card,
.eo-bazi-card *{
    box-sizing: border-box;
}

.eo-bazi-card{
    margin: 0 0 1.25rem;
    padding: 0;
    border: 1px solid #ece3d5;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffdfa 0%, #f8f4ec 100%);
    box-shadow: 0 8px 22px rgba(88, 63, 24, 0.05);
    overflow: hidden;
}

.eo-bazi-shell{
    padding: 14px;
}

.eo-bazi-meta{
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 10px;
    margin-bottom: 12px;
}

.eo-bazi-meta-col{
    min-width: 0;
    background: rgba(255,255,255,0.82);
    border: 1px solid #ede3d2;
    border-radius: 12px;
    padding: 9px 10px;
}

.eo-bazi-meta-row{
    display: grid;
    grid-template-columns: 54px minmax(0,1fr);
    gap: 8px;
    align-items: start;
    padding: 4px 0;
}

.eo-bazi-meta-row + .eo-bazi-meta-row{
    border-top: 1px dashed rgba(167, 136, 90, 0.16);
}

.eo-bazi-meta-label{
    font-size: 11px;
    line-height: 1.45;
    color: #8b7355;
    letter-spacing: .01em;
}

.eo-bazi-meta-value{
    display: block;
    min-width: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #2f2417;
    font-weight: 600;
    word-break: break-word;
}

.eo-bazi-grid{
    display: grid;
    grid-template-columns: 44px repeat(4, minmax(0,1fr));
    border: 1px solid #eadfcb;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.92);
}

.eo-bazi-cell{
    min-width: 0;
    min-height: 42px;
    padding: 6px 4px;
    border-right: 1px solid #efe6d7;
    border-bottom: 1px solid #efe6d7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,0.78);
}

.eo-bazi-grid > :nth-child(5n){ border-right: none; }
.eo-bazi-grid > :nth-last-child(-n/**/+5){ border-bottom: none; }

.eo-bazi-cell--blank,
.eo-bazi-cell--head,
.eo-bazi-cell--side,
.eo-bazi-cell--god{
    background: #f8f1e6;
}

.eo-bazi-cell--head{
    font-size: 11px;
    line-height: 1.2;
    color: #7a664d;
    font-weight: 700;
}

.eo-bazi-cell--side{
    font-size: 10px;
    line-height: 1.2;
    color: #8e7759;
    font-weight: 700;
}

.eo-bazi-cell--god{
    min-height: 38px;
}

.eo-bazi-god{
    font-size: 10px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
}

.eo-bazi-god--master{
    color: #7a3d14;
}

.eo-bazi-char{
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.eo-bazi-char--wood,
.eo-bazi-god--wood{ color: #2f8f55; }
.eo-bazi-char--fire,
.eo-bazi-god--fire{ color: #c94735; }
.eo-bazi-char--earth,
.eo-bazi-god--earth{ color: #8d6a2d; }
.eo-bazi-char--metal,
.eo-bazi-god--metal{ color: #d28a21; }
.eo-bazi-char--water,
.eo-bazi-god--water{ color: #2a6fbd; }

.eo-wa-fab,
.eo-wa-fab *{
    box-sizing: border-box;
}

.eo-wa-fab{
    position: fixed;
    right: 12px;
    bottom: 74px;
    z-index: 10020;
}

.eo-wa-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(37, 211, 102, 0.18);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09);
    text-decoration: none;
}

.eo-wa-badge{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.22);
}

.eo-wa-logo{
    width: 19px;
    height: 19px;
    display: block;
}

.eo-wa-copy{
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.eo-wa-title{
    font-size: 11px;
    line-height: 1.1;
    color: #1f2937;
    font-weight: 700;
}

.eo-wa-sub{
    font-size: 9px;
    line-height: 1.1;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767px){
    .eo-bazi-shell{
        padding: 12px;
    }

    .eo-bazi-meta{
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .eo-bazi-meta-row{
        grid-template-columns: 50px minmax(0,1fr);
    }

    .eo-bazi-meta-label{
        font-size: 10px;
    }

    .eo-bazi-meta-value{
        font-size: 11px;
    }

    .eo-bazi-grid{
        grid-template-columns: 40px repeat(4, minmax(0,1fr));
    }

    .eo-bazi-cell{
        min-height: 38px;
        padding: 6px 3px;
    }

    .eo-bazi-cell--head,
    .eo-bazi-cell--side,
    .eo-bazi-god{
        font-size: 9px;
    }

    .eo-bazi-char{
        font-size: 21px;
    }

    .eo-wa-fab{
        right: 10px;
        bottom: 68px;
    }

    .eo-wa-link{
        gap: 7px;
        padding: 6px 9px;
    }

    .eo-wa-badge{
        width: 31px;
        height: 31px;
        flex-basis: 31px;
    }

    .eo-wa-logo{
        width: 17px;
        height: 17px;
    }

    .eo-wa-title{
        font-size: 10px;
    }

    .eo-wa-sub{
        font-size: 8px;
    }
}


/* ============================================================
   GPT-22 PREVIEW REFINEMENT — LOGIC PRESERVED
============================================================ */
:root{
    --color-primary: #16233B;
    --color-primary-dark: #0E182A;
    --color-primary-light: #33476B;
    --color-secondary: #B28C57;
    --color-secondary-light: #D4B78B;
    --color-accent: #B28C57;
    --color-text: #2C2A28;
    --color-text-light: #736C64;
    --color-bg: #F6F1EA;
    --color-bg-dark: #0E182A;
    --color-success: #2F8F63;
    --color-warning: #B28C57;
    --color-error: #BB6A5A;
    --glass-bg: rgba(253, 251, 248, 0.78);
    --glass-bg-dark: rgba(253, 251, 248, 0.6);
    --glass-border: rgba(178, 140, 87, 0.14);
    --glass-blur: 18px;
    --shadow-sm: 0 2px 10px rgba(22, 35, 59, 0.05);
    --shadow-md: 0 10px 30px rgba(22, 35, 59, 0.07);
    --shadow-lg: 0 18px 45px rgba(22, 35, 59, 0.09);
    --shadow-xl: 0 28px 70px rgba(22, 35, 59, 0.12);
    --shadow-2xl: 0 34px 90px rgba(22, 35, 59, 0.16);
    --shadow-colored: 0 18px 42px rgba(178, 140, 87, 0.16);
    --shadow-glow: 0 0 30px rgba(178, 140, 87, 0.12);
    --shadow-glow-hover: 0 0 38px rgba(178, 140, 87, 0.16);
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.95rem;
    --border-radius-lg: 1.6rem;
}
html{ background: linear-gradient(180deg, #fbf7f2 0%, #f1ebe4 100%); }
body{
    background: linear-gradient(180deg, #fbf7f2 0%, #f1ebe4 100%);
    color: var(--color-text);
    letter-spacing: 0.002em;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: -0.015em;
}
p, li, input, textarea, select, label, small, span, a, button{
    font-family: var(--font-body);
}
.site-header{
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,247,242,0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(178, 140, 87, 0.12);
    box-shadow: 0 8px 28px rgba(22, 35, 59, 0.04);
}
.site-header .site-header-inner{ padding: 1rem 0 !important; }
.lumina-brand, .site-title{
    color: var(--color-primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 600;
}
.lumina-brand-copy strong, .site-title{
    font-family: var(--font-body);
}
.lumina-landing{
    background: transparent;
}
.hero-section{
    min-height: auto;
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, rgba(251,247,242,0) 0%, rgba(251,247,242,0.12) 100%);
}
.hero-content{
    max-width: 920px;
}
.hero-kicker, .section-kicker, .reading-surface-kicker, .reading-eyebrow, .lumina-confirm-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(178, 140, 87, 0.08);
    border: 1px solid rgba(178, 140, 87, 0.12);
    color: var(--color-secondary);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero-content h1{
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--color-primary);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.98;
    margin-bottom: 1.2rem;
}
.hero-subtitle, .cta-subcopy, .value-intro p, .how-it-works > .container > .text-center > p, .lumina-funnel .text-center > p, .lumina-disclaimer{
    color: var(--color-text-light) !important;
    font-size: 1.05rem;
    line-height: 1.8;
}
.hero-bullets{
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
    margin: 1.6rem 0 2rem;
}
.hero-bullet-item, .trust-badge{
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.75rem 1rem;
    background: rgba(253,251,248,0.74);
    border: 1px solid rgba(178, 140, 87, 0.12);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(22,35,59,0.05);
    color: var(--color-primary);
    font-size: 0.95rem;
}
.bullet-icon{ font-size: 0.8rem; }
.btn{
    min-height: 56px;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.btn-large{ min-height: 60px; padding: 1rem 1.8rem; }
.btn-primary{
    background: linear-gradient(180deg, #1A2740 0%, #0E182A 100%);
    color: #fff;
    border-color: rgba(14,24,42,0.9);
    box-shadow: 0 16px 36px rgba(14,24,42,0.18);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 20px 42px rgba(14,24,42,0.24); }
.btn-secondary{
    background: rgba(253,251,248,0.88);
    color: var(--color-primary);
    border: 1px solid rgba(178, 140, 87, 0.2);
    box-shadow: 0 10px 24px rgba(22,35,59,0.06);
}
.btn-secondary:hover{ background: #fff; color: var(--color-primary); border-color: rgba(178, 140, 87, 0.34); }
.value-section, .how-it-works, .cta-section{
    background: transparent !important;
    padding: 2.25rem 0 3rem !important;
}
.value-intro, .how-it-works > .container > .text-center{
    max-width: 840px; margin: 0 auto 1.5rem;
}
.insight-grid, .steps-grid{
    gap: 1.1rem;
}
.insight-card, .step-card{
    background: rgba(253,251,248,0.9) !important;
    border: 1px solid rgba(178, 140, 87, 0.12);
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(22,35,59,0.06);
    text-align: left;
    padding: 1.5rem 1.35rem !important;
}
.insight-card::before{ display:none !important; }
.insight-card h3, .step-card h3{
    color: var(--color-primary);
    font-size: 1.55rem;
    margin-bottom: 0.55rem;
}
.insight-card p, .step-card p{ color: var(--color-text-light); line-height: 1.75; margin-bottom: 0; }
.step-number{
    width: 52px; height: 52px; border-radius: 16px;
    background: linear-gradient(180deg, rgba(178,140,87,0.18), rgba(178,140,87,0.09));
    color: var(--color-secondary);
    box-shadow: none;
}
.trust-badges{ gap: 0.8rem; margin-top: 2rem; }
.lumina-funnel{ background: transparent !important; padding: 2rem 0 4rem; }
.funnel-container{ max-width: 820px; }
.top-funnel-actions{ margin-bottom: 1rem; }
.restart-inline{ color: var(--color-secondary); font-size: 0.92rem; }
.lumina-funnel .form-section, .lumina-funnel .reading-container, #reading-progress, .unlock-section, .reading-surface, .lumina-confirm-modal{
    background: rgba(253,251,248,0.92) !important;
    border: 1px solid rgba(178, 140, 87, 0.14) !important;
    box-shadow: 0 24px 54px rgba(22,35,59,0.08) !important;
    backdrop-filter: blur(14px);
}
.form-section{ padding: 2rem 1.25rem !important; border-radius: 32px; }
.lumina-funnel .text-center h1{
    color: var(--color-primary);
    font-size: clamp(2.45rem, 6vw, 3.6rem);
    line-height: 1;
}
.lumina-form{ max-width: 620px; }
.form-group label{
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.lumina-form input, .lumina-form textarea, .lumina-form select{
    background: rgba(255,255,255,0.84) !important;
    border: 1px solid rgba(178, 140, 87, 0.18) !important;
    border-radius: 18px !important;
    color: var(--color-text) !important;
    box-shadow: inset 0 1px 2px rgba(22,35,59,0.02);
}
.lumina-form input:hover, .lumina-form textarea:hover, .lumina-form select:hover{ border-color: rgba(178, 140, 87, 0.32) !important; }
.lumina-form input:focus, .lumina-form textarea:focus, .lumina-form select:focus{
    border-color: rgba(22,35,59,0.38) !important;
    box-shadow: 0 0 0 4px rgba(178,140,87,0.10) !important;
}
.lumina-form .btn-large{
    border-radius: 999px !important;
    min-height: 58px !important;
}
.birthdate-help, .lumina-privacy-note, .lumina-disclaimer{ font-size: 0.9rem; }
#confirm-overlay{ background: rgba(18,26,47,0.28) !important; backdrop-filter: blur(10px); }
#confirm-overlay .lumina-confirm-modal{ background: #fdfbf8 !important; }
#confirm-overlay .confirm-item, #confirm-overlay .confirm-question-box{
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(178,140,87,0.12) !important;
}
.confirm-label{ color: var(--color-secondary) !important; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
.confirm-value, .confirm-question-box p{ color: var(--color-primary) !important; }
.reading-status-text, .reading-glow-note, .reading-load-name, .reading-load-percent, .share-status, .share-count, .reading-surface-subtitle, .unlock-section-intro p{
    color: var(--color-text-light) !important;
}
.reading-load-bar, .progress-bar, .reading-progress-bar{
    background: rgba(22,35,59,0.08) !important;
    border-radius: 999px !important;
}
.reading-load-fill, .progress-fill, .reading-progress-fill, .reading-progress-step.is-complete .reading-progress-step-index{
    background: linear-gradient(90deg, #16233B 0%, #B28C57 100%) !important;
}

#reading-results{ gap: 1.25rem; }





.reading-focus-chip{ background: rgba(178,140,87,0.08) !important; border: 1px solid rgba(178,140,87,0.12) !important; }



.reading-bazi-kicker, .reading-bazi-mode, .bazi-pill, .reading-bazi-birth, .reading-bazi-summary{
    border-color: rgba(212,183,139,0.18) !important;
}
.unlock-section{
    background: linear-gradient(180deg, rgba(253,251,248,0.98) 0%, rgba(246,241,234,0.98) 100%) !important;
    padding: 1.4rem !important;
}
.unlock-section-intro h3{ color: var(--color-primary) !important; font-size: clamp(1.7rem,3vw,2.35rem) !important; }
.share-options--inline{ gap: 1rem !important; }
.share-option{
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(178,140,87,0.14) !important;
    border-radius: 26px !important;
    box-shadow: 0 16px 38px rgba(22,35,59,0.06) !important;
}
.share-option-badge{
    background: rgba(178,140,87,0.10) !important;
    color: var(--color-secondary) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
}
.share-option h4{ color: var(--color-primary) !important; font-size: 1.5rem !important; }
.share-option p{ color: var(--color-text-light) !important; line-height: 1.75; }
.unlock-price{ color: var(--color-primary) !important; font-family: var(--font-heading); font-size: 2.25rem !important; font-weight: 600; }
.unlock-action-btn{ width: 100%; border-radius: 999px !important; min-height: 56px !important; }

.site-footer{
    background: transparent;
}
.site-footer-inner{ border-top: 1px solid rgba(178,140,87,0.14) !important; padding-top: 2.25rem !important; }
.site-footer .site-description, .site-footer .copyright p, .site-footer a{ color: var(--color-text-light) !important; }
.site-footer .lumina-brand-copy strong, .site-footer .site-title{ color: var(--color-primary) !important; }
.eo-wa-link{
    background: rgba(253,251,248,0.92) !important;
    border: 1px solid rgba(178,140,87,0.14) !important;
    box-shadow: 0 16px 34px rgba(22,35,59,0.08) !important;
}
.eo-wa-title{ color: var(--color-primary) !important; }
.eo-wa-sub{ color: var(--color-text-light) !important; }
@media (max-width: 768px){
    .hero-section{ padding: 3.5rem 0 2rem; }
    .hero-content h1{ font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .hero-bullets{ gap: 0.6rem; }
    .hero-bullet-item, .trust-badge{ width: 100%; justify-content: center; }
    .btn-large{ width: 100%; }
    .hero-buttons{ flex-direction: column; }
    .value-section, .how-it-works, .cta-section{ padding: 1.5rem 0 2rem !important; }
    .insight-grid, .steps-grid, .share-options--inline{ grid-template-columns: 1fr !important; }
    .form-section, #reading-progress, .unlock-section, .reading-surface{ border-radius: 24px !important; }
    
    
    .site-header .site-header-inner{ padding: 0.85rem 0 !important; }
}


.hero-bullets > span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1rem;
    background: rgba(253,251,248,0.74);
    border: 1px solid rgba(178, 140, 87, 0.12);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(22,35,59,0.05);
    color: var(--color-primary);
    font-size: 0.95rem;
}

.site-footer .lumina-legal-links a:hover, .site-footer .footer-menu a:hover, .site-navigation a:hover{ color: var(--color-primary) !important; opacity: .8; }

/* ===== GPT-30 Destiny Blueprint Preview Redesign ===== */
body.lumina-reading-results-mode .site-footer,
body.lumina-reading-results-mode .site-header,
.page-template-page-funnel .eo-wa-fab{
    display: none !important;
}

body.lumina-reading-results-mode .lumina-funnel{
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
    background-color: #F7F3EE !important;
    background-image:
        radial-gradient(rgba(191, 169, 142, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(191, 169, 142, 0.03) 1px, transparent 1px) !important;
    background-size: 50px 50px, 50px 50px !important;
    background-position: 0 0, 25px 25px !important;
}

body.lumina-reading-results-mode .lumina-funnel .funnel-container{
    max-width: 480px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

body.lumina-reading-results-mode .reading-container,
body.lumina-reading-results-mode #reading-results{
    display: block !important;
}

body.lumina-reading-results-mode #partial-reading.destiny-preview-shell,
body.lumina-reading-results-mode #unlock-section.action-screen{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
}

body.lumina-reading-results-mode .destiny-preview-shell .full-screen,
body.lumina-reading-results-mode #unlock-section.action-screen{
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    padding: 28px 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

body.lumina-reading-results-mode .module-content{
    position: relative;
    z-index: 1;
    width: 100%;
}

body.lumina-reading-results-mode .preview-topbar{
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 28px;
}

body.lumina-reading-results-mode .preview-back{
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #2A2A28;
    text-decoration: none;
    border: 1px solid rgba(191,169,142,0.26);
    background: rgba(255,255,255,0.76);
}

body.lumina-reading-results-mode .preview-back-icon{
    font-size: 1rem;
    line-height: 1;
}

body.lumina-reading-results-mode .preview-topbrand{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #2A2A28;
}

body.lumina-reading-results-mode .cover-screen{
    justify-content: space-between;
    text-align: center;
    padding-top: 8px !important;
    padding-bottom: 18px !important;
}

body.lumina-reading-results-mode .cover-brand{
    font-size: 12px;
    font-weight: 700;
    color: #BFA98E;
    letter-spacing: 0.12em;
    margin-bottom: auto;
}

body.lumina-reading-results-mode .cover-title-wrap{
    margin-top: auto;
    margin-bottom: auto;
}

body.lumina-reading-results-mode .cover-main-title,
body.lumina-reading-results-mode .module-title{
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #2A2A28;
}

body.lumina-reading-results-mode .cover-main-title{
    font-size: clamp(2.15rem, 8vw, 3rem);
    line-height: 1.06;
    margin: 0 0 8px;
}

body.lumina-reading-results-mode .cover-sub-title{
    font-size: 15px;
    color: #888886;
    margin-bottom: 18px;
}

body.lumina-reading-results-mode .cover-user-info{
    font-size: 14px;
    color: #444442;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

body.lumina-reading-results-mode .cover-user-info::before,
body.lumina-reading-results-mode .cover-user-info::after{
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(191,169,142,0.8);
}

body.lumina-reading-results-mode .scroll-guide{
    margin-top: auto;
    opacity: 0.76;
}

body.lumina-reading-results-mode .scroll-icon{
    width: 20px;
    height: 20px;
    stroke: #BFA98E;
    stroke-width: 2px;
    fill: none;
}

body.lumina-reading-results-mode .page-divider{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
}

body.lumina-reading-results-mode .page-divider span{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #BFA98E;
    opacity: 0.32;
}

body.lumina-reading-results-mode .intro-screen,
body.lumina-reading-results-mode .chapter-screen{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

body.lumina-reading-results-mode .module-title{
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 22px;
    line-height: 1.2;
}

body.lumina-reading-results-mode .chart-keyword{
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #BFA98E;
    text-transform: uppercase;
}

body.lumina-reading-results-mode .intro-list{
    display: grid;
    gap: 14px;
}

body.lumina-reading-results-mode .intro-item{
    font-size: 16px;
    line-height: 1.72;
    color: #444442;
    padding-left: 4px;
}

body.lumina-reading-results-mode .chapter-list{
    display: grid;
    gap: 14px;
}

body.lumina-reading-results-mode .chapter-card{
    position: relative;
    padding: 18px 18px 17px;
    background: rgba(255,255,255,0.8);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    overflow: hidden;
}

body.lumina-reading-results-mode .card-watermark{
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 56px;
    height: 56px;
    stroke: #BFA98E;
    stroke-width: 1px;
    fill: none;
    opacity: 0.06;
}

body.lumina-reading-results-mode .chapter-title{
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 700;
    color: #2A2A28;
    margin-bottom: 5px;
}

body.lumina-reading-results-mode .chapter-desc{
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #888886;
}

body.lumina-reading-results-mode #unlock-section.action-screen{
    padding-top: 24px !important;
    padding-bottom: 8px !important;
}

body.lumina-reading-results-mode .closing-text{
    font-size: 15px;
    line-height: 1.75;
    color: #444442;
    margin-bottom: 24px;
}

body.lumina-reading-results-mode .btn-group{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

body.lumina-reading-results-mode .btn{
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

body.lumina-reading-results-mode .btn-primary{
    background: #2A2A28 !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(42,42,40,0.12);
}

body.lumina-reading-results-mode .btn-secondary,
body.lumina-reading-results-mode .blueprint-share-btn{
    background: transparent !important;
    color: #2A2A28 !important;
    border: 1px solid rgba(42,42,40,0.16) !important;
}

body.lumina-reading-results-mode .payment-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0.46;
    margin-bottom: 22px;
}

body.lumina-reading-results-mode .payment-icon{
    height: 12px;
    fill: #2A2A28;
}

body.lumina-reading-results-mode .blueprint-share-zone{
    margin-bottom: 18px;
}

body.lumina-reading-results-mode .preview-share-count{
    margin-bottom: 6px;
    font-size: 13px;
    color: #444442;
}

body.lumina-reading-results-mode .preview-share-count-accent{
    color: #BFA98E;
    font-weight: 700;
}

body.lumina-reading-results-mode .preview-progress-rail{
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(42,42,40,0.08);
    overflow: hidden;
    margin-bottom: 10px;
}

body.lumina-reading-results-mode .preview-progress-fill{
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #BFA98E 0%, #d1bea7 100%);
}

body.lumina-reading-results-mode .preview-share-note{
    font-size: 13px;
    line-height: 1.58;
    color: #888886;
    margin-bottom: 12px;
}

body.lumina-reading-results-mode .preview-share-actions{
    display: grid;
    gap: 10px;
}

body.lumina-reading-results-mode .preview-share-status{
    min-height: 18px;
    margin-top: 8px;
    font-size: 12px;
    color: #888886;
}

body.lumina-reading-results-mode .disclaimer{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
    color: #888886;
}

body.lumina-reading-results-mode .disclaimer a{
    color: #BFA98E;
    text-decoration: none;
}

@media (max-width: 375px){
    body.lumina-reading-results-mode .lumina-funnel .funnel-container{
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    body.lumina-reading-results-mode .cover-main-title{
        font-size: 34px;
    }
}

/* ===== GPT-31: Destiny Archive preview replacement ===== */
body.lumina-reading-results-mode .reading-results{
    width: 100%;
}
body.lumina-reading-results-mode #partial-reading.destiny-archive-preview{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 28px;
}
body.lumina-reading-results-mode .destiny-archive-preview{
    color: #444442;
}
body.lumina-reading-results-mode .destiny-archive-preview .screen{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
body.lumina-reading-results-mode .destiny-archive-preview .screen.visible{
    opacity: 1;
    transform: translateY(0);
}
body.lumina-reading-results-mode .destiny-archive-preview .cover{
    text-align: center;
    align-items: center;
    justify-content: space-between;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-top{
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #BFA98E;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-center{
    margin: auto 0;
    width: 100%;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-main,
body.lumina-reading-results-mode .destiny-archive-preview .title{
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 700;
    color: #2A2A28;
    letter-spacing: -0.01em;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-main{
    font-size: 38px;
    line-height: 1.08;
    margin-bottom: 8px;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-sub{
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #888886;
    margin-bottom: 24px;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2A2A28;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    flex-wrap: wrap;
    text-align: center;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta::before,
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta::after{
    content: "";
    width: 24px;
    height: 1px;
    background: #BFA98E;
    flex: 0 0 24px;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}
body.lumina-reading-results-mode .destiny-archive-preview .scroll-arrow{
    width: 22px;
    height: 22px;
    stroke: #BFA98E;
    stroke-width: 2;
    fill: none;
    animation: gpt31FloatArrow 2s ease-in-out infinite;
}
@keyframes gpt31FloatArrow{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
body.lumina-reading-results-mode .destiny-archive-preview .title{
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 24px;
}
body.lumina-reading-results-mode .destiny-archive-preview .intro-list{
    display: grid;
    gap: 16px;
}
body.lumina-reading-results-mode .destiny-archive-preview .intro-item,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content p{
    font-size: 16px;
    line-height: 1.6;
    color: #444442;
    margin: 0;
}
body.lumina-reading-results-mode .destiny-archive-preview .chapter-list{
    display: grid;
    gap: 16px;
}
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card{
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.03);
    padding: 20px;
}
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-title{
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: #2A2A28;
    font-weight: 700;
    margin-bottom: 6px;
}
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-desc{
    font-size: 14px;
    line-height: 1.6;
    color: #888886;
}
body.lumina-reading-results-mode #unlock-section.action-screen{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 28px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: 0;
}
body.lumina-reading-results-mode #unlock-section .closing-copy{
    font-size: 16px;
    line-height: 1.6;
    color: #444442;
    margin-bottom: 28px;
}
body.lumina-reading-results-mode #unlock-section .actions{
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}
body.lumina-reading-results-mode #unlock-section .btn{
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
body.lumina-reading-results-mode #unlock-section .btn:active{ transform: scale(0.985); }
body.lumina-reading-results-mode #unlock-section .btn-primary{
    background: #2A2A28;
    color: #FFFFFF;
}
body.lumina-reading-results-mode #unlock-section .btn-primary:hover{
    background: #1f1f1d;
}
body.lumina-reading-results-mode #unlock-section .btn-secondary{
    background: transparent;
    color: #2A2A28;
    border-color: #2A2A28;
}
body.lumina-reading-results-mode #unlock-section .btn-secondary:hover{
    background: #2A2A28;
    color: #FFFFFF;
}
body.lumina-reading-results-mode #unlock-section .payment-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0.4;
}
body.lumina-reading-results-mode #unlock-section .payment-icon{
    height: 12px;
    fill: #2A2A28;
}
body.lumina-reading-results-mode #unlock-section .disclaimer{
    font-size: 12px;
    line-height: 1.5;
    color: #888886;
    text-align: left;
}
body.lumina-reading-results-mode #unlock-section .preview-share-zone,
body.lumina-reading-results-mode #unlock-section #share-status,
body.lumina-reading-results-mode #unlock-section .preview-progress-rail,
body.lumina-reading-results-mode #unlock-section .preview-share-note,
body.lumina-reading-results-mode #unlock-section .preview-share-count{
    display: none !important;
}
body.lumina-reading-results-mode #partial-reading-content::after,
body.lumina-reading-results-mode .card-watermark,
body.lumina-reading-results-mode .preview-topbar,
body.lumina-reading-results-mode .scroll-guide .scroll-icon{
    display: none;
}
@media (max-width: 375px){
    body.lumina-reading-results-mode #partial-reading.destiny-archive-preview,
    body.lumina-reading-results-mode #unlock-section.action-screen{
        padding-left: 24px;
        padding-right: 24px;
    }
    body.lumina-reading-results-mode .destiny-archive-preview .cover-main{
        font-size: 34px;
    }
}



/* ===== GPT-32: remove outer shell, restore clean full-screen reading flow ===== */
body.lumina-reading-results-mode .lumina-funnel .funnel-container,
body.lumina-reading-results-mode .reading-container,
body.lumina-reading-results-mode #reading-results,
body.lumina-reading-results-mode #partial-reading.destiny-archive-preview,
body.lumina-reading-results-mode #unlock-section.action-screen{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

body.lumina-reading-results-mode .lumina-funnel .funnel-container{
    max-width: 480px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

body.lumina-reading-results-mode .reading-container,
body.lumina-reading-results-mode #reading-results{
    padding: 0 !important;
    margin: 0 !important;
}

body.lumina-reading-results-mode #partial-reading.destiny-archive-preview{
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .screen,
body.lumina-reading-results-mode #unlock-section.action-screen{
    min-height: 100vh !important;
    padding: 40px 0 !important;
    justify-content: center !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .cover-top{
    margin-top: 0 !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .cover-center{
    margin: auto 0 !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .title{
    margin-bottom: 24px !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .intro-list,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content{
    display: grid !important;
    gap: 16px !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .intro-item,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content p,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content ul,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content ol,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content blockquote{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #444442 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
}

body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content::after,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content h2::before,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content h3::before,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content h4::before{
    display: none !important;
}

body.lumina-reading-results-mode .destiny-archive-preview .chapter-card{
    border-radius: 12px !important;
    background: #FFFFFF !important;
    box-shadow: 0 3px 15px rgba(0,0,0,0.03) !important;
    border: 0 !important;
}

body.lumina-reading-results-mode #unlock-section.action-screen{
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.lumina-reading-results-mode #unlock-section .payment-icons{
    display: none !important;
}

body.lumina-reading-results-mode #unlock-section .disclaimer{
    margin-top: 32px !important;
}

.page-template-page-funnel .eo-wa-fab,
.page-template-page-funnel .eo-wa-widget,
.page-template-page-funnel [class*="wa-widget"],
.page-template-page-funnel [class*="wa-fab"]{
    display: none !important;
}

@media (max-width: 375px){
    body.lumina-reading-results-mode .lumina-funnel .funnel-container{
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.lumina-reading-results-mode .destiny-archive-preview .cover-main{
        font-size: 34px !important;
    }
}


/* ===== GPT-33: flatten archive preview to match reference full-screen flow ===== */
body.lumina-reading-results-mode .site-footer,
body.lumina-reading-results-mode .site-header,
.page-template-page-funnel .eo-wa-fab,
.page-template-page-funnel .lumina-wa-fab,
.page-template-page-funnel .lumina-whatsapp-float,
.page-template-page-funnel [class*="wa-widget"],
.page-template-page-funnel [class*="wa-fab"]{
    display: none !important;
}
body.lumina-reading-results-mode .lumina-funnel{
    padding: 0 !important;
    background-color: #F7F3EE !important;
    background-image: radial-gradient(rgba(191, 169, 142, 0.03) 1px, transparent 1px), radial-gradient(rgba(191, 169, 142, 0.03) 1px, transparent 1px) !important;
    background-size: 50px 50px, 50px 50px !important;
    background-position: 0 0, 25px 25px !important;
}
body.lumina-reading-results-mode .lumina-funnel .funnel-container,
body.lumina-reading-results-mode .reading-container,
body.lumina-reading-results-mode #reading-results,
body.lumina-reading-results-mode #partial-reading.destiny-archive-preview,
body.lumina-reading-results-mode #unlock-section.action-screen{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
body.lumina-reading-results-mode .lumina-funnel .funnel-container{
    max-width: 480px !important;
    margin: 0 auto !important;
    padding: 0 28px !important;
}
body.lumina-reading-results-mode .reading-container,
body.lumina-reading-results-mode #reading-results,
body.lumina-reading-results-mode #partial-reading.destiny-archive-preview{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
body.lumina-reading-results-mode .destiny-archive-preview{ color: #444442 !important; }
body.lumina-reading-results-mode .destiny-archive-preview .screen{
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 40px 0 !important;
    opacity: 1 !important;
    transform: none !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover{
    text-align: center !important;
    align-items: center !important;
    justify-content: space-between !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-top{
    width: 100% !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
    color: #BFA98E !important;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-center{ margin: auto 0 !important; width: 100% !important; }
body.lumina-reading-results-mode .destiny-archive-preview .cover-main,
body.lumina-reading-results-mode .destiny-archive-preview .title{
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-weight: 700 !important;
    color: #2A2A28 !important;
    letter-spacing: -0.01em !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-main{ font-size: 38px !important; line-height: 1.08 !important; margin-bottom: 8px !important; }
body.lumina-reading-results-mode .destiny-archive-preview .cover-sub{
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
    font-size: 14px !important; line-height: 1.4 !important; color: #888886 !important; margin-bottom: 24px !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta{
    display: flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; flex-wrap: wrap !important; text-align: center !important;
    font-size: 15px !important; line-height: 1.4 !important; font-weight: 700 !important; color: #2A2A28 !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta::before,
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta::after{
    content:"" !important; width:24px !important; height:1px !important; background:#BFA98E !important; flex:0 0 24px !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-bottom{ width:100% !important; display:flex !important; justify-content:center !important; margin-bottom:8px !important; }
body.lumina-reading-results-mode .destiny-archive-preview .scroll-arrow{ width:22px !important; height:22px !important; stroke:#BFA98E !important; stroke-width:2 !important; fill:none !important; animation:gpt33FloatArrow 2s ease-in-out infinite !important; }
@keyframes gpt33FloatArrow{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }
body.lumina-reading-results-mode .page-divider{ width:100% !important; display:flex !important; align-items:center !important; justify-content:center !important; gap:8px !important; margin:30px 0 !important; }
body.lumina-reading-results-mode .page-divider span{ width:4px !important; height:4px !important; border-radius:50% !important; background:#BFA98E !important; opacity:.3 !important; }
body.lumina-reading-results-mode .destiny-archive-preview .title{ font-size:24px !important; line-height:1.2 !important; margin-bottom:24px !important; text-align:left !important; }
body.lumina-reading-results-mode .destiny-archive-preview .intro-screen,
body.lumina-reading-results-mode .destiny-archive-preview .chapter-screen,
body.lumina-reading-results-mode #unlock-section.action-screen{ padding-top: 0 !important; padding-bottom: 0 !important; }
body.lumina-reading-results-mode .destiny-archive-preview .intro-list,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content{ display:grid !important; gap:16px !important; }
body.lumina-reading-results-mode .destiny-archive-preview .intro-item,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content p,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content ul,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content ol,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content blockquote{
    margin:0 !important; padding:0 !important; background:transparent !important; border:0 !important; box-shadow:none !important; border-radius:0 !important;
    font-size:16px !important; line-height:1.6 !important; color:#444442 !important;
}
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content p::before{ content:""; }
body.lumina-reading-results-mode .destiny-archive-preview .chapter-list{ display:grid !important; gap:16px !important; }
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card{ background:#FFFFFF !important; border-radius:12px !important; box-shadow:0 3px 15px rgba(0,0,0,0.03) !important; padding:20px !important; border:0 !important; }
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-title{ font-size:16px !important; line-height:1.35 !important; font-weight:700 !important; color:#2A2A28 !important; margin-bottom:6px !important; }
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-desc{ font-size:14px !important; line-height:1.6 !important; color:#888886 !important; }
body.lumina-reading-results-mode #unlock-section.action-screen .module-content{ width:100% !important; }
body.lumina-reading-results-mode #unlock-section .closing-copy{ font-size:16px !important; line-height:1.6 !important; color:#444442 !important; margin-bottom:28px !important; }
body.lumina-reading-results-mode #unlock-section .actions{ display:grid !important; gap:16px !important; margin-bottom:12px !important; }
body.lumina-reading-results-mode #unlock-section .btn{ width:100% !important; min-height:48px !important; border-radius:12px !important; font-size:16px !important; font-weight:700 !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; }
body.lumina-reading-results-mode #unlock-section .btn-primary{ background:#2A2A28 !important; color:#FFFFFF !important; border:1px solid #2A2A28 !important; box-shadow:none !important; }
body.lumina-reading-results-mode #unlock-section .btn-secondary{ background:transparent !important; color:#2A2A28 !important; border:1px solid #2A2A28 !important; }
body.lumina-reading-results-mode #unlock-section .share-safe-note{ margin-top:0 !important; margin-bottom:18px !important; font-size:12px !important; line-height:1.6 !important; color:#70706E !important; }
body.lumina-reading-results-mode #unlock-section .disclaimer{ margin-top:0 !important; font-size:12px !important; line-height:1.55 !important; color:#888886 !important; text-align:left !important; }
body.lumina-reading-results-mode #unlock-section .payment-icons,
body.lumina-reading-results-mode .preview-topbar,
body.lumina-reading-results-mode .card-watermark,
body.lumina-reading-results-mode .preview-share-zone,
body.lumina-reading-results-mode #share-status,
body.lumina-reading-results-mode .preview-progress-rail,
body.lumina-reading-results-mode .preview-share-note,
body.lumina-reading-results-mode .preview-share-count,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content::after,
body.lumina-reading-results-mode .site-footer,
body.lumina-reading-results-mode .site-header{ display:none !important; }
@media (max-width: 375px){
  body.lumina-reading-results-mode .lumina-funnel .funnel-container{ padding-left:24px !important; padding-right:24px !important; }
  body.lumina-reading-results-mode .destiny-archive-preview .cover-main{ font-size:34px !important; }
}



/* ===== Theme selector / recovery improvements ===== */
.lumina-theme-group .optional{display:inline-block;margin-left:8px;padding:2px 8px;border-radius:999px;font-size:12px;line-height:1.6;background:rgba(191,169,142,.12);color:#8b7355;font-weight:600}






.full-reading-return-note{margin:14px 0 0;font-size:13px;color:#6d655c;line-height:1.65;text-align:center}
#review-full-reading-btn.hidden{display:none!important}
@media (max-width: 640px){}

/* 2026-03-16: single-focus dropdown + back controls */
.theme-dropdown-shell{
    position:relative;
}
.theme-select{
    width:100%;
    min-height:58px;
    border-radius:18px;
    border:1px solid rgba(139,92,246,.18);
    background:rgba(255,255,255,.92);
    padding:0 18px;
    font-size:16px;
    font-weight:600;
    color:#1f2937;
    box-shadow:0 10px 24px rgba(124,58,237,.06);
}
.theme-select:focus{
    outline:none;
    border-color:rgba(124,58,237,.48);
    box-shadow:0 0 0 4px rgba(124,58,237,.08), 0 12px 28px rgba(124,58,237,.12);
}
.theme-selection-card{
    display:block;
    margin-top:12px;
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(135deg, rgba(243,232,255,.88), rgba(255,255,255,.96));
    border:1px solid rgba(124,58,237,.12);
    box-shadow:0 14px 32px rgba(124,58,237,.08);
}
.theme-selection-card.hidden{
    display:none;
}
.theme-selection-label{
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight:700;
    color:#7c3aed;
    margin-bottom:6px;
}
.theme-selection-title{
    font-size:18px;
    line-height:1.35;
    font-weight:700;
    color:#1f2937;
}
.theme-selection-desc{
    margin:8px 0 0;
    font-size:14px;
    line-height:1.7;
    color:#4b5563;
}
.btn-inline-back{
    margin-top:12px;
}
.reading-restart-row .btn-inline-back{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
}
.actions #back-to-form-btn{
    border-color:rgba(124,58,237,.18);
}
@media (max-width:640px){
    .theme-selection-title{
        font-size:17px;
    }
    .reading-restart-row{
        display:grid;
        gap:10px;
    }
}


/* ============================================================
   GPT-54 HOMEPAGE REBUILD
============================================================ */

body.home{
    background:
        radial-gradient(circle at top center, #FAF7F3 0%, #F7F3EE 42%, #F5F1ED 100%);
    color: #181513;
}

body.home::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: multiply;
    z-index: 0;
}

body.home #masthead,
body.home #colophon,
body.home .eo-wa-fab{
    display: none !important;
}

body.home .skip-link{
    z-index: 100;
}


[data-lux-reveal]{opacity:0;transform:translate3d(0,22px,0);transition:opacity .85s cubic-bezier(.22,1,.36,1),transform .85s cubic-bezier(.22,1,.36,1);will-change:opacity,transform}
[data-lux-reveal="soft"]{transform:translate3d(0,16px,0)}
[data-lux-reveal].is-visible{opacity:1;transform:none}
@keyframes daHomepageFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
@keyframes daButtonSheen{0%{transform:translateX(-130%)}100%{transform:translateX(130%)}}

.da-homepage{
    position: relative;
    z-index: 1;
    color: #181513;
}

.da-shell{
    width: min(100%, 1240px);
    margin: 0 auto;
    padding-left: max(24px, calc(env(safe-area-inset-left) + 24px));
    padding-right: max(24px, calc(env(safe-area-inset-right) + 24px));
}

.da-shell--narrow{
    max-width: 760px;
}

.da-shell--reading{
    max-width: 820px;
}

.da-shell--footer{
    max-width: 720px;
}

.da-section{
    padding: 100px 0 0;
}

.da-brandbar{
    padding: max(32px, calc(env(safe-area-inset-top) + 32px)) 0 0;
}

.da-brandbar__text{
    margin: 0;
    text-align: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(24, 21, 19, 0.8);
}

.da-hero{
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 20px;
}

.da-hero__inner{
    text-align: center;
    animation: daHomepageFloat 10s ease-in-out infinite;
}

.da-kicker,
.da-scroll-note,
.da-cta__note,
.da-footer__links a,
.da-testimonial__meta{
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
}

.da-kicker{
    margin: 0 0 24px;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A67F5D;
}

.da-hero__title,
.da-section-heading h2,
.da-cta h2{
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
    letter-spacing: 0;
    color: #181513;
}

.da-hero__title{
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.da-hero__copy{
    max-width: 600px;
    margin: 0 auto 40px;
}

.da-hero__copy p,
.da-insight-item__content p,
.da-cta__copy,
.da-testimonial__text,
.da-footer__disclaimer{
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    color: #5F5853;
}

.da-hero__copy p + p,
.da-testimonial + .da-testimonial{
    margin-top: 24px;
}

.da-scroll-note{
    margin: 0;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8A827C;
}

.da-section-heading{
    text-align: center;
    margin-bottom: 40px;
}

.da-section-heading h2,
.da-cta h2{
    font-size: 28px;
    line-height: 1.2;
}

.da-accent-line{
    display: block;
    width: 60px;
    height: 1px;
    margin: 18px auto 0;
    background: rgba(166, 127, 93, 0.3);
}

.da-insight-list{
    display: flex;
    flex-direction: column;
}

.da-insight-item{
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(24, 21, 19, 0.06);
}

.da-insight-item:last-child{
    border-bottom: none;
}

.da-insight-item__icon{
    width: 24px;
    height: 24px;
    color: rgba(166, 127, 93, 0.8);
    margin-top: 4px;
}

.da-insight-item__icon svg{
    width: 24px;
    height: 24px;
}

.da-insight-item__content h3{
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
    color: #181513;
}

.da-cta__box{
    border-top: 1px solid rgba(24, 21, 19, 0.06);
    border-bottom: 1px solid rgba(24, 21, 19, 0.06);
    padding: 40px 0;
    text-align: center;
}

.da-cta__copy{
    max-width: 500px;
    margin: 16px auto 24px;
}

.da-hero__actions{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    margin:0 auto 18px;
}

.da-session-note{
    margin:0 auto 16px;
    max-width:420px;
    text-align:center;
    font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;
    font-size:12px;
    line-height:1.7;
    font-weight:300;
    color:#8A827C;
}

.da-button{
    position:relative;
    overflow:hidden;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #181513;
    border-radius: 4px;
    padding: 16px 48px;
    text-align: center;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #181513;
    background: transparent;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.da-button::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(110deg,transparent 0%,rgba(24,21,19,0.06) 45%,transparent 100%);
    transform:translateX(-130%);
    animation:daButtonSheen 3.6s ease-in-out infinite;
    pointer-events:none;
}

.da-button--ghost{
    border-color:rgba(166,127,93,0.28);
    background:rgba(255,255,255,0.66);
}

.da-button--ghost:hover,
.da-button--ghost:focus-visible{
    background:rgba(255,255,255,0.88);
    border-color:rgba(166,127,93,0.5);
}

.da-button:hover,
.da-button:focus-visible{
    background: rgba(24, 21, 19, 0.04);
    transform: translateY(-1px);
}

.da-button:focus-visible{
    outline: 1px solid rgba(166, 127, 93, 0.65);
    outline-offset: 3px;
}

.da-cta__note{
    margin: 14px 0 0;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8A827C;
}

.da-testimonial-list{
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.da-testimonial{
    position: relative;
    text-align: center;
    padding: 0 4px;
}

.da-testimonial__quote{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 96px;
    line-height: 0.8;
    color: rgba(166, 127, 93, 0.1);
    pointer-events: none;
}

.da-testimonial__text{
    position: relative;
    z-index: 1;
}

.da-testimonial__meta{
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A827C;
}

.da-footer{
    padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 20px));
}

.da-footer__links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 32px;
    margin-bottom: 16px;
}

.da-footer__links a{
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A827C;
}

.da-footer__copyright{
    margin: 0 0 20px;
    text-align: center;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(138, 130, 124, 0.7);
}

.da-footer__disclaimer{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 10px;
    line-height: 1.7;
    color: rgba(138, 130, 124, 0.6);
}

@media (min-width: 768px){
    .da-shell{
        padding-left: max(60px, calc(env(safe-area-inset-left) + 60px));
        padding-right: max(60px, calc(env(safe-area-inset-right) + 60px));
    }

    .da-section{
        padding-top: 160px;
    }

    .da-brandbar{
        padding-top: max(32px, calc(env(safe-area-inset-top) + 32px));
    }

    .da-hero{
        min-height: calc(100svh - 96px);
        padding: 48px 0 24px;
    }

    .da-hero__title{
        font-size: 64px;
    }

    .da-hero__copy p,
    .da-insight-item__content p,
    .da-cta__copy,
    .da-testimonial__text{
        font-size: 17px;
    }

    .da-section-heading h2,
    .da-cta h2{
        font-size: 38px;
    }

    .da-insight-item{
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 28px;
        padding: 32px 0;
    }

    .da-insight-item__content h3{
        font-size: 24px;
    }
}

body.page-template-page-funnel #reading-container,
body.page-template-page-funnel-php #reading-container{
    max-width:680px;
    margin:0 auto;
}
body.page-template-page-funnel #reading-progress.da-loading-card,
body.page-template-page-funnel-php #reading-progress.da-loading-card{
    max-width:none;
    margin:0;
    padding:clamp(28px,6vw,48px);
    border-radius:16px;
    background:#FFFFFF;
    border:1px solid rgba(24,21,19,.04);
    box-shadow:0 4px 20px rgba(24,21,19,.04);
    text-align:center;
    position:relative;
    overflow:hidden;
}
body.page-template-page-funnel #reading-progress.da-loading-card::before,
body.page-template-page-funnel-php #reading-progress.da-loading-card::before{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(166,127,93,.035) 100%);
}
body.page-template-page-funnel .da-loading-card > *,
body.page-template-page-funnel-php .da-loading-card > *{
    position:relative;
    z-index:1;
}
body.page-template-page-funnel .da-loading-card__brand,
body.page-template-page-funnel-php .da-loading-card__brand{
    margin-bottom:18px;
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:16px;
    line-height:1.2;
    font-weight:400;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:rgba(24,21,19,.8);
}
body.page-template-page-funnel .da-loading-card__eyebrow,
body.page-template-page-funnel-php .da-loading-card__eyebrow{
    margin-bottom:18px;
    font-family:"Inter", Arial, sans-serif;
    font-size:11px;
    line-height:1.6;
    font-weight:400;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:#A67F5D;
}
body.page-template-page-funnel .da-loading-card__title,
body.page-template-page-funnel-php .da-loading-card__title{
    margin:0;
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:clamp(30px,5vw,42px);
    line-height:1.15;
    font-weight:300;
    letter-spacing:0;
    color:#181513;
}
body.page-template-page-funnel .da-loading-card__copy,
body.page-template-page-funnel-php .da-loading-card__copy{
    margin:20px auto 0;
    max-width:520px;
    font-family:"Inter", Arial, sans-serif;
    font-size:15px;
    line-height:1.9;
    font-weight:300;
    color:#5F5853;
}
body.page-template-page-funnel .da-loading-progress,
body.page-template-page-funnel-php .da-loading-progress{
    margin:32px auto 0;
    width:min(100%, 520px);
}
body.page-template-page-funnel .da-loading-progress__meta,
body.page-template-page-funnel-php .da-loading-progress__meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:12px;
    font-family:"Inter", Arial, sans-serif;
    font-size:11px;
    line-height:1.6;
    font-weight:400;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#8A827C;
}
body.page-template-page-funnel .da-loading-progress__rail,
body.page-template-page-funnel-php .da-loading-progress__rail{
    position:relative;
    width:100%;
    height:6px;
    border-radius:999px;
    background:rgba(24,21,19,.08);
    overflow:hidden;
}
body.page-template-page-funnel .da-loading-progress__fill,
body.page-template-page-funnel-php .da-loading-progress__fill{
    display:block;
    height:100%;
    width:18%;
    border-radius:inherit;
    background:#A67F5D;
    transition:width .45s ease;
}
body.page-template-page-funnel .da-loading-card__note,
body.page-template-page-funnel-php .da-loading-card__note{
    margin:20px 0 0;
    font-family:"Inter", Arial, sans-serif;
    font-size:12px;
    line-height:1.6;
    font-weight:300;
    color:#8A827C;
}
body.page-template-page-funnel .da-loading-card__back,
body.page-template-page-funnel-php .da-loading-card__back{
    margin:26px auto 0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    background:transparent;
    color:#181513;
    font-family:"Inter", Arial, sans-serif;
    font-size:12px;
    line-height:1.6;
    font-weight:400;
    letter-spacing:.08em;
    text-transform:uppercase;
    cursor:pointer;
    transition:color .2s ease, opacity .2s ease;
}
body.page-template-page-funnel .da-loading-card__back:hover,
body.page-template-page-funnel-php .da-loading-card__back:hover{
    color:#A67F5D;
}
body.page-template-page-funnel #confirm-overlay,
body.page-template-page-funnel-php #confirm-overlay{
    background:rgba(24,21,19,.22) !important;
    backdrop-filter:blur(8px);
}
body.page-template-page-funnel #confirm-overlay .lumina-confirm-modal,
body.page-template-page-funnel-php #confirm-overlay .lumina-confirm-modal{
    background:#fff !important;
    border-radius:16px !important;
    box-shadow:0 18px 60px rgba(24,21,19,.12) !important;
}
body.page-template-page-funnel #confirm-overlay .confirm-label,
body.page-template-page-funnel-php #confirm-overlay .confirm-label{
    color:#8A827C !important;
}
body.page-template-page-funnel #confirm-overlay .confirm-value,
body.page-template-page-funnel-php #confirm-overlay .confirm-value{
    color:#181513 !important;
}
@media (max-width: 767px){
    body.page-template-page-funnel .da-form-shell,
    body.page-template-page-funnel-php .da-form-shell{
        gap:40px;
    }
    body.page-template-page-funnel .da-form-card,
    body.page-template-page-funnel-php .da-form-card{
        gap:24px;
    }
    body.page-template-page-funnel .da-form-footer-links,
    body.page-template-page-funnel-php .da-form-footer-links{
        gap:12px 20px;
    }
    body.page-template-page-funnel #reading-progress.da-loading-card,
    body.page-template-page-funnel-php #reading-progress.da-loading-card{
        padding:28px 24px;
    }
    body.page-template-page-funnel .da-loading-progress,
    body.page-template-page-funnel-php .da-loading-progress{
        margin-top:28px;
    }
}

/* ============================================================
   GPT-61 EXACT FUNNEL FORM PAGE REBUILD
============================================================ */
body.page-template-page-funnel #masthead,
body.page-template-page-funnel-php #masthead,
body.page-template-page-funnel #colophon,
body.page-template-page-funnel-php #colophon{display:none !important;}



body.lumina-reading-results-mode .destiny-archive-preview,
body.lumina-reading-results-mode #unlock-section,
body.lumina-reading-results-mode .preview-topbar,
body.lumina-reading-results-mode .cover-sub-title,
body.lumina-reading-results-mode .cover-user-info,
body.lumina-reading-results-mode .intro-item,
body.lumina-reading-results-mode .chapter-desc,
body.lumina-reading-results-mode .closing-copy,
body.lumina-reading-results-mode .btn,
body.lumina-reading-results-mode .disclaimer,
body.lumina-reading-results-mode .destiny-archive-preview .cover-top,
body.lumina-reading-results-mode .destiny-archive-preview .cover-sub,
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta,
body.lumina-reading-results-mode .destiny-archive-preview .intro-item,
body.lumina-reading-results-mode .destiny-archive-preview #partial-reading-content p,
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-desc,
body.lumina-reading-results-mode #unlock-section .closing-copy,
body.lumina-reading-results-mode #unlock-section .btn,
body.lumina-reading-results-mode #unlock-section .disclaimer {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 300 !important;
}
body.lumina-reading-results-mode .cover-main-title,
body.lumina-reading-results-mode .module-title,
body.lumina-reading-results-mode .destiny-archive-preview .cover-main,
body.lumina-reading-results-mode .destiny-archive-preview .title,
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-title {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-weight: 300 !important;
    letter-spacing: 0 !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-top,
body.lumina-reading-results-mode .preview-topbrand,
body.lumina-reading-results-mode .daf-preview-brand {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-weight: 400 !important;
}
body.lumina-reading-results-mode .destiny-archive-preview .cover-meta,
body.lumina-reading-results-mode .destiny-archive-preview .chapter-card-title,
body.lumina-reading-results-mode #unlock-section .btn {
    font-weight: 400 !important;
}


/* ============================================================
   GPT-78 GLOBAL WHATSAPP FLOAT ENABLED SITEWIDE
============================================================ */
body.home #whatsappFloatGlobal,
body.page-template-page-funnel #whatsappFloatGlobal,
body.page-template-page-funnel-php #whatsappFloatGlobal,
body.lumina-reading-results-mode #whatsappFloatGlobal,
body.lumina-full-report-mode #whatsappFloatGlobal,
body.home .eo-wa-fab,
body.page-template-page-funnel .eo-wa-fab,
body.page-template-page-funnel-php .eo-wa-fab,
body.lumina-reading-results-mode .eo-wa-fab,
body.lumina-full-report-mode .eo-wa-fab{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
}

body.lumina-reading-loading-mode #whatsappFloatGlobal,
body.lumina-reading-loading-mode .eo-wa-fab{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
}

#whatsappFloatGlobal.eo-wa-fab{
    position:fixed !important;
    right:max(12px, env(safe-area-inset-right)) !important;
    bottom:max(74px, calc(74px + env(safe-area-inset-bottom))) !important;
    z-index:10030 !important;
}

/* GPT-80: homepage copy refinements + site motion system */
@keyframes daPageLift{0%{opacity:0;transform:translate3d(0,18px,0)}100%{opacity:1;transform:none}}
[data-page-surface]{
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}
html.lux-motion-ready [data-page-surface]{
    animation: daPageLift 720ms cubic-bezier(.22,1,.36,1) both;
}
body.lux-page-leaving [data-page-surface]{
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 260ms ease, transform 260ms ease;
}

[data-lux-card="glass"]{
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 18px;
    border: 1px solid rgba(166,127,93,0.10);
    box-shadow: 0 12px 32px rgba(24,21,19,0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
[data-lux-card="glass"]::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.36) 0%, rgba(255,255,255,0) 48%, rgba(166,127,93,0.05) 100%);
}
.da-accent-line{
    transition: transform 700ms cubic-bezier(.22,1,.36,1), opacity 700ms cubic-bezier(.22,1,.36,1);
    transform: scaleX(.72);
    opacity: .6;
}
[data-lux-reveal].is-visible .da-accent-line,
.da-section-heading.is-visible .da-accent-line,
.da-legal-shell.is-visible .da-accent-line{
    transform: scaleX(1);
    opacity: 1;
}

.da-brandbar,
.da-hero,
.da-section,
.da-legal-shell,
.daf-card,
.dac-confirm-frame,
.dal-stage__stack,
.dar-stage{
    transition: transform 220ms ease, opacity 220ms ease;
}

.da-button,
.da-footer__links a,
.da-legal-nav a,
.da-legal-back,
.daf-submit,
.daf-resume-btn,
.dar-primary-btn,
.dar-secondary-btn,
.dar-return{
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.da-button:hover,
.da-button:focus-visible,
.da-legal-nav a:hover,
.da-legal-nav a:focus-visible,
.da-legal-back:hover,
.da-legal-back:focus-visible,
.da-footer__links a:hover,
.da-footer__links a:focus-visible{
    transform: translateY(-1px);
}

.da-footer__links a,
.da-legal-nav a,
.da-legal-back{
    position: relative;
}
.da-footer__links a::after,
.da-legal-nav a::after,
.da-legal-back::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: rgba(166,127,93,0.42);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 220ms ease;
}
.da-footer__links a:hover::after,
.da-footer__links a:focus-visible::after,
.da-legal-nav a:hover::after,
.da-legal-nav a:focus-visible::after,
.da-legal-back:hover::after,
.da-legal-back:focus-visible::after{
    transform: scaleX(1);
}

.da-insight-item,
.da-testimonial,
.da-legal-section{
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}
.da-insight-item:hover,
.da-testimonial:hover,
.da-legal-section:hover{
    transform: translateY(-2px);
}

.da-homepage .da-hero__inner,
.da-homepage .da-testimonial,
.da-homepage .da-insight-item,
.da-homepage .da-cta__box,
.da-legal-shell,
.da-legal-section{
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce){
    [data-page-surface]{opacity:1!important;transform:none!important;transition:none!important;animation:none!important}
    body.lux-page-leaving [data-page-surface]{opacity:1!important;transform:none!important}
    [data-lux-card="glass"],
    .da-accent-line,
    .da-footer__links a,
    .da-legal-nav a,
    .da-legal-back,
    .da-insight-item,
    .da-testimonial,
    .da-legal-section{transition:none!important}
}


/* ===== GPT-81: homepage comments + timezone field polish ===== */
.da-comments-list{display:grid;gap:16px;margin-bottom:28px}
.da-comment-card{padding:22px 24px;border-radius:18px;background:rgba(255,255,255,0.82);box-shadow:0 10px 30px rgba(24,21,19,0.04);border:1px solid rgba(166,127,93,0.12)}
.da-comment-card__head{display:flex;justify-content:space-between;gap:16px;align-items:center;margin-bottom:12px;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;font-size:12px;line-height:1.5;letter-spacing:0.08em;text-transform:uppercase;color:#8A827C}
.da-comment-card__head strong{font-weight:400;color:#181513;letter-spacing:0.02em;text-transform:none;font-size:15px}
.da-comment-card p{margin:0;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;font-size:15px;line-height:1.9;font-weight:300;color:#5F5853}
.da-comment-form-wrap{padding:28px;border-radius:22px;background:rgba(255,255,255,0.76);border:1px solid rgba(166,127,93,0.12);box-shadow:0 10px 30px rgba(24,21,19,0.04)}
.da-comment-form-wrap h3{margin:0 0 10px;font-family:"Cormorant Garamond",Georgia,serif;font-size:24px;line-height:1.2;font-weight:400;color:#181513;text-align:center}
.da-comment-form__copy{margin:0 0 18px;text-align:center;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;font-size:13px;line-height:1.8;font-weight:300;color:#8A827C}
.da-comment-form{display:grid;gap:12px}
.da-comment-form input,.da-comment-form textarea{width:100%;border:1px solid rgba(24,21,19,0.12);border-radius:4px;padding:14px 16px;background:transparent;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;font-size:16px;line-height:1.8;font-weight:300;color:#181513}
.da-comment-form textarea{resize:vertical;min-height:120px}
.da-comment-form input:focus,.da-comment-form textarea:focus{outline:none;border-color:#A67F5D}
.da-comment-form__status{min-height:20px;margin:0;text-align:center;font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;font-size:12px;line-height:1.6;color:#8A827C}
.da-comment-card--submitted{border-color:rgba(166,127,93,0.24);background:rgba(255,255,255,0.92)}
.da-funnel-exact .daf-group--timezone .daf-hint{max-width:560px}
@media (max-width:640px){.da-comment-form-wrap{padding:22px}.da-comment-card{padding:18px 20px}.da-comment-card__head{flex-direction:column;align-items:flex-start;gap:4px}}

/* GPT-82: mobile fit, letters wording, and WhatsApp refinements */
.eo-wa-link{max-width:calc(100vw - 24px);}
.eo-wa-copy{max-width:min(132px, 38vw);}
.eo-wa-sub,.eo-wa-title{overflow:hidden;text-overflow:ellipsis;}
@media (max-width: 767px){
  .eo-wa-fab{right:max(8px, env(safe-area-inset-right)) !important;bottom:max(68px, calc(68px + env(safe-area-inset-bottom))) !important;}
  .eo-wa-link{padding:6px 9px;max-width:calc(100vw - 16px);}
  .eo-wa-copy{max-width:min(118px, 34vw);}
  .da-comment-form input,.da-comment-form textarea,.da-comment-form button{font-size:16px;}
}


/* ============================================================
   WOOCOMMERCE CHECKOUT / PAYMENT SURFACE
============================================================ */
.woocommerce-checkout,
.woocommerce-order-pay,
.woocommerce-cart {
    background: radial-gradient(circle at top center, #FAF7F3 0%, #F5F1ED 100%);
}
.woocommerce-checkout #primary,
.woocommerce-order-pay #primary,
.woocommerce-cart #primary {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}
.woocommerce-checkout h1,
.woocommerce-order-pay h1,
.woocommerce-cart h1,
.woocommerce-checkout h2,
.woocommerce-order-pay h2,
.woocommerce-cart h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    color: #181513;
    letter-spacing: 0.01em;
}
.woocommerce form.checkout,
.woocommerce-checkout .woocommerce,
.woocommerce-order-pay .woocommerce,
.woocommerce-cart .woocommerce {
    color: #181513;
}
.woocommerce-checkout .col2-set,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-order-pay .woocommerce-order,
.woocommerce-cart form.woocommerce-cart-form,
.woocommerce .cart-collaterals {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(24,21,19,0.08);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(24,21,19,0.06);
    padding: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.woocommerce-checkout .col2-set,
.woocommerce-cart form.woocommerce-cart-form { margin-bottom: 22px; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-order-pay input.input-text,
.woocommerce-order-pay textarea,
.woocommerce-order-pay select,
.woocommerce-cart input.input-text,
.woocommerce-cart textarea,
.woocommerce-cart select {
    border: 1px solid rgba(24,21,19,0.12);
    border-radius: 6px;
    background: rgba(255,255,255,0.96);
    min-height: 48px;
    padding: 12px 14px;
    color: #181513;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-order-pay input.input-text:focus,
.woocommerce-order-pay textarea:focus,
.woocommerce-order-pay select:focus,
.woocommerce-cart input.input-text:focus,
.woocommerce-cart textarea:focus,
.woocommerce-cart select:focus {
    outline: none;
    border-color: #A67F5D;
    box-shadow: 0 0 0 3px rgba(166,127,93,0.08);
}
.woocommerce-checkout .button,
.woocommerce-order-pay .button,
.woocommerce-cart .button,
.woocommerce-checkout #payment #place_order {
    width: 100%;
    min-height: 52px;
    border-radius: 4px;
    border: 0;
    background: #181513 !important;
    color: #FAF7F3 !important;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.woocommerce-checkout .button:hover,
.woocommerce-order-pay .button:hover,
.woocommerce-cart .button:hover,
.woocommerce-checkout #payment #place_order:hover {
    transform: translateY(-2px);
    background: #25201D !important;
    box-shadow: 0 6px 20px rgba(24,21,19,0.12);
}
.woocommerce-checkout table.shop_table,
.woocommerce-order-pay table.shop_table,
.woocommerce-cart table.shop_table {
    border-collapse: collapse;
    border: 0;
}
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-order-pay table.shop_table th,
.woocommerce-order-pay table.shop_table td,
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    border-color: rgba(24,21,19,0.08);
    color: #5F5853;
}
.woocommerce form .form-row label,
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-order-pay .woocommerce-info,
.woocommerce-cart .woocommerce-info {
    color: #5F5853;
}
