/* GasRadar Outlook Report Styles */

.report-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a1412 0%, #0e1f1a 50%, #121e1b 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29, 124, 112, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    display: inline-block;
    background: rgba(94, 234, 212, 0.10);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(to right, #1d7c70, #5eead4, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted, #85a29a);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--color-muted, #85a29a);
}
.hero-meta strong { color: #e4e7ef; }

/* Key figures */
.key-figures {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.kf-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
}

.kf-label {
    font-size: 0.72rem;
    color: var(--color-muted, #85a29a);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
}

.kf-value {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.kf-change {
    font-size: 0.8rem;
    margin-top: 0.2rem;
    font-family: 'JetBrains Mono', monospace;
}

.kf-up { color: #f87171; }
.kf-down { color: #34d399; }
.kf-neutral { color: #fb923c; }

/* Sections */
.report-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-number {
    display: inline-block;
    background: rgba(94, 234, 212, 0.10);
    color: var(--color-accent);
    width: 28px; height: 28px;
    border-radius: 8px;
    text-align: center;
    line-height: 28px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
}

.report-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.report-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.8rem 0 0.8rem;
}

.report-section p { margin-bottom: 1rem; }

/* Callouts */
.callout {
    border-left: 3px solid var(--color-primary);
    background: rgba(29, 124, 112, 0.08);
    padding: 1rem 1.2rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.callout.bullish { border-left-color: #f87171; background: rgba(248, 113, 113, 0.12); }
.callout.bearish { border-left-color: #34d399; background: rgba(52, 211, 153, 0.12); }
.callout.warning { border-left-color: #fb923c; background: rgba(251, 146, 60, 0.12); }

.callout-label {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
    color: var(--color-accent);
}

.callout.bullish .callout-label { color: #f87171; }
.callout.bearish .callout-label { color: #34d399; }
.callout.warning .callout-label { color: #fb923c; }

/* Tables */
.report-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.9rem;
}

.report-section thead th {
    text-align: left;
    padding: 0.7rem 0.8rem;
    border-bottom: 2px solid var(--color-border);
    color: var(--color-muted, #85a29a);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'JetBrains Mono', monospace;
}

.report-section tbody td {
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid rgba(29, 61, 54, 0.5);
}

.report-section tbody tr:last-child td { border-bottom: none; }

.source {
    font-size: 0.78rem;
    color: var(--color-muted, #85a29a);
    font-style: italic;
}

.source a { color: var(--color-accent); text-decoration: none; }
.source a:hover { text-decoration: underline; }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.tl-item { position: relative; margin-bottom: 1.2rem; }

.tl-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.55rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid var(--color-bg);
}

.tl-item.crisis::before { background: #f87171; }
.tl-item.deescalation::before { background: #34d399; }

.tl-date {
    font-size: 0.78rem;
    color: var(--color-accent);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.tl-text {
    font-size: 0.92rem;
    margin-top: 0.15rem;
}

/* Signal meter */
.signal-meter {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
}

.signal-label {
    font-size: 0.85rem;
    width: 120px;
    flex-shrink: 0;
}

.signal-bar-bg {
    flex: 1;
    height: 8px;
    background: #0c1210;
    border-radius: 4px;
    overflow: hidden;
}

.signal-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s;
}

.signal-bar.bullish { background: #f87171; }
.signal-bar.bearish { background: #34d399; }
.signal-bar.neutral { background: #85a29a; }

.signal-reading {
    font-size: 0.8rem;
    font-weight: 600;
    width: 70px;
    text-align: right;
    font-family: 'JetBrains Mono', monospace;
}

/* Scenario cards */
.scenario-card {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.5rem;
    background: #0c1210;
    margin-bottom: 1.2rem;
}

.scenario-card.bull { border-left: 4px solid #34d399; }
.scenario-card.base { border-left: 4px solid #fb923c; }
.scenario-card.bear { border-left: 4px solid #f87171; }

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.scenario-name { font-weight: 700; font-size: 1rem; }

.scenario-prob {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.scenario-card.bull .scenario-prob { background: rgba(52, 211, 153, 0.12); color: #34d399; }
.scenario-card.base .scenario-prob { background: rgba(251, 146, 60, 0.12); color: #fb923c; }
.scenario-card.bear .scenario-prob { background: rgba(248, 113, 113, 0.12); color: #f87171; }

.scenario-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    font-family: 'JetBrains Mono', monospace;
}

.scenario-card.bull .scenario-price { color: #34d399; }
.scenario-card.base .scenario-price { color: #fb923c; }
.scenario-card.bear .scenario-price { color: #f87171; }

/* Methodology grid */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.method-card {
    background: #0c1210;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
}

.method-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.method-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.method-desc { font-size: 0.78rem; color: var(--color-muted, #85a29a); }

/* Email gate */
.outlook-email-gate {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.outlook-email-gate h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.outlook-email-gate p {
    color: var(--color-muted, #85a29a);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gate-note {
    font-size: 0.75rem;
    color: var(--color-dim, #587069);
}

/* Outlook freemium fade (taller than briefing) */
.outlook-freemium-fade {
    position: relative;
    max-height: 220px;
    overflow: hidden;
}

.outlook-freemium-fade::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    background: linear-gradient(transparent, var(--color-bg));
    pointer-events: none;
}

/* Gated content */
.gated-content { display: none; }
.gated-content.unlocked { display: block; }

/* Disclaimer */
.report-disclaimer {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 0.78rem;
    color: var(--color-muted, #85a29a);
    margin-top: 2rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .key-figures { grid-template-columns: repeat(2, 1fr); }
    .method-grid { grid-template-columns: 1fr; }
    .hero { padding: 2rem 1.5rem; }
    .hero h1 { font-size: 1.8rem; }
    .report-section { padding: 1.5rem; }
    .hero-meta { flex-direction: column; gap: 0.5rem; }
}
