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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--teal, #0F766E);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1001;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

:root {
    color-scheme: light;
    --text: #1c1917;
    --text-muted: #78716c;
    --text-secondary: #57534e;
    --teal: #0F766E;
    --teal-light: #F0FDFA;
    --teal-muted: rgba(15, 118, 110, 0.08);
    --amber: #B45309;
    --amber-light: #FFFBEB;
    --border: #e7e5e4;
    --bg: #FAFAF5;
    --bg-surface: #ffffff;
    --bg-inset: #F5F5F0;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-ui: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

/* Header */
.header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}
.header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
    text-wrap: balance;
}
.header-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.header select {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    background: var(--bg-surface);
    color: var(--text);
}
.header select:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
}
.issue-time {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.explainer {
    display: inline;
}
.explainer summary {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
    list-style: none;
    display: inline;
}
.explainer summary::-webkit-details-marker { display: none; }
.explainer summary::before {
    content: '';
}
.explainer[open] summary::before {
    content: '';
}
.explainer[open] {
    display: block;
    margin-top: 0.5rem;
}
.explainer p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-top: 0.35rem;
    font-style: italic;
    max-width: 680px;
}

/* Key Takeaway */
.takeaway {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 2rem 0;
}
.takeaway-box {
    background: var(--teal-light);
    border-left: 3px solid var(--teal);
    padding: 1rem 1.25rem;
    border-radius: 0 6px 6px 0;
}
.takeaway-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 0.25rem;
}
.takeaway-text {
    font-size: 1.05rem;
    line-height: 1.55;
}

/* Forecast meta strip (confidence + current temp + history) */
.forecast-meta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 2rem 0.25rem;
}
.forecast-meta-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Confidence indicator */
.confidence {
    padding: 0;
    margin: 0;
    max-width: none;
}
.confidence-box {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0;
}
.confidence-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    white-space: nowrap;
}
.confidence-bar-wrap {
    width: 120px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.confidence-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.confidence-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text);
    font-weight: 500;
}

/* AI translation toggle (mobile only) */
.ai-toggle {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 0.75rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
}
.ai-toggle-btn {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background-color 0.15s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ai-toggle-btn:hover {
    border-color: var(--text-muted);
    color: var(--text);
}
.ai-toggle-btn.active {
    background: var(--teal-muted);
    border-color: var(--teal);
    color: var(--teal);
}
.ai-toggle-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.ai-loading {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--border);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .ai-loading { animation: none; opacity: 0.6; }
    .confidence-bar { transition: none; }
}
.plain-col .ai-translated {
    border-left: 2px solid var(--teal);
    padding-left: 1rem;
    margin-left: -1rem;
}

/* Section nav */
.section-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.section-nav a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: color 0.15s, border-color 0.15s;
}
.section-nav a:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

/* Sections */
.sections {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.forecast-section {
    margin-bottom: 3.5rem;
}
.section-title {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}
.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
@media (max-width: 768px) {
    /* Mobile column toggle visibility */
    .columns.show-plain > div:last-child { display: none; }
    .columns.show-original > div:first-child { display: none; }
    .columns { grid-template-columns: 1fr; gap: 1.5rem; }
    .header, .takeaway, .section-nav, .sections, .ai-toggle, .forecast-meta { padding-left: 1.25rem; padding-right: 1.25rem; }
    .forecast-meta-inner { gap: 0.75rem; }
    .confidence-bar-wrap { width: 80px; }
    #history-selector { margin-left: 0; }
    .header h1 { font-size: 1.5rem; }
    /* 1. Show mobile view toggle */
    .ai-toggle { display: flex; }
    /* 2. Larger touch targets for section nav */
    .section-nav a { padding: 0.5rem 1rem; font-size: 0.85rem; }
    /* 4. Fix header layout */
    .header-row { gap: 0.75rem; }
    .header select { flex: 1; min-width: 0; }
    /* 8. Horizontal scroll nav */
    .section-nav { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .section-nav::-webkit-scrollbar { display: none; }
    .section-nav a { white-space: nowrap; flex-shrink: 0; }
    /* 11. Footer mobile layout */
    .footer { flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
    .footer-credit { margin-left: 0; }
}
.col-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Plain English column */
.plain-col p {
    margin-bottom: 1rem;
}
.plain-col .sub-header {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
}
.plain-col .sub-header:first-child {
    margin-top: 0;
}
.plain-col .alert-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.plain-col .alert-list li {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    border-left: 3px solid;
}
.plain-col .alert-list li.alert-warning {
    background: #fef2f2;
    border-left-color: #dc2626;
    color: #991b1b;
}
.plain-col .alert-list li.alert-watch {
    background: var(--amber-light);
    border-left-color: var(--amber);
    color: #92400e;
}
.plain-col .alert-list li.alert-advisory {
    background: var(--teal-light);
    border-left-color: var(--teal);
    color: #115e59;
}
.plain-col .alert-list li.alert-statement {
    background: #f5f5f4;
    border-left-color: #78716c;
    color: #44403c;
}
.alert-link {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(15, 118, 110, 0.4);
    text-underline-offset: 2px;
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    padding: 0;
    text-align: left;
    width: 100%;
}
.alert-link:hover {
    text-decoration-color: var(--teal);
}
.alert-link:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Alert detail modal */
.alert-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.alert-modal-overlay.open {
    display: flex;
}
.alert-modal {
    background: var(--bg-surface);
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    position: relative;
    font-family: var(--font-body);
}
.alert-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.alert-modal-close:hover { color: var(--text); }
.alert-modal h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    line-height: 1.3;
}
.alert-modal .alert-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: var(--font-ui);
}
.alert-modal .alert-body {
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-wrap;
}
.alert-modal .alert-instruction {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-weight: 500;
}

/* Annotated column */
.annotated-col {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-muted);
    white-space: pre-wrap;
    word-break: break-word;
}

