/* Premium Dark Theme - Enterprise Fintech + AI Healthcare */

:root {
    /* Deep Charcoal Backgrounds */
    --surface-base: #0B0B0C;      /* Deepest charcoal */
    --surface-card: #141414;      /* Medium charcoal */
    --surface-hover: #1C1C1E;     /* Lighter charcoal */
    --surface-elevated: #242426;  /* Elevated surfaces */
    
    /* Gold/Amber Accents */
    --gold-primary: #F5C86A;       /* Primary gold */
    --gold-light: #F8D89A;         /* Light gold */
    --gold-dark: #D4A855;         /* Dark gold */
    --gold-glow: rgba(245, 200, 106, 0.3); /* Gold glow */
    
    /* Primary Gradient - Gold/Amber */
    --primary-gradient: linear-gradient(135deg, #F5C86A 0%, #D4A855 100%);
    --primary-gradient-hover: linear-gradient(135deg, #F8D89A 0%, #F5C86A 100%);
    
    /* Semantic Colors */
    --success: #10b981;            /* Emerald-500 */
    --warning: #F5C86A;           /* Gold for warnings */
    --error: #ef4444;             /* Red-500 */
    --info: #3b82f6;             /* Blue-500 */
    
    /* Text Colors - White and Soft Gray */
    --text-primary: #ffffff;       /* Pure white */
    --text-secondary: #E5E5E7;    /* Soft gray */
    --text-muted: #8E8E93;        /* Muted gray */
    --text-disabled: #636366;      /* Disabled gray */
    
    /* Accent Colors */
    --accent-gold: #F5C86A;
    --accent-gold-hover: #F8D89A;
    
    /* Shadows - Premium Elevation */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 4px 20px rgba(245, 200, 106, 0.3);
    --shadow-gold-hover: 0 6px 30px rgba(245, 200, 106, 0.5);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

body {
    background: var(--surface-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--surface-base);
    color: var(--text-primary);
}
.lp-lead-detail { padding: 20px; }
.lp-lead-detail-header { margin-bottom: 20px; }
.lp-lead-detail-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--lp-border-light, rgba(255,255,255,0.12));
    padding-bottom: 0;
}
.lp-lead-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-text-muted, #9ca3af);
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.lp-lead-tab:hover { color: var(--lp-text, #fff); }
.lp-lead-tab.active {
    color: var(--lp-accent);
    border-bottom-color: var(--lp-accent);
}
.lp-lead-tab-panel { min-height: 200px; }
.lp-lead-case-docs { padding-top: 8px; }
.lp-lead-chat-panel { padding-top: 8px; }
.lp-lead-chat-panel .lawyer-chat-card.lp-embed {
    border: 1px solid var(--lp-border-panel, rgba(255,255,255,0.1));
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 80vh;
}
.lp-lead-chat-panel .lawyer-chat-status {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--lp-text-muted);
    border-bottom: 1px solid var(--lp-border-light);
}
.lp-lead-chat-panel .lawyer-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}
.lp-lead-chat-panel .lawyer-chat-composer {
    padding: 12px 16px;
    border-top: 1px solid var(--lp-border-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-lead-chat-panel .lawyer-chat-composer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lp-lead-chat-panel .lawyer-chat-input {
    width: 100%;
    min-height: 60px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--lp-border-light);
    background: var(--lp-bg-input);
    color: #fff;
    font-size: 14px;
    resize: vertical;
}
.lp-lead-chat-panel .lawyer-chat-error-banner { padding: 12px 16px; color: #f87171; font-size: 13px; }
.lp-lead-chat-panel .lawyer-chat-empty { padding: 24px; text-align: center; color: var(--lp-text-muted); }
.lp-lead-chat-panel .lawyer-chat-msg-wrapper { margin-bottom: 12px; }
.lp-lead-chat-panel .lawyer-chat-msg-label { font-size: 11px; font-weight: 600; margin-bottom: 2px; }
.lp-lead-chat-panel .lawyer-chat-msg-body { margin: 0 0 4px; font-size: 14px; }
.lp-lead-chat-panel .lawyer-chat-msg-time { font-size: 11px; color: var(--lp-text-muted); }

.lp-btn-back { color: var(--lp-accent); text-decoration: none; font-size: 14px; display: inline-block; margin-bottom: 8px; }
.lp-btn-back:hover { text-decoration: underline; }
.lp-lead-detail-title { font-size: 1.5rem; font-weight: 700; color: var(--lp-text); margin: 0 0 16px 0; }
.lp-lead-detail-body { display: flex; flex-direction: column; gap: 20px; }
.lp-lead-detail-card { background: var(--lp-card-bg); border: 1px solid var(--lp-border-light); border-radius: 12px; padding: 20px; }
.lp-lead-detail-card-title { font-size: 1rem; font-weight: 600; color: var(--lp-text); margin: 0 0 12px 0; }
.lp-lead-detail-text { color: var(--lp-text-muted); margin: 0; white-space: pre-wrap; }
.lp-dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 20px; }
.lp-dl dt { color: var(--lp-text-muted); font-weight: 500; }
.lp-dl dd { margin: 0; color: var(--lp-text); }
.lp-json-block { background: rgba(0,0,0,0.25); border-radius: 8px; padding: 12px; font-size: 12px; overflow-x: auto; margin: 12px 0 0 0; white-space: pre-wrap; word-break: break-all; color: var(--lp-text-muted); }
.lp-lead-detail-actions { margin-top: 8px; }
.lp-link { color: var(--lp-accent); text-decoration: none; }
.lp-link:hover { text-decoration: underline; }

/* Screen Containers */
.landing-screen {
    min-height: 100vh;
    background: var(--surface-base);
    padding: 0;
    width: 100%;
    display: block;
}

.chat-screen,
.pain-mapping-screen,
.document-scan-screen,
.score-screen,
.match-screen,
.summary-screen,
.dashboard-screen,
.splash-screen {
    min-height: 100vh;
    background: var(--surface-base);
    padding: 0;
    width: 100%;
    display: block;
}

/* Cards - Premium Elevated Design */
.card {
    background: var(--surface-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 200, 106, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 200, 106, 0.2);
    background: var(--surface-hover);
}

.card:hover::before {
    opacity: 1;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Landing Screen - Premium Design */
.landing-screen {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 80px);
    text-align: center;
    padding-top: var(--space-xl);
    animation: premiumFadeIn 0.8s ease-out;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Desktop Landing Page Enhancement */
@media (min-width: 1024px) {
    .landing-content {
        padding: 60px 40px;
        /* Full-width container - form card centers itself with its own max-width */
        width: 100%;
        max-width: 100%;
    }
}

.landing-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 200, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.landing-header,
.role-selection,
.stats-display,
.start-assessment-card {
    position: relative;
    z-index: 1;
}

.landing-header {
    margin-bottom: 48px;
    animation: premiumFadeIn 0.8s ease-out 0.1s both;
    position: relative;
    z-index: 1;
}

.landing-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: subtitleFadeIn 1s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    position: relative;
    animation: logoFadeIn 0.8s ease-out;
}

.elegant-logo {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .elegant-logo {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .elegant-logo {
        font-size: 2.25rem;
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-part1 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #0e7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(6, 182, 212, 0.5));
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.logo-part1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo:hover .logo-part1 {
    filter: drop-shadow(0 4px 16px rgba(6, 182, 212, 0.6));
    transform: scale(1.05);
}

.logo-part2 {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(16, 185, 129, 0.5));
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.logo-part2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.logo:hover .logo-part2 {
    filter: drop-shadow(0 4px 16px rgba(16, 185, 129, 0.6));
    transform: scale(1.05);
}

.welcome-message {
    margin-bottom: 32px;
    max-width: 600px;
}

.welcome-message p {
    color: #cccccc;
    font-size: 1.1rem;
}

.cta-container {
    margin-top: 32px;
}

/* Chat Screen */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

/* Pain Mapping Screen */
.pain-mapping-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Desktop Pain Mapping Enhancement */
@media (min-width: 1024px) {
    .pain-mapping-container {
        max-width: 1400px;
        padding: 40px 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
    
    .mannequin-container {
        position: sticky;
        top: 100px;
    }
    
    .selected-parts-list,
    .pain-slider-section,
    .pain-navigation {
        grid-column: 2;
    }
}

.pain-controls {
    margin-top: 24px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 12px;
}

.pain-slider-container {
    margin-bottom: 24px;
}

.pain-slider-container label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.selected-parts-list {
    margin-top: 24px;
}

.part-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(245, 200, 106, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(245, 200, 106, 0.2);
}

/* Document Scan Screen - Premium Design */
.premium-document-scan {
    min-height: 100vh;
    background: var(--surface-base);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.premium-document-scan::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
}

.document-scan-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Desktop Document Scan Enhancement */
@media (min-width: 1024px) {
    .document-scan-container {
        max-width: 1200px;
        padding: 40px 60px;
    }
    
    .premium-title {
        font-size: 40px;
        margin-bottom: 48px;
    }
    
    .capture-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .capture-card {
        padding: 32px;
    }
    
    .auto-fill-preview {
        margin: 40px 0;
        padding: 32px;
    }
}

.premium-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 200, 106, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(245, 200, 106, 0.2);
}

/* Capture Slots - Two Card Layout */
.capture-slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .capture-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capture-card {
    background: var(--surface-card);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capture-card:hover {
    border-color: rgba(245, 200, 106, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(245, 200, 106, 0.15), 0 0 0 1px rgba(245, 200, 106, 0.1);
}

.capture-card:hover::before {
    opacity: 1;
}

.capture-card.captured {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, var(--surface-card) 0%, rgba(16, 185, 129, 0.05) 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.capture-card.captured::before {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.8) 0%, rgba(16, 185, 129, 0.4) 100%);
    opacity: 1;
}

.capture-card.processing {
    border-color: rgba(245, 200, 106, 0.5);
    background: linear-gradient(135deg, var(--surface-card) 0%, rgba(245, 200, 106, 0.05) 100%);
    animation: processingPulse 2s ease-in-out infinite;
}

@keyframes processingPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(245, 200, 106, 0.2);
    }
    50% {
        box-shadow: 0 12px 32px rgba(245, 200, 106, 0.3);
    }
}

.capture-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.capture-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 200, 106, 0.2) 0%, rgba(245, 200, 106, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    box-shadow: 0 4px 12px rgba(245, 200, 106, 0.2);
    transition: all 0.3s ease;
}

.capture-card:hover .capture-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(245, 200, 106, 0.3);
}

.capture-icon svg {
    width: 24px;
    height: 24px;
}

.capture-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Capture Preview */
.capture-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-base);
    margin-bottom: 16px;
}

