/* ========================================
   PERMANENT STONED LANDING PAGE — ENHANCED
   Design: Premium Cannabis × Stoner Cinema × Permanent Marker Ink
   v2.0 — Now with The Anthem 🎵
   ======================================== */

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

:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-emerald: #0bb35a;
    --color-emerald-bright: #18d275;
    --color-emerald-glow: rgba(24, 210, 117, 0.4);
    --color-gold: #ffd166;
    --color-gold-glow: rgba(255, 209, 102, 0.4);
    --color-smoke: #4a5568;
    --color-purple: #9d4edd;
    --color-white: #ffffff;
    --color-gray-dark: #1a1a1a;
    --color-gray-light: #e8e8e8;

    /* Fonts */
    --font-display: 'Anton', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; }

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

/* Custom cursor */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-emerald-bright);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: screen;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-emerald-bright);
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s var(--ease-out), width 0.2s, height 0.2s;
    opacity: 0.6;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   STICKY BANNER
   ======================================== */

.sticky-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-emerald) 0%, var(--color-emerald-bright) 50%, var(--color-gold) 100%);
    color: var(--color-black);
    padding: 0.75rem 0;
    z-index: 100;
    overflow: hidden;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.banner-marquee {
    display: flex;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.banner-marquee span { display: inline-block; padding-right: 2rem; }

@media (max-width: 768px) {
    .sticky-banner { padding: 0.5rem 0; font-size: 0.75rem; }
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */

.particles-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-emerald-bright);
    opacity: 0;
    animation: particleFloat var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1.5) rotate(360deg); }
}

/* ========================================
   SMOKE CANVAS
   ======================================== */

.smoke-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
}

/* ========================================
   🎵 MUSIC PLAYER (Floating Widget)
   ======================================== */

.music-player {
    position: fixed;
    bottom: 90px;
    left: var(--spacing-md);
    z-index: 200;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(24, 210, 117, 0.5);
    border-radius: 50px;
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(24, 210, 117, 0.2), 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    overflow: hidden;
    min-width: 200px;
}

.music-player:hover {
    border-color: var(--color-emerald-bright);
    box-shadow: 0 0 50px rgba(24, 210, 117, 0.35), 0 4px 20px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.music-player-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(24,210,117,0.08), transparent 70%);
    pointer-events: none;
}

.music-player-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* EQ Bars */
.music-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
    flex-shrink: 0;
}

.music-eq span {
    display: block;
    width: 3px;
    background: var(--color-emerald-bright);
    border-radius: 2px;
    animation: eqBar 0.8s ease-in-out infinite alternate;
    min-height: 4px;
}

.music-eq span:nth-child(1) { animation-delay: 0s;    animation-duration: 0.6s; }
.music-eq span:nth-child(2) { animation-delay: 0.1s;  animation-duration: 0.9s; }
.music-eq span:nth-child(3) { animation-delay: 0.2s;  animation-duration: 0.7s; }
.music-eq span:nth-child(4) { animation-delay: 0.3s;  animation-duration: 1.0s; }
.music-eq span:nth-child(5) { animation-delay: 0.15s; animation-duration: 0.75s; }

@keyframes eqBar {
    0%   { height: 4px; }
    100% { height: 20px; }
}

.music-eq.paused span {
    animation-play-state: paused;
    height: 6px;
}

.music-info {
    flex: 1;
    min-width: 0;
}

.music-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--color-emerald-bright);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-artist {
    font-size: 0.65rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.music-controls {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.music-toggle, .music-expand {
    background: none;
    border: 1px solid rgba(24,210,117,0.4);
    color: var(--color-emerald-bright);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease-out);
    font-family: var(--font-body);
}

.music-toggle:hover, .music-expand:hover {
    background: rgba(24,210,117,0.15);
    border-color: var(--color-emerald-bright);
}

.music-expand { color: var(--color-gold); border-color: rgba(255,209,102,0.4); }
.music-expand:hover { background: rgba(255,209,102,0.1); border-color: var(--color-gold); }

/* Playing state pulse */
.music-player.is-playing {
    box-shadow: 0 0 40px rgba(24, 210, 117, 0.3), 0 4px 20px rgba(0,0,0,0.5), 0 0 80px rgba(24,210,117,0.1);
    animation: playerPulse 2s ease-in-out infinite;
}

@keyframes playerPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(24,210,117,0.3), 0 4px 20px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 0 60px rgba(24,210,117,0.45), 0 4px 20px rgba(0,0,0,0.5); }
}

