/* ============================================
   RED PANDA — $RPD — The Silent Apex
   White Theme — Peponk.io Style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --orange: #FF6B35;
    --orange-dark: #E85D26;
    --orange-light: #FF8C42;
    --orange-glow: rgba(255, 107, 53, 0.3);
    --gold: #FFB347;
    --green: #4ADE80;
    --dark: #1a1a2e;
    --dark-card: #1c1c30;
    --white: #ffffff;
    --cream: #faf7f2;
    --cream-green: #f0f5e8;
    --text-dark: #1a1a2e;
    --text-mid: #555;
    --text-light: #888;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 9999px;
    --vine-color: #436117;
    --leaf-color: #82b33c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }
body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ================================
   FLOATING PILL NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 820px;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
}
.nav-link:hover {
    color: var(--orange);
    background: rgba(255, 107, 53, 0.08);
}

.nav-buy {
    padding: 10px 22px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav-buy:hover {
    background: var(--orange);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-menu.active { display: flex; }
.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.2s;
}
.mobile-link:hover { color: var(--orange); }
.mobile-buy {
    padding: 14px 36px;
    background: var(--orange);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: var(--orange);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 24px 200px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-mascot-wrapper {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 280px;
    max-width: 60vw;
    max-height: 60vw;
    margin-bottom: -20px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: heroFloat 4s ease-in-out infinite;
    z-index: 2;
    background: #fff;
}

.hero-mascot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-mascot-shadow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: rgba(0,0,0,0.15);
    border-radius: 50%;
    filter: blur(8px);
    animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-22px) rotate(-2deg); }
}

@keyframes shadowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.15; }
    25% { transform: translateX(-50%) scale(0.85); opacity: 0.1; }
    75% { transform: translateX(-50%) scale(0.8); opacity: 0.08; }
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    text-shadow: 4px 6px 0 rgba(0,0,0,0.1);
    margin-bottom: 16px;
    letter-spacing: -3px;
}

.hero-title-line {
    display: block;
    animation: titleSlideIn 0.8s ease forwards;
    opacity: 0;
}
.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }

@keyframes titleSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.9s forwards;
    opacity: 0;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent {
    background: var(--green);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}
.btn-accent:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid rgba(0,0,0,0.08);
}
.btn-outline:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.btn-big {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* ================================
   WAVE DIVIDERS
   ================================ */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}
.wave-divider svg {
    width: 100%;
    height: 100px;
    display: block;
}

/* ================================
   SECTIONS COMMON
   ================================ */
.section {
    position: relative;
    padding: 100px 0 120px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.section-title.orange { color: var(--orange); }
.section-title.white { color: var(--white); }
.section-title.center { text-align: center; }

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 560px;
}
.section-sub.white { color: rgba(255,255,255,0.7); }
.section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ================================
   VINES
   ================================ */
.vines-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
    overflow: visible;
    z-index: 20;
}

.vines-wrapper svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.vine-loop {
    transform-origin: 50% 0%;
    animation: vineSway 4s ease-in-out infinite alternate;
}

@keyframes vineSway {
    0% { transform: rotate(-1deg) scaleY(1); }
    100% { transform: rotate(1deg) scaleY(1.05); }
}

.leaf { fill: var(--leaf-color); }
.stem { fill: none; stroke: var(--vine-color); stroke-linecap: round; }

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: var(--cream);
    padding-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.narrative-box {
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.narrative-box p {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.7;
}
.narrative-box .bold { font-weight: 600; color: var(--text-dark); }
.narrative-box .accent-text { color: var(--orange); font-weight: 700; }
.narrative-box .accent-text.big { font-size: 1.2rem; }
.narrative-box .dim { color: var(--text-light); font-style: italic; }

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--white);
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
    border-color: var(--orange);
}
.info-icon { font-size: 1.6rem; margin-bottom: 8px; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ================================
   SUPPLY SECTION
   ================================ */
.supply-section {
    background: var(--orange);
    padding: 80px 0 120px;
}

.supply-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.supply-item {
    background: var(--cream);
    border: 1.5px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-sm);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.supply-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.supply-value { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.supply-sub { font-size: 0.8rem; color: var(--orange); font-weight: 600; }

/* ================================
   TOKENOMICS (DARK CARD)
   ================================ */
.tokenomics {
    background: var(--cream);
    padding-bottom: 140px;
}

.dark-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 56px 48px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
    border: 3px solid rgba(255, 107, 53, 0.15);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.chart-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}
.chart-wrapper canvas { width: 100%; height: 100%; }
.chart-center-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
}

.token-legend {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.legend-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}
.legend-info strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}
.legend-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* ================================
   ROADMAP
   ================================ */
.roadmap {
    background: var(--orange);
    padding-bottom: 140px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.phase-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.phase-number {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.phase-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--orange);
}

.phase-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.phase-card li {
    font-size: 0.9rem;
    color: var(--text-mid);
    padding-left: 20px;
    position: relative;
}
.phase-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ================================
   COMMUNITY
   ================================ */
.community {
    background: var(--cream);
    padding: 80px 0 100px;
}