.capture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capture-success {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmarkPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* Capture Placeholder */
.capture-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.capture-card:hover .capture-placeholder {
    border-color: rgba(245, 200, 106, 0.4);
    background: rgba(245, 200, 106, 0.05);
}

.placeholder-icon {
    font-size: 48px;
    opacity: 0.6;
}

.placeholder-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Capture Input (Hidden) */
.capture-input {
    display: none;
}

.capture-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #0B0B0C;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 200, 106, 0.3);
}

.capture-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 200, 106, 0.4);
}

.capture-button:active {
    transform: translateY(0);
}

/* OCR Processing */
.ocr-processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: rgba(11, 11, 12, 0.95);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
}

.ocr-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(245, 200, 106, 0.2);
    border-top: 3px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ocr-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Auto-fill Preview */
.auto-fill-preview {
    background: var(--surface-card);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    animation: autoFillSlideIn 0.5s ease-out;
}

@keyframes autoFillSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auto-fill-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.auto-fill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.auto-fill-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.auto-fill-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auto-fill-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auto-fill-field:last-child {
    border-bottom: none;
}

.field-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.field-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Navigation - Document Scan Page */
.document-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-right: 0;
}

.btn-continue {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #0B0B0C;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 200, 106, 0.4);
    transition: all 0.3s ease;
}

