/* ===== REPORT STYLES =====
   Extends the LeadMaxxing marketing site design system (instantly-styles.css).
   Used by all /reports/ pages.
*/

:root {
    --bg: #050505;
    --bg-card: #0a0a0a;
    --bg-elevated: #111111;
    --bg-surface: #0d0d0d;
    --text: #f0f0f0;
    --text-dim: #999999;
    --text-muted: #555555;
    --accent: #22c55e;
    --accent-dim: #16a34a;
    --accent-glow: rgba(34, 197, 94, 0.35);
    --red: #ef4444;
    --blue: #3b82f6;
    --amber: #f59e0b;
    --purple: #8b5cf6;
    --border: #1a1a1a;
    --border-light: #2a2a2a;
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 0; background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 900px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 16px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em;
    text-decoration: none; color: var(--text); flex-shrink: 0;
}
.logo-icon { color: var(--accent); font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-link {
    color: var(--text-muted); text-decoration: none; font-size: 0.8125rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav-cta {
    background: var(--accent); color: var(--bg); padding: 9px 20px;
    font-size: 0.8125rem; font-weight: 600; text-decoration: none;
    border-radius: var(--radius); transition: all 0.2s; border: none; cursor: pointer;
}
.nav-cta:hover {
    background: var(--accent-dim); transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== LAYOUT ===== */
.page-body { padding-top: 80px; }

/* Single-column layout (no sidebar) */
.report-layout { display: block; }
.report-content { max-width: 100%; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 20px 0 8px;
    font-size: 0.8125rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-muted); }

/* ===== REPORT HERO ===== */
.report-hero {
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}
.report-hero .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.75rem; font-weight: 600; color: var(--accent);
    margin-bottom: 16px;
}
.report-hero h1 {
    font-size: 2.5rem; font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.12; margin-bottom: 16px; max-width: 100%;
}
.report-hero .subtitle {
    font-size: 1.0625rem; color: var(--text-dim); max-width: 780px;
    line-height: 1.7;
}
.report-hero a { color: var(--accent); text-decoration: none; }
.report-hero a:visited { color: var(--accent); }
.report-hero a:hover { text-decoration: underline; }
.report-hero .meta {
    display: flex; gap: 20px; margin-top: 16px;
    font-size: 0.8125rem; color: var(--text-muted);
}
.report-hero .meta span { display: flex; align-items: center; gap: 6px; }

/* ===== CONTENT TYPOGRAPHY ===== */
.report-content h2 {
    font-size: 1.5rem; font-weight: 700; margin: 48px 0 16px;
    letter-spacing: -0.02em; line-height: 1.2;
}
.report-content h3 {
    font-size: 1.2rem; font-weight: 600; margin: 36px 0 12px;
}
.report-content p {
    margin-bottom: 16px; color: var(--text-dim); line-height: 1.8;
}
.report-content strong { color: var(--text); font-weight: 600; }
.report-content a { color: var(--accent); text-decoration: none; }
.report-content a:hover { text-decoration: underline; }
.report-content ul, .report-content ol {
    margin: 0 0 20px 24px; color: var(--text-dim);
}
.report-content li { margin-bottom: 8px; line-height: 1.7; }
.report-content li::marker { color: var(--accent); }

/* ===== CALLOUT BOXES ===== */
.callout {
    border-left: 3px solid var(--accent);
    padding: 16px 20px; margin: 24px 0;
    background: var(--bg-card); border-radius: 0 var(--radius) var(--radius) 0;
}
.callout.insight { border-left-color: var(--amber); }
.callout.takeaway { border-left-color: var(--purple); }
.callout .callout-label {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 6px;
    color: var(--accent);
}
.callout.insight .callout-label { color: var(--amber); }
.callout.takeaway .callout-label { color: var(--purple); }
.callout p { margin: 0; font-size: 0.9375rem; color: var(--text-dim); line-height: 1.7; }
.callout p strong { color: var(--text); }

/* ===== STAT CARDS (inline metrics) ===== */
.stat-row {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px; margin: 24px 0;
}
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px; text-align: center;
}
.stat-card .stat-value {
    font-size: 2rem; font-weight: 700; color: var(--accent);
    line-height: 1.1; margin-bottom: 4px;
}
.stat-card .stat-label {
    font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
}

/* ===== GRADE BADGE ===== */
.grade-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.25rem; font-weight: 700;
}
.grade-badge.a { background: rgba(34, 197, 94, 0.15); color: var(--accent); border: 2px solid var(--accent); }
.grade-badge.b { background: rgba(59, 130, 246, 0.15); color: var(--blue); border: 2px solid var(--blue); }
.grade-badge.c { background: rgba(245, 158, 11, 0.15); color: var(--amber); border: 2px solid var(--amber); }
.grade-badge.f { background: rgba(239, 68, 68, 0.15); color: var(--red); border: 2px solid var(--red); }

/* ===== TOOL CARDS (tech stack) ===== */
.tool-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px; margin: 20px 0;
}
.tool-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 16px;
    transition: border-color 0.2s;
}
.tool-card:hover { border-color: var(--border-light); }
.tool-card .tool-name {
    font-size: 0.875rem; font-weight: 600; color: var(--text);
    margin-bottom: 2px;
}
.tool-card .tool-name a { color: var(--text); text-decoration: none; }
.tool-card .tool-name a:hover { color: var(--accent); }
.tool-card .tool-cat {
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px;
}
.tool-card .tool-desc {
    font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5;
}

/* ===== REPORT CARDS (linked sub-reports) ===== */
.report-card-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px; margin: 32px 0;
}
.report-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px; transition: all 0.2s;
    text-decoration: none; display: block;
}
.report-card:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.report-card .rc-icon {
    font-size: 1.5rem; margin-bottom: 12px;
}
.report-card .rc-title {
    font-size: 1rem; font-weight: 700; color: var(--text);
    margin-bottom: 6px;
}
.report-card .rc-desc {
    font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5;
    margin-bottom: 12px;
}
.report-card .rc-status {
    font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em;
}
.report-card .rc-status.live { color: var(--accent); }
.report-card .rc-status.wip { color: var(--amber, #f59e0b); }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius); }
table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
th {
    text-align: left; padding: 10px 16px; font-size: 0.8125rem;
    font-weight: 600; color: var(--text); background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}
td {
    padding: 10px 16px; font-size: 0.875rem; color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
td code {
    background: var(--bg-elevated); padding: 2px 7px; border-radius: 4px;
    font-size: 0.8125em; font-family: 'JetBrains Mono', monospace;
    color: var(--accent);
}

/* ===== CHECK TABLE (security headers etc) ===== */
.check-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.check-row:last-child { border-bottom: none; }
.check-icon-pass { color: var(--accent); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.check-icon-fail { color: var(--red); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.check-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.check-detail { font-size: 0.8125rem; color: var(--text-dim); margin-top: 2px; }

/* ===== TIMELINE ===== */
.timeline { position: relative; margin: 32px 0; padding-left: 32px; }
.timeline::before {
    content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
    width: 2px; background: var(--border-light);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
    content: ''; position: absolute; left: -32px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--bg);
    box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
    font-size: 0.75rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.timeline-content { color: var(--text-dim); font-size: 0.9375rem; line-height: 1.7; }
.timeline-content strong { color: var(--text); }

/* ===== WAYBACK SCREENSHOT EMBED ===== */
.wb-screenshot {
    position: relative; margin: 16px 0; border-radius: 12px;
    overflow: hidden; border: 1px solid var(--border);
    background: var(--bg-card); height: 400px;
}
.wb-screenshot iframe {
    display: block; border: none; background: #111;
    width: 1440px; height: 900px;
    transform: scale(0.6); transform-origin: top left;
    pointer-events: none;
}
.wb-screenshot-overlay {
    position: absolute; inset: 0; cursor: pointer;
    background: linear-gradient(180deg, transparent 60%, rgba(5,5,5,0.9));
    display: flex; align-items: flex-end; padding: 16px;
    transition: background 0.3s;
}
.wb-screenshot-overlay:hover { background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.95)); }
.wb-screenshot-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600; color: var(--accent);
}
.wb-screenshot-label svg { opacity: 0.7; }

/* ===== SCREENSHOT PLACEHOLDER ===== */
.screenshot-placeholder {
    background: var(--bg-card); border: 1px dashed var(--border-light);
    border-radius: var(--radius); padding: 40px 20px;
    text-align: center; margin: 16px 0;
}
.screenshot-placeholder .sp-icon {
    font-size: 2rem; margin-bottom: 8px; color: var(--text-muted);
}
.screenshot-placeholder .sp-text {
    font-size: 0.8125rem; color: var(--text-muted);
}

/* ===== BAR CHART (CSS-only) ===== */
.bar-chart { margin: 20px 0; }
.bar-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.bar-label {
    width: 50px; font-size: 0.8125rem; font-weight: 600;
    color: var(--text); text-align: right; flex-shrink: 0;
}
.bar-track {
    flex: 1; height: 28px; background: var(--bg-card);
    border-radius: 4px; overflow: hidden; border: 1px solid var(--border);
}
.bar-fill {
    height: 100%; background: var(--accent); border-radius: 4px 0 0 4px;
    display: flex; align-items: center; padding-left: 10px;
    font-size: 0.75rem; font-weight: 600; color: var(--bg);
    min-width: fit-content;
    transition: width 0.6s ease;
}

/* ===== VIDEO HERO WITH OVERLAY CELLS ===== */
.video-section {
    position: relative; margin: 32px 0 48px;
}
.video-wrap {
    position: relative; width: 100%; aspect-ratio: 16/9;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 120px rgba(34,197,94,.07);
    transition: all .4s;
}
.video-wrap:hover { border-color: var(--accent); box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 140px rgba(34,197,94,.14); }
.video-wrap .play-btn {
    width: 80px; height: 80px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
    color: var(--bg); transition: transform .3s; box-shadow: 0 8px 40px var(--accent-glow); z-index: 2;
}
.video-wrap:hover .play-btn { transform: scale(1.1); }
.video-overlay-cells {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px; background: rgba(5,5,5,0.85); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border); z-index: 3;
}
.video-overlay-cell {
    padding: 12px 16px; text-align: center;
}
.video-overlay-cell .voc-value {
    font-size: 1.125rem; font-weight: 700; color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
}
.video-overlay-cell .voc-label {
    font-size: 0.625rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted); margin-top: 2px;
}
.video-cta {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 16px; padding: 16px; text-align: center;
}
.video-cta .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--bg); padding: 12px 28px;
    font-size: 0.875rem; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
    text-decoration: none; font-family: inherit;
}
.video-cta .btn-primary:hover {
    background: var(--accent-dim); transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.video-cta .btn-ghost {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: var(--text-dim); padding: 12px 20px;
    font-size: 0.8125rem; font-weight: 500; border: 1px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
    text-decoration: none; font-family: inherit;
}
.video-cta .btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* ===== INLINE INFO CARDS (replaces sidebar) ===== */
.info-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px; margin: 32px 0;
}
.info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px; position: relative; overflow: hidden;
}
.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
}
.info-card.ic-green::before { background: var(--accent); }
.info-card.ic-blue::before { background: var(--blue); }
.info-card.ic-amber::before { background: var(--amber); }
.info-card.ic-purple::before { background: var(--purple); }
.info-card.ic-red::before { background: var(--red); }
.info-card h4 {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px;
}
.info-card .ic-value {
    font-size: 1.5rem; font-weight: 700; color: var(--text);
    font-family: 'JetBrains Mono', monospace; line-height: 1.1; margin-bottom: 4px;
}
.info-card .ic-desc {
    font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5;
}
.info-card ul { list-style: none; margin: 0; padding: 0; }
.info-card li {
    padding: 4px 0; font-size: 0.8125rem; color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
.info-card li:last-child { border-bottom: none; }
.info-card a { color: var(--accent); text-decoration: none; font-size: 0.8125rem; }
.info-card a:hover { text-decoration: underline; }

/* ===== SIMILAR REPORTS / RELATED POSTS ===== */
.similar-reports {
    margin: 56px 0 32px; padding-top: 40px;
    border-top: 1px solid var(--border);
}
.similar-reports h2 {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 20px;
}
.similar-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.similar-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px; text-decoration: none;
    display: block; transition: all 0.2s; position: relative; overflow: hidden;
}
.similar-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue));
}
.similar-card:hover {
    border-color: var(--accent); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.similar-card .sc-badge {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 12px;
    background: rgba(34,197,94,0.08); color: var(--accent);
    border: 1px solid rgba(34,197,94,0.2);
}
.similar-card .sc-title {
    font-size: 1rem; font-weight: 700; color: var(--text);
    margin-bottom: 6px; line-height: 1.3;
}
.similar-card .sc-desc {
    font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5;
}
.similar-card .sc-arrow {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 600; color: var(--accent); margin-top: 12px;
}

/* ===== UNIFIED LEAD MAGNET ===== */
.free-report-unified {
    background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(34,197,94,0.02));
    border: 1px solid rgba(34,197,94,0.25); border-radius: 16px;
    padding: 40px; margin: 56px 0; text-align: center;
    position: relative; overflow: hidden;
}
.free-report-unified::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue), var(--accent));
}
.free-report-unified .lmu-eyebrow {
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px;
}
.free-report-unified h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.free-report-unified p {
    color: var(--text-dim); font-size: 0.9375rem; margin-bottom: 20px;
    max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.free-report-unified .lmu-points {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px;
}
.free-report-unified .lmu-point {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 20px;
    font-size: 0.75rem; color: var(--text-dim);
}
.free-report-unified .lmu-point .check { color: var(--accent); font-weight: 700; }
.free-report-unified .lmu-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--bg); padding: 14px 32px;
    font-size: 0.9375rem; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
    text-decoration: none; font-family: inherit;
}
.free-report-unified .lmu-cta:hover {
    background: var(--accent-dim); transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}
