html, body { margin: 0; padding: 0; height: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --blue:         #2B5BA8;
    --red:          #C0392B;
    --gold:         #C9922A;
    --gold-light:   #E8B84B;
    --white-warm:   #f5f0e8;
    --ink:          #1C1810;
    --muted:        #7A6B5E;
    --paper:        #f7f3ec;
    --paper-cool:   #f4f0e8;
    --cream:        #F2EDE4;
    --border:       #E0D5C8;
    --border-light: #EDE6DC;

    --dancheong-teal:    #1a6b5a;
    --dancheong-red:     #8B2E22;
    --dancheong-gold:    #B8892A;
    --dancheong-blue:    #1e4a7a;
    --violet:            #6B3FA0;

    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  40px;
    --space-xl:  64px;
    --space-2xl: 100px;
    --space-3xl: 140px;

    --text-xs:   11px;
    --text-sm:   13px;
    --text-base: 16px;
    --text-lg:   18px;
    --text-xl:   22px;
    --text-2xl:  28px;
    --text-3xl:  36px;
    --text-4xl:  48px;

    --max-width: 1140px;
    --content-narrow: 760px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Progress bar ── */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--dancheong-teal));
    z-index: 1000;
    transition: width 0.1s linear;
}


.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #0e0806;
}

/* Dancheong texture overlay */
.hero-texture-base {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/dancheong-pattern.jpeg");
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: saturate(0.65) brightness(0.75);
}

/* Color washes */
.hero-color-wash {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(14,8,6,0.55) 100%),
        radial-gradient(ellipse 60% 50% at 75% 25%, rgba(26,107,90,0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(139,46,34,0.14) 0%, transparent 55%);
}

/* Edge vignette */
.hero-edge-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(to right, rgba(14,8,6,0.40) 0%, transparent 12%, transparent 88%, rgba(14,8,6,0.30) 100%),
        linear-gradient(to bottom, rgba(14,8,6,0.30) 0%, transparent 10%, transparent 85%, rgba(14,8,6,0.40) 100%);
}

/* Grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.30;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 512px;
}

.hero-right-softener {
    position: absolute;
    top: 0;
    width: 80%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, transparent 20%, rgba(14, 8, 6, 0.35) 100%),
        linear-gradient(to left, rgba(14, 8, 6, 0.25) 0%, transparent 20%);
}

/* Top dancheong stripe */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg,
        var(--dancheong-red) 0px, var(--dancheong-red) 40px,
        var(--dancheong-gold) 40px, var(--dancheong-gold) 80px,
        var(--dancheong-teal) 80px, var(--dancheong-teal) 120px,
        var(--dancheong-blue) 120px, var(--dancheong-blue) 160px,
        var(--violet) 160px, var(--violet) 200px
    );
    z-index: 10;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg,
            var(--dancheong-teal) 0px, var(--dancheong-teal) 30px,
            var(--dancheong-red) 30px, var(--dancheong-red) 60px,
            var(--dancheong-gold) 60px, var(--dancheong-gold) 90px,
            var(--dancheong-blue) 90px, var(--dancheong-blue) 120px);
    z-index: 10;
    opacity: 0.7;
}

.hero-left {
    padding: 100px 72px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    color: var(--white-warm);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
    font-style: italic;
    color: #ffcac4;
}

