/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background 0.6s ease;
}

/* ============================================
   Phase Progress
   ============================================ */
.phase-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.85rem 1.25rem;
}

.phase-progress {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.phase-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.phase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.phase-dot.active {
    background: #1a1a2e;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.15);
}

.phase-dot.completed {
    background: #1a1a2e;
}

.phase-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    white-space: nowrap;
}

.phase-step.is-active .phase-label,
.phase-step.is-completed .phase-label {
    color: #1a1a2e;
}

.phase-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 0.35rem;
    margin-bottom: 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.phase-line-fill {
    height: 100%;
    width: 0%;
    background: #1a1a2e;
    border-radius: 2px;
    transition: width 0.4s ease-out;
}

/* ============================================
   Screen System
   ============================================ */
.screen {
    display: none;
    min-height: 100vh;
}

.screen.active {
    display: flex;
}

.screen-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #b0b0b0;
    text-align: center;
}

/* ============================================
   Back Button
   ============================================ */
.btn-back {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f5f5f7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #6b7280;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.btn-back:hover {
    background: #e5e7eb;
    color: #1a1a2e;
}

/* ============================================
   Buttons
   ============================================ */
.btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-start:hover {
    background: #2d2d4a;
}

.btn-start:active {
    transform: scale(0.97);
}

.btn-full {
    width: 100%;
}

.btn-red {
    background: #dc2626;
}

.btn-red:hover {
    background: #b91c1c;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
    border-radius: 100px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: #1a1a2e;
}

/* ============================================
   Welcome Screen
   ============================================ */
.welcome-content {
    text-align: center;
}

.welcome-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 1.25rem;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    line-height: 1.05;
}

.welcome-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ============================================
   Quiz Screen
   ============================================ */
.quiz-content {
    padding-top: 2rem;
}