.free-report-unified .lmu-sub {
    display: block; margin-top: 12px;
    font-size: 0.75rem; color: var(--text-muted);
}

/* ===== LM COMPARISON CALLOUT ===== */
.lm-callout {
    background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(34,197,94,0.02));
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px; padding: 24px; margin: 24px 0;
    display: flex; gap: 20px; align-items: flex-start;
}
.lm-callout-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(34,197,94,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 1.25rem; color: var(--accent);
}
.lm-callout-body { flex: 1; }
.lm-callout-body h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.lm-callout-body p { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6; margin: 0 0 8px; }
.lm-callout-body .lm-link {
    font-size: 0.8125rem; font-weight: 600; color: var(--accent);
    text-decoration: none;
}
.lm-callout-body .lm-link:hover { text-decoration: underline; }

/* ===== CTA: EMAIL CAPTURE ===== */
.cta-subscribe {
    background: var(--bg-card);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 12px; padding: 32px; margin: 48px 0;
    text-align: center;
}
.cta-subscribe h3 {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 8px;
}
.cta-subscribe p {
    color: var(--text-dim); font-size: 0.9375rem; margin-bottom: 20px;
}
.cta-subscribe form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.cta-subscribe input[type="email"] {
    flex: 1; padding: 12px 16px; background: var(--bg-elevated);
    border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text); font-family: inherit; font-size: 0.875rem;
    outline: none;
}
.cta-subscribe input[type="email"]:focus { border-color: var(--accent); }
.cta-subscribe .btn {
    background: var(--accent); color: var(--bg); padding: 12px 24px;
    font-size: 0.875rem; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
    font-family: inherit; white-space: nowrap;
}
.cta-subscribe .btn:hover {
    background: var(--accent-dim); transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ===== CTA: PRODUCT ===== */
.cta-product {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px; padding: 28px; margin: 32px 0;
}
.cta-product h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cta-product p { color: var(--text-dim); font-size: 0.875rem; margin-bottom: 16px; line-height: 1.6; }
.cta-product .btn-sm {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: var(--bg); padding: 10px 20px;
    font-size: 0.8125rem; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer; transition: all 0.2s;
    text-decoration: none; font-family: inherit;
}
.cta-product .btn-sm:hover { background: var(--accent-dim); }

/* ===== ATTRIBUTION ===== */
.product-mention {
    padding: 20px 0; font-size: 0.875rem; color: var(--text-muted);
    border-top: 1px solid var(--border); margin-top: 48px;
}
.product-mention a { color: var(--accent); text-decoration: none; }
.product-mention a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer {
    border-top: 1px solid var(--border); padding: 40px 0; margin-top: 60px;
}
.footer-inner {
    max-width: 900px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 0.95rem; color: var(--text);
    text-decoration: none;
}
.footer-logo .logo-icon { color: var(--accent); font-size: 1.2rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.8125rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
    font-size: 0.75rem; color: var(--text-muted); margin-top: 20px;
    text-align: center;
}

/* ===== HIGHLIGHT TEXT ===== */
.hl { color: var(--accent); }

/* ===== UNIFIED AUDIO PLAYER (v4 — accent banner with progress) ===== */
.audio-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 20px; margin: 20px 0 8px;
    background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.15);
    border-radius: 10px; position: relative; overflow: hidden;
}
.audio-bar .ab-progress {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(90deg, rgba(34,197,94,.18), rgba(34,197,94,.45));
    width: 0%; transition: width .3s linear; pointer-events: none;
}
.audio-bar > * { position: relative; z-index: 1; }
.audio-bar .ab-play {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: var(--accent); color: #000; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform .2s;
}
.audio-bar .ab-play:hover { transform: scale(1.08); }
.audio-bar .ab-play svg { width: 14px; height: 14px; }
.audio-bar .ab-label {
    font-size: .8125rem; font-weight: 600; color: var(--accent); white-space: nowrap;
}
.audio-bar .ab-spacer { flex: 1; }
.audio-bar .ab-meta {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.audio-bar .ab-time {
    font-family: 'JetBrains Mono', monospace; font-size: .6875rem;
    color: var(--text-muted); white-space: nowrap;
}
.audio-bar .ab-speed {
    padding: 3px 8px; border-radius: 4px;
    border: 1px solid rgba(34,197,94,.25); background: rgba(34,197,94,.08);
    color: var(--accent); font-size: .6875rem; font-weight: 600;
    cursor: pointer; font-family: 'JetBrains Mono', monospace;
}
.audio-bar .ab-speed:hover { background: rgba(34,197,94,.15); }
.audio-bar .ab-waveform {
    flex: 1; display: flex; align-items: center; gap: 2px; height: 24px;
    min-width: 60px; overflow: hidden;
}
.audio-bar .ab-waveform .bar {
    flex: 1; max-width: 3px; border-radius: 2px;
    background: var(--accent); opacity: .3; transition: opacity .3s;
}
.audio-bar.playing .ab-waveform .bar {
    animation: abBounce .5s ease-in-out infinite alternate;
}
.audio-bar.playing .ab-waveform .bar:nth-child(odd) { animation-delay: .1s; }
.audio-bar.playing .ab-waveform .bar:nth-child(3n) { animation-delay: .25s; }
.audio-bar.playing .ab-waveform .bar:nth-child(5n) { animation-delay: .05s; }
@keyframes abBounce {
    0% { transform: scaleY(.5); opacity: .25; }
    100% { transform: scaleY(1.8); opacity: .7; }
}

/* ===== HERO NUMBERS (stats bar) ===== */
.hero-numbers {
    display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
    margin: 24px 0 8px; padding: 20px 0;
}
.hero-num { text-align: center; min-width: 100px; }
.hero-num .big {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem; font-weight: 700; line-height: 1.1; margin-bottom: 4px;
}
.hero-num .big.green { color: var(--accent); }
.hero-num .big.blue { color: var(--blue); }
.hero-num .big.amber { color: var(--amber); }
.hero-num .big.red { color: var(--red); }
.hero-num .big.purple { color: var(--purple); }
.hero-num .label {
    font-size: .6875rem; color: var(--text-muted); line-height: 1.4;
    text-transform: uppercase; letter-spacing: .03em;
}

/* ===== SUMMARY CARD (TOC) ===== */
/* Summary card base styles — overridden by report-components.css */
.summary-card .sc-item strong { color: var(--text); }

/* ===== WHY CARE (speed-stat style) ===== */
.why-care-section h2 { margin-bottom: 12px; }
.why-care-section > p { margin-bottom: 20px; }
.speed-stat {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px; margin: 12px 0; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 12px;
}
.speed-stat .ss-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.75rem; font-weight: 700; color: var(--accent);
    flex-shrink: 0; min-width: 80px; text-align: center;
    line-height: 1.1; padding-top: 2px;
}
.speed-stat .ss-body { flex: 1; }
.speed-stat .ss-body p {
    font-size: .9375rem; color: var(--text-dim); line-height: 1.7; margin: 0;
}
.speed-stat .ss-body p strong { color: var(--text); }
.speed-stat .ss-src {
    font-size: .6875rem; color: var(--text-muted); margin-top: 8px;
}
.speed-stat .ss-src a { color: var(--accent); text-decoration: none; }
.speed-stat .ss-src a:hover { text-decoration: underline; }

/* ===== SOURCE CARD GRID ===== */
.sources-section { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.sources-section h3 {
    font-size: 1rem; font-weight: 700; margin-bottom: 16px;
}
.source-grid { display: grid; gap: 8px; }
.source-card {
    font-size: .8125rem; color: var(--text-dim); line-height: 1.6;
    padding: 10px 14px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 8px;
}
.source-card strong { color: var(--text); }
.source-card a { color: var(--accent); text-decoration: none; }
.source-card a:hover { text-decoration: underline; }

/* ===== SOURCE LINE (simple attribution) ===== */
.source-line {
    font-size: .75rem; color: var(--text-muted);
    padding: 16px 0; border-top: 1px solid var(--border); margin-top: 8px;
}

/* ===== SECTION HEADER (Option C — title + optional subtitle) ===== */
.section-hd { margin: 48px 0 16px; }
.section-hd h2 {
    font-size: 1.375rem; font-weight: 700; margin: 0 0 4px;
    letter-spacing: -0.02em; line-height: 1.2;
}
.section-hd .sh-sub {
    font-size: .8125rem; color: var(--text-muted);
}

/* ===== HEADLINE SWITCHER (v1 compact) ===== */
.hl-switcher {
    position: fixed; bottom: 20px; right: 20px; z-index: 9999;
    background: #141414; border: 1px solid rgba(34,197,94,.25);
    border-radius: 10px; padding: 8px 12px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.hl-switcher button {
    padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border);
    background: transparent; color: var(--text-dim); font-size: .75rem; cursor: pointer;
}
.hl-switcher button:hover { border-color: var(--text-muted); color: var(--text); }
.hl-switcher .hl-count {
    font-size: .6875rem; color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* ===== CROSS-REPORT CAROUSEL ===== */
.report-carousel { margin: 40px 0; }
.report-carousel h2 {
    font-size: 1.125rem; font-weight: 700; margin-bottom: 14px;
}
.carousel-track {
    display: flex; gap: 14px; overflow-x: auto;
    padding: 4px 0 12px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { height: 4px; }
.carousel-track::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 2px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 2px; }
.carousel-card {
    flex-shrink: 0; width: 240px; padding: 18px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; text-decoration: none; display: block;
    scroll-snap-align: start; transition: border-color .2s;
}
.carousel-card:hover { border-color: rgba(34,197,94,.3); }
.carousel-card .cc-badge {
    display: inline-block; padding: 2px 8px; border-radius: 10px;
    font-size: .5625rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 8px;
    background: rgba(34,197,94,.08); color: var(--accent);
    border: 1px solid rgba(34,197,94,.2);
}
.carousel-card .cc-title {
    font-size: .875rem; font-weight: 700; color: var(--text);
    margin-bottom: 4px; line-height: 1.3;
}
.carousel-card .cc-desc {
    font-size: .75rem; color: var(--text-dim); line-height: 1.5;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .report-hero h1 { font-size: 1.85rem; }
    .header-inner { padding: 0 16px; }
    .nav-links { display: none; }
    .nav-actions { margin-left: auto; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .tool-grid { grid-template-columns: 1fr; }
    .report-card-grid { grid-template-columns: 1fr; }
    .cta-subscribe form { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .info-cards { grid-template-columns: repeat(2, 1fr); }
    .video-overlay-cells { grid-template-columns: repeat(2, 1fr); }
    .similar-grid { grid-template-columns: 1fr; }
    .lm-callout { flex-direction: column; }
    .hero-numbers { gap: 20px; }
    .hero-num .big { font-size: 1.5rem; }
    .speed-stat { flex-direction: column; gap: 10px; }
    .speed-stat .ss-num { min-width: auto; text-align: left; }
    .audio-bar .ab-label { display: none; }
    .carousel-card { width: 200px; }
}

@media (max-width: 600px) {
    .report-hero h1 { font-size: 1.5rem; }
    .container { padding: 0 16px; }
    .stat-row { grid-template-columns: 1fr; }
    .cta-subscribe { padding: 24px 16px; }
    .info-cards { grid-template-columns: 1fr; }
    .video-overlay-cells { grid-template-columns: repeat(2, 1fr); }
    .free-report-unified { padding: 24px 16px; }
    .hero-numbers { gap: 16px; }
    .hero-num .big { font-size: 1.25rem; }
    .audio-bar { padding: 8px 14px; gap: 8px; }
    .summary-card { padding: 16px; }
    .hl-switcher { bottom: 12px; right: 12px; }
    .carousel-card { width: 180px; }
}


/* ============================================================
   REPORT-TYPE-SPECIFIC STYLES
   Extracted from Gymshark articles (source of truth).
   Each report type has its own section.
   ============================================================ */

/* ===== AD STRATEGY ===== */
/* ===== PLATFORM PILLS ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s;
  background: var(--bg-elevated); color: #f0f0f0;
  border: 1.5px solid;
}
.platform-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.pill-google { border-color: #4285F4; }
.pill-meta { border-color: #1877F2; }
.pill-tiktok { border-color: #fff; }
.pill-pinterest { border-color: #E60023; }
.pill-snapchat { border-color: #FFFC00; }
.pill-linkedin { border-color: #0A66C2; }

/* ===== STAT GRID ===== */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 24px 0;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; text-align: center;
}
.stat-card .stat-num {
  font-size: 2rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.1; margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: 0.8125rem; color: var(--text-muted); font-weight: 500;
}
.stat-card .stat-sub {
  font-size: 0.6875rem; color: var(--text-dim); margin-top: 4px;
}

/* ===== PLATFORM CARDS ===== */
.platform-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; margin: 24px 0;
}
.platform-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; transition: border-color 0.3s, box-shadow 0.3s;
}
.platform-card:hover {
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(34,197,94,.05);
}
.platform-card .pc-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.platform-card .pc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.platform-card .pc-name { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.platform-card .pc-role { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.platform-card .pc-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0;
}
.platform-card .pc-stat {
  background: var(--bg-elevated); border-radius: 8px; padding: 10px 12px;
}
.platform-card .pc-stat-num {
  font-size: 1.1rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; color: var(--text);
}
.platform-card .pc-stat-label {
  font-size: 0.6875rem; color: var(--text-muted); margin-top: 2px;
}
.platform-card .pc-desc {
  font-size: 0.875rem; color: var(--text-dim); line-height: 1.6;
}

/* ===== ROAS BAR CHART ===== */
.roas-chart {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 24px 0;
}
.roas-chart-title {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 20px;
}
.roas-bar-row { margin-bottom: 18px; }
.roas-bar-label {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px;
}
.roas-bar-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.roas-bar-value {
  font-size: 0.875rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.roas-bar-track {
  height: 32px; background: var(--bg-elevated);
  border-radius: 6px; overflow: hidden; border: 1px solid var(--border);
}
.roas-bar-fill {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding-left: 12px;
  font-size: 0.6875rem; font-weight: 600; color: #fff;
  width: 0; transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== CREATIVE FRAMEWORK ===== */
.creative-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 20px 0;
}
.creative-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.creative-card .cc-type {
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px; color: var(--text-muted);
}
.creative-card .cc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.creative-card .cc-desc { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6; }
.creative-card .cc-example {
  margin-top: 10px; padding: 10px 14px; border-radius: 8px;
  background: var(--bg-elevated); border-left: 3px solid var(--accent);
  font-size: 0.8125rem; color: var(--text); font-style: italic;
}

/* ===== TIMELINE ===== */
.timeline { margin: 24px 0; position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--accent);
}
.timeline-item .ti-date {
  font-size: 0.6875rem; font-weight: 600; color: var(--accent);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 4px;
}
.timeline-item .ti-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.timeline-item .ti-desc { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5; }

/* ===== DONUT CHART ===== */
.donut-container {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0; flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-segment { transition: opacity 0.3s; cursor: pointer; }
.donut-segment:hover { opacity: 0.8; }
.donut-legend { flex: 1; min-width: 200px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 0.875rem; color: var(--text-dim);
}
.donut-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.donut-legend-pct {
  margin-left: auto; font-weight: 600; color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  background: var(--bg-card); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-elevated); padding: 12px 16px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 12px 16px; font-size: 0.8125rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .metric-val {
  font-weight: 700; font-family: 'JetBrains Mono', monospace;
  color: var(--text);
}
.compare-table .positive { color: var(--accent); }
.compare-table .negative { color: var(--red); }

/* ===== TAKEAWAY CARDS ===== */
.takeaway-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 20px 0;
}
.takeaway-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.takeaway-card .tk-num {
  display: inline-flex; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,.1); border: 1.5px solid rgba(34,197,94,.3);
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--accent);
  margin-bottom: 10px;
}
.takeaway-card .tk-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.takeaway-card .tk-desc { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6; }