@media (max-width: 768px) {
    .music-player {
        bottom: 70px;
        left: 12px;
        min-width: 160px;
        padding: 8px 12px;
    }
}

/* ========================================
   STICKY NAV
   ======================================== */

.sticky-nav {
    position: fixed;
    top: 3.5rem;
    left: 0; right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 99;
    border-bottom: 1px solid rgba(24, 210, 117, 0.2);
    transform: translateY(-100%);
    transition: transform 0.3s var(--ease-out);
}

.sticky-nav.visible { transform: translateY(0); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-emerald-bright);
    text-decoration: none;
    font-weight: 700;
}

.nav-links { display: flex; gap: var(--spacing-lg); }

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s var(--ease-out);
}

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

@media (max-width: 768px) {
    .nav-links { gap: var(--spacing-md); font-size: 0.75rem; }
}

/* ========================================
   HERO SECTION
   ======================================== */

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 3;
}

/* Grid overlay for depth */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image:
        linear-gradient(rgba(24,210,117,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,210,117,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: var(--spacing-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,209,102,0.1);
    border: 1px solid rgba(255,209,102,0.4);
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

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

.wordmark-container {
    margin-bottom: var(--spacing-xl);
    cursor: pointer;
    position: relative;
}

.wordmark-svg {
    width: 100%;
    max-width: 540px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(24, 210, 117, 0.6));
    transition: filter 0.3s var(--ease-out);
}

.wordmark-svg:hover {
    filter: drop-shadow(0 0 40px rgba(255, 209, 102, 0.7));
}

.hand-drawn-underline {
    width: 80%;
    max-width: 320px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: var(--spacing-md) auto 0;
    border-radius: 2px;
    animation: slideIn 0.6s var(--ease-out) 0.5s both;
}

@keyframes slideIn {
    from { width: 0; opacity: 0; }
    to   { width: 80%; opacity: 1; }
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.ca-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(24, 210, 117, 0.08);
    border: 1px solid rgba(24, 210, 117, 0.35);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
    transition: all 0.2s var(--ease-out);
}

.ca-pill:hover {
    background: rgba(24, 210, 117, 0.14);
    border-color: rgba(24,210,117,0.6);
}

.ca-pill span {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--color-emerald-bright);
}

.ca-copy-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s var(--ease-out);
}

.ca-copy-btn:hover { transform: scale(1.1); }

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-anthem-cta {
    margin-top: var(--spacing-md);
    animation: fadeInUp 0.8s var(--ease-out) 0.75s both;
}

.btn-anthem {
    background: transparent;
    border: 1.5px solid rgba(255,209,102,0.5);
    color: var(--color-gold);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 1px;
    transition: all 0.2s var(--ease-out);
}

.btn-anthem:hover {
    background: rgba(255,209,102,0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(255,209,102,0.25);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.16s var(--ease-out);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--color-gold); color: var(--color-black); }
.btn-primary:hover { background: #ffe680; box-shadow: 0 0 24px rgba(255, 209, 102, 0.5); }

.btn-secondary {
    background: transparent;
    color: var(--color-emerald-bright);
    border: 2px solid var(--color-emerald-bright);
}
.btn-secondary:hover {
    background: rgba(24, 210, 117, 0.1);
    box-shadow: 0 0 24px rgba(24, 210, 117, 0.3);
}

/* Vibe Meter */
.vibe-meter {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 80px;
    z-index: 50;
}

.vibe-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 1px;
}

