/* ==========================================================================
   GRUVAN - Underground Journey Design
   Surface → Descent → Underground
   ========================================================================== */

:root {
    --black: #0a0a0a;
    --white: #f5f5f0;
    --cream: #e8e4dc;
    --accent: #ff3d00;
    --accent-dark: #d63000;
    --gray-dark: #1a1a1a;
    --gray-mid: #2a2a2a;
    --gray-light: #888;
    --earth-1: #3d2e1f;
    --earth-2: #2a1f14;
    --earth-3: #1a140c;
    --rock: #1c1c1c;
    --serif: 'Instrument Serif', Georgia, serif;
    --mono: 'Azeret Mono', 'Courier New', monospace;
    --sans: 'Outfit', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Grain Texture Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    transition: all 0.4s ease;
}

.nav-logo {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ==========================================================================
   Hero Section - Surface Level
   ========================================================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem 3rem;
    max-width: 1400px;
    width: 100%;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeSlideIn 0.8s ease-out;
}

.label-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.hero-label span:last-child {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 3rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--white);
    animation: fadeSlideIn 0.8s ease-out 0.1s backwards;
}

.title-line-2 {
    font-size: clamp(3rem, 9vw, 7rem);
    color: var(--white);
    margin-left: 3%;
    animation: fadeSlideIn 0.8s ease-out 0.2s backwards;
}

.title-line-2 em {
    font-style: italic;
    color: var(--accent);
}

.title-line-3 {
    font-size: clamp(2.5rem, 7vw, 6rem);
    color: var(--cream);
    margin-left: 6%;
    animation: fadeSlideIn 0.8s ease-out 0.3s backwards;
}

.question-mark {
    color: var(--accent);
    font-size: 1.1em;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: 6%;
    animation: fadeSlideIn 0.8s ease-out 0.5s backwards;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent);
}

.stat-value {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.stat-unit {
    font-size: 0.5em;
    color: var(--accent);
    margin-left: 0.1em;
}

.stat-desc {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-out 1s backwards;
}

.hero-scroll span {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    color: var(--accent);
    animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================================================
   Descent Section - Going Underground
   ========================================================================== */

.descent {
    position: relative;
    height: 300px;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.8) 0%,
        var(--earth-1) 30%,
        var(--earth-2) 60%,
        var(--earth-3) 100%
    );
    overflow: hidden;
}

.descent-surface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg,
        #4a3f2f 0%,
        #3d2e1f 50%,
        var(--earth-1) 100%
    );
}

.descent-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
        #5a4a3a 0%,
        #6a5a4a 20%,
        #4a3a2a 40%,
        #5a4a3a 60%,
        #6a5a4a 80%,
        #4a3a2a 100%
    );
}

.descent-earth {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
}

.earth-layer {
    position: absolute;
    left: 0;
    right: 0;
    height: 33.33%;
}

.earth-layer-1 {
    top: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 100px,
            rgba(80, 60, 40, 0.3) 100px,
            rgba(80, 60, 40, 0.3) 102px
        ),
        linear-gradient(180deg, var(--earth-1) 0%, var(--earth-2) 100%);
}

.earth-layer-2 {
    top: 33.33%;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 50px,
            rgba(60, 45, 30, 0.4) 50px,
            rgba(60, 45, 30, 0.4) 52px
        ),
        linear-gradient(180deg, var(--earth-2) 0%, var(--earth-3) 100%);
}

.earth-layer-3 {
    top: 66.66%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 30px,
            rgba(40, 30, 20, 0.5) 30px,
            rgba(40, 30, 20, 0.5) 32px
        ),
        linear-gradient(180deg, var(--earth-3) 0%, var(--rock) 100%);
}

.descent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.descent-text span {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Cross-Section - Underground Tunnels
   ========================================================================== */

.crosssection {
    position: relative;
    min-height: 500px;
    background: var(--rock);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crosssection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.crosssection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.crosssection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, var(--rock) 0%, transparent 20%),
        linear-gradient(180deg, transparent 80%, var(--black) 100%),
        radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* Cover watermark in bottom right corner */
.crosssection::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, transparent 0%, var(--black) 60%);
    z-index: 2;
}

.crosssection-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.crosssection-stat {
    max-width: 700px;
    margin: 0 auto;
}

.big-number {
    font-family: var(--mono);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 60px rgba(255, 61, 0, 0.5),
        0 4px 30px rgba(0,0,0,0.8);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 60px rgba(255, 61, 0, 0.5), 0 4px 30px rgba(0,0,0,0.8); }
    50% { text-shadow: 0 0 80px rgba(255, 61, 0, 0.7), 0 4px 30px rgba(0,0,0,0.8); }
}