/* ===== TOOL STACK MINI ===== */
.tool-stack {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0;
}
.tool-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: 0.75rem; font-weight: 600; color: var(--text);
  transition: border-color 0.2s;
}
.tool-tag:hover { border-color: rgba(34,197,94,.3); }
.tool-tag .tool-tag-role {
  font-size: 0.625rem; color: var(--text-muted); font-weight: 500;
}



/* ===== VIDEO EMBEDS ===== */
.embed-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin: 28px 0;
}
.embed-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.embed-card:hover {
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.embed-card .embed-video {
  position: relative; width: 100%; padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.embed-card .embed-video iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.embed-card .embed-meta {
  padding: 14px 18px;
}
.embed-card .embed-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 6px;
}
.embed-card .embed-platform img { border-radius: 3px; }
.embed-card .embed-title {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  line-height: 1.4; margin-bottom: 4px;
}
.embed-card .embed-desc {
  font-size: 0.75rem; color: var(--text-dim); line-height: 1.5;
}

/* TikTok embed overrides */
.tiktok-embed-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; padding: 16px;
  display: flex; flex-direction: column; align-items: center;
}
.tiktok-embed-wrap blockquote { margin: 0 !important; max-width: 100% !important; }

/* Ad library link cards */
.ad-library-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px; margin: 20px 0;
}
.ad-library-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: border-color 0.3s, transform 0.2s;
}
.ad-library-link:hover {
  border-color: rgba(34,197,94,.4); transform: translateY(-2px);
}
.ad-library-link .al-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ad-library-link .al-text { flex: 1; }
.ad-library-link .al-name { font-size: 0.8125rem; font-weight: 700; }
.ad-library-link .al-desc { font-size: 0.6875rem; color: var(--text-muted); margin-top: 2px; }
.ad-library-link .al-arrow { color: var(--accent); font-size: 1.1rem; }

/* Full-width single embed */
.embed-full {
  margin: 28px 0; border-radius: 14px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
}
.embed-full .embed-video {
  position: relative; width: 100%; padding-top: 56.25%; background: #000;
}
.embed-full .embed-video iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.embed-full .embed-meta { padding: 14px 20px; }
.embed-full .embed-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); }
.embed-full .embed-desc { font-size: 0.8125rem; color: var(--text-dim); margin-top: 4px; }






/* ===== GRID FIXES ===== */
.platform-grid { grid-template-columns: repeat(2, 1fr) !important; }
.stat-grid { grid-template-columns: repeat(4, 1fr) !important; }
.creative-grid { grid-template-columns: repeat(2, 1fr) !important; }
.takeaway-grid { grid-template-columns: repeat(2, 1fr) !important; }
.ad-library-grid { grid-template-columns: repeat(2, 1fr) !important; }




/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .platform-grid, .creative-grid, .takeaway-grid { grid-template-columns: 1fr !important; }
  .embed-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.6rem; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; }
  .platform-card .pc-stats { grid-template-columns: 1fr; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
}

/* ===== EMAIL STRATEGY ===== */
/* ===== LIVE PULSE ===== */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; margin-right: 6px;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ===== EMAIL FEED ===== */
.email-feed { margin: 32px 0; }
.feed-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.feed-filter {
  padding: 6px 16px; border-radius: 20px; font-size: .75rem; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim);
  cursor: pointer; transition: all .2s; user-select: none;
}
.feed-filter:hover, .feed-filter.active {
  border-color: var(--accent); color: var(--accent);
  background: rgba(34,197,94,.06);
}
.feed-filter .filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; border-radius: 9px; font-size: .625rem;
  background: var(--bg-elevated); margin-left: 6px; padding: 0 5px;
}