.question-phase {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.question-number {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.question-hint {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: -1rem;
    margin-bottom: 1.75rem;
}

/* Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.option-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1.35;
}

.option-btn:hover {
    border-color: #1a1a2e;
}

.option-btn.selected {
    border-color: #1a1a2e;
    background: #1a1a2e;
    color: #ffffff;
}

/* ============================================
   Fact Screen
   ============================================ */
.fact-card {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.fact-icon {
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.fact-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

.fact-stat {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1rem;
}

.fact-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.fact-visual {
    margin-bottom: 1.25rem;
    min-height: 48px;
}

.fact-visual svg {
    display: block;
}

.fact-visual .vis-bar {
    transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fact-visual .vis-person {
    transition: opacity 0.3s ease;
}

.fact-user-answer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.01em;
}

.fact-user-answer-icon {
    font-size: 0.85rem;
}

.fact-interactive {
    margin: 1.25rem 0;
}

.fact-guess-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.fact-guess-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.65rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fact-guess-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

.fact-guess-btn.correct {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    transform: scale(1.05);
}

.fact-guess-btn.wrong {
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

.fact-guess-prompt {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.fact-slider-group {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.fact-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fact-slider-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.fact-slider-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #eab308;
    transition: transform 0.15s ease;
}

.fact-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
    cursor: pointer;
}

.fact-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eab308;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.35);
}

.fact-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eab308;
    cursor: grab;
    border: none;
    box-shadow: 0 2px 8px rgba(234, 179, 8, 0.35);
}

.fact-doubling-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(234, 179, 8, 0.08);
    border-radius: 10px;
}

.fact-doubling-amount {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.fact-doubling-arrow {
    font-size: 1.2rem;
    color: #eab308;
}

.fact-doubling-target {
    font-size: 0.95rem;
    font-weight: 800;
    color: #eab308;
}

.fact-doubling-years {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.3rem;
    text-align: center;
}

.fact-prob-bars {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fact-prob-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fact-prob-label {
    width: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    flex-shrink: 0;
}

.fact-prob-label.is-user {
    color: #06b6d4;
}

.fact-prob-track {
    flex: 1;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}

.fact-prob-fill {
    height: 100%;
    border-radius: 9px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.fact-prob-fill.is-user {
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.fact-prob-pct {
    width: 42px;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.fact-prob-pct.is-user {
    color: #06b6d4;
}

.fact-prob-you-tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #06b6d4;
    color: #0a1520;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.fact-fund-duel {
    display: flex;
    gap: 0.5rem;
}

.fact-fund-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.85rem 0.65rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fact-fund-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.fact-fund-card.revealed {
    cursor: default;
}

.fact-fund-card.winner {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
}

.fact-fund-card.loser {
    border-color: rgba(255, 255, 255, 0.04);
    opacity: 0.5;
}

.fact-fund-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.fact-fund-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.fact-fund-amount.hidden {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
}

.fact-fund-detail {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.2rem;
}

.fact-fund-prompt {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.75rem;
}

.fact-source {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Simulation Intro Screen
   ============================================ */
.sim-intro-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1525 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sim-intro-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ef4444;
    margin-bottom: 2rem;
    background: rgba(239, 68, 68, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

.sim-intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.sim-intro-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.sim-intro-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============================================
   Simulation Screen
   ============================================ */
.sim-inner {
    justify-content: flex-start;
    padding-top: 2.5rem;
}

.sim-card {
    background: #1a1a2e;
    border-radius: 24px;
    padding: 2rem 1.5rem 2rem;
    margin-bottom: 1.5rem;
    transition: background 0.5s ease;
}

.sim-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.sim-chart-wrap {
    width: 100%;
    height: 120px;
    margin-bottom: 1.25rem;
}

.sim-chart-wrap svg {
    width: 100%;
    height: 100%;
}

#sim-line {
    filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.4));
}

.sim-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sim-loss {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ef4444;
}

.sim-question-area {
    transition: opacity 0.4s ease;
}

.sim-question-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.sim-question-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.25rem;
    font-style: italic;
}

/* ============================================
   Result Screen
   ============================================ */
.result-content {
    padding-top: 1.5rem;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.result-description {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.65;
}

.result-card {
    background: #f5f5f7;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 0.75rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.summary-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #fff;
    border-radius: 12px;
}

.summary-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
}

.summary-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.result-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

/* Score */
.score-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.score-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.score-value {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
}

.score-track {
    height: 8px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.score-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease-out;
    width: 0;
}

.score-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #d1d5db;
    font-weight: 600;
}

.score-labels .active-label {
    font-weight: 700;
}

/* Characteristics */
.characteristics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.characteristics-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.45;
}

.char-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    margin-top: 0.45rem;
}

/* Donut Chart */
.donut-container {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1.25rem;
}

.donut-svg {
    width: 180px;
    height: 180px;
}

#donut-segments circle {
    fill: none;
    stroke-width: 22;
    stroke-linecap: round;
}

.donut-center-name {
    font-size: 1rem;
    font-weight: 800;
    fill: #1a1a2e;
    letter-spacing: -0.02em;
}