.hero-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #B0A498;
    max-width: 420px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-stat-row {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-stat {
    border-left: 2px solid var(--dancheong-teal);
    padding-left: 18px;
    transition: transform 0.3s ease;
}

.hero-stat:hover { transform: translateY(-2px); }

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat .desc {
    font-size: var(--text-xs);
    letter-spacing: 1px;
    color: #7A6B5E;
    margin-top: 6px;
}

.hero-right {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.hanzi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    opacity: 0;
    position: absolute;
    inset: 40px;
    animation: fadeIn 1.5s ease 1.2s forwards;
}

.hanzi-cell {
    font-family: 'Noto Serif KR', serif;
    color: rgb(176, 164, 152);
    font-size: clamp(18px, 2vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    opacity: 0.5;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    transition: opacity 0.4s ease;
    filter: blur(0.5px);
}

.scroll-cue {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    animation: bounce 2.5s ease-in-out infinite, fadeIn 1s ease 1.5s forwards;
}

.scroll-cue::after {
    content: '';
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Tooltip ── */
.tooltip {
    position: fixed;
    background: #1a0f0a;
    color: var(--white-warm);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 1000;
    border-left: 3px solid var(--dancheong-red);
    max-width: 220px;
    line-height: 1.6;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}


.section {
    max-width: var(--content-narrow);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    position: relative;
    z-index: 5;
    background: var(--paper);
}

.intro-section { max-width: 1400px; }

.section-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.section p {
    font-size: var(--text-base);
    line-height: 2;
    color: #4A3C30;
}

.source-note {
    color: var(--muted);
    font-size: var(--text-xs);
    line-height: 1.8;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.source-note p { font-size: var(--text-xs); line-height: 1.8; color: var(--muted); }
.source-note p:first-child {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--red);
    font-weight: 700;
}


.viz-section { position: relative; z-index: 5; background: var(--paper); }

.viz-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg);
}

.viz-section-intro {
    max-width: var(--content-narrow);
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.viz-section-intro .section-label { justify-content: center; }
.viz-section-intro .section-label::before { display: none; }

.viz-section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.viz-section-intro p {
    font-size: var(--text-base);
    line-height: 1.9;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
}

/* Chart cards */
.chart-card {
    background: var(--white-warm);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 44px 44px 36px;
    box-shadow: 0 1px 3px rgba(28,24,16,0.04), 0 8px 32px rgba(28,24,16,0.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.chart-card:hover {
    box-shadow: 0 1px 3px rgba(28,24,16,0.04), 0 12px 48px rgba(28,24,16,0.09);
    transform: translateY(-2px);
}

/* Dancheong top stripe on cards */
.chart-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg,
        var(--dancheong-red) 0%, var(--dancheong-red) 25%,
        var(--dancheong-gold) 25%, var(--dancheong-gold) 50%,
        var(--dancheong-teal) 50%, var(--dancheong-teal) 75%,
        var(--dancheong-blue) 75%, var(--dancheong-blue) 100%
    );
    border-radius: 8px 8px 0 0;
}

.chart-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-xl);
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.chart-subtitle {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1.8px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.chart-area { width: 100%; overflow-x: auto; overflow-y: hidden; }
.chart-area svg { display: block; max-width: 100%; height: auto; }

/* Reserve heights so SVG mounting never reflows the page.
   The pinned ScrollTrigger above is sensitive to total page height
   changes — if a chart mounts AFTER the trigger is built, the pin
   spacer becomes wrong and sections shift on scroll up. */
#chart-toggle  { min-height: 460px; }
#chart-genres  { min-height: 480px; }
#chart-timeline { min-height: 280px; }
#chart-impact  { min-height: 320px; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}


.wave-section {
    background: var(--paper-cool);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* Top/bottom dancheong stripe */
.wave-section::before,
.wave-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--dancheong-teal) 0%, var(--dancheong-teal) 25%,
        var(--dancheong-gold) 25%, var(--dancheong-gold) 50%,
        var(--dancheong-red) 50%, var(--dancheong-red) 75%,
        var(--dancheong-blue) 75%, var(--dancheong-blue) 100%
    );
    opacity: 0.5;
    z-index: 2;
}

.wave-section::before { top: 0; }
.wave-section::after  { bottom: 0; }

.wave-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wave-header {
    max-width: var(--content-narrow);
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.wave-inner .section-label { color: var(--red); justify-content: center; }
.wave-inner .section-label::before { display: none; }

.wave-inner h2 {
    color: var(--ink);
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.wave-header > p {
    font-size: var(--text-base);
    line-height: 2;
    color: #4A3C30;
    max-width: 560px;
    margin: 0 auto;
}

.influence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: var(--space-md);
}

.influence-card {
    text-align: center;
    padding: 20px 16px;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.influence-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    padding: 14px;
    border: 2px solid var(--dancheong-red);
    box-shadow: 0 0 0 6px rgba(139,46,34,0.06), 0 0 0 12px rgba(184,137,42,0.04);
    background: var(--white-warm);
}

.influence-circle img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(45%) sepia(15%);
    transition: filter 0.4s ease;
}

.influence-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.influence-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--text-base);
    color: var(--ink);
    margin-bottom: 10px;
}

.influence-desc {
    font-size: var(--text-sm);
    line-height: 1.75;
    color: var(--muted);
}


.conclusion-section {
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    position: relative;
    z-index: 5;
    background: var(--paper);
}

.conclusion-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.conclusion-text .section-label { color: var(--red); }

.conclusion-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(var(--text-2xl), 3.5vw, 42px);
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.conclusion-text p {
    font-size: var(--text-base);
    line-height: 2;
    color: #4A3C30;
}

.conclusion-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    opacity: 0.88;
    object-fit: cover;
    filter: grayscale(10%) sepia(20%);
}


footer {
    position: relative;
    z-index: 5;
    overflow: hidden;
    background-image: url("../assets/dancheong-pattern.jpeg");
    background-size: cover;
    background-position: center;
    padding: 60px var(--space-lg) 48px;
    /* ← 40px horizontal padding */
}

/* KEEP your existing stripe */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 10;
    background: repeating-linear-gradient(90deg,
            var(--dancheong-red) 0px, var(--dancheong-red) 40px,
            var(--dancheong-gold) 40px, var(--dancheong-gold) 80px,
            var(--dancheong-teal) 80px, var(--dancheong-teal) 120px,
            var(--dancheong-blue) 120px, var(--dancheong-blue) 160px,
            var(--violet) 160px, var(--violet) 200px);
    opacity: 0.65;
}

