/* ============================================
   double-standard.org — Styles
   Frutiger Aero + Scholarly Evidence Presentation
   ============================================ */

/* CSS Custom Properties */
:root {
    --bg-abyss: #0a0a14;
    --bg-frost: #e8edf4;
    --accent-cyan: #00f0ff;
    --accent-lime: #39ff14;
    --accent-magenta: #ff0080;
    --text-dark: #1a1e2e;
    --text-light: #e0e8f0;
    --signal-gray: #2a2e3e;
    --aero-blue-solid: #b8d4e8;
    --aero-blue: rgba(184, 212, 232, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --angle-primary: 72deg;
    --typewriter-speed: 40ms;
    --panel-count: 8;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: var(--bg-abyss);
    color: var(--text-light);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.65;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Evidence Rail: Horizontal Scroll Container
   ============================================ */
#evidence-rail {
    display: flex;
    height: 100vh;
    width: calc(100vw * var(--panel-count));
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

#evidence-rail::-webkit-scrollbar {
    display: none;
}

/* ============================================
   Panel Base
   ============================================ */
.panel {
    flex: 0 0 100vw;
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
}

.panel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ============================================
   Duality Gutter
   ============================================ */
.duality-gutter {
    position: absolute;
    right: 0;
    top: 0;
    width: 12px;
    height: 100%;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    animation: gutterPulse 4s ease-in-out infinite;
}

@keyframes gutterPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ============================================
   Typography
   ============================================ */
.panel-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.evidence-heading {
    color: var(--accent-cyan);
}

.heading-magenta {
    color: var(--accent-magenta);
}

.premise-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.claim-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.65;
    color: var(--text-dark);
    max-width: 38ch;
    margin-bottom: 1rem;
}

.light-text {
    color: var(--text-dark);
    opacity: 0.8;
}

.claim-source {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--signal-gray);
    display: block;
    margin-top: 0.5rem;
}

.data-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--text-light);
}

/* ============================================
   Typewriter
   ============================================ */
.typewriter-block {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--accent-cyan);
    margin-top: 1.5rem;
    min-height: 2.5em;
}

.typewriter-cursor {
    color: var(--accent-cyan);
    animation: blink 0.8s step-end infinite;
}

.verdict-typewriter {
    margin-bottom: 3rem;
}

.verdict-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--accent-cyan);
}

.verdict-cursor {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   Glass Orbs (Frutiger Aero background)
   ============================================ */
.glass-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    top: -100px;
    left: -50px;
    animation: orbDrift1 30s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 212, 232, 0.1) 0%, transparent 70%);
    bottom: -80px;
    right: -30px;
    animation: orbDrift2 35s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: orbDrift3 28s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(40px, 30px); }
    50% { transform: translate(-20px, 60px); }
    75% { transform: translate(30px, -20px); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -40px); }
    66% { transform: translate(40px, -20px); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 30px); }
}

/* ============================================
   Aero Glass Panels
   ============================================ */