.donut-center-sub {
    font-size: 0.55rem;
    font-weight: 600;
    fill: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.allocation-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Forecast Chart */
.forecast-card {
    overflow: hidden;
}

.forecast-chart-wrap {
    position: relative;
    height: 180px;
    margin-bottom: 0.75rem;
}

.forecast-svg {
    width: 100%;
    height: 100%;
}

.forecast-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 600;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.forecast-endpoints {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.forecast-endpoint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.forecast-endpoint-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-weight: 500;
}

.forecast-endpoint-value {
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.forecast-legend {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.forecast-legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.forecast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.forecast-dot-dashed {
    background: none;
    border: 2px dashed #6b7280;
    width: 8px;
    height: 8px;
}

/* ============================================
   Saved Result Banner
   ============================================ */
.saved-result-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.saved-result-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.saved-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dcfce7;
    color: #059669;
    flex-shrink: 0;
}

.saved-result-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.saved-result-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.saved-result-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.btn-saved {
    width: 100%;
    background: #059669;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
}

.btn-saved:hover {
    background: #047857;
}

/* ============================================
   Result Tabs
   ============================================ */
.result-tabs {
    display: flex;
    background: #f5f5f7;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1rem;
    gap: 4px;
}

.result-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.25s ease;
}

.result-tab.active {
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.result-tab:hover:not(.active) {
    color: #6b7280;
}

.result-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.result-tab-panel.active {
    display: block;
    opacity: 1;
}

/* ============================================
   Forecast Controls
   ============================================ */
.forecast-controls {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.forecast-slider-group {
    margin-bottom: 1rem;
}

.forecast-slider-group:last-of-type {
    margin-bottom: 0.75rem;
}

.forecast-slider-value {
    color: #3b82f6;
}

.forecast-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: #e5e7eb;
    outline: none;
    cursor: pointer;
}

.forecast-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.forecast-range-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.forecast-range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3b82f6;
    cursor: grab;
    border: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.forecast-toggle-row {
    margin-top: 0.75rem;
}

.forecast-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-track {
    display: inline-block;
    width: 40px;
    height: 22px;
    border-radius: 11px;
    background: #d1d5db;
    position: relative;
    transition: background 0.25s ease;
    cursor: pointer;
}

.toggle-switch input:checked + .toggle-track {
    background: #3b82f6;
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease;
}

.toggle-switch input:checked + .toggle-track .toggle-thumb {
    transform: translateX(18px);
}

/* ============================================
   Forecast Summary
   ============================================ */
.forecast-summary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.55;
}

.forecast-summary strong {
    color: #1a1a2e;
    font-weight: 700;
}

.forecast-summary .forecast-gain {
    color: #059669;
    font-weight: 700;
}

/* ============================================
   Compare Modal
   ============================================ */
.compare-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
}

.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.25s ease;
}

.compare-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    overflow-y: auto;
    animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.compare-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.compare-close {
    position: static;
    flex-shrink: 0;
}

.compare-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.compare-card {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 1.15rem;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.compare-card.is-current {
    border-color: var(--profile-color, #3b82f6);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.compare-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.compare-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.compare-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.compare-card-subtitle {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.compare-card-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.compare-card-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
}

.compare-card-stat-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
}

.compare-card-alloc {
    height: 6px;
    border-radius: 100px;
    display: flex;
    overflow: hidden;
    gap: 2px;
}

.compare-card-alloc-seg {
    height: 100%;
    border-radius: 100px;
}

.compare-shift-hints {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.compare-shift-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.compare-shift-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.45;
}

.compare-shift-arrow {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Journey Visualization
   ============================================ */
.journey-card {
    overflow: visible;
}

.journey-chart-wrap {
    position: relative;
    margin-bottom: 1rem;
}

.journey-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.journey-phase-label {
    font-size: 8px;
    font-weight: 700;
    fill: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.journey-profile-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

#journey-line {
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.journey-shift {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #1e40af;
    font-weight: 600;
    line-height: 1.4;
}

.journey-shift-arrow {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.journey-narrative {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.journey-narrative strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ============================================
   Historical Crash Simulator
   ============================================ */
.crash-sim-card {
    overflow: hidden;
}

.crash-sim-intro {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.crash-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.crash-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.6rem 0.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.crash-tab.active {
    border-color: #1a1a2e;
    background: #1a1a2e;
}

.crash-tab-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.crash-tab.active .crash-tab-year {
    color: #ffffff;
}

.crash-tab-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.crash-tab.active .crash-tab-name {
    color: rgba(255, 255, 255, 0.6);
}

.crash-chart-wrap {
    position: relative;
    height: 140px;
    margin-bottom: 1rem;
}

.crash-chart-svg {
    width: 100%;
    height: 100%;
}

#crash-line {
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.3));
}

.crash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.crash-stat {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
}

.crash-stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.crash-stat-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.crash-stat-red {
    color: #ef4444;
}

.crash-stat-green {
    color: #059669;
}

.crash-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #92400e;
    line-height: 1.45;
}

.crash-note svg {
    flex-shrink: 0;
    color: #d97706;
    margin-top: 1px;
}

/* ============================================
   Share Card Modal
   ============================================ */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
}

.share-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.25s ease;
}