.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community-banner-img {
    max-width: 420px;
    margin-bottom: 24px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.social-row {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,0,0,0.06);
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.social-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--orange);
    color: var(--orange);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--dark);
    padding: 32px 0;
    color: rgba(255,255,255,0.5);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
}
.footer-logo {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background: var(--orange);
    color: white;
    transform: scale(1.1);
}
.footer-disclaimer {
    font-size: 0.78rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
}

/* ================================
   FLOATING BUY BUTTON
   ================================ */
.floating-buy {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 28px;
    background: var(--green);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 24px rgba(74, 222, 128, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatBuyPulse 2s ease-in-out infinite;
}
.floating-buy:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 36px rgba(74, 222, 128, 0.5);
}

@keyframes floatBuyPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 6px 32px rgba(74, 222, 128, 0.6); }
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE — TABLET
   ================================ */
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; }
    .tokenomics-grid { grid-template-columns: 1fr; justify-items: center; }
    .supply-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================
   RESPONSIVE — MOBILE
   ================================ */
@media (max-width: 768px) {
    /* --- Navbar --- */
    .nav-links, .nav-buy { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-pill { justify-content: space-between; }

    /* --- Hero --- */
    .hero {
        padding: 120px 20px 160px;
        min-height: auto;
    }
    .hero-mascot-wrapper {
        width: 220px;
        height: 220px;
        max-width: 55vw;
        max-height: 55vw;
        margin-bottom: -10px;
    }
    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
        letter-spacing: -2px;
    }
    .hero-tagline {
        font-size: 1rem;
        padding: 0 12px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* --- Sections General --- */
    .section {
        padding: 60px 0 80px;
    }
    .section-title {
        text-align: center;
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .section-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 0 16px;
    }
    .container {
        padding: 0 16px;
    }

    /* --- About --- */
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .narrative-box {
        padding: 28px 20px;
        text-align: center;
    }
    .narrative-box p {
        font-size: 0.95rem;
    }
    .info-card {
        text-align: center;
    }
    .info-icon {
        display: flex;
        justify-content: center;
    }

    /* --- Supply --- */
    .supply-section {
        padding: 60px 0 100px;
    }
    .supply-card {
        padding: 32px 16px;
        text-align: center;
    }
    .supply-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .supply-item {
        text-align: center;
        align-items: center;
        padding: 20px 12px;
    }
    .supply-value {
        font-size: 1.2rem;
    }

    /* --- Tokenomics --- */
    .tokenomics {
        padding-bottom: 100px;
    }
    .dark-card {
        padding: 32px 16px;
        text-align: center;
    }
    .tokenomics-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
    }
    .chart-wrapper {
        width: 180px;
        height: 180px;
    }
    .chart-center-label {
        font-size: 1rem;
    }
    .token-legend {
        gap: 16px;
        width: 100%;
    }
    .legend-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }
    .legend-dot {
        margin-top: 4px;
    }
    .legend-info strong {
        font-size: 0.85rem;
    }
    .legend-info p {
        font-size: 0.75rem;
    }

    /* --- Roadmap --- */
    .roadmap {
        padding-bottom: 100px;
    }
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .phase-card {
        padding: 28px 20px;
        text-align: center;
    }
    .phase-card h3 {
        text-align: center;
    }
    .phase-card ul {
        align-items: center;
    }
    .phase-card li {
        text-align: left;
    }

    /* --- Community --- */
    .community {
        padding: 60px 0 80px;
    }
    .community-banner-img {
        max-width: 280px;
    }
    .social-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .social-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .btn-big {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* --- Footer --- */
    .footer {
        padding: 28px 0 80px;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-disclaimer {
        font-size: 0.72rem;
        padding: 12px 16px 0;
    }

    /* --- Floating Buy --- */
    .floating-buy {
        bottom: 16px;
        right: 16px;
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    /* --- Wave dividers --- */
    .wave-divider svg {
        height: 60px;
    }
}

/* ================================
   RESPONSIVE — SMALL MOBILE
   ================================ */
@media (max-width: 480px) {
    .hero {
        padding: 110px 16px 140px;
    }
    .hero-mascot-wrapper {
        width: 180px;
        height: 180px;
    }
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: -1px;
    }
    .hero-tagline {
        font-size: 0.9rem;
    }
    .supply-grid {
        grid-template-columns: 1fr 1fr;
    }
    .narrative-box {
        padding: 20px 16px;
    }
    .chart-wrapper {
        width: 200px;
        height: 200px;
    }
    .chart-center-label {
        font-size: 1.1rem;
    }
    .phase-number {
        font-size: 2.2rem;
    }
}

/* ================================
   RESPONSIVE — VERY SMALL
   ================================ */
@media (max-width: 360px) {
    .hero-mascot-wrapper {
        width: 160px;
        height: 160px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .supply-grid {
        grid-template-columns: 1fr;
    }
    .supply-card {
        padding: 24px 12px;
    }
    .dark-card {
        padding: 24px 12px;
    }
    .chart-wrapper {
        width: 180px;
        height: 180px;
    }
    .nav-pill {
        padding: 6px 10px 6px 6px;
    }
    .nav-logo-img {
        width: 34px;
        height: 34px;
    }
}
