/* Executive Clean Premium Assessment Styles */
:root {
    /* Executive White + Blue Theme */
    --primary: #1E3A5F;
    --primary-hover: #15304F;
    --primary-light: #2D5A8C;
    --accent: #3B82F6;
    --accent-light: #60A5FA;
    --background: #FFFFFF;
    --background-alt: #F8FAFC;
    --surface: #FFFFFF;
    --text: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(15, 23, 42, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Empire Colors */
    --mindset-color: #3B82F6;
    --heartset-color: #EF4444;
    --healthset-color: #10B981;
    --soulset-color: #8B5CF6;
    
    /* Tier Colors */
    --tier-strength: #10B981;
    --tier-stable: #F59E0B;
    --tier-focus: #EF4444;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 840px;
    margin: 0 auto;
    padding: 24px;
}

.results-container {
    max-width: 900px;
}

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    padding: 48px 0;
    background: var(--background);
}

.section.active {
    display: block;
}

/* ============================================
   LANDING SECTION - Premium Hero
   ============================================ */
.hero-content {
    text-align: center;
    padding: 80px 24px;
    max-width: 680px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Empire Preview Cards */
.empire-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 520px;
    margin: 0 auto 48px;
}

.empire-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.empire-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-light);
}

.empire-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.empire-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.time-estimate {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   BUTTONS - Premium Styling
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 2px 8px rgba(30, 58, 95, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 4px 12px rgba(30, 58, 95, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--background-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border-light);
    border-color: var(--text-muted);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

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

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.intro-content {
    max-width: 600px;
    margin: 0 auto;
}

.intro-content h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 36px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.intro-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.intro-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.intro-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.intro-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.intro-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   ASSESSMENT SECTION - Questions
   ============================================ */
.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.empire-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.empire-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

#currentEmpireName {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

.question-counter {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 36px;
}

.progress-bar {
    height: 6px;
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Question Card */
.question-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.question-text {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text);
}

/* Rating Buttons */
.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.rating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text);
}

.rating-btn:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.08);
}

.rating-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.rating-btn.selected {
    border-color: var(--accent);
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 0 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
}

/* ============================================
   RESULTS SECTION - Executive Report
   ============================================ */
#results {
    background: var(--background-alt);
}

/* Report Header */
.report-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.report-title h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.report-date {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.overall-score-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 100px;
    padding: 16px 40px;
    box-shadow: var(--shadow-lg), 0 4px 16px rgba(30, 58, 95, 0.2);
    margin-bottom: 20px;
}

.score-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
}