.aero-glass {
    background: rgba(232, 237, 244, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 3rem;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aero-glass-full {
    background: rgba(232, 237, 244, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
    padding: 4rem 6rem;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.aero-glass-full .typewriter-block {
    color: var(--signal-gray);
}

.glossy-overdrive {
    backdrop-filter: blur(30px) saturate(2.0);
    -webkit-backdrop-filter: blur(30px) saturate(2.0);
    background: rgba(232, 237, 244, 0.85);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(184, 212, 232, 0.2);
}

/* ============================================
   Fracture Lines on Glass
   ============================================ */
.fracture-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.fracture {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 0.5;
    fill: none;
}

.cracked-glass .fracture {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 0.7;
}

.dense-fractures .fracture {
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
}

.shattered-glass {
    background: rgba(232, 237, 244, 0.3);
    backdrop-filter: blur(10px) saturate(1.0);
    -webkit-backdrop-filter: blur(10px) saturate(1.0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
}

/* ============================================
   Panel 1: The Premise (Full Claim)
   ============================================ */
.full-claim {
    background: linear-gradient(135deg, var(--bg-frost) 0%, #d8e2ee 100%);
    position: relative;
}

/* ============================================
   Split Panel Zones
   ============================================ */
.split-panel {
    display: flex;
    height: 100%;
    position: relative;
}

/* Claim Zones */
.zone-claim {
    position: relative;
    background: linear-gradient(135deg, var(--bg-frost) 0%, #d8e2ee 100%);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.claim-60 {
    flex: 0 0 60%;
}

.claim-45 {
    flex: 0 0 45%;
}

.claim-30 {
    flex: 0 0 30%;
}

.claim-75 {
    flex: 0 0 75%;
}

.claim-10 {
    flex: 0 0 10%;
}

/* Evidence Zones */
.zone-evidence {
    position: relative;
    background: var(--bg-abyss);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.evidence-40 {
    flex: 0 0 40%;
    margin-left: -5%;
}

.evidence-55 {
    flex: 0 0 55%;
    margin-left: -5%;
}

.evidence-70 {
    flex: 0 0 70%;
    margin-left: -5%;
}

.evidence-25 {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.evidence-90 {
    flex: 0 0 90%;
    margin-left: -2%;
    padding: 2rem 3rem;
}

/* ============================================
   Panel 5: Counter Statistic
   ============================================ */
.counter-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.counter-number {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--accent-lime);
    line-height: 1;
}

.counter-percent {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-lime);
    line-height: 1;
}

.counter-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--text-light);
    text-align: center;
    max-width: 20ch;
}

/* ============================================
   Panel 6: Comparison Split
   ============================================ */
.comparison-split {
    display: flex;
    position: relative;
}

.zone-comparison {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zone-a {
    background: var(--bg-abyss);
}

.zone-b {
    background: linear-gradient(135deg, #0a0a14 0%, #120a18 100%);
}

.comparison-axis-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--text-light);
    z-index: 5;
    animation: axisPulse 3s ease-in-out infinite;
}

@keyframes axisPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); }
}

.comparison-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.subtitle-magenta {
    color: var(--accent-magenta);
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comp-bar-group {
    display: grid;
    grid-template-columns: 140px 1fr 60px;
    align-items: center;
    gap: 0.8rem;
}

.comp-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-align: right;
}

.comp-bar-track {
    height: 18px;
    background: var(--signal-gray);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.comp-bar {
    height: 100%;
    width: 0;
    transition: width 1.5s ease-out;
}

.comp-bar.bar-cyan {
    background: linear-gradient(90deg, var(--accent-cyan), rgba(0, 240, 255, 0.6));
}

.comp-bar.bar-magenta {
    background: linear-gradient(90deg, var(--accent-magenta), rgba(255, 0, 128, 0.6));
}

.comp-bar.animated {
    width: var(--bar-width);
}

.comp-value {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    letter-spacing: 0.05em;
    color: var(--accent-cyan);
}

.value-magenta {
    color: var(--accent-magenta);
}

/* ============================================
   Panel 7: Small Multiples Grid
   ============================================ */
.small-multiples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    height: 85%;
    margin-top: 1rem;
}

.small-multiple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(42, 46, 62, 0.3);
    border: 1px solid rgba(42, 46, 62, 0.6);
    padding: 0.8rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.sm-svg {
    width: 100%;
    max-height: 75%;
}

.sm-axis {
    stroke: var(--signal-gray);
    stroke-width: 1;
}

.sm-bar-stated {
    fill: var(--aero-blue);
    opacity: 0.7;
}

.sm-bar-applied {
    fill: var(--accent-cyan);
    opacity: 0.9;
}

.sm-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ============================================
   Panel 8: The Verdict (Full Dark)
   ============================================ */
.full-evidence {
    background: var(--bg-abyss);
    display: flex;
    align-items: center;
    justify-content: center;
}

.verdict-content {
    padding: 4rem;
    max-width: 900px;
}

.verdict-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.verdict-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.stat-cyan {
    color: var(--accent-cyan);
}

.stat-lime {
    color: var(--accent-lime);
}

.stat-magenta {
    color: var(--accent-magenta);
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--text-light);
    opacity: 0.7;
    max-width: 22ch;
}

/* ============================================
   Divergence Chart
   ============================================ */
.divergence-chart {
    margin: 1.5rem 0;
}

.chart-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.chart-axis {
    stroke: var(--signal-gray);
    stroke-width: 1;
}

.bar-stated {
    fill: rgba(184, 212, 232, 0.5);
    filter: url(#none);
}

.bar-applied {
    fill: var(--accent-cyan);
}

.bar-anim {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.bar-anim.visible {
    opacity: 1;
}

.chart-labels {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.5rem;
}

.label-fade {
    opacity: 0;
    transition: opacity 0.4s ease-out;
    transition-delay: calc(var(--delay) * 200ms);
}

.label-fade.visible {
    opacity: 1;
}

/* ============================================
   Contradiction Matrix
   ============================================ */
.contradiction-matrix {
    margin: 1.5rem 0;
}

.matrix-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.matrix-header-row {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 2px;
}

.matrix-corner {
    background: transparent;
}

.matrix-col-header {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-align: center;
    padding: 0.4rem 0.2rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.matrix-row {
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    gap: 2px;
}

.matrix-row-header {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    padding-right: 0.5rem;
}

.matrix-cell {
    height: 36px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    transition-delay: calc(var(--row) * 80ms + var(--col) * 40ms);
}

.matrix-cell.visible {
    opacity: 1;
}

.matrix-cell.consistent {
    background: var(--accent-lime);
}

.matrix-cell.moderate {
    background: #c8a800;
}

.matrix-cell.inconsistent {
    background: var(--accent-magenta);
}

.matrix-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.legend-item {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
}

.legend-swatch.consistent {
    background: var(--accent-lime);
}

.legend-swatch.moderate {
    background: #c8a800;
}

.legend-swatch.inconsistent {
    background: var(--accent-magenta);
}

/* ============================================
   Timeline Chart
   ============================================ */
.timeline-chart {
    margin: 1.5rem 0;
}

.timeline-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.timeline-stated {
    stroke: rgba(184, 212, 232, 0.6);
    stroke-width: 2.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 3s ease-out;
}

.timeline-stated.drawn {
    stroke-dashoffset: 0;
}

.timeline-applied {
    stroke: var(--accent-cyan);
    stroke-width: 2.5;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 3s ease-out 1s;
}

.timeline-applied.drawn {
    stroke-dashoffset: 0;
}

.divergence-marker {
    fill: var(--accent-magenta);
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.divergence-marker.visible {
    opacity: 1;
    animation: markerPulse 1.5s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { opacity: 0.7; transform-origin: center; }
    50% { opacity: 1; }
}

.timeline-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    fill: var(--text-light);
    opacity: 0.6;
}

.timeline-legend {
    display: flex;
    gap: 2rem;
    margin-top: 0.8rem;
}

.legend-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    vertical-align: middle;
    margin-right: 0.4rem;
}

.stated-line {
    background: rgba(184, 212, 232, 0.6);
}

.applied-line {
    background: var(--accent-cyan);
}

/* ============================================
   Progress Rail
   ============================================ */
#progress-rail {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 24px;
    z-index: 100;
    display: flex;
    align-items: flex-end;
}

#progress-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lime));
    transition: width 0.3s ease-out;
}

.panel-markers {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    padding: 0 5%;
}

.panel-marker {
    width: 8px;
    height: 8px;
    background: var(--signal-gray);
    transform: rotate(45deg);
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.panel-marker.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
}

/* ============================================
   Hover Effects
   ============================================ */
.panel-heading {
    position: relative;
    display: inline-block;
}

.evidence-heading::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--accent-cyan);
    transform: skewX(-15deg);
    transition: width 0.4s ease-out;
    margin-top: 0.3rem;
}

.panel.in-view .evidence-heading::after {
    width: 60%;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .glass-orb {
        animation: none;
    }

    .duality-gutter {
        animation: none;
        opacity: 0.4;
    }

    .typewriter-text {
        transition: none;
    }

    .timeline-stated,
    .timeline-applied {
        transition: none;
        stroke-dashoffset: 0;
    }

    .divergence-marker {
        animation: none;
        opacity: 1;
    }

    .comparison-axis-line {
        animation: none;
    }

    .bar-anim {
        opacity: 1;
        transition: none;
    }

    .matrix-cell {
        opacity: 1;
        transition: none;
    }

    .comp-bar {
        width: var(--bar-width);
        transition: none;
    }

    .label-fade {
        opacity: 1;
        transition: none;
    }
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .zone-claim {
        clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    }

    .aero-glass,
    .aero-glass-full {
        padding: 2rem;
    }

    .zone-evidence {
        padding: 2rem 1.5rem;
    }

    .comp-bar-group {
        grid-template-columns: 100px 1fr 50px;
    }

    .verdict-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .small-multiples-grid {
        gap: 0.8rem;
    }

    .premise-title {
        font-size: clamp(2rem, 8vw, 4rem);
    }
}