.email-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 12px; transition: all .2s;
  cursor: pointer; position: relative; overflow: hidden;
}
.email-card:hover {
  border-color: var(--border-light); transform: translateX(4px);
}
.email-card-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 8px;
}
.email-subject {
  font-size: .9375rem; font-weight: 600; color: var(--text); line-height: 1.4;
}
.email-meta {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.email-date {
  font-size: .75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.email-type-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 10px;
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em;
}
.type-promotional { background: rgba(245,158,11,.1); color: var(--amber); }
.type-welcome { background: rgba(34,197,94,.1); color: var(--accent); }
.type-lifecycle { background: rgba(139,92,246,.1); color: var(--purple); }
.type-editorial { background: rgba(59,130,246,.1); color: var(--blue); }
.type-launch { background: rgba(239,68,68,.1); color: var(--red); }

.email-preview {
  font-size: .8125rem; color: var(--text-dim); line-height: 1.6;
  margin-bottom: 8px;
}
.email-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.email-tag {
  padding: 2px 8px; border-radius: 6px; font-size: .625rem; font-weight: 600;
  background: var(--bg-elevated); color: var(--text-muted); border: 1px solid var(--border);
}
.email-tag.urgency-high { color: var(--red); border-color: rgba(239,68,68,.3); }
.email-tag.urgency-med { color: var(--amber); border-color: rgba(245,158,11,.3); }
.email-tag.has-discount { color: var(--accent); border-color: rgba(34,197,94,.3); }

.email-expand {
  display: none; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.email-card.expanded .email-expand { display: block; }
.email-screenshot {
  width: 100%; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg-elevated); aspect-ratio: 600/800;
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; color: var(--text-muted);
}

/* ===== HEATMAP ===== */
.heatmap-container {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin: 24px 0; overflow-x: auto;
}
.heatmap-grid {
  display: grid; grid-template-columns: 48px repeat(7, 1fr);
  gap: 3px; min-width: 500px;
}
.heatmap-label {
  font-size: .625rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 8px;
}
.heatmap-day-label {
  font-size: .6875rem; color: var(--text-muted); font-weight: 600;
  text-align: center; padding-bottom: 4px;
}
.heatmap-cell {
  aspect-ratio: 1; border-radius: 4px; min-height: 20px;
  transition: all .2s; cursor: default; position: relative;
}
.heatmap-cell:hover { transform: scale(1.15); z-index: 2; }
.heat-0 { background: var(--bg-elevated); }
.heat-1 { background: rgba(34,197,94,.15); }
.heat-2 { background: rgba(34,197,94,.3); }
.heat-3 { background: rgba(34,197,94,.5); }
.heat-4 { background: rgba(34,197,94,.7); }
.heat-5 { background: rgba(34,197,94,.9); }
.heatmap-legend {
  display: flex; align-items: center; gap: 4px; margin-top: 12px;
  justify-content: flex-end;
}
.heatmap-legend span { font-size: .625rem; color: var(--text-muted); }
.heatmap-legend-cell {
  width: 14px; height: 14px; border-radius: 3px;
}

/* ===== CADENCE CHART ===== */
.cadence-chart {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin: 24px 0;
}
.cadence-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 120px;
  padding: 0 4px; margin-bottom: 8px;
}
.cadence-bar-wrap {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  height: 100%;
}
.cadence-bar {
  width: 100%; border-radius: 4px 4px 0 0; background: var(--accent);
  margin-top: auto; transition: height .6s ease; min-height: 2px;
  position: relative;
}
.cadence-bar:hover { background: #16a34a; }
.cadence-bar-label {
  font-size: .5625rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
  writing-mode: vertical-rl; text-orientation: mixed; white-space: nowrap;
}
.cadence-week-labels {
  display: flex; gap: 4px; padding: 0 4px;
}
.cadence-week-label {
  flex: 1; text-align: center; font-size: .5625rem; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ===== DNS BLOCK ===== */
.dns-block {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 20px; margin: 16px 0; overflow-x: auto;
}
.dns-block pre {
  font-family: 'JetBrains Mono', monospace; font-size: .75rem;
  color: var(--text-dim); line-height: 1.8; white-space: pre-wrap; margin: 0;
}
.dns-block .dns-highlight { color: var(--accent); font-weight: 600; }
.dns-block .dns-comment { color: var(--text-muted); }

/* ===== FLOW TIMELINE ===== */
.flow-timeline { position: relative; margin: 32px 0; padding-left: 40px; }
.flow-timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), var(--purple), var(--blue));
}
.flow-item { position: relative; margin-bottom: 24px; }
.flow-item::before {
  content: ''; position: absolute; left: -40px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--accent);
}
.flow-item:nth-child(1)::before { background: var(--accent); }
.flow-item:nth-child(2)::before { background: var(--accent); }
.flow-item:nth-child(3)::before { background: #16a34a; }
.flow-item:nth-child(4)::before { background: var(--purple); }
.flow-item:nth-child(5)::before { background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.flow-item:nth-child(6)::before { background: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.flow-timing {
  font-size: .6875rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.flow-subject {
  font-size: .9375rem; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.flow-desc {
  font-size: .8125rem; color: var(--text-dim); line-height: 1.6;
}

/* ===== SIGNUP FLOW VIS ===== */
.signup-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin: 24px 0;
}
.signup-step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; text-align: center; position: relative;
}
.signup-step::after {
  content: '\2192'; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: var(--text-muted); font-size: 1.25rem;
}
.signup-step:last-child::after { display: none; }
.step-number {
  width: 28px; height: 28px; border-radius: 50%; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  background: rgba(34,197,94,.1); color: var(--accent); border: 1px solid rgba(34,197,94,.3);
}
.step-title {
  font-size: .8125rem; font-weight: 600; color: var(--text); margin-bottom: 4px;
}
.step-detail {
  font-size: .75rem; color: var(--text-dim); line-height: 1.5;
}

/* ===== DONUT CHART ===== */
.donut-container {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0; flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-legend { flex: 1; min-width: 200px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: .875rem; color: var(--text-dim);
}
.donut-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.donut-legend-pct {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  color: var(--text); font-size: .8125rem; margin-left: auto;
}

/* ===== SUBJECT LINE STATS ===== */
.subject-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 24px 0;
}
.subject-stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px; text-align: center;
}
.subject-stat-value {
  font-size: 1.75rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  color: var(--text); line-height: 1.1; margin-bottom: 2px;
}
.subject-stat-label {
  font-size: .6875rem; color: var(--text-muted); font-weight: 500;
}
.subject-stat-bar {
  height: 4px; border-radius: 2px; background: var(--bg-elevated);
  margin-top: 8px; overflow: hidden;
}
.subject-stat-bar-fill {
  height: 100%; border-radius: 2px; transition: width .8s ease;
}

/* ===== EMAIL MOCKUP (inline HTML render) ===== */
.email-mockup {
  background: #ffffff; border-radius: 8px; border: 1px solid var(--border);
  overflow: hidden; margin-top: 12px; font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a; max-width: 100%;
}
.email-mockup-header {
  background: #f8f8f8; padding: 10px 16px; border-bottom: 1px solid #e5e5e5;
  font-size: .6875rem; color: #888; display: flex; flex-direction: column; gap: 2px;
}
.email-mockup-header strong { color: #333; }
.email-mockup-body { padding: 24px 20px; }
.email-mockup-body .em-logo {
  font-size: 1.125rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #1a1a1a; margin-bottom: 16px;
}
.email-mockup-body .em-hero-img {
  width: 100%; height: 160px; border-radius: 4px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: #999; font-weight: 600;
}
.email-mockup-body .em-headline {
  font-size: 1.25rem; font-weight: 700; color: #1a1a1a;
  margin-bottom: 8px; line-height: 1.3;
}
.email-mockup-body .em-text {
  font-size: .8125rem; color: #555; line-height: 1.6; margin-bottom: 16px;
}
.email-mockup-body .em-cta {
  display: inline-block; padding: 10px 28px; border-radius: 4px;
  font-size: .8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; text-decoration: none; color: #fff;
  background: #1a1a1a;
}
.email-mockup-body .em-cta.em-green { background: #22c55e; }
.email-mockup-body .em-cta.em-red { background: #ef4444; }
.email-mockup-body .em-discount {
  display: inline-block; font-size: 2rem; font-weight: 800;
  color: #ef4444; margin: 8px 0 12px; letter-spacing: -.02em;
}
.email-mockup-body .em-code {
  display: inline-block; padding: 6px 16px; border: 2px dashed #ccc;
  border-radius: 6px; font-family: monospace; font-size: .875rem;
  font-weight: 700; color: #1a1a1a; letter-spacing: .06em; margin: 8px 0 16px;
}
.email-mockup-body .em-product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 12px 0 16px;
}
.email-mockup-body .em-product {
  background: #f5f5f5; border-radius: 4px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  font-size: .625rem; color: #999; font-weight: 600;
}
.email-mockup-footer {
  background: #f0f0f0; padding: 12px 16px; text-align: center;
  font-size: .625rem; color: #999; border-top: 1px solid #e5e5e5;
}
.email-mockup-footer a { color: #666; text-decoration: underline; }

/* ===== CAROUSEL (double scrollable rows) ===== */
.carousel-row {
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; padding:4px 0;
  scrollbar-width:none;
}
.carousel-row::-webkit-scrollbar { display:none; }
.carousel-wrap {
  position:relative; margin:0 -4px; padding:0 4px;
}
.carousel-arrow {
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(34,197,94,.25); background:rgba(34,197,94,.06);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .25s ease; backdrop-filter:blur(8px); padding:0;
}
.carousel-arrow:hover {
  background:rgba(34,197,94,.15); border-color:rgba(34,197,94,.5);
  box-shadow:0 0 20px rgba(34,197,94,.15);
}
.carousel-arrow svg { width:18px; height:18px; stroke:var(--accent); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.carousel-arrow.left { left:-18px; }
.carousel-arrow.right { right:-18px; }
.carousel-card {
  flex:0 0 300px; scroll-snap-align:start;
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  overflow:hidden; text-decoration:none; color:inherit;
  transition:transform .3s, box-shadow .3s;
  display:flex; flex-direction:column;
}
.carousel-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.4); }
.carousel-card .card-thumb {
  height:140px; overflow:hidden; position:relative; background:#111;
}
.carousel-card .card-thumb img {
  width:100%; height:auto; object-fit:contain; display:block;
}
.carousel-card .card-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
.carousel-card .card-body .sc-badge { margin-bottom:8px; }
.carousel-card .card-body .sc-title { font-size:.9375rem; font-weight:700; color:var(--text); margin-bottom:4px; line-height:1.3; }
.carousel-card .card-body .sc-desc { font-size:.8125rem; color:var(--text-dim); line-height:1.5; flex:1; }
.carousel-card .card-body .sc-arrow { font-size:.8125rem; font-weight:600; color:var(--accent); margin-top:8px; display:block; }

/* ===== COMING SOON FEED ===== */
.coming-soon-feed {
  background: linear-gradient(135deg, rgba(34,197,94,.04), rgba(59,130,246,.04));
  border: 1px solid rgba(34,197,94,.2); border-radius: 16px;
  padding: 40px 32px; margin: 32px 0; text-align: center;
  position: relative; overflow: hidden;
}
.coming-soon-feed::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue), var(--accent));
  background-size: 200% 100%;
  animation: shimmerBar 3s ease infinite;
}
@keyframes shimmerBar { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.coming-soon-feed .csf-icon {
  font-size: 3rem; margin-bottom: 16px; display: block;
}
.coming-soon-feed h3 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.coming-soon-feed > p {
  color: var(--text-dim); font-size: .9375rem; line-height: 1.7;
  max-width: 600px; margin: 0 auto 24px;
}

.skeleton-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 12px; opacity: .4;
  position: relative; overflow: hidden;
}
.skeleton-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,.04) 50%, transparent 100%);
  animation: skeletonShimmer 2s ease infinite;
}
@keyframes skeletonShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.skeleton-bar {
  background: var(--bg-elevated); border-radius: 4px; height: 12px;
}
.skeleton-bar.short { width: 40%; }
.skeleton-bar.medium { width: 65%; }
.skeleton-bar.long { width: 85%; }
.skeleton-bar + .skeleton-bar { margin-top: 8px; }
.skeleton-badge {
  display: inline-block; width: 72px; height: 20px;
  background: var(--bg-elevated); border-radius: 10px;
}
.skeleton-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}

.methodology-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px; margin: 24px auto; max-width: 700px; text-align: center;
}
.methodology-step {
  background: rgba(34,197,94,.04); border: 1px solid rgba(34,197,94,.15);
  border-radius: 12px; padding: 20px 16px; position: relative;
}
.methodology-step::after {
  content: '\2192'; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: var(--accent); font-size: 1.25rem; opacity: .5;
}
.methodology-step:last-child::after { display: none; }
.methodology-step .ms-icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.methodology-step .ms-title {
  font-size: .8125rem; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.methodology-step .ms-desc {
  font-size: .6875rem; color: var(--text-dim); line-height: 1.5;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }



/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .donut-container { flex-direction: column; align-items: flex-start; }
  .signup-step::after { display: none; }
  .methodology-step::after { display: none; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.5rem; }
  .email-card-header { flex-direction: column; }
  .email-meta { flex-direction: row-reverse; justify-content: flex-end; }
  .heatmap-grid { min-width: 400px; }
  .flow-timeline { padding-left: 32px; }
  .subject-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
  .coming-soon-feed { padding: 24px 16px; }
  .methodology-steps { grid-template-columns: 1fr; }
}