.share-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    overflow-y: auto;
    animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.share-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.share-close {
    position: static;
    flex-shrink: 0;
}

.share-card-preview {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.share-card-preview canvas {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.share-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Investment Slider */
.slider-container {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d1fae5;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.slider-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

.slider-display {
    font-size: 1.15rem;
    font-weight: 800;
    color: #059669;
    letter-spacing: -0.02em;
    transition: transform 0.15s ease;
}

.investment-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 100px;
    background: #e5e7eb;
    outline: none;
    cursor: pointer;
}

.investment-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.investment-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.investment-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #059669;
    cursor: grab;
    border: none;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Investment Plan */
.btn-plan {
    background: #059669;
    margin-bottom: 0.5rem;
}

.btn-plan:hover {
    background: #047857;
}

.plan-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.plan-item {
    margin-bottom: 1.25rem;
}

.plan-item:last-child {
    margin-bottom: 0;
}

.plan-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.plan-item-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
}

.plan-item-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
}

.plan-item-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.35rem;
}

.plan-item-fill {
    height: 100%;
    border-radius: 100px;
}

.plan-item-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.plan-steps {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #d1fae5;
}

.plan-steps-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #059669;
    margin-bottom: 0.75rem;
}

.plan-step {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.plan-step-num {
    font-weight: 800;
    color: #059669;
    min-width: 1.25rem;
}

.result-inner {
    justify-content: flex-start;
    padding-top: 2.5rem;
}

.result-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ============================================
   Stress Test Immersive Mode
   ============================================ */
body.stress-test-mode {
    background: #0a0a14;
    transition: background 0.6s ease;
}

body.stress-test-mode .phase-progress-container {
    background: #0a0a14;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.stress-test-mode .phase-dot {
    background: rgba(255, 255, 255, 0.15);
}

body.stress-test-mode .phase-dot.active {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

body.stress-test-mode .phase-dot.completed {
    background: rgba(255, 255, 255, 0.5);
}

body.stress-test-mode .phase-label {
    color: rgba(255, 255, 255, 0.2);
}

body.stress-test-mode .phase-step.is-active .phase-label {
    color: #ef4444;
}

body.stress-test-mode .phase-step.is-completed .phase-label {
    color: rgba(255, 255, 255, 0.5);
}

body.stress-test-mode .phase-line {
    background: rgba(255, 255, 255, 0.06);
}

body.stress-test-mode .phase-line-fill {
    background: rgba(255, 255, 255, 0.3);
}

body.stress-test-mode .btn-back {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

body.stress-test-mode .btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

body.stress-test-mode .sim-card {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

body.stress-test-mode .sim-question-title {
    color: rgba(255, 255, 255, 0.9);
}

body.stress-test-mode .sim-question-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

body.stress-test-mode .option-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

body.stress-test-mode .option-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

body.stress-test-mode .option-btn.selected {
    border-color: #ef4444;
    background: #ef4444;
    color: #ffffff;
}

body.stress-test-mode .sim-amount.red-pulse {
    animation: redPulse 1.5s ease-in-out;
}

body.stress-test-mode .sim-loss {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

@keyframes screenShake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-6px) translateY(2px); }
    20% { transform: translateX(5px) translateY(-2px); }
    30% { transform: translateX(-4px) translateY(1px); }
    40% { transform: translateX(4px) translateY(-1px); }
    50% { transform: translateX(-3px); }
    60% { transform: translateX(2px); }
    70% { transform: translateX(-1px); }
}

@keyframes redPulse {
    0% { color: #ffffff; }
    30% { color: #ef4444; text-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
    100% { color: #ef4444; text-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
}

.screen-shake {
    animation: screenShake 0.5s ease-out;
}

/* ============================================
   Animations & Transitions
   ============================================ */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 200;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; r: 8; }
    50%      { opacity: 0; r: 16; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

.screen.active.slide-forward .screen-inner {
    animation: slideInRight 0.3s ease-out;
}

.screen.active.slide-back .screen-inner {
    animation: slideInLeft 0.3s ease-out;
}

#sim-dot-glow {
    animation: dotPulse 2s ease-in-out infinite;
}

/* ============================================
   Responsive
   ============================================ */
/* Focus styles */
.option-btn:focus-visible,
.btn-start:focus-visible,
.btn-secondary:focus-visible,
.btn-back:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .screen.active.slide-forward .screen-inner,
    .screen.active.slide-back .screen-inner {
        animation: none;
    }

    .score-fill,
    .phase-dot,
    .phase-line-fill {
        transition: none;
    }

    #sim-dot-glow {
        animation: none;
    }

    .screen-shake {
        animation: none;
    }

    body.stress-test-mode .sim-amount.red-pulse {
        animation: none;
        color: #ef4444;
    }
}

@media (min-width: 641px) {
    .share-content {
        max-width: 480px;
        max-height: 85vh;
        border-radius: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        animation: fadeIn 0.25s ease;
    }

    .compare-content {
        max-width: 520px;
        max-height: 80vh;
        border-radius: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        animation: fadeIn 0.25s ease;
    }
}

@media (max-width: 640px) {
    .screen-inner {
        padding: 2rem 1.25rem;
    }

    .welcome-title {
        font-size: 2.2rem;
    }

    .question-text {
        font-size: 1.45rem;
    }

    .fact-stat {
        font-size: 2.8rem;
    }

    .fact-card, .sim-card, .sim-intro-card {
        padding: 2rem 1.5rem;
    }

    .sim-intro-amount {
        font-size: 2.5rem;
    }

    .sim-amount {
        font-size: 2rem;
    }

    .result-title {
        font-size: 2rem;
    }

    .forecast-chart-wrap {
        height: 150px;
    }

    .result-tab {
        font-size: 0.78rem;
        padding: 0.5rem 0.35rem;
    }

    .compare-card-stats {
        gap: 1rem;
    }

    .crash-stats {
        gap: 0.35rem;
    }

    .crash-stat-value {
        font-size: 0.82rem;
    }

    .crash-tab-year {
        font-size: 0.95rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
.btn-print {
    background: #374151;
}

.btn-print:hover {
    background: #1f2937;
}

@media print {
    body {
        background: #fff;
    }

    .phase-progress-container,
    #confetti-canvas,
    .btn-back,
    .btn-show-plan,
    .btn-print,
    .btn-share,
    .btn-restart,
    .btn-compare,
    .result-actions,
    .disclaimer,
    .saved-result-banner,
    .forecast-controls,
    .compare-modal,
    .share-modal,
    #crash-sim-card,
    #btn-goto-plan {
        display: none !important;
    }

    .screen {
        display: none !important;
    }

    #result-screen {
        display: flex !important;
    }

    #result-screen .screen-inner {
        min-height: auto;
        padding: 0;
    }

    .result-tabs {
        display: none !important;
    }

    .result-tab-panel {
        display: block !important;
        opacity: 1 !important;
    }

    #plan-section {
        display: block !important;
    }

    .result-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .donut-svg {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    #donut-segments circle {
        opacity: 1 !important;
    }

    .score-fill {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .result-badge {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .char-dot,
    .legend-dot {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .plan-card {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .plan-item-fill {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .forecast-svg {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    #forecast-area {
        opacity: 1 !important;
    }

    .forecast-dot,
    .forecast-dot-dashed {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .forecast-endpoint-value {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