/* Jargon highlights */
.jargon {
    background: rgba(180, 83, 9, 0.1);
    border-bottom: 1px dashed var(--amber);
    cursor: help;
    padding: 0 2px;
    border-radius: 2px;
    position: relative;
}
.jargon:hover { background: rgba(180, 83, 9, 0.18); }
.jargon .tip {
    display: none;
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    width: max-content;
    max-width: 280px;
    z-index: 100;
    white-space: normal;
    font-weight: 400;
}
.jargon:hover .tip, .jargon.tip-open .tip { display: block; }
.jargon .tip.tip-below { bottom: auto; top: calc(100% + 6px); }

/* Loading / error */
.loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.footer a {
    color: var(--text-muted);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.footer-credit { margin-left: auto; }

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    color: var(--text-muted);
    transition: border-color 0.15s, color 0.15s;
    padding: 0;
    flex-shrink: 0;
}
.theme-toggle:hover {
    border-color: var(--text-muted);
    color: var(--text);
}
.theme-toggle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ─── Dark mode ─── */
.dark {
    color-scheme: dark;
    --text: #E7E5E4;
    --text-muted: #A8A29E;
    --text-secondary: #78716c;
    --teal: #2DD4BF;
    --teal-light: rgba(13, 148, 136, 0.12);
    --teal-muted: rgba(45, 212, 191, 0.08);
    --amber: #FBBF24;
    --amber-light: rgba(180, 83, 9, 0.15);
    --border: #292524;
    --bg: #111110;
    --bg-surface: #1C1917;
    --bg-inset: #0C0C0B;
}
.dark body { background: #111110; }
.dark ::selection { background: rgba(255, 255, 255, 0.2); }
.dark .header select {
    background: var(--bg-surface);
    color: var(--text);
    border-color: var(--border);
}
.dark .takeaway-box {
    background: var(--teal-light);
}
/* Dark mode alert colors — matches DESIGN.md Semantic Colors */
.dark .plain-col .alert-list li.alert-warning {
    background: rgba(220, 38, 38, 0.12);
    border-left-color: #F87171;
    color: #F87171;
}
.dark .plain-col .alert-list li.alert-watch {
    background: var(--amber-light);
    border-left-color: var(--amber);
    color: var(--amber);
}
.dark .plain-col .alert-list li.alert-advisory {
    background: var(--teal-light);
    border-left-color: var(--teal);
    color: var(--teal);
}
.dark .plain-col .alert-list li.alert-statement {
    background: rgba(120, 113, 108, 0.12);
    border-left-color: var(--text-muted);
    color: var(--text-secondary);
}
.dark .alert-link { color: var(--teal); text-decoration-color: rgba(45, 212, 191, 0.4); }
.dark .alert-link:hover { text-decoration-color: var(--teal); }
.dark .alert-modal {
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.dark .alert-modal-overlay { background: rgba(0,0,0,0.6); }
.dark .jargon {
    background: rgba(180, 83, 9, 0.15);
    border-bottom-color: var(--amber);
}
.dark .jargon:hover { background: rgba(180, 83, 9, 0.25); }
.dark .jargon .tip {
    background: #262626;
    color: #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.dark .confidence-bar-wrap { background: var(--border); }
.dark .ai-toggle-btn {
    background: var(--bg-surface);
    border-color: var(--border);
    color: var(--text-muted);
}
.dark .ai-toggle-btn:hover { border-color: var(--text-muted); color: var(--text); }
.dark .ai-toggle-btn.active {
    background: var(--teal-muted);
    border-color: var(--teal);
    color: var(--teal);
}
.dark .ai-loading { border-color: var(--border); border-top-color: var(--teal); }
.dark .section-nav a {
    border-color: var(--border);
    color: var(--text-muted);
}
.dark .section-nav a:hover { color: var(--text); border-color: var(--text-muted); }
.dark .plain-col .ai-translated { border-left-color: var(--teal); }
.dark .footer { border-top-color: var(--border); }

/* Header meta line (issue time + share + kbd + explainer) */
.header-meta {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.meta-sep {
    color: var(--border);
    font-size: 0.7rem;
    user-select: none;
}
.share-btn, .kbd-hint {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.25rem;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.share-btn:hover, .kbd-hint:hover { color: var(--text); }
.share-btn:focus-visible, .kbd-hint:focus-visible,
.theme-toggle:focus-visible,
.section-nav a:focus-visible,
.banner-action:focus-visible,
.banner-dismiss:focus-visible,
.alert-modal-close:focus-visible,
.footer a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
    border-radius: 2px;
}
.share-toast {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.3s;
}
.share-toast.show { opacity: 1; }
kbd {
    display: inline-block;
    min-width: 1.5em;
    padding: 0.15rem 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    background: var(--border);
    border-radius: 3px;
    text-align: center;
    margin-right: 0.5rem;
}
.dark kbd { background: var(--border); }
@media (max-width: 768px) {
    .kbd-hint { display: none; }
}

/* Banners (auto-refresh, offline) */
.banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.banner-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    border-radius: 0 6px 6px 0;
    border-left: 3px solid;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.banner-teal { background: var(--teal-light); border-left-color: var(--teal); color: var(--text); }
.banner-blue { background: var(--teal-light); border-left-color: var(--teal); color: var(--text); }
.banner-amber { background: var(--amber-light); border-left-color: var(--amber); color: #92400e; }
.dark .banner-amber { background: var(--amber-light); color: #fcd34d; }
.banner-action {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    background: none;
    border: 1px solid var(--teal);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
}
.banner-action:hover { background: var(--teal); color: #fff; }
.banner-dismiss {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-left: auto;
    padding: 0 0.25rem;
}
.banner-dismiss:hover { color: var(--text); }

/* Print stylesheet */
@media print {
    .header-row select, .header-row button, .header-meta,
    .ai-toggle, .section-nav, .footer, .confidence,
    .banner, .explainer, .alert-modal-overlay,
    .col-label, .annotated-col, .columns > div:last-child,
    .ai-loading, #history-selector, #kbd-overlay {
        display: none !important;
    }
    .dark { --text: #1c1917; --text-muted: #78716c; --bg: #ffffff; --border: #e7e5e4; --teal: #0F766E; --teal-light: #F0FDFA; }
    body, .dark body { background: #fff !important; color: #1c1917 !important; }
    .columns { grid-template-columns: 1fr !important; }
    .header { padding-top: 1rem; }
    .sections { padding-bottom: 1rem; }
}

/* ─── Forecast diff ─── */
.diff-added { background: rgba(22, 163, 74, 0.08); border-left: 2px solid #16a34a; padding-left: 0.75rem; margin-bottom: 0.75rem; }
.diff-removed { background: rgba(220, 38, 38, 0.06); border-left: 2px solid #dc2626; padding-left: 0.75rem; margin-bottom: 0.75rem; text-decoration: line-through; opacity: 0.6; }
.diff-unchanged { opacity: 0.4; margin-bottom: 0.75rem; }
.dark .diff-added { background: rgba(22, 163, 74, 0.12); }
.dark .diff-removed { background: rgba(220, 38, 38, 0.1); }
.diff-toggle { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--font-ui); font-size: 0.8rem; color: var(--text-muted); background: none; border: 1px solid var(--border); border-radius: 999px; padding: 0.25rem 0.75rem; cursor: pointer; transition: all 0.15s; margin-left: 0.5rem; }
.diff-toggle:hover { border-color: var(--text-muted); color: var(--text); }
.diff-toggle.active { background: var(--teal-muted); border-color: var(--teal); color: var(--teal); }
.diff-badge { font-size: 0.7rem; background: var(--teal); color: #fff; border-radius: 999px; padding: 0.1rem 0.4rem; font-weight: 600; }
.diff-first-visit { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text-muted); font-style: italic; padding: 0.5rem 0; }

/* ─── Skeleton loading ─── */
.skeleton { max-width: 1100px; padding: 1rem 0; }
.skeleton-takeaway { height: 4rem; background: var(--teal-light); border-radius: 6px; margin-bottom: 1.5rem; animation: shimmer 1.5s infinite; }
.skeleton-confidence { height: 1.5rem; max-width: 320px; background: var(--border); border-radius: 3px; margin-bottom: 2rem; animation: shimmer 1.5s infinite; animation-delay: 0.1s; }
.skeleton-section { margin-bottom: 2rem; }
.skeleton-title { height: 1rem; max-width: 120px; background: var(--border); border-radius: 3px; margin-bottom: 1rem; animation: shimmer 1.5s infinite; animation-delay: 0.2s; }
.skeleton-line { height: 0.9rem; background: var(--border); border-radius: 3px; margin-bottom: 0.6rem; animation: shimmer 1.5s infinite; }
.skeleton-line.short { max-width: 60%; }
@keyframes shimmer { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }
@media (prefers-reduced-motion: reduce) { .skeleton-takeaway, .skeleton-confidence, .skeleton-title, .skeleton-line { animation: none; opacity: 0.5; } }

/* Seasonal context */
#seasonal-context { font-family: var(--font-ui); }