.level-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.score-guide {
    font-size: 0.875rem;
    color: var(--text-muted);
    background: var(--background);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.score-guide strong {
    color: var(--text-secondary);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Premium Results Cards */
.results-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.results-card h3 {
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* Overview Card */
.overview-card {
    margin-bottom: 24px;
}

.overview-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overview-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.overview-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Score Bars */
.score-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.score-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.empire-icon-sm {
    font-size: 1.125rem;
}

.score-header span:nth-child(2) {
    font-weight: 500;
    color: var(--text);
}

.score-value {
    margin-left: auto;
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
}

.score-bar {
    height: 8px;
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.mindset-fill { background: linear-gradient(90deg, var(--mindset-color), #60A5FA); }
.heartset-fill { background: linear-gradient(90deg, var(--heartset-color), #F87171); }
.healthset-fill { background: linear-gradient(90deg, var(--healthset-color), #34D399); }
.soulset-fill { background: linear-gradient(90deg, var(--soulset-color), #A78BFA); }

/* Tier Labels */
.tier-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-strength { color: var(--tier-strength); }
.tier-stable { color: var(--tier-stable); }
.tier-focus { color: var(--tier-focus); }

/* Chart Card */
.chart-container {
    height: 260px;
}

.chart-image-print {
    max-width: 100%;
    height: auto;
}

/* Empire Breakdown */
.empire-breakdown-card {
    margin-bottom: 24px;
}

.empire-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.empire-breakdown-item {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.empire-breakdown-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.empire-breakdown-icon {
    font-size: 1.75rem;
}

.empire-breakdown-title h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.empire-breakdown-score {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.empire-breakdown-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.empire-breakdown-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.signal-list h5,
.action-list h5 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 8px;
}

.signal-list ul,
.action-list ul {
    list-style: none;
    padding: 0;
}

.signal-list li,
.action-list li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
}

.signal-list li::before,
.action-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* Integration Card */
.integration-card {
    margin-bottom: 24px;
}

.integration-summary {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.integration-highlight {
    flex: 1;
    background: var(--background-alt);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.highlight-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.highlight-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.integration-section {
    margin-bottom: 20px;
}

.integration-section h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.integration-section p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.warning-section {
    background: rgba(239, 68, 68, 0.05);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--tier-focus);
}

.fast-win-section {
    background: rgba(16, 185, 129, 0.05);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--tier-strength);
}

/* Integration Plan */
.plan-card {
    margin-bottom: 24px;
}

.plan-intro {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.integration-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.plan-phase {
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.phase-header {
    margin-bottom: 12px;
}

.phase-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.phase-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.phase-focus {
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.phase-actions {
    list-style: none;
    padding: 0;
}

.phase-actions li {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.phase-actions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ============================================
   EMAIL FORM
   ============================================ */
.email-card {
    margin-bottom: 24px;
}

.email-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--background);
    color: var(--text);
    transition: all 0.2s ease;
}

.form-group input:hover {
    border-color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.success-message {
    color: var(--healthset-color);
    font-weight: 600;
    text-align: center;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
}

/* ============================================
   CTA SECTION - Premium
   ============================================ */
.cta-section {
    margin-bottom: 32px;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.cta-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cta-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.ebook-cover {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    text-align: center;
}

.cta-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.cta-tagline {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.cta-benefits li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cta-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tier-strength);
    font-weight: 600;
}

.cta-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cta-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Print Footer (hidden on screen) */
.print-footer {
    display: none;
}

/* ============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .empire-card:hover,
    .cta-card:hover,
    .rating-btn:hover,
    .rating-btn.selected,
    .btn:hover,
    .btn:active {
        transform: none !important;
    }
    
    .progress-fill::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 900px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .empire-breakdown-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .hero-content {
        padding: 48px 16px;
    }
    
    .empire-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .empire-card {
        padding: 20px 12px;
    }
    
    .question-card {
        padding: 32px 24px;
    }
    
    .rating-btn {
        width: 52px;
        height: 52px;
        font-size: 1.125rem;
    }
    
    .rating-buttons {
        gap: 10px;
    }
    
    .results-grid,
    .cta-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .integration-summary {
        flex-direction: column;
    }
    
    .integration-plan-grid {
        grid-template-columns: 1fr;
    }
    
    .empire-breakdown-lists {
        grid-template-columns: 1fr;
    }
    
    .results-card,
    .cta-card {
        padding: 24px 20px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .empire-card:hover,
    .cta-card:hover {
        transform: translateY(-2px);
    }
}

/* ============================================
   PRINT STYLES - Executive Report
   ============================================ */
@media print {
    @page {
        size: A4;
        margin: 1.5cm;
    }
    
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        background: white;
        font-size: 11pt;
    }
    
    .section {
        display: block !important;
        min-height: auto;
        padding: 0;
    }
    
    #landing,
    #introduction,
    #assessment {
        display: none !important;
    }
    
    #results {
        background: white;
    }
    
    .results-container {
        max-width: 100%;
        padding: 0;
    }
    
    /* Hide interactive elements */
    .btn,
    .email-card,
    .action-buttons {
        display: none !important;
    }
    
    /* Show print footer */
    .print-footer {
        display: block;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        text-align: center;
        font-size: 9pt;
        color: var(--text-muted);
    }
    
    .print-footer p {
        margin-bottom: 4px;
    }
    
    /* Hide canvas, show image */
    #empireChart {
        display: none !important;
    }
    
    .chart-image-print {
        display: block !important;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Card styling for print */
    .results-card,
    .cta-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 16px;
    }
    
    .report-header {
        page-break-after: avoid;
    }
    
    .overview-card {
        page-break-after: avoid;
    }
    
    .empire-breakdown-card {
        page-break-before: always;
    }
    
    .integration-card {
        page-break-inside: avoid;
    }
    
    .plan-card {
        page-break-before: always;
    }
    
    .cta-section {
        page-break-before: always;
    }
    
    /* Grid layouts for print */
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .empire-breakdown-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .integration-plan-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .overview-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Reduce padding for print */
    .results-card {
        padding: 16px;
    }
    
    .empire-breakdown-item {
        padding: 12px;
    }
    
    .plan-phase {
        padding: 12px;
    }
}