.vibe-gauge {
    width: 100%;
    height: 8px;
    background: rgba(255, 209, 102, 0.15);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 209, 102, 0.3);
}

.vibe-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-emerald), var(--color-gold));
    width: 0%;
    transition: width 0.1s linear;
}

@media (max-width: 768px) {
    .vibe-meter { bottom: var(--spacing-md); right: var(--spacing-md); width: 60px; }
    .hero-tagline { font-size: 1.25rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
}

/* ========================================
   CONTAINER & SECTIONS
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    position: relative;
    z-index: 5;
    padding: var(--spacing-2xl) 0;
}

section h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-emerald-bright);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   LORE SECTION
   ======================================== */

.lore {
    background: linear-gradient(135deg, rgba(11, 179, 90, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.lore-content {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--color-gray-light);
}

.lore-content p { margin-bottom: var(--spacing-lg); }

.drop-cap {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    padding-right: 0.5rem;
    color: var(--color-gold);
}

.lore-anthem { font-size: 1rem; color: var(--color-smoke); }

.lore-anthem-link {
    background: none;
    border: none;
    color: var(--color-emerald-bright);
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(24,210,117,0.4);
    transition: color 0.2s;
}

.lore-anthem-link:hover { color: var(--color-gold); }

/* ========================================
   STONED STATS SECTION
   ======================================== */

.stoned-stats {
    background: rgba(24, 210, 117, 0.02);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.stats-note {
    text-align: center;
    color: var(--color-smoke);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    background: rgba(24, 210, 117, 0.07);
    border: 1px solid rgba(24, 210, 117, 0.18);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
    background: rgba(24, 210, 117, 0.12);
    border-color: rgba(24, 210, 117, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(24,210,117,0.15);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-smoke);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-emerald-bright);
    font-weight: 700;
}

.pulse-card {
    animation: cardPulse 3s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% { border-color: rgba(24,210,117,0.18); }
    50% { border-color: rgba(24,210,117,0.5); box-shadow: 0 0 20px rgba(24,210,117,0.1); }
}

/* ========================================
   CHART SECTION
   ======================================== */

.chart-section {
    background: rgba(24, 210, 117, 0.02);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.chart-placeholder {
    background: rgba(10, 10, 10, 0.5);
    border: 2px dashed rgba(24, 210, 117, 0.25);
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    color: var(--color-smoke);
}

.chart-placeholder p { margin-bottom: var(--spacing-sm); }
.chart-note { font-size: 0.875rem; }

.chart-animation {
    margin: 0 auto var(--spacing-lg);
    max-width: 400px;
    opacity: 0.4;
}

/* ========================================
   PERMANENTLY RICH SECTION
   ======================================== */

.permanently-rich {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.rich-tagline {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xl);
    font-weight: 600;
}

.wealth-calculator {
    background: rgba(24, 210, 117, 0.07);
    border: 1px solid rgba(24, 210, 117, 0.18);
    padding: var(--spacing-xl);
    border-radius: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.wealth-calculator label {
    display: block;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    color: var(--color-white);
}

.wealth-calculator input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(24, 210, 117, 0.2);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: var(--spacing-lg);
}

.wealth-calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    box-shadow: 0 0 8px rgba(255,209,102,0.4);
}

.wealth-calculator input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(255, 209, 102, 0.7);
}

.calculator-output {
    text-align: center;
    background: rgba(24, 210, 117, 0.05);
    padding: var(--spacing-lg);
    border-radius: 10px;
}

.calculator-output p { margin: 0.5rem 0; color: var(--color-smoke); }

.output-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-emerald-bright);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(24,210,117,0.4);
}

.output-sub { font-size: 0.75rem; color: var(--color-smoke) !important; }

/* ========================================
   HOW TO APE SECTION
   ======================================== */

.how-to-ape {
    background: rgba(24, 210, 117, 0.02);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.step-card {
    background: rgba(24, 210, 117, 0.07);
    border: 1px solid rgba(24, 210, 117, 0.18);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,210,117,0.04), transparent);
    pointer-events: none;
}