.crosssection-stat p {
    font-family: var(--serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--white);
    line-height: 1.6;
    text-shadow:
        0 2px 4px rgba(0,0,0,1),
        0 4px 20px rgba(0,0,0,0.9),
        0 0 40px rgba(0,0,0,0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 1.25rem 2rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.crosssection-stat em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}

/* ==========================================================================
   Underground Fade & Content
   ========================================================================== */

.underground-fade {
    height: 150px;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%);
}

.underground {
    background: var(--gray-dark);
    position: relative;
}

.underground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 150px,
            rgba(255,255,255,0.02) 150px,
            rgba(255,255,255,0.02) 151px
        );
    pointer-events: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-mid);
}

.section-header-dark {
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.section-number {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--white);
}

/* ==========================================================================
   Facts Section
   ========================================================================== */

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fact-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border: 1px solid var(--gray-mid);
    position: relative;
    transition: all 0.3s ease;
}

.fact-block:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.5);
}

.fact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.fact-block:hover::before {
    transform: scaleY(1);
}

.fact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
}

.fact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
}

.fact-block h3 {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.fact-block p {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.7;
}

.fact-block strong {
    color: var(--white);
    font-weight: 600;
}

/* Distribution Bars */
.fact-distribution {
    margin-bottom: 1.25rem;
}

.fact-distribution:last-of-type {
    margin-bottom: 0;
}

.dist-bar {
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 0.4rem;
    position: relative;
}

.dist-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    transition: width 1s ease-out;
}

.dist-markagare {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.dist-staten {
    background: var(--cream);
}

.dist-kommun {
    background: transparent;
    border: 2px dashed var(--gray-light);
}

.dist-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
}

.dist-kommun .dist-label {
    color: var(--gray-light);
    position: absolute;
    left: 0.75rem;
}

.dist-text {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
}

/* Highlight Block */
.fact-highlight {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-badge {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    align-items: center;
}

.chart-country {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.country-flag {
    font-size: 1.5rem;
}

.country-name {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cream);
}

.chart-bar-container {
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chart-bar-se {
    width: 2%;
    background: var(--accent);
}

.chart-bar-fi {
    width: 3%;
    background: #3b82f6;
}

.chart-bar-au {
    width: 47%;
    background: linear-gradient(90deg, #22c55e 33%, #16a34a 100%);
}

.chart-bar-cl {
    width: 70%;
    background: linear-gradient(90deg, #eab308 35%, #ca8a04 100%);
}

.chart-bar-ca {
    width: 100%;
    background: linear-gradient(90deg, #ef4444 60%, #dc2626 100%);
}

.bar-value {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.chart-bar-se .bar-value,
.chart-bar-fi .bar-value {
    position: absolute;
    left: calc(100% + 1rem);
    color: var(--cream);
    text-shadow: none;
}

/* ==========================================================================
   Consequences Section
   ========================================================================== */

.consequence-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.consequence-card {
    padding: 2.5rem;
    border: 1px solid var(--gray-mid);
    border-right: none;
    position: relative;
    transition: background 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.consequence-card:last-child {
    border-right: 1px solid var(--gray-mid);
}

.consequence-card:hover {
    background: rgba(0, 0, 0, 0.4);
}

.card-location {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
}

.card-stat {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
    line-height: 1;
}

.consequence-card p {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.6;
}

/* ==========================================================================
   Debate Section
   ========================================================================== */

.debate-section {
    background: var(--cream);
    color: var(--black);
}

.debate-section .section-title {
    color: var(--black);
}

.debate-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.debate-side h3 {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--black);
}

.debate-for h3 {
    color: #16a34a;
    border-color: #16a34a;
}

.debate-against h3 {
    color: var(--accent);
    border-color: var(--accent);
}

.debate-side ul {
    list-style: none;
}

.debate-side li {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 1.25rem;
}

.debate-side li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gray-light);
}

.debate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
}

.debate-divider span {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-light);
    background: var(--cream);
    padding: 0.75rem;
}

/* ==========================================================================
   Reports Section
   ========================================================================== */

.reports-list {
    display: flex;
    flex-direction: column;
}

.report-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-mid);
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
}

.report-item:hover {
    background: rgba(0, 0, 0, 0.3);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.report-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 61, 0, 0.1);
    padding: 0.5rem 0.6rem;
    text-align: center;
}