.btn-continue:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 200, 106, 0.5);
}

.btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.upload-section {
    margin-bottom: 32px;
}

.upload-section h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.secure-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 12px;
}

.documents-count {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.preview-section {
    margin-top: 32px;
}

.file-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.file-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.file-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.file-preview-item .btn-remove {
    position: absolute;
    top: 8px;
    right: 8px;
}

.form-section {
    margin-top: 32px;
    padding: 24px;
    background: #2a2a2a;
    border-radius: 12px;
}

.form-section h3 {
    margin-bottom: 20px;
    color: var(--gold-primary);
}

/* Score Screen - Premium Design with Dramatic Reveal */
.premium-score-screen {
    min-height: 100vh;
    background: var(--surface-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    position: relative;
    overflow: hidden;
}

.premium-score-screen::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: scoreGlow 6s ease-in-out infinite;
}

.premium-score-screen::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: scoreGlow 8s ease-in-out infinite reverse;
}

@keyframes scoreGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.premium-score-container {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
}

/* Loading State */
.score-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loading-spinner-large {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(245, 200, 106, 0.2);
    border-top: 6px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Score Reveal Animation */
.score-reveal {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.score-reveal.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Large Score Card */
.score-card-large {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 40px;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.score-ring-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
}

.score-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-progress {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(245, 200, 106, 0.6));
}

.score-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.score-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.score-number-large {
    font-size: 96px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5C86A 0%, #F8D89A 50%, #D4A855 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    text-shadow: 0 0 40px rgba(245, 200, 106, 0.6);
    display: inline-block;
    letter-spacing: -0.05em;
    animation: scoreNumberGlow 3s ease-in-out infinite;
}

@keyframes scoreNumberGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(245, 200, 106, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(245, 200, 106, 0.7));
    }
}