.step-card:hover {
    background: rgba(24, 210, 117, 0.12);
    border-color: rgba(24, 210, 117, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(24,210,117,0.12);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255,209,102,0.3);
}

.step-card h3 { color: var(--color-emerald-bright); margin-bottom: var(--spacing-sm); font-size: 1.15rem; }
.step-card p { color: var(--color-smoke); font-size: 0.95rem; }

/* ========================================
   TOKENOMICS SECTION
   ======================================== */

#tokenomics {
    background: linear-gradient(135deg, rgba(11, 179, 90, 0.05) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.tokenomics-card {
    background: rgba(24, 210, 117, 0.07);
    border: 1px solid rgba(24, 210, 117, 0.18);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.tokenomics-card:hover {
    background: rgba(24, 210, 117, 0.12);
    border-color: rgba(24, 210, 117, 0.4);
    transform: translateY(-4px);
}

.highlight-card {
    border-color: rgba(255,209,102,0.4) !important;
    background: rgba(255,209,102,0.05) !important;
}

.highlight-card p { color: var(--color-gold) !important; }

.tokenomics-card h3 {
    color: var(--color-smoke);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

.tokenomics-card p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-emerald-bright);
    font-weight: 700;
}

/* ========================================
   ROADMAP SECTION
   ======================================== */

.roadmap {
    background: rgba(24, 210, 117, 0.02);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.phase {
    background: rgba(24, 210, 117, 0.07);
    border-left: 4px solid var(--color-gold);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-lg) + 8px);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.phase-dot {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 2px solid var(--color-black);
}

.phase-active { border-left-color: var(--color-emerald-bright); }
.phase-active .phase-dot { background: var(--color-emerald-bright); animation: phasePulse 2s ease-in-out infinite; }

@keyframes phasePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(24,210,117,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(24,210,117,0); }
}

.phase:hover { background: rgba(24, 210, 117, 0.12); transform: translateX(6px); }

.phase h3 { color: var(--color-emerald-bright); margin-bottom: var(--spacing-sm); }
.phase p { color: var(--color-smoke); font-size: 0.95rem; }

/* ========================================
   🎵 ANTHEM SECTION (NEW)
   ======================================== */

.anthem-section {
    background: linear-gradient(135deg, rgba(24,210,117,0.07) 0%, rgba(157,78,221,0.06) 50%, rgba(10,10,10,0.5) 100%);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
    border-bottom: 1px solid rgba(24, 210, 117, 0.2);
}

.anthem-section h2 {
    color: var(--color-gold);
}