.report-content h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.report-content p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.report-arrow {
    font-size: 1.25rem;
    color: var(--gray-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.report-item:hover .report-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 5rem 3rem;
    background: var(--black);
    border-top: 1px solid var(--gray-mid);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.footer-sources h4 {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-sources ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 2rem;
}

.footer-sources li {
    font-size: 0.8rem;
    color: var(--gray-light);
}

.footer-cta {
    text-align: right;
}

.footer-cta p {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.footer-hashtag {
    font-family: var(--mono);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact-highlight {
        grid-column: span 2;
    }

    .consequence-cards {
        grid-template-columns: 1fr;
    }

    .consequence-card {
        border-right: 1px solid var(--gray-mid);
        border-bottom: none;
    }

    .consequence-card:last-child {
        border-bottom: 1px solid var(--gray-mid);
    }

    .debate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .debate-divider {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.25rem;
    }

    .nav-logo {
        font-size: 0.7rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-label {
        margin-bottom: 1.5rem;
    }

    .label-line {
        width: 30px;
    }

    .hero-label span:last-child {
        font-size: 0.5rem;
        letter-spacing: 0.15em;
    }

    .hero-title {
        margin-bottom: 2rem;
    }

    .title-line-1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .title-line-2 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        margin-left: 0;
    }

    .title-line-3 {
        font-size: clamp(1.8rem, 8vw, 3rem);
        margin-left: 0;
    }

    .hero-stats {
        margin-left: 0;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .hero-stat-divider {
        width: 1px;
        height: 40px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-desc {
        font-size: 0.5rem;
    }

    .hero-scroll {
        bottom: 1.5rem;
    }

    .hero-scroll span {
        font-size: 0.5rem;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .descent {
        height: 150px;
    }

    .descent-text span {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
    }

    .crosssection {
        min-height: 350px;
    }

    .crosssection-content {
        padding: 2rem 1.25rem;
    }

    .big-number {
        font-size: clamp(3.5rem, 18vw, 6rem);
        margin-bottom: 1rem;
    }

    .crosssection-stat p {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        line-height: 1.5;
    }

    .underground-fade {
        height: 80px;
    }

    .section-container {
        padding: 3rem 1.25rem;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2.5rem;
    }

    .section-number {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fact-block {
        padding: 1.5rem;
    }

    .fact-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 1rem;
    }

    .fact-block h3 {
        font-size: 0.6rem;
    }

    .fact-block p {
        font-size: 0.9rem;
    }

    .fact-highlight {
        grid-column: span 1;
    }

    .highlight-badge {
        font-size: 1.5rem;
    }

    .dist-bar {
        height: 32px;
    }

    .dist-label {
        font-size: 0.65rem;
    }

    .dist-text {
        font-size: 0.55rem;
    }

    .comparison-chart {
        gap: 1rem;
    }

    .chart-row {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .country-flag {
        font-size: 1.25rem;
    }

    .country-name {
        font-size: 0.7rem;
    }

    .chart-bar-container {
        height: 36px;
    }

    .bar-value {
        font-size: 0.6rem;
    }

    .consequence-cards {
        gap: 1rem;
    }

    .consequence-card {
        padding: 1.5rem;
        border: 1px solid var(--gray-mid);
        border-bottom: none;
    }

    .consequence-card:last-child {
        border-bottom: 1px solid var(--gray-mid);
    }

    .card-location {
        font-size: 0.55rem;
    }

    .card-stat {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .consequence-card p {
        font-size: 0.9rem;
    }

    .debate-section {
        padding: 3rem 1.25rem;
    }

    .debate-grid {
        gap: 1.5rem;
    }

    .debate-side h3 {
        font-size: 0.65rem;
        margin-bottom: 1rem;
    }

    .debate-side li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        padding-left: 1rem;
    }

    .debate-divider {
        padding: 1rem 0;
    }

    .debate-divider span {
        font-size: 1rem;
    }

    .reports-list {
        gap: 0;
    }

    .report-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.25rem 0;
    }

    .report-tag {
        justify-self: start;
        font-size: 0.55rem;
        padding: 0.4rem 0.5rem;
    }

    .report-content h4 {
        font-size: 1rem;
    }

    .report-content p {
        font-size: 0.8rem;
    }

    .report-arrow {
        display: none;
    }

    .footer {
        padding: 3rem 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-sources h4 {
        font-size: 0.6rem;
        margin-bottom: 1rem;
    }

    .footer-sources ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-sources li {
        font-size: 0.75rem;
    }

    .footer-cta {
        text-align: left;
    }

    .footer-cta p {
        font-size: 1rem;
    }

    .footer-hashtag {
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero-content {
        padding: 1rem;
    }

    .title-line-1 {
        font-size: 2.25rem;
    }

    .title-line-2 {
        font-size: 2rem;
    }

    .title-line-3 {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .big-number {
        font-size: 3rem;
    }

    .crosssection-stat p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card-stat {
        font-size: 1.75rem;
    }

    .chart-row {
        grid-template-columns: 70px 1fr;
    }

    .country-name {
        font-size: 0.6rem;
    }
}

/* Selection Styling */
::selection {
    background: var(--accent);
    color: var(--black);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-mid);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