.score-max {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Estimated Value Card */
.estimated-value-card {
    background: linear-gradient(135deg, var(--surface-card) 0%, rgba(245, 200, 106, 0.05) 100%);
    border: 2px solid rgba(245, 200, 106, 0.3);
    border-radius: 20px;
    padding: 32px 40px;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(245, 200, 106, 0.15), 0 0 0 1px rgba(245, 200, 106, 0.1);
    animation: valueCardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    position: relative;
    overflow: hidden;
}

.estimated-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 200, 106, 0.1), transparent);
    animation: shimmerValue 3s infinite;
}

@keyframes shimmerValue {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes valueCardSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.value-amount {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5C86A 0%, #F8D89A 50%, #D4A855 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(245, 200, 106, 0.4);
}

/* Supporting Text */
.score-supporting-text-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.score-supporting-text {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* V1: Score Update Animation - When score is refined after questions */
.score-updated {
    animation: scoreUpdatePulse 0.6s ease-in-out;
}

@keyframes scoreUpdatePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.score-updated-text {
    font-size: 16px;
    color: #F5C86A;
    text-align: center;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation - Consistent across all pages */
.score-navigation,
.document-navigation,
.pain-navigation,
.match-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Desktop Navigation Enhancement */
@media (min-width: 1024px) {
    .score-navigation,
    .document-navigation,
    .pain-navigation,
    .match-navigation {
        max-width: 800px;
        gap: 20px;
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .score-navigation .btn,
    .document-navigation .btn,
    .pain-navigation .btn,
    .match-navigation .btn {
        padding: 18px 36px;
        font-size: 17px;
    }
    
    .btn-back {
        min-width: 140px;
    }
    
    .btn-continue,
    .btn-continue-large,
    .btn-continue-match {
        max-width: 320px;
    }
}

.btn-continue,
.btn-continue-large,
.btn-continue-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #0B0B0C;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(245, 200, 106, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    flex: 1;
    max-width: 280px;
}

.btn-continue {
    font-size: 16px;
    padding: 16px 32px;
}

.btn-continue .btn-icon,
.btn-continue-large .btn-icon,
.btn-continue-match .btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.btn-continue:hover:not(:disabled),
.btn-continue-large:hover:not(:disabled),
.btn-continue-match:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 200, 106, 0.5);
    background: linear-gradient(135deg, #F6D17A 0%, #E9C05A 100%);
}

.btn-continue:hover:not(:disabled) .btn-icon,
.btn-continue-large:hover:not(:disabled) .btn-icon,
.btn-continue-match:hover:not(:disabled) .btn-icon {
    transform: translateX(4px);
}

.btn-continue:active,
.btn-continue-large:active,
.btn-continue-match:active {
    transform: translateY(0);
}

.btn-continue:disabled,
.btn-continue-large:disabled,
.btn-continue-match:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Responsive Styles for Score Screen */
@media (max-width: 767px) {
    .premium-score-container {
        padding: 16px;
    }
    
    .score-card-large {
        max-width: 100%;
        margin-bottom: 32px;
    }
    
    .score-number-large {
        font-size: 72px;
    }
    
    .score-max {
        font-size: 28px;
    }
    
    .estimated-value-card {
        padding: 24px 28px;
        margin-bottom: 28px;
    }
    
    .value-amount {
        font-size: 32px;
    }
    
    .score-supporting-text-container {
        max-width: 100%;
        padding: 0 16px;
        margin-bottom: 32px;
    }
    
    .score-supporting-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .score-navigation,
    .document-navigation,
    .pain-navigation,
    .match-navigation {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 20px;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .btn-continue,
    .btn-continue-large,
    .btn-continue-match {
        max-width: 100%;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .score-number-large {
        font-size: 96px;
    }
    
    .score-supporting-text-container {
        max-width: 550px;
    }
    
    .score-supporting-text {
        font-size: 17px;
    }
    
    .score-max {
        font-size: 48px;
    }
    
    .value-amount {
        font-size: 40px;
    }
}

.score-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: space-between;
}

/* Match Screen - Premium Design */
.premium-match-screen {
    min-height: 100vh;
    background: var(--surface-base);
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.premium-match-screen::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: matchGlow 8s ease-in-out infinite;
}

@keyframes matchGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.match-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Loading State */
.match-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loading-spinner-medium {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(245, 200, 106, 0.2);
    border-top: 4px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Match Content */
.match-content {
    animation: matchFadeIn 0.6s ease-out;
}

@keyframes matchFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Matched Partner Card */
.matched-partner-card {
    background: linear-gradient(135deg, var(--surface-card) 0%, rgba(245, 200, 106, 0.05) 100%);
    border: 2px solid rgba(245, 200, 106, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 12px 32px rgba(245, 200, 106, 0.15), 0 0 0 1px rgba(245, 200, 106, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.matched-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(245, 200, 106, 0.2), 0 0 0 1px rgba(245, 200, 106, 0.15);
}

.matched-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.partner-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 200, 106, 0.15);
    border: 1px solid rgba(245, 200, 106, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.partner-name {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5C86A 0%, #F8D89A 50%, #D4A855 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(245, 200, 106, 0.3);
}

.partner-tagline {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Welcome Video Section */
.welcome-video-section {
    margin-bottom: 40px;
}

.video-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(245, 200, 106, 0.2), 0 0 0 1px rgba(245, 200, 106, 0.15);
    border-color: rgba(245, 200, 106, 0.3);
}

.video-placeholder {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, var(--surface-card) 0%, var(--surface-hover) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(11, 11, 12, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.play-button-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B0B0C;
    box-shadow: 0 8px 24px rgba(245, 200, 106, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button-large svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* Slight offset for play icon */
}

.video-card:hover .play-button-large {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(245, 200, 106, 0.7);
}

.video-overlay-text {
    text-align: center;
    color: var(--text-primary);
    padding: 0 24px;
    max-width: 100%;
    box-sizing: border-box;
}

.greeting-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.video-message {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Navigation */
.match-navigation {
    width: 100%;
    padding: 0;
}

.btn-continue-match {
    width: 100%;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #0B0B0C;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(245, 200, 106, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-continue-match::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-continue-match:hover::before {
    left: 100%;
}

.btn-continue-match:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 200, 106, 0.5);
}

.btn-continue-match:active {
    transform: translateY(0);
}

/* Summary Screen */
.summary-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Desktop Summary Enhancement */
@media (min-width: 1024px) {
    .summary-container {
        max-width: 1200px;
        padding: 40px 60px;
    }
    
    .summary-container .screen-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

/* Desktop Score Screen Enhancement */
@media (min-width: 1024px) {
    .premium-score-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 80px;
    }
    
    .score-card-large {
        margin-bottom: 48px;
    }
    
    .score-number-large {
        font-size: 120px;
    }
    
    .score-max {
        font-size: 56px;
    }
    
    .estimated-value-card {
        padding: 36px 40px;
        margin-bottom: 40px;
    }
    
    .value-amount {
        font-size: 48px;
    }
    
    .score-supporting-text-container {
        max-width: 700px;
        margin: 0 auto 48px;
    }
    
    .score-supporting-text {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Desktop Match Screen Enhancement */
@media (min-width: 1024px) {
    .match-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 60px;
        display: grid;
        grid-template-columns: 400px 1fr;
        gap: 48px;
        align-items: start;
    }
    
    .matched-partner-card {
        position: sticky;
        top: 100px;
        padding: 40px;
    }
    
    .welcome-video-section {
        grid-column: 2;
    }
    
    .match-navigation {
        grid-column: 1 / -1;
        margin-top: 48px;
    }
}

/* Splash Screen - Premium Design */
.premium-splash {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--surface-base);
    position: relative;
    overflow: hidden;
}

.premium-splash::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.08) 0%, transparent 70%);
    animation: goldPulse 4s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.splash-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.splash-logo {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-logo.animate-in {
    opacity: 1;
    transform: scale(1);
}

.splash-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 200, 106, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(245, 200, 106, 0.3);
}

.splash-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.splash-accent {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.splash-accent.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gold-glow {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 106, 0.3) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    position: relative;
}

.gold-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 200, 106, 0.2);
    animation: innerGlow 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes innerGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
    }
}

@media (min-width: 768px) {
    .splash-brand-name {
        font-size: 3.5rem;
    }
    
    .gold-glow {
        width: 160px;
        height: 160px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-base);
}

::-webkit-scrollbar-thumb {
    background: var(--success);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

