/* =========================================
   REPORT VIEW & NEWSLETTER
   ========================================= */

/* CONTAINER */
.tkr-report-wrapper {
    width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 20px;
    display: flex; flex-direction: column; gap: 60px; 
}

.tkr-report-header-main { text-align: center; margin-bottom: 20px; }
.tkr-report-header-main h2 { font-size: 3rem; margin-bottom: 5px; }
.tkr-report-header-main p { color: var(--text-muted); font-size: 1.1rem; }

/* --- REALITY MODIFIER (SLIDER) --- */
.reality-modifier-box {
    background: rgba(0,0,0,0.3); border: 1px solid var(--accent-primary);
    margin-bottom: 40px; padding: 20px; border-radius: var(--radius);
}
.tkr-range-slider {
    -webkit-appearance: none; width: 100%; height: 8px; border-radius: 5px;
    background: var(--bg-panel-hover); outline: none; margin: 15px 0;
}
.tkr-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
    background: var(--accent-primary); cursor: pointer; box-shadow: 0 0 10px var(--accent-primary);
}

/* --- SECTION HEADERS & GRID --- */
.report-section { border-top: 1px solid var(--border-color); padding-top: 40px; }
.section-header { margin-bottom: 30px; }
.section-header h3 { font-size: 1.8rem; margin: 0; }
.section-header p { color: var(--text-muted); margin-top: 5px; }

.phase-badge {
    display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.phase-grind { background: rgba(255, 107, 107, 0.15); color: var(--accent-danger); border: 1px solid var(--accent-danger); }
.phase-freedom { background: rgba(190, 242, 100, 0.15); color: var(--accent-primary); border: 1px solid var(--accent-primary); }
.phase-strategy { background: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid #3b82f6; }

/* --- CARDS --- */
.report-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.report-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tkr-report-card {
    background: var(--bg-panel); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 25px; display: flex; align-items: center; gap: 15px;
    transition: transform 0.2s;
}
.tkr-report-card:hover { transform: translateY(-3px); }
.report-icon { font-size: 1.8rem; flex-shrink: 0; }
.report-data { overflow: hidden; }
.report-data label { font-size: 0.65rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; display: block; margin-bottom: 5px; }
.report-data h3 { font-size: 1.6rem; margin: 0; line-height: 1; }
.report-data p { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }

/* Highlights */
.highlight-card-pre { border-color: rgba(255, 171, 115, 0.5); }
.highlight-card-pre h3 { color: #ffab73; }
.highlight-card-post { border-color: var(--accent-primary); background: linear-gradient(135deg, var(--bg-panel) 0%, rgba(190, 242, 100, 0.05) 100%); }
.highlight-card-post h3 { color: var(--accent-primary); }

/* --- STRATEGY SECTION --- */
.strategy-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}

.strategy-box {
    background: var(--bg-panel); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 30px;
    display: flex; flex-direction: column; justify-content: center;
}
.strategy-box h4 { margin-top: 0; margin-bottom: 20px; font-size: 1.2rem; text-align: center; }

/* The Activity List (Books/Languages) */
.activity-list { list-style: none; padding: 0; margin: 0; }
.activity-list li {
    display: flex; align-items: center; gap: 15px;
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.activity-list li:last-child { border-bottom: none; }

.act-icon { font-size: 1.8rem; width: 40px; text-align: center; flex-shrink: 0; }
.act-details { display: flex; flex-direction: column; gap: 2px; }
.act-details strong { display: block; font-size: 1rem; color: var(--text-main); }
.act-details small { color: var(--text-muted); font-size: 0.8rem; display: block; }

/* --- COST CALCULATOR --- */
.tkr-cost-calculator {
    background: var(--bg-panel); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
}
.cost-field label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; }
.cost-field input {
    width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border-color);
    padding: 12px; color: var(--text-main); border-radius: 8px; font-size: 1rem;
    transition: all 0.2s ease;
}
/* UPDATED: Focus State */
.cost-field input:focus { 
    border-color: var(--accent-primary); 
    background: var(--bg-input-focus, rgba(255,255,255,0.1));
}

.cost-result h3 { font-size: 2.5rem; color: var(--accent-primary); margin: 5px 0; }

/* --- NEWSLETTER --- */
.newsletter-box {
    margin-top: 40px; border: 1px solid var(--accent-primary);
    background: linear-gradient(180deg, var(--bg-panel) 0%, rgba(190, 242, 100, 0.05) 100%);
    padding: 40px; border-radius: var(--radius);
}
.tkr-signup-form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.tkr-signup-form input {
    width: 100%; background: var(--bg-app); border: 1px solid var(--border-color);
    color: var(--text-main); padding: 15px; border-radius: 8px;
    font-family: var(--font-main); font-size: 1rem; outline: none; transition: all 0.2s ease;
}
/* UPDATED: Focus State */
.tkr-signup-form input:focus { 
    border-color: var(--accent-primary); 
    background: var(--bg-input-focus, rgba(255,255,255,0.1));
}

.tkr-signup-form button {
    width: 100%; padding: 15px; border-radius: 50px; font-weight: 800; letter-spacing: 0.05em;
    background: transparent; border: 1px solid var(--accent-primary); color: var(--accent-primary);
    cursor: pointer; transition: all 0.2s; margin-top: 10px;
}
.tkr-signup-form button:hover { background: var(--accent-primary); color: var(--bg-app); }

/* --- RESPONSIVE --- */
/* UPDATED: Breakpoint to 1024px to match Header/Calculator */
@media (max-width: 1024px) {
    .report-grid-4, .report-grid-3, .strategy-grid, .tkr-cost-calculator, .form-row { grid-template-columns: 1fr; }
    .tkr-report-card, .strategy-box { padding: 20px; }
}