/* ADD overlay here */
footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #0e0806e9;
    z-index: 0;
}

.footer-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}

footer p {
    font-size: var(--text-sm);
    color: #8A7E74;
    line-height: 1.9;
}

footer a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,184,75,0.25);
    transition: border-color 0.3s ease, color 0.3s ease;
}

footer a:hover {
    border-color: var(--gold-light);
    color: #f0c864;
}


.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }


.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ================================================================
   PARALLAX PATTERN REVEAL
   ================================================================ */

.parallax-wrapper {
    position: relative;
    height: 200vh;
    z-index: 2;
    isolation: isolate;
}

.parallax-scene {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--paper);
}

.parallax-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    pointer-events: none;
    will-change: opacity;
}

.parallax-content.active {
    pointer-events: auto;
}

.parallax-content .viz-inner {
    width: 92%;
    max-width: var(--max-width);
    padding-top: 0;
    padding-bottom: 0;
}

.parallax-content .viz-section-intro {
    text-align: center;
}

.parallax-content .viz-section-intro .section-label {
    justify-content: center;
}

.parallax-content .viz-section-intro .section-label::before {
    display: none;
}

.pattern-panel {
    position: absolute;
    width: 50%;
    overflow: visible;
    will-change: transform;
    background-size: cover;
    background-repeat: no-repeat;
    /* No ::after overlay — preserves PNG transparency */
}

.pattern-panel--left {
    left: 0;
    background-position: right center;
}

.pattern-panel--right {
    right: 0;
    left: auto;
    background-position: left center;
}
:root {
    --overlap: 20px;
}

/* Layer 1 */
.pL1,
.pR1 {
    background-image: url("../assets/bottom-pattern.png");
    z-index: 4;
    bottom: 0;
    height: calc(34% + var(--overlap));
    top: calc(66% - var(--overlap));
}

/* Layer 2 */
.pL2,
.pR2 {
    background-image: url("../assets/middle-pattern.png");
    z-index: 3;
    top: calc(33% - var(--overlap));
    height: calc(34% + var(--overlap));
}

/* Layer 3 */
.pL3,
.pR3 {
    background-image: url("../assets/top-pattern.png");
    z-index: 2;
    top: 8;
    height: calc(34% + var(--overlap));
}

.curtain-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white-warm);
    pointer-events: none;
    opacity: 0.95;
    white-space: nowrap;
    will-change: opacity;

    /* Lift the text off the busy pattern */
    padding: 14px 26px;
    background: rgba(14, 8, 6, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(232, 184, 75, 0.35);
    border-radius: 2px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(232, 184, 75, 0.08);
}

.parallax-bridge {
    position: relative;
    z-index: 1;
    padding: 64px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
}
.bridge-line {
    position: relative;
    margin: 20px auto 0;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom,
            rgba(184, 137, 42, 0.6),
            rgba(224, 213, 200, 0.6),
            transparent);
}

.bridge-line::before,
.bridge-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 2px;
    background: var(--dancheong-gold);
    border-radius: 1px;
}

.bridge-line::before {
    left: 50%;
    transform-origin: left center;
    transform: rotate(-45deg);
}

.bridge-line::after {
    right: 50%;
    transform-origin: right center;
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 80px 40px; }
    .two-col { grid-template-columns: 1fr; }
    .influence-grid { grid-template-columns: repeat(2, 1fr); }
    .conclusion-inner { grid-template-columns: 1fr; }
    .conclusion-image { order: -1; }
    .conclusion-image img { max-width: 360px; }
    .chart-card { padding: 32px 24px 28px; }
    .viz-inner { padding: var(--space-lg) 20px; }
    .section { padding: var(--space-2xl) var(--space-md) var(--space-lg); }
    .wave-section { padding: var(--space-2xl) var(--space-md); }
        .parallax-wrapper {
            height: auto;
        }
    
        .parallax-scene {
            position: relative;
            height: auto;
            padding: var(--space-lg) 0;
            background: var(--paper);
        }
    
        .parallax-content {
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            opacity: 1 !important;
            width: 100%;
            height: auto;
            overflow: visible;
            display: block;
            background: transparent;
        }
    
        .pattern-panel {
            display: none;
        }

        .curtain-label {
            display: none;
        }

        .parallax-bridge {
            padding: 32px 0;
        }
        }

@media (max-width: 600px) {
    .influence-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .influence-circle { width: 110px; height: 110px; }
    .hero-left { padding: 60px 24px; }
    .hero-stat-row { flex-direction: column; gap: 20px; }
    .chart-card { padding: 24px 16px 20px; }
    .conclusion-section { padding: var(--space-xl) 20px; }
    .conclusion-image img { max-width: 100%; }
    .section { padding: var(--space-xl) var(--space-sm) var(--space-md); }
}