.anthem-desc {
    color: var(--color-smoke);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

.anthem-player-wrap {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.anthem-vinyl {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1a1a2e, #0a0a0a);
    border: 3px solid rgba(24,210,117,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(24,210,117,0.2);
}

.anthem-vinyl.spinning {
    animation: vinylSpin 4s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.vinyl-inner {
    font-size: 2rem;
    z-index: 1;
}

.anthem-embed-area {
    flex: 1;
    min-width: 280px;
}

.anthem-suno-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.anthem-suno-link:hover { color: var(--color-emerald-bright); }

@media (max-width: 600px) {
    .anthem-player-wrap { flex-direction: column; }
    .anthem-vinyl { width: 80px; height: 80px; }
    .vinyl-inner { font-size: 1.5rem; }
}

/* ========================================
   EASTER EGGS HINT SECTION
   ======================================== */

.easter-eggs-hint {
    background: rgba(157, 78, 221, 0.04);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
    text-align: center;
}

.easter-eggs-hint h2 { color: var(--color-purple); }
.easter-eggs-hint p { color: var(--color-smoke); font-size: 1.125rem; }

/* ========================================
   COMMUNITY SECTION
   ======================================== */

.community {
    background: rgba(24, 210, 117, 0.02);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
    text-align: center;
}

.community-note { color: var(--color-smoke); font-size: 0.875rem; margin-bottom: var(--spacing-lg); }

.social-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(24, 210, 117, 0.08);
    border: 1px solid rgba(24, 210, 117, 0.25);
    color: var(--color-emerald-bright);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.social-btn:hover {
    background: rgba(24, 210, 117, 0.16);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.suno-btn {
    border-color: rgba(255,209,102,0.3);
    color: var(--color-gold);
    background: rgba(255,209,102,0.06);
}

.suno-btn:hover {
    background: rgba(255,209,102,0.12);
    border-color: var(--color-gold);
}

/* ========================================
   FAQ SECTION
   ======================================== */

#faq {
    background: linear-gradient(135deg, rgba(11, 179, 90, 0.04) 0%, rgba(10, 10, 10, 0.5) 100%);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
}

.faq-items { display: grid; gap: var(--spacing-lg); }

.faq-item {
    background: rgba(24, 210, 117, 0.07);
    border-left: 4px solid var(--color-emerald-bright);
    padding: var(--spacing-lg);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover { background: rgba(24, 210, 117, 0.12); transform: translateX(5px); }
.faq-item h3 { color: var(--color-emerald-bright); margin-bottom: var(--spacing-sm); }
.faq-item p { color: var(--color-smoke); font-size: 0.95rem; }

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid rgba(24, 210, 117, 0.2);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.footer-anthem-bar {
    display: inline-block;
    background: rgba(255,209,102,0.07);
    border: 1px solid rgba(255,209,102,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--color-gold);
}

.footer-anthem-bar a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-anthem-bar a:hover { text-decoration: underline; }

.footer p { color: var(--color-smoke); font-size: 0.875rem; margin-bottom: var(--spacing-sm); }
.footer-credit { margin-top: var(--spacing-lg); color: var(--color-emerald); font-weight: 600; }

/* Hidden Easter Egg Buttons */
.hidden-rabbit {
    position: fixed;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.2;
    transition: opacity 0.3s var(--ease-out);
    z-index: 50;
}

.hidden-rabbit:hover { opacity: 0.6; }

.hidden-janitor {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.2;
    transition: opacity 0.3s var(--ease-out);
    z-index: 50;
}

.hidden-janitor:hover { opacity: 0.6; }

/* Janitor Mode (Night Theme) */
body.janitor-mode {
    --color-black: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-emerald: #0a8a4a;
    --color-emerald-bright: #0d6a3a;
    --color-gold: #8a7a3a;
    --color-white: #d0d0d0;
    --color-gray-light: #b0b0b0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    section h2 { font-size: 2rem; }
    .hero-tagline { font-size: 1.125rem; }
    .lore-content { font-size: 1rem; }
    .drop-cap { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .social-buttons { flex-direction: column; align-items: center; }
    .social-btn { width: 100%; max-width: 300px; justify-content: center; }
    .hidden-rabbit, .hidden-janitor { font-size: 1.25rem; }
    .vibe-meter { width: 50px; }
    .smoke-canvas { display: none; }
}

@media (max-width: 480px) {
    section h2 { font-size: 1.5rem; }
    .wordmark-svg { max-width: 300px; }
    .hero-tagline { font-size: 1rem; }
    .ca-pill { flex-direction: column; gap: 0.5rem; }
    .ca-pill span { font-size: 0.75rem; }
    .hero-ctas { gap: var(--spacing-sm); }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 1.5rem; }
    .rich-tagline { font-size: 1.25rem; }
    .step-number { font-size: 2rem; }
    .step-card h3 { font-size: 1rem; }
    .tokenomics-grid { grid-template-columns: repeat(2, 1fr); }
    .tokenomics-card p { font-size: 1.25rem; }
    .roadmap-phases { grid-template-columns: 1fr; }
    .faq-items { gap: var(--spacing-md); }
    .faq-item { padding: var(--spacing-md); }
    .faq-item h3 { font-size: 1rem; }
    .faq-item p { font-size: 0.875rem; }
}