/* ===== PAGE HISTORY ===== */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== YEAR EXPLORER ===== */
@keyframes glowPulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}
.year-explorer {
  background:var(--bg-card); border:1px solid var(--border); border-radius:16px;
  padding:32px; margin:48px 0; position:relative; overflow:hidden;
}
.year-explorer::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, #3b82f6, #f59e0b, #22c55e, #8b5cf6);
  background-size: 200% 100%;
  animation: shimmerBar 3s ease infinite;
}
@keyframes shimmerBar {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ye-header {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:24px;
}
.ye-title { font-size:1.125rem; font-weight:700; }
.ye-hint { font-size:.75rem; color:var(--text-muted); }
.year-tabs {
  display:flex; flex-wrap:wrap; gap:6px; margin-bottom:24px;
}
.year-tab {
  padding:8px 16px; border-radius:8px; border:1px solid var(--border);
  background:var(--bg-elevated); color:var(--text-dim);
  font-family:'JetBrains Mono',monospace; font-size:.9375rem; font-weight:600;
  cursor:pointer; transition:all .2s; outline:none;
}
.year-tab:hover { border-color:var(--text-muted); color:var(--text); }
.year-tab.active {
  background:var(--accent); color:var(--bg); border-color:var(--accent);
  box-shadow:0 4px 16px var(--accent-glow);
}
.ye-viewport {
  border-radius:12px; overflow:hidden; border:1px solid var(--border);
  background:#111; position:relative;
}
.ye-viewport iframe {
  display:block; width:1440px; height:900px;
  transform:scale(0.59); transform-origin:top left;
  pointer-events:none; border:none;
}
.ye-viewport-wrap { height:400px; overflow:hidden; position:relative; }
.ye-link {
  display:flex; align-items:center; gap:8px;
  padding:12px 16px; font-size:.9375rem; font-weight:600;
  color:var(--accent) !important; text-decoration:none !important; border-top:1px solid var(--border);
  transition:background .2s;
}
.ye-link:visited { color:var(--accent) !important; }
.ye-link:hover { background:var(--bg-elevated); color:var(--accent) !important; }
.ye-link svg { opacity:.7; }
.ye-context {
  padding:16px; border-top:1px solid var(--border);
  font-size:.875rem; color:var(--text-dim); line-height:1.6;
}
.ye-context strong { color:var(--text); }
.ye-loading {
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:var(--bg-card); color:var(--text-muted); font-size:.875rem;
  transition:opacity .4s; gap:16px;
}
.ye-loading.hidden { opacity:0; pointer-events:none; }
.ye-loading-spinner {
  width:40px; height:40px; border:3px solid var(--border);
  border-top-color:var(--accent); border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.ye-loading-skeleton {
  position:absolute; inset:0;
  background: linear-gradient(90deg, var(--bg-card) 25%, rgba(34,197,94,.03) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmerSkeleton 1.5s ease infinite;
}
@keyframes shimmerSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}



/* ===== ERA CARDS ===== */
.era-compare {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:32px 0;
}
.era-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  padding:24px 20px; text-align:center; position:relative; overflow:hidden;
  transition: transform .3s, box-shadow .3s;
}
.era-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.era-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
}
.era-card.era-early::before { background:#3b82f6; }
.era-card.era-growth::before { background:#f59e0b; }
.era-card.era-peak::before { background:var(--accent); }
.era-card .era-title {
  font-size:.6875rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; margin-bottom:12px;
}
.era-card.era-early .era-title { color:#3b82f6; }
.era-card.era-growth .era-title { color:#f59e0b; }
.era-card.era-peak .era-title { color:var(--accent); }
.era-card .era-big {
  font-size:2rem; font-weight:700; color:var(--text); line-height:1.1; margin-bottom:4px;
}
.era-card .era-unit { font-size:.75rem; color:var(--text-muted); margin-bottom:16px; }
.era-card .era-stats { list-style:none; padding:0; margin:0; text-align:left; }
.era-card .era-stats li {
  font-size:.9375rem; color:var(--text-dim); padding:6px 0;
  border-top:1px solid var(--border); display:flex; justify-content:space-between;
}
.era-card .era-stats li span:last-child {
  font-weight:600; color:var(--text);
  font-family:'JetBrains Mono',monospace; font-size:.75rem;
}

/* ===== TIMELINE (compact, with connector) ===== */
.compact-timeline { margin:32px 0; position:relative; }
.compact-timeline::before {
  content:''; position:absolute; left:89px; top:24px; bottom:24px; width:2px;
  background:linear-gradient(180deg, #3b82f6, #f59e0b, #22c55e, #8b5cf6, var(--accent));
  border-radius:1px;
}
.ct-item {
  display:grid; grid-template-columns:80px 1fr; gap:32px;
  padding:16px 0; border-bottom:1px solid var(--border);
  position:relative;
}
.ct-item::after {
  content:''; position:absolute; left:84px; top:22px;
  width:12px; height:12px; border-radius:50%;
  background:var(--bg); border:2px solid var(--dot-color, #555);
  z-index:1;
}
.ct-item:last-child { border-bottom:none; }
.ct-year {
  font-family:'JetBrains Mono',monospace; font-weight:700; font-size:1rem;
  text-align:right; padding-right:4px;
}
.ct-body { font-size:.9375rem; color:var(--text-dim); line-height:1.6; }
.ct-body strong { color:var(--text); }
.ct-badge {
  display:inline-block; padding:2px 8px; border-radius:4px;
  font-size:.625rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.06em; margin-left:8px; vertical-align:middle;
}

/* ===== IMPLEMENT GRID ===== */
.implement-grid { display:grid; gap:16px; margin:24px 0; counter-reset:implement; }
.implement-item {
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  padding:20px 20px 20px 64px; position:relative; counter-increment:implement;
}
.implement-item::before {
  content:counter(implement); position:absolute; left:20px; top:20px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:.875rem; font-weight:700; color:var(--accent);
}
.implement-item h4 { font-size:.9375rem; font-weight:700; color:var(--text); margin-bottom:4px; }
.implement-item p { font-size:.875rem; color:var(--text-dim); line-height:1.6; margin:0; }






/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .era-compare { grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width:600px) {
  .report-hero h1 { font-size:1.5rem; }
  .report-hero .subtitle { font-size:.9375rem; }
  .hero-cta-pair { flex-direction:column !important; }
  .hero-cta-pair a { width:100%;text-align:center;justify-content:center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
  .era-compare { grid-template-columns:1fr !important; }
  .ye-viewport-wrap { height:280px; }
  .implement-item { padding-left:56px; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
}

/* ===== PERFORMANCE ===== */
/* ===== ANIMATED GRADIENT BORDER ===== */
@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* ===== TOOL PILLS ===== */
.tool-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s;
  background: var(--bg-elevated); color: #f0f0f0;
  border: 1.5px solid;
}
.tool-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.pill-google { border-color: #4285F4; }
.pill-meta { border-color: #1877F2; }
.pill-tiktok { border-color: #fff; }
.pill-shopify { border-color: #96bf48; }
.pill-braze { border-color: #FF6B35; }
.pill-dynamicyield { border-color: #6C63FF; }
.pill-mparticle { border-color: #00C9AF; }
.pill-intercom { border-color: #286EFA; }
.pill-bazaarvoice { border-color: #003B5C; }
.pill-riskified { border-color: #00D66E; }
.pill-mentionme { border-color: #FF4081; }
.pill-cloudfront { border-color: #FF9900; }
.pill-pinterest { border-color: #E60023; }
.pill-snapchat { border-color: #FFFC00; }
.pill-linkedin { border-color: #0A66C2; }

/* ===== TOOL CARD ENHANCEMENTS ===== */
.tool-card {
  opacity: 0; transform: translateY(20px) scale(.97);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.tool-card.revealed {
  opacity: 1; transform: translateY(0) scale(1);
}
.tool-card:hover {
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(34,197,94,.05);
  transform: translateY(-2px) scale(1);
}
.tool-card .tool-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.tool-card .tool-cost {
  font-size: 0.6875rem; font-weight: 600;
  padding: 2px 8px; border-radius: 4px;
  background: var(--bg-elevated); color: var(--text-muted);
  border: 1px solid var(--border);
}
.tool-cost.free { color: var(--accent); border-color: rgba(34,197,94,0.3); }
.tool-cost.low { color: var(--blue); border-color: rgba(59,130,246,0.3); }
.tool-cost.mid { color: var(--amber); border-color: rgba(245,158,11,0.3); }
.tool-cost.high { color: var(--red); border-color: rgba(239,68,68,0.3); }
.tool-cost.enterprise { color: var(--purple); border-color: rgba(139,92,246,0.3); }


/* ===== SECTION HEADERS ===== */
.section-hd { margin: 48px 0 20px; }
.section-hd h2 { margin: 0 0 6px; }
.section-sub { font-size: .9rem; color: var(--text-dim); margin: 0; }



/* ===== DONUT CHART ===== */
.donut-container {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0;
  flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-segment {
  transition: opacity 0.3s;
  cursor: pointer;
}
.donut-segment:hover { opacity: 0.8; }
.donut-legend { flex: 1; min-width: 180px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 0.875rem; color: var(--text-dim);
}
.donut-legend-dot {
  width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0;
}
.donut-legend-count {
  margin-left: auto; font-weight: 600; color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem;
}

/* ===== ARCHITECTURE DIAGRAM ===== */
.arch-diagram {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 24px 0;
  overflow-x: auto;
}
.arch-diagram svg text {
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== SECURITY CHECKLIST ===== */
.security-grid {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin: 20px 0;
}
.sec-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
}
.sec-row:last-child { border-bottom: none; }
.sec-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,0.12); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.sec-check svg { width: 14px; height: 14px; }

/* ===== COST COMPARISON ===== */
.cost-compare {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0;
}
.cost-compare-title {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 20px;
}
.cost-bar-row {
  margin-bottom: 20px;
}
.cost-bar-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.cost-bar-name {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
}
.cost-bar-amount {
  font-size: 0.875rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.cost-bar-amount.expensive { color: var(--red); }
.cost-bar-amount.cheap { color: var(--accent); }
.cost-bar-track {
  height: 36px; background: var(--bg-elevated);
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
}
.cost-bar-fill {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding-left: 12px;
  font-size: 0.75rem; font-weight: 600;
  width: 0; transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cost-bar-fill.gymshark-bar {
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
  background-size: 200% 100%;
  animation: shimmerCost 3s ease infinite;
  color: #fff;
}
@keyframes shimmerCost {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cost-bar-fill.lm-bar {
  background: linear-gradient(90deg, var(--accent), #3b82f6);
  color: var(--bg);
}
.cost-bar-features {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.cost-bar-feat {
  font-size: 0.6875rem; padding: 3px 10px; border-radius: 4px;
  background: var(--bg-elevated); color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ===== COUNTER ANIMATION ===== */
.stat-value[data-count] {
  font-variant-numeric: tabular-nums;
}

/* Why-care styles now use speed-stat from report-components.css */

/* ===== IMPLEMENT TODAY ===== */
.implement-list {
  counter-reset: impl;
  list-style: none; margin: 20px 0; padding: 0;
}
.implement-list li {
  counter-increment: impl;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.implement-list li:last-child { border-bottom: none; }
.implement-list li::before {
  content: counter(impl);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: var(--accent); font-weight: 700; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.implement-list li strong { color: var(--text); }

/* ===== PILL ROW ===== */
.pill-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px;
}

/* ===== SOURCE LINE ===== */
.source-line {
  font-size: 0.75rem; color: var(--text-muted);
  font-style: italic; margin-top: 8px;
}



/* ===== AUDIO BAR ===== */
.audio-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 20px; margin: 24px 0 32px;
  position: relative; overflow: hidden;
}
.ab-play {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .2s, box-shadow .2s;
}
.ab-play:hover { transform: scale(1.08); box-shadow: 0 0 16px rgba(34,197,94,.3); }
.ab-play svg { width: 16px; height: 16px; }
.ab-label { font-size: .8rem; font-weight: 600; color: var(--text-dim); white-space: nowrap; }
.ab-spacer { flex: 1; }
.ab-meta { display: flex; align-items: center; gap: 10px; }
.ab-time { font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: var(--text-muted); }
.ab-speed {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: var(--text-muted); border-radius: 6px; padding: 3px 8px;
  font-size: .7rem; font-family: 'JetBrains Mono', monospace;
  cursor: pointer; transition: background .2s;
}
.ab-speed:hover { background: rgba(34,197,94,.15); }
.ab-progress {
  position: absolute; bottom: 0; left: 0; height: 100%;
  background: rgba(34,197,94,.15); width: 0; transition: width .3s linear;
  pointer-events: none;
}
@media (max-width: 600px) {
  .audio-bar { flex-wrap: wrap; padding: 12px 14px; }
  .ab-label { display: none; }
}

/* ===== MID-ARTICLE CTA ===== */
.mid-cta {
  background: linear-gradient(135deg, rgba(34,197,94,.08) 0%, rgba(59,130,246,.06) 100%);
  border: 1.5px solid rgba(34,197,94,.25); border-radius: 16px;
  padding: 32px; margin: 36px 0; text-align: center;
  position: relative; overflow: hidden;
}
.mid-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue), var(--accent));
  background-size: 200% 100%; animation: shimmerCost 3s ease infinite;
}
.mid-cta h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  margin: 0 0 8px;
}
.mid-cta p {
  font-size: .9rem; color: var(--text-dim); margin: 0 0 20px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.mid-cta-btn {
  display: inline-block; padding: 12px 28px; border-radius: 8px;
  background: var(--accent); color: var(--bg) !important; font-weight: 700;
  font-size: .9rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.mid-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,.25);
}
.mid-cta-sub {
  display: block; font-size: .7rem; color: var(--text-muted); margin-top: 10px;
}

/* ===== VIDEO EMBED ===== */
.video-embed {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin: 24px 0;
}
.video-embed-frame {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000;
}
.video-embed-frame iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}
.video-embed-caption {
  padding: 14px 20px; font-size: .8rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
}
.video-embed-caption svg { flex-shrink: 0; color: var(--accent); }




/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
}
@media (max-width: 600px) {
  .donut-container { flex-direction: column; align-items: center; }
  .cost-compare { padding: 20px 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .mid-cta { padding: 24px 16px; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
}

/* ===== PR MEDIA ===== */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s ease,transform .6s ease; }
.reveal.vis { opacity:1; transform:translateY(0); }

/* ===== HERO STATS ===== */
.hero-stats {
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:24px 0 16px;
}
.hero-stat {
  text-align:center; padding:12px 8px;
  background:var(--bg-card); border:1px solid var(--border); border-radius:10px;
}
.hero-stat .hs-val {
  font-size:1.5rem; font-weight:700; line-height:1;
  font-family:'JetBrains Mono',monospace;
}
.hero-stat:nth-child(1) .hs-val { color:#3b82f6; }
.hero-stat:nth-child(2) .hs-val { color:#f59e0b; }
.hero-stat:nth-child(3) .hs-val { color:var(--accent); }
.hero-stat:nth-child(4) .hs-val { color:#8b5cf6; }
.hero-stat .hs-lbl {
  font-size:.6875rem; color:var(--text-muted); margin-top:2px; font-weight:500;
}

/* ===== MEDIA CARD ===== */
.media-card {
  display:grid; grid-template-columns:140px 1fr; gap:16px;
  padding:20px; margin-bottom:12px;
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  text-decoration:none; color:inherit; transition:all .3s;
}
.media-card:hover { border-color:var(--accent); transform:translateX(4px); }
.media-card-thumb {
  width:140px; height:90px; border-radius:8px; overflow:hidden;
  background:#111; flex-shrink:0;
}
.media-card-thumb img { width:100%; height:auto; object-fit:contain; display:block; }
.media-card-body { min-width:0; }
.media-card-source {
  font-size:.625rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  color:var(--text-muted); margin-bottom:4px;
}
.media-card-title { font-size:1rem; font-weight:700; color:var(--text); line-height:1.3; margin-bottom:4px; }
.media-card-desc { font-size:.8125rem; color:var(--text-dim); line-height:1.5; }
.media-card-meta { font-size:.6875rem; color:var(--text-muted); margin-top:6px; }


/* ===== SECTION DIVIDER ===== */
.section-hd { margin:48px 0 24px; }
.section-hd h2 { margin:0 0 6px; }
.sh-sub { font-size:.9375rem; color:var(--text-dim); margin:0; line-height:1.5; }



/* ===== MEDIA GRID (2-up for videos) ===== */
.media-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:24px 0; }






/* ===== RESPONSIVE ===== */
@media (max-width:900px) {
  .report-hero h1 { font-size:2rem; }
  .media-card { grid-template-columns:1fr; }
  .media-card-thumb { width:100%; height:180px; }
  .media-grid { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .report-hero h1 { font-size:1.5rem; }
  .report-hero .subtitle { font-size:.8125rem; }
  .hero-cta-pair { flex-direction:column !important; }
  .hero-cta-pair a { width:100%; text-align:center; justify-content:center; }
  .hero-stats { grid-template-columns:repeat(2,1fr); }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
}

@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.3);}}

/* ===== PRICING POSITIONING ===== */
/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ===== PRICE COMPARISON TABLE HIGHLIGHTS ===== */
.price-low { color: #22c55e; font-weight: 600; }
.price-mid { color: #f59e0b; font-weight: 600; }
.price-high { color: #ef4444; font-weight: 600; }
.brand-gymshark { color: #22c55e; }
.brand-lulu { color: #ef4444; }
.brand-nike { color: #f59e0b; }
.brand-ua { color: #3b82f6; }
.brand-hm { color: #8b5cf6; }

/* ===== SVG CHART STYLES ===== */
.chart-container {
  margin: 24px 0; padding: 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
}
.chart-container svg { width: 100%; height: auto; display: block; }
.chart-title {
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}


/* ===== DISCOUNT CALENDAR ===== */
.discount-calendar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 20px 0;
}
@media (max-width: 600px) { .discount-calendar { grid-template-columns: repeat(2, 1fr); } }
.cal-month {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px; text-align: center;
}
.cal-month .month-name {
  font-size: 0.6875rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.cal-month .month-event {
  font-size: 0.75rem; color: var(--text-dim); line-height: 1.4;
}
.cal-month.cal-hot { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.04); }
.cal-month.cal-warm { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.04); }
.cal-month.cal-cool { border-color: rgba(59,130,246,0.2); }
.cal-month .month-badge {
  display: inline-block; padding: 2px 8px; border-radius: 10px;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; margin-top: 4px;
}
.cal-hot .month-badge { background: rgba(239,68,68,0.15); color: #ef4444; }
.cal-warm .month-badge { background: rgba(245,158,11,0.15); color: #f59e0b; }

/* ===== ANIMATED BAR ===== */
.anim-bar { width: 0; transition: width 1.2s cubic-bezier(.16,1,.3,1); }
.anim-bar.vis { /* width set inline */ }

/* ===== CATEGORY TOGGLE CHART ===== */
.cat-toggle-wrap {
  margin: 24px 0;
}
.cat-toggle-bar {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.cat-toggle-btn {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--text-dim); font-size: 0.75rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.cat-toggle-btn:hover { border-color: var(--text-muted); color: var(--text); }
.cat-toggle-btn.active {
  background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.4);
  color: var(--accent);
}
.cat-chart-panel { display: none; }
.cat-chart-panel.active { display: block; }
.cat-brand-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.cat-brand-label {
  width: 100px; font-size: 0.8125rem; font-weight: 600; text-align: right; flex-shrink: 0;
}
.cat-brand-bar-track {
  flex: 1; height: 32px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; position: relative;
}
.cat-brand-bar {
  height: 100%; border-radius: 6px 0 0 6px; display: flex; align-items: center;
  padding: 0 12px; font-size: 0.75rem; font-weight: 700; color: #000;
  transition: width 0.8s cubic-bezier(.16,1,.3,1); min-width: fit-content;
}
.cat-brand-range {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 0.6875rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace;
}

/* ===== DEV REQUESTS WIDGET ===== */
.dev-requests-trigger {
  position: fixed; bottom: 24px; left: 24px; z-index: 200;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(40,40,40,0.85); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  color: #666; font-size: 1.1rem; font-weight: 700;
}
.dev-requests-trigger:hover {
  background: rgba(60,60,60,0.95); color: #999;
  transform: scale(1.08);
}
.dev-requests-trigger .notif-dot {
  position: absolute; top: -2px; right: -2px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444; border: 2px solid var(--bg);
}
.dev-requests-panel {
  position: fixed; bottom: 76px; left: 24px; z-index: 201;
  width: 380px; max-height: 520px; overflow-y: auto;
  background: rgba(15,15,15,0.97); border: 1px solid var(--border-light);
  border-radius: 14px; backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 0; display: none;
  transform: translateY(10px); opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.dev-requests-panel.open { display: block; transform: translateY(0); opacity: 1; }
.dev-requests-panel .drp-header {
  padding: 16px 20px 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.dev-requests-panel .drp-title {
  font-size: 0.8125rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.dev-requests-panel .drp-count {
  font-size: 0.625rem; font-weight: 700; padding: 2px 8px;
  background: rgba(239,68,68,0.15); color: #ef4444; border-radius: 10px;
}
.dev-requests-panel .drp-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1rem; padding: 4px;
}
.dev-requests-panel .drp-close:hover { color: var(--text); }
.dev-requests-panel .drp-list { padding: 8px 0; }
.dev-requests-panel .drp-item {
  padding: 12px 20px; border-bottom: 1px solid var(--border);
}
.dev-requests-panel .drp-item:last-child { border-bottom: none; }
.dev-requests-panel .drp-tag {
  display: inline-block; padding: 2px 8px; border-radius: 8px;
  font-size: 0.5625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.drp-tag.question { background: rgba(59,130,246,0.15); color: #3b82f6; }
.drp-tag.tool-need { background: rgba(245,158,11,0.15); color: #f59e0b; }
.drp-tag.blocker { background: rgba(239,68,68,0.15); color: #ef4444; }
.drp-tag.suggestion { background: rgba(139,92,246,0.15); color: #8b5cf6; }
.dev-requests-panel .drp-text {
  font-size: 0.8125rem; color: var(--text-dim); line-height: 1.5;
}
.dev-requests-panel .drp-text strong { color: var(--text); }
@media (max-width: 600px) {
  .dev-requests-panel { width: calc(100vw - 48px); left: 24px; }
}

/* ===== AUDIO BAR ===== */
.audio-bar{position:sticky;top:0;z-index:100;display:flex;align-items:center;gap:12px;background:rgba(10,10,10,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid var(--border);padding:10px 24px;font-family:'Space Grotesk',sans-serif;}
.ab-play{width:34px;height:34px;border-radius:50%;background:var(--accent);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .2s,box-shadow .2s;color:#000;}
.ab-play:hover{transform:scale(1.1);box-shadow:0 0 16px rgba(34,197,94,.35);}
.ab-play svg{width:16px;height:16px;}
.ab-label{font-size:.8rem;font-weight:600;color:var(--text-dim);white-space:nowrap;}
.ab-spacer{flex:1;}
.ab-meta{display:flex;align-items:center;gap:10px;}
.ab-time{font-family:'JetBrains Mono',monospace;font-size:.72rem;color:var(--text-muted);white-space:nowrap;}
.ab-speed{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#ccc;border-radius:6px;padding:3px 9px;font-size:.7rem;font-family:inherit;cursor:pointer;transition:background .2s;}
.ab-speed:hover{background:rgba(34,197,94,.15);border-color:rgba(34,197,94,.4);color:var(--accent);}
.ab-progress{position:absolute;bottom:0;left:0;height:2px;background:var(--accent);width:0;transition:width .3s linear;}
@media(max-width:600px){.audio-bar{padding:8px 14px;gap:8px;}.ab-label{display:none;}}
@media (max-width: 700px) { .embed-grid { grid-template-columns: 1fr; } }







/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.6rem; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
}



@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.3);}}

/* ===== SEO CONTENT ===== */
/* ===== LIVE PULSE ===== */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; margin-right: 6px;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ===== STAT GRID ===== */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin: 24px 0;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; text-align: center;
}
.stat-card .stat-num {
  font-size: 2rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.1; margin-bottom: 4px;
}
.stat-card .stat-label {
  font-size: .8125rem; color: var(--text-muted); font-weight: 500;
}
.stat-card .stat-sub {
  font-size: .6875rem; color: var(--text-dim); margin-top: 4px;
}

/* ===== JUMP NAV ===== */
.jump-nav {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px; margin: 28px 0;
}
.jump-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  transition: border-color .3s, transform .2s;
  font-size: .8125rem; font-weight: 600;
}
.jump-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.jump-card .jc-icon { font-size: 1.1rem; }
.jump-card .jc-arrow { margin-left: auto; color: var(--text-muted); font-size: .75rem; }

/* ===== SECTION HEADERS ===== */

/* ===== CODE BLOCK (robots.txt, structured data) ===== */
.code-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin: 16px 0;
  font-family: 'JetBrains Mono', monospace; font-size: .75rem;
  color: var(--text-dim); line-height: 1.7; overflow-x: auto;
  white-space: pre; max-height: 320px; overflow-y: auto;
}
.code-block .comment { color: var(--text-muted); }
.code-block .keyword { color: var(--accent); }
.code-block .value { color: var(--blue); }

/* ===== CHECKLIST ===== */
.check-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px; margin: 16px 0;
}
.check-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: .8125rem; font-weight: 600;
}
.check-icon { font-size: 1rem; flex-shrink: 0; }
.check-pass { color: var(--accent); }
.check-warn { color: var(--amber); }
.check-fail { color: var(--red); }
.check-label { color: var(--text); }
.check-detail { color: var(--text-dim); font-weight: 400; margin-left: auto; font-size: .75rem; }

/* ===== KEYWORD TABLE ===== */
.kw-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  background: var(--bg-card); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.kw-table th {
  background: var(--bg-elevated); padding: 12px 16px;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); text-align: left;
  border-bottom: 1px solid var(--border);
}
.kw-table td {
  padding: 12px 16px; font-size: .8125rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.kw-table tr:last-child td { border-bottom: none; }
.kw-table .metric-val {
  font-weight: 700; font-family: 'JetBrains Mono', monospace; color: var(--text);
}
.kw-table .pos-top3 { color: var(--accent); }
.kw-table .pos-top10 { color: var(--blue); }

/* ===== BAR CHART ===== */
.bar-chart {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 24px 0;
}
.bar-chart-title {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); margin-bottom: 20px;
}
.bar-row { margin-bottom: 18px; }
.bar-label {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px;
}
.bar-name { font-size: .875rem; font-weight: 600; color: var(--text); }
.bar-value {
  font-size: .875rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.bar-track {
  height: 32px; background: var(--bg-elevated);
  border-radius: 6px; overflow: hidden; border: 1px solid var(--border);
}
.bar-fill {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding-left: 12px;
  font-size: .6875rem; font-weight: 600; color: #fff;
  width: 0; transition: width 1.2s cubic-bezier(.25,.46,.45,.94);
}

/* ===== HREFLANG MAP ===== */
.hreflang-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px; margin: 16px 0;
}
.hreflang-tag {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: .75rem; font-weight: 600; color: var(--text);
}
.hreflang-tag .ht-code {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent); font-size: .6875rem;
}
.hreflang-tag .ht-domain {
  color: var(--text-dim); font-size: .625rem; font-weight: 400;
}

/* ===== EMBED CARDS ===== */
.embed-grid {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0;
}
.embed-card {
  width: 180px; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.embed-card iframe {
  width: 100%; aspect-ratio: 16/9; border: none; display: block;
}
.embed-card img {
  width: 100%; height: auto; border-radius: 8px;
}
.embed-card .ec-caption {
  padding: 12px 16px; font-size: .8125rem; color: var(--text-dim);
  border-top: 1px solid var(--border);
}
.embed-card .ec-caption strong { color: var(--text); }
.embed-card-full {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin: 20px 0;
}
.embed-card-full iframe {
  width: 100%; aspect-ratio: 16/9; border: none; display: block;
}
.embed-card-full .ec-caption {
  padding: 12px 16px; font-size: .8125rem; color: var(--text-dim);
  border-top: 1px solid var(--border);
}

/* ===== BLOG POSTS ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px; margin: 16px 0;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
  text-decoration: none; color: var(--text);
  transition: border-color .3s;
}
.blog-card:hover { border-color: rgba(34,197,94,.3); }
.blog-card .bc-category {
  font-size: .625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 6px;
}
.blog-card .bc-title { font-size: .875rem; font-weight: 600; line-height: 1.4; }
.blog-card .bc-url {
  font-size: .6875rem; color: var(--text-muted); margin-top: 6px;
  font-family: 'JetBrains Mono', monospace; word-break: break-all;
}

/* ===== SITEMAP VIZ ===== */
.sitemap-tree {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin: 16px 0;
}
.sitemap-node {
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--border);
  margin-left: 12px;
}
.sitemap-node:first-child { border-left-color: var(--accent); }
.sitemap-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem; color: var(--text);
}
.sitemap-count {
  font-size: .6875rem; color: var(--text-muted);
  margin-left: 8px; font-weight: 400;
}

/* ===== DONUT CHART ===== */
.donut-container {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0; flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-legend { flex: 1; min-width: 200px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: .875rem; color: var(--text-dim);
}
.donut-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.donut-legend-pct {
  margin-left: auto; font-weight: 600; color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: .8125rem;
}

/* ===== TAKEAWAY CARDS ===== */
.takeaway-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 20px 0;
}
.takeaway-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.takeaway-card .tk-num {
  display: inline-flex; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,.1); border: 1.5px solid rgba(34,197,94,.3);
  align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--accent);
  margin-bottom: 10px;
}
.takeaway-card .tk-title { font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.takeaway-card .tk-desc { font-size: .8125rem; color: var(--text-dim); line-height: 1.6; }

/* ===== INFO CALLOUT ===== */
.info-callout {
  background: rgba(34,197,94,.04); border: 1px solid rgba(34,197,94,.15);
  border-radius: 12px; padding: 20px 24px; margin: 20px 0;
  font-size: .875rem; color: var(--text-dim); line-height: 1.6;
}
.info-callout strong { color: var(--text); }

/* ===== TOOL TAGS ===== */
.tool-stack { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.tool-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: .75rem; font-weight: 600; color: var(--text);
}
.tool-tag .tt-role {
  font-size: .625rem; color: var(--text-muted); font-weight: 500;
}

/* ===== INLINE PRODUCT CALLOUTS ===== */
.product-callout {
  background: linear-gradient(135deg, rgba(34,197,94,.06) 0%, rgba(59,130,246,.04) 100%);
  border: 1px solid rgba(34,197,94,.2);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 24px 0;
}
.product-callout .pc-hook {
  font-size: .9375rem; font-weight: 700; color: var(--text); margin-bottom: 8px;
  line-height: 1.4;
}
.product-callout .pc-body {
  font-size: .8125rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 12px;
}
.product-callout .pc-features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.product-callout .pc-feat {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.15);
  font-size: .6875rem; font-weight: 600; color: var(--accent);
}
.product-callout .pc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 700; color: var(--accent);
  text-decoration: none; transition: gap .2s;
}
.product-callout .pc-link:hover { gap: 10px; }

/* ===== SVG LINE CHARTS ===== */
.svg-chart-container {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 24px 0;
}
.svg-chart-title {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); margin-bottom: 16px;
}
.svg-chart-container svg { width: 100%; height: auto; }
.chart-grid-line { stroke: var(--border); stroke-width: 0.5; }
.chart-axis-label {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  fill: var(--text-muted); font-weight: 500;
}
.chart-value-label {
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  fill: var(--text-dim); font-weight: 400;
}

/* Why-care styles now use speed-stat from report-components.css */

/* ===== TOOL TAGS WITH LOGOS ===== */
.tool-tag img {
  width: 14px; height: 14px; border-radius: 2px; vertical-align: middle;
}

/* ===== AUDIO PLAYER ===== */

/* ===== HEADLINE SWITCHER NAV ===== */

/* LM callout styles now in report-components.css */

/* ===== SOURCES SECTION ===== */
.sources-section {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.sources-section h3 {
  font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 16px;
}
.source-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.source-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; font-size: .8125rem;
  color: var(--text-dim); line-height: 1.6;
}
.source-card strong { color: var(--text); }
.source-card a { color: var(--accent); text-decoration: none; font-size: .75rem; }
.source-card a:hover { text-decoration: underline; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }






/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .donut-container { flex-direction: column; }
  /* .lm-callout responsive now in report-components.css */
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.6rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .embed-grid { gap: 8px; }
  .why-grid { grid-template-columns: 1fr; }
  .hreflang-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
}

/* ===== SITE SPEED ===== */
.hl { font-style: normal; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }


/* ===== BIG NUMBER HERO STATS ===== */
.hero-numbers {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  margin: 32px 0;
}
.hero-num {
  padding: 28px 16px; text-align: center;
}
.hero-num .big {
  font-size: 2.25rem; font-weight: 700; font-family: 'JetBrains Mono', monospace;
  line-height: 1; margin-bottom: 4px;
}
.hero-num .big.green { color: var(--accent); }
.hero-num .big.blue { color: var(--blue); }
.hero-num .big.amber { color: var(--amber); }
.hero-num .big.red { color: var(--red); }
.hero-num .label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); line-height: 1.3; }

/* ===== YOUTUBE THUMBNAIL CARDS (compact) ===== */

/* Speed-stat styles now in report-components.css */

/* ===== GAUGE CHARTS ===== */
.gauge-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; margin: 28px 0;
}
.gauge-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 20px; text-align: center;
}
.gauge-label { font-size: .8125rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ===== CWV TABLE ===== */
.cwv-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cwv-table th, .cwv-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.cwv-table th { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); background: var(--bg-elevated); }
.cwv-table .metric-name { font-weight: 600; color: var(--text); }
.cwv-table .metric-val { font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.pass { color: var(--accent); }
.warn { color: var(--amber); }
.fail { color: var(--red); }

/* ===== THIRD PARTY TABLE ===== */
.tp-row { display: grid; grid-template-columns: 1fr 100px 80px 60px; gap: 12px; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.tp-row.tp-header { background: var(--bg-elevated); }
.tp-row.tp-header span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.tp-name { font-size: .875rem; font-weight: 600; color: var(--text); }
.tp-name small { display: block; font-weight: 400; font-size: .75rem; color: var(--text-dim); }
.tp-val { font-size: .875rem; font-family: 'JetBrains Mono', monospace; color: var(--text-dim); }
.tp-impact { font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-align: center; }
.tp-impact.high { background: rgba(239,68,68,.12); color: var(--red); }
.tp-impact.med { background: rgba(245,158,11,.12); color: var(--amber); }
.tp-impact.low { background: rgba(34,197,94,.12); color: var(--accent); }

/* ===== ARCHITECTURE DIAGRAM ===== */
.arch-diagram {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 32px; margin: 24px 0; overflow-x: auto;
}
.arch-flow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; min-width: 600px;
}
.arch-node {
  background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: 10px;
  padding: 16px 20px; text-align: center; min-width: 120px;
}
.arch-node .arch-icon { font-size: 1.5rem; margin-bottom: 6px; }
.arch-node .arch-label { font-size: .75rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .06em; }
.arch-node .arch-tech { font-size: .6875rem; color: var(--text-dim); margin-top: 2px; }
.arch-node.highlight { border-color: rgba(34,197,94,.4); background: rgba(34,197,94,.04); }
.arch-arrow { font-size: 1.25rem; color: var(--text-muted); flex-shrink: 0; }

/* ===== CAROUSEL (page-history style) ===== */
.carousel-row {
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch; padding:4px 0; scrollbar-width:none;
}
.carousel-row::-webkit-scrollbar { display:none; }
.carousel-wrap { position:relative; margin:0 -4px; padding:0 4px; }
.carousel-arrow {
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:40px; height:40px; border-radius:50%;
  border:1px solid rgba(34,197,94,.25); background:rgba(34,197,94,.06);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:all .25s ease; backdrop-filter:blur(8px); padding:0;
}
.carousel-arrow:hover { background:rgba(34,197,94,.15); border-color:rgba(34,197,94,.5); box-shadow:0 0 20px rgba(34,197,94,.15); }
.carousel-arrow svg { width:18px; height:18px; stroke:var(--accent); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.carousel-arrow.left { left:-18px; }
.carousel-arrow.right { right:-18px; }
.carousel-card {
  flex:0 0 300px; scroll-snap-align:start;
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  overflow:hidden; text-decoration:none; color:inherit;
  transition:transform .3s, box-shadow .3s; display:flex; flex-direction:column;
}
.carousel-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.4); }
.carousel-card .card-thumb { height:140px; overflow:hidden; position:relative; background:#111; }
.carousel-card .card-thumb img {
  width:100%; height:auto; object-fit:contain; display:block;
}
.carousel-card .card-thumb iframe {
  width:1440px; height:900px; transform:scale(0.22); transform-origin:top left;
  pointer-events:none; border:none; position:absolute; top:0; left:0;
}
.carousel-card .card-thumb-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  font-size:.75rem; color:var(--text-muted); font-weight:600;
  background:linear-gradient(135deg, var(--bg-card) 0%, #111 100%);
}
.carousel-card .card-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; }
.carousel-card .card-body .sc-badge { margin-bottom:8px; }
.carousel-card .card-body .sc-title { font-size:.9375rem; font-weight:700; color:var(--text); margin-bottom:4px; line-height:1.3; }
.carousel-card .card-body .sc-desc { font-size:.8125rem; color:var(--text-dim); line-height:1.5; flex:1; }
.carousel-card .card-body .sc-arrow { font-size:.8125rem; font-weight:600; color:var(--accent); margin-top:8px; display:block; }

/* ===== CAROUSEL THUMB: full-bleed, no margin ===== */
.carousel-card .card-thumb { margin:0; border-radius:0; }
.carousel-card .card-thumb iframe { transform:scale(0.25); }
.carousel-card .card-thumb-placeholder { border-radius:0; }

/* ===== EMBED GRID: 2-up YouTube thumbnails ===== */
@media (max-width: 600px) { .embed-grid { grid-template-columns: 1fr; } }



/* ===== SECTION HEADER ===== */
.section-hd { margin: 48px 0 24px; }
.section-hd h2 { margin: 0 0 6px; }
.sh-sub { font-size: .9375rem; color: var(--text-dim); margin: 0; line-height: 1.5; }


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .hero-numbers { gap: 20px; }
  .hero-num .big { font-size: 1.75rem; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.5rem; }
  .report-hero .subtitle { font-size: .8125rem; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-num { padding: 16px 8px; }
  .hero-num .big { font-size: 1.25rem; }
  .arch-flow { min-width: unset; flex-direction: column; }
  .arch-arrow { transform: rotate(90deg); }
  .tp-row { grid-template-columns: 1fr 80px 60px; }
  .tp-row .tp-val:first-of-type { display: none; }
  .carousel-card { width: 260px !important; min-width: 260px !important; }
  .carousel-arrow { display: none !important; }
}

@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.3);}}

/* ===== SOCIAL MEDIA ===== */
/* ===== LIVE PULSE ===== */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; margin-right: 6px;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ===== PLATFORM CARD ===== */
.platform-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 28px; margin: 20px 0; position: relative; overflow: hidden;
}
.platform-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.platform-card.ig::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-card.tt::before { background: linear-gradient(90deg, #00f2ea, #ff0050); }
.platform-card.yt::before { background: #ff0000; }
.platform-card.tw::before { background: #1d9bf0; }
.platform-card.fb::before { background: #1877f2; }
.platform-card.li::before { background: #0a66c2; }
.platform-card.pi::before { background: #e60023; }
.platform-card .pc-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.platform-card .pc-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0;
}
.platform-card.ig .pc-icon { background: rgba(225,48,108,.1); color: #e1306c; }
.platform-card.tt .pc-icon { background: rgba(0,242,234,.1); color: #00f2ea; }
.platform-card.yt .pc-icon { background: rgba(255,0,0,.1); color: #ff0000; }
.platform-card.tw .pc-icon { background: rgba(29,155,240,.1); color: #1d9bf0; }
.platform-card.fb .pc-icon { background: rgba(24,119,242,.1); color: #1877f2; }
.platform-card.li .pc-icon { background: rgba(10,102,194,.1); color: #0a66c2; }
.platform-card.pi .pc-icon { background: rgba(230,0,35,.1); color: #e60023; }
.platform-card .pc-name { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.platform-card .pc-handle { font-size: .8125rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.platform-card .pc-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px; margin-bottom: 16px;
}
.platform-card .pc-stat-val {
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  font-family: 'JetBrains Mono', monospace; line-height: 1.1;
}
.platform-card .pc-stat-label {
  font-size: .6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted); margin-top: 2px;
}
.platform-card .pc-content { color: var(--text-dim); font-size: .9375rem; line-height: 1.7; }
.platform-card .pc-content strong { color: var(--text); }

/* ===== EMBED WRAPPER ===== */
.embed-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 20px 0;
}
.embed-wrap {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; min-height: 200px;
}
.embed-wrap iframe { width: 100%; border: none; }

/* ===== DONUT CHART ===== */
.donut-section {
  display: flex; align-items: center; gap: 32px; margin: 32px 0;
  flex-wrap: wrap;
}
.donut-chart { flex-shrink: 0; }
.donut-legend { flex: 1; min-width: 200px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: .875rem; color: var(--text-dim);
}
.donut-legend-dot {
  width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.donut-legend-pct {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  color: var(--text); min-width: 40px;
}

/* ===== AUDIO BAR ===== */
.audio-bar{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:12px 18px;margin:20px 0;display:flex;align-items:center;gap:12px;position:relative;overflow:hidden}
.ab-play{width:36px;height:36px;border-radius:50%;border:none;cursor:pointer;background:var(--accent);color:var(--bg);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform .2s}
.ab-play:hover{transform:scale(1.08)}.ab-play svg{width:16px;height:16px}
.ab-label{font-size:.9375rem;color:var(--text-dim);white-space:nowrap}
.ab-spacer{flex:1}
.ab-meta{display:flex;align-items:center;gap:10px;flex-shrink:0}
.ab-time{font-family:'JetBrains Mono',monospace;font-size:.75rem;color:var(--text-muted)}
.ab-speed{background:transparent;border:1px solid var(--border);color:var(--text-muted);font-family:'JetBrains Mono',monospace;font-size:.7rem;font-weight:600;padding:2px 7px;border-radius:4px;cursor:pointer}
.ab-speed:hover{border-color:var(--accent);color:var(--accent)}
.ab-progress{position:absolute;bottom:0;left:0;height:3px;background:var(--accent);width:0;border-radius:0 0 12px 12px;transition:width .3s linear}


/* ===== YOUTUBE THUMBNAILS ===== */
.yt-thumb-card {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: border-color .3s, transform .2s;
}
.yt-thumb-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.yt-thumb-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: #000;
}
.yt-thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity .3s;
}
.yt-thumb-card:hover .yt-thumb-wrap img { opacity: .8; }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 68px; height: 48px; background: rgba(255,0,0,.85); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.yt-thumb-card:hover .yt-play-btn { background: #ff0000; }
.yt-play-btn::after {
  content: ''; display: block; width: 0; height: 0;
  border-style: solid; border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.yt-thumb-caption {
  padding: 12px 16px; font-size: .8125rem; color: var(--text-dim);
  border-top: 1px solid var(--border);
}
.yt-thumb-caption strong { color: var(--text); }
.yt-ext-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .625rem; color: var(--text-muted); font-weight: 600;
  margin-left: 8px; text-transform: uppercase; letter-spacing: .05em;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }






/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .donut-section { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.6rem; }
  .platform-card { padding: 20px; }
  .platform-card .pc-stats { grid-template-columns: repeat(2, 1fr); }
  .embed-row { grid-template-columns: 1fr; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
}



.rq-toggle {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #333;
  background: #1a1a1a; color: #666; font-size: 20px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s ease; font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.rq-toggle:hover { background: #222; color: #999; border-color: #555; }
.rq-panel {
  position: fixed; bottom: 76px; left: 24px; z-index: 9998;
  width: min(520px, calc(100vw - 48px)); max-height: calc(100vh - 120px);
  background: #111; border: 1px solid #2a2a2a; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6); overflow-y: auto;
  padding: 28px; display: none; font-family: 'Space Grotesk', sans-serif;
}
.rq-panel.open { display: block; }
.rq-panel h3 { color: #f0f0f0; font-size: 1.1rem; margin: 0 0 16px; font-weight: 700; }
.rq-panel h4 { color: #22c55e; font-size: .85rem; font-weight: 600; margin: 20px 0 8px; text-transform: uppercase; letter-spacing: .5px; }
.rq-panel h4:first-of-type { margin-top: 0; }
.rq-panel p, .rq-panel li { color: #aaa; font-size: .8125rem; line-height: 1.6; margin: 0 0 6px; }
.rq-panel ul { padding-left: 18px; margin: 0 0 8px; }
.rq-panel code { background: #1a1a1a; padding: 1px 5px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: #ccc; }
.rq-panel .rq-divider { border: none; border-top: 1px solid #222; margin: 16px 0; }
.rq-panel .rq-tag { display: inline-block; font-size: .7rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; margin-right: 4px; }
.rq-tag.free { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.25); }
.rq-tag.paid { background: rgba(245,158,11,.1); color: #f59e0b; border: 1px solid rgba(245,158,11,.25); }
.rq-tag.noauth { background: rgba(59,130,246,.1); color: #3b82f6; border: 1px solid rgba(59,130,246,.25); }
.rq-tag.hard { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.25); }
.rq-tag.resolved { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.25); }
.rq-panel .rq-question { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px; padding: 10px 14px; margin: 8px 0; }
.rq-panel .rq-question p { color: #ddd; margin: 0; }
.rq-panel .rq-question .rq-context { color: #777; font-size: .75rem; margin-top: 4px; }
.rq-panel .rq-question.answered { border-color: rgba(34,197,94,.3); }
.rq-panel .rq-question.answered p:first-child { color: #888; text-decoration: line-through; }
.rq-panel .rq-answer { color: #22c55e !important; font-weight: 600; text-decoration: none !important; margin-top: 4px; }

/* ===== TRACKING ===== */
/* ===== TRACKER PILLS ===== */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tracker-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s;
  background: var(--bg-elevated); color: #f0f0f0;
  border: 1.5px solid;
}
.tracker-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.pill-analytics { border-color: #4285F4; }
.pill-advertising { border-color: #f59e0b; }
.pill-personalization { border-color: #8b5cf6; }
.pill-consent { border-color: #22c55e; }
.pill-session { border-color: #ef4444; }
.pill-cdp { border-color: #FF6B35; }
.pill-social { border-color: #E4405F; }

/* ===== STAT GRID ===== */
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 24px 0;
}
.stat-card .stat-num {
  font-size: 2rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.1; margin-bottom: 4px;
}
.stat-card .stat-sub {
  font-size: 0.6875rem; color: var(--text-dim); margin-top: 4px;
}

/* ===== COOKIE TABLE ===== */
.cookie-table { width: 100%; }
.cookie-table th { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cookie-table td { font-size: 0.8125rem; }
.cookie-table .cookie-name {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  color: var(--accent);
}
.cookie-type {
  display: inline-block; padding: 2px 8px; border-radius: 10px;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-type.first-party { background: rgba(34,197,94,.1); color: var(--accent); }
.cookie-type.third-party { background: rgba(239,68,68,.1); color: var(--red); }
.cookie-type.tracking { background: rgba(245,158,11,.1); color: var(--amber); }
.cookie-type.functional { background: rgba(59,130,246,.1); color: var(--blue); }
.cookie-type.necessary { background: rgba(34,197,94,.1); color: var(--accent); }

/* ===== DONUT CHART ===== */
.donut-container {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 28px 0; flex-wrap: wrap;
}
.donut-svg { flex-shrink: 0; }
.donut-segment { transition: stroke-dasharray 0.8s ease; cursor: pointer; }
.donut-segment:hover { opacity: 0.8; }
.donut-legend { flex: 1; min-width: 200px; }
.donut-legend-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; font-size: 0.875rem; color: var(--text-dim);
}
.donut-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.donut-legend-pct {
  margin-left: auto; font-weight: 600; color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: 0.8125rem;
}

/* ===== PIXEL GRID ===== */
.pixel-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 24px 0;
}
.pixel-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pixel-card:hover {
  border-color: rgba(34,197,94,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(34,197,94,.05);
}
.pixel-card .px-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.pixel-card .px-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.pixel-card .px-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.pixel-card .px-category {
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
}
.pixel-card .px-id {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem;
  color: var(--text-dim); margin: 8px 0;
}
.pixel-card .px-desc {
  font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6;
}
.pixel-card .px-fires {
  font-size: 0.6875rem; color: var(--text-muted); margin-top: 8px;
  padding-top: 8px; border-top: 1px solid var(--border);
}

/* ===== SCRIPT CATEGORY BAR CHART ===== */
.script-bar-chart {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px; margin: 24px 0;
}
.script-bar-chart .chart-title {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 20px;
}
.script-bar-row { margin-bottom: 14px; }
.script-bar-label {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px;
}
.script-bar-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.script-bar-value {
  font-size: 0.875rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; color: var(--text);
}
.script-bar-track {
  height: 28px; background: var(--bg-elevated);
  border-radius: 6px; overflow: hidden; border: 1px solid var(--border);
}
.script-bar-fill {
  height: 100%; border-radius: 6px;
  display: flex; align-items: center; padding-left: 10px;
  font-size: 0.6875rem; font-weight: 600; color: #fff;
  width: 0; transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== NETWORK WATERFALL ===== */
.waterfall-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; margin: 24px 0; overflow-x: auto;
}
.waterfall-title {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px;
}
.waterfall-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 6px;
  font-size: 0.75rem;
}
.waterfall-label {
  width: 180px; flex-shrink: 0; color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.waterfall-track {
  flex: 1; height: 18px; background: var(--bg-elevated);
  border-radius: 3px; position: relative; min-width: 300px;
}
.waterfall-bar {
  position: absolute; top: 2px; bottom: 2px; border-radius: 2px;
  opacity: 0; transition: opacity 0.4s ease, width 0.6s ease;
}
.waterfall-bar.visible { opacity: 1; }
.waterfall-time {
  width: 50px; flex-shrink: 0; text-align: right;
  font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ===== CONSENT TIMELINE ===== */
.consent-timeline {
  position: relative; margin: 24px 0; padding-left: 32px;
}
.consent-timeline::before {
  content: ''; position: absolute; left: 11px; top: 0; bottom: 0;
  width: 2px; background: var(--border-light);
}
.ct-item { position: relative; margin-bottom: 28px; }
.ct-item::before {
  content: ''; position: absolute; left: -32px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--bg);
}
.ct-item.ct-pre::before { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.ct-item.ct-consent::before { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }
.ct-item.ct-post::before { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.ct-time {
  font-size: 0.6875rem; font-weight: 600;
  font-family: 'JetBrains Mono', monospace; margin-bottom: 4px;
}
.ct-pre .ct-time { color: var(--red); }
.ct-consent .ct-time { color: var(--amber); }
.ct-post .ct-time { color: var(--accent); }
.ct-title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ct-desc { font-size: 0.8125rem; color: var(--text-dim); line-height: 1.6; }

/* ===== DOMAIN TABLE ===== */
.domain-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px; margin: 16px 0;
}
.domain-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  color: var(--text-dim);
}
.domain-item .di-cat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 2px 6px; border-radius: 4px;
  flex-shrink: 0;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  background: var(--bg-card); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-elevated); padding: 12px 16px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 12px 16px; font-size: 0.8125rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .metric-val {
  font-weight: 700; font-family: 'JetBrains Mono', monospace; color: var(--text);
}
.compare-table .above-avg { color: var(--red); }
.compare-table .below-avg { color: var(--accent); }

/* ===== VSL CARDS ===== */
.hero-vsl-wrap { max-width: 800px; margin: 32px auto; position: relative; }
.vsl-card {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; min-width: 140px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.vsl-card.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.vsl-card.tl { top: -10px; left: -60px; }
.vsl-card.tr { top: -10px; right: -60px; }
.vsl-card.bl { bottom: -10px; left: -60px; }
.vsl-card.br { bottom: -10px; right: -60px; }
.vc-head { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.vc-dot { width: 8px; height: 8px; border-radius: 50%; }
.vc-dot.g { background: var(--accent); }
.vc-dot.b { background: var(--blue); }
.vc-dot.a { background: var(--amber); }
.vc-dot.r { background: var(--red); }
.vc-lbl { font-size: 0.625rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.vc-big { font-size: 1.5rem; font-weight: 700; color: var(--text); font-family: 'JetBrains Mono', monospace; }
.vc-sm { font-size: 0.6875rem; color: var(--text-dim); }






/* Why-care styles now use speed-stat from report-components.css */




/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .pixel-grid { grid-template-columns: 1fr; }
  .waterfall-label { width: 120px; }
}
@media (max-width: 600px) {
  .report-hero h1 { font-size: 1.6rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .domain-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .hero-numbers { display:grid !important; grid-template-columns:repeat(2,1fr); gap:12px; }
  .hero-num .big { font-size:1.25rem; }
  .carousel-card { width:260px !important; min-width:260px !important; }
  .carousel-arrow { display:none !important; }
}

/* ===== INDEX ===== */
/* ===== HERO OVERRIDES ===== */
.report-hero {
  padding: 56px 0 48px; border-bottom: none; margin-bottom: 0;
  position: relative; overflow: visible;
}
.report-hero > * { position: relative; z-index: 1; }
.report-hero h1 {
  font-size: 2.75rem; max-width: 860px;
  background: linear-gradient(135deg, #f0f0f0 30%, #22c55e 70%, #4ade80 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.report-hero .subtitle { font-size: 1.125rem; max-width: 740px; }

/* ===== INTRO STATS BAR ===== */
.intro-stats {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  margin: 32px 0 8px; padding: 24px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.intro-stat { text-align: center; }
.intro-stat-val {
  font-family: 'JetBrains Mono', monospace; font-size: 1.75rem; font-weight: 700;
  color: var(--accent); display: block; line-height: 1.2;
}
.intro-stat-label {
  font-size: .75rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600; margin-top: 4px;
}

/* ===== INTRO HOOK ===== */
.intro-hook {
  max-width: 720px; margin: 32px auto 0; text-align: center;
  font-size: 1.0625rem; color: var(--text-dim); line-height: 1.7;
}
.intro-hook strong { color: var(--text); }

/* ===== REPORT SECTION CARDS ===== */
.report-sections { margin: 48px 0 0; }
.report-sections > h2 {
  text-align: center; font-size: 1.5rem; margin-bottom: 8px;
}
.report-sections > p {
  text-align: center; color: var(--text-muted); font-size: .875rem; margin-bottom: 32px;
}

.rs-card {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 28px;
  align-items: center; padding: 24px 28px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none !important; color: var(--text);
  transition: all .3s; margin-bottom: 12px;
}
.rs-card:hover {
  border-color: var(--accent); transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  text-decoration: none !important;
}
.rs-icon {
  width: 72px; height: 72px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; flex-shrink: 0;
}
.rs-body { min-width: 0; }
.rs-status {
  display: inline-block; font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 2px 8px; border-radius: 4px; margin-bottom: 6px;
}
.rs-status.live { background: rgba(34,197,94,.12); color: #22c55e; }
.rs-status.wip { background: rgba(245,158,11,.12); color: #f59e0b; }
.rs-title {
  font-size: 1.125rem; font-weight: 700; color: var(--text);
  margin-bottom: 4px; line-height: 1.3;
}
.rs-hook {
  font-size: .875rem; color: var(--text-dim); line-height: 1.5;
}
.rs-stat {
  text-align: right; flex-shrink: 0; padding-left: 16px;
}
.rs-stat-val {
  font-family: 'JetBrains Mono', monospace; font-size: 1.5rem;
  font-weight: 700; display: block; line-height: 1.2;
}
.rs-stat-label {
  font-size: .6875rem; color: var(--text-muted); white-space: nowrap;
}
.rs-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8125rem; font-weight: 600; color: var(--accent);
  margin-top: 8px;
}
.rs-arrow span { transition: transform .2s; }
.rs-card:hover .rs-arrow span { transform: translateX(4px); }

/* lm-callout styles now in report-components.css */

/* source-line now in shared report-styles.css */

/* reveal animation now in shared report-styles.css (.reveal.visible) */

/* ===== BRAND GRID (reports index page) ===== */
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 12px; margin: 16px 0;
}
.brand-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; color: var(--text);
  transition: all .3s;
}
.brand-card:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.brand-logo {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  background: var(--bg-elevated); display: flex;
  align-items: center; justify-content: center;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-info { flex: 1; min-width: 0; }
.brand-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.brand-desc { font-size: .8125rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 6px; }
.brand-meta { font-size: .6875rem; color: var(--text-muted); margin-bottom: 4px; }
.brand-arrow { font-size: .75rem; font-weight: 600; color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .report-hero h1 { font-size: 2rem; }
  .rs-card { grid-template-columns: 56px 1fr; }
  .rs-stat { display: none; }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: 1fr; }
  .report-hero h1 { font-size: 1.5rem; }
  .report-hero .subtitle { font-size: .8125rem; }
  .hero-cta-pair { flex-direction: column !important; }
  .hero-cta-pair a { width: 100%; text-align: center; justify-content: center; }
  .intro-stats { gap: 20px; }
  .intro-stat-val { font-size: 1.3rem; }
  .rs-card { grid-template-columns: 1fr; padding: 20px; }
  .rs-icon { width: 48px; height: 48px; font-size: 1.25rem; border-radius: 10px; }
}
