:root {
    --bg-dark: #0a0a0a;
    --bg-alt: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --brand-orange: #FF8C00;
    --brand-orange-hover: #ff9d2e;
    --brand-accent: #E1306C;
    --brand-cyan: #00F2FE;

    --border-color: rgba(255, 255, 255, 0.1);

    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html,
body {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.h-full { height: 100%; }
.parallax { will-change: transform; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.max-w-2xl { max-width: 672px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.text-orange { background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; padding-bottom: 0.2em; margin-bottom: -0.2em; filter: brightness(1.1); }
.text-accent { color: var(--brand-accent); }
.text-cyan { color: var(--brand-cyan); }
.text-muted { color: var(--text-muted); }
.mono { font-family: monospace; }
.bg-alt { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--bg-dark); }
.border-orange { border-color: var(--brand-orange) !important; }

/* Buttons */
.btn-primary { background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-accent) 100%); color: #000; font-weight: 800; padding: 16px 36px; border-radius: 40px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2); }

.btn-primary:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 40px;
    border: 2px solid var(--border-color);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 12px;
}

/* Header */
.main-header {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 1100px;
    height: 64px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo img { width: 36px; height: 36px; object-fit: contain; }
.logo span { font-family: var(--font-heading); font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }

.top-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

/* Layout */
.section {
    padding: 110px 0;
}

.section-header {
    margin-bottom: 80px;
}

.mission-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 100px; align-items: center; }

.mission-content {
    padding-right: 64px;
}

.massive-heading { font-family: var(--font-heading); font-size: 64px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }

/* Interactive Video Wrappers */
.interactive-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.interactive-video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-media:hover .interactive-video-poster,
.mission-graphic:hover .interactive-video-poster {
    transform: scale(1.05);
}

.hero-media:hover .play-btn,
.mission-graphic:hover .play-btn {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.9);
}

.hero-media:hover .play-btn i,
.mission-graphic:hover .play-btn i {
    color: var(--brand-orange);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.95) 100%),
        radial-gradient(circle at center, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    width: 100%;
    max-width: 1600px !important;
}

.hero-content {
    max-width: 900px;
    margin-top: -100px;
    margin-left: 100px;
}

.hero-title { font-family: var(--font-heading); font-size: 100px; line-height: 1.1; font-weight: 900; margin-bottom: 32px; letter-spacing: -2px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.hero-title .text-orange {
    text-shadow: none;
    /* Prevents shadow from bleeding through transparent text */
    filter: drop-shadow(0 4px 24px rgba(255, 140, 0, 0.4)) brightness(1.1);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 56px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 24px;
}

/* Animated Ecosystem Graphic */
.animated-ecosystem-container {
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
}

.anim-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.anim-ring.r1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.anim-ring.r2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

.anim-ring.r3 {
    width: 400px;
    height: 400px;
    animation-delay: 2s;
    border-color: rgba(255, 140, 0, 0.1);
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.anim-device {
    position: relative;
    width: 140px;
    height: 280px;
    border-radius: 24px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    z-index: 5;
    animation: floatDevice 6s infinite ease-in-out;
}

@keyframes floatDevice {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.device-notch {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 24px;
}

.device-album {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
    }

    100% {
        box-shadow: 0 10px 40px rgba(255, 140, 0, 0.6);
    }
}

.device-track-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.device-track-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: var(--brand-orange);
    border-radius: 2px;
}

.device-track-bar.short {
    width: 60%;
    align-self: flex-start;
    margin-bottom: 24px;
}

.device-track-bar.short::after {
    display: none;
}

.device-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.anim-float-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px 10px 10px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: floatOrbit 8s infinite ease-in-out;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
}

.float-text {
    display: flex;
    flex-direction: column;
}

.float-text .action {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.float-amount {
    font-weight: 800;
    font-size: 15px;
    font-family: var(--font-heading);
    margin-top: -2px;
}

.anim-float-item.t1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    border-color: rgba(255, 140, 0, 0.3);
}

.anim-float-item.t2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
    border-color: rgba(225, 48, 108, 0.3);
}

.anim-float-item.t3 {
    top: 30%;
    right: 10%;
    animation-delay: 3s;
    border-color: rgba(0, 242, 254, 0.3);
}

@keyframes floatOrbit {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(15px, -15px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.95);
    }
}

/* --- NEW: STICKY SCROLL SECTION --- */
.scroll-track {
    /* Height is set inline (e.g. 300vh) */
    position: relative;
    background: transparent;
}


.stacking-cards-section { position: relative; padding-bottom: 5vh; }

.feature-card-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4vh; /* Nudge down slightly to balance with header */
    /* Default center for Card 1 */
    pointer-events: none;
    scroll-snap-align: center;
    perspective: 1000px;
}

/* Staggered Stacking Effect */
.feature-card-wrapper:nth-child(2) {
    align-items: flex-end;
    padding-bottom: 8vh;
    /* 2vh lower than card 1 for the 'longer' bottom */
}

.feature-card-wrapper:nth-child(2) .feature-card {
    height: calc(82vh - 40px);
    margin-top: 4vh;
}

.feature-card {
    position: relative;
    height: 80vh;
    width: calc(100% - 96px);
    max-width: 1400px;
    background: #ffffff;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    display: flex;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
}

/* Card Stack & Animation States */
.feature-card-wrapper .feature-card {
    transform: translateY(100px) rotateX(10deg) scale(0.9);
    opacity: 0;
}

.feature-card-wrapper.is-active .feature-card {
    transform: translateY(0) rotateX(0) scale(1);
    opacity: 1;
}

/* Scale down the card underneath */
.feature-card-wrapper.is-active~.feature-card-wrapper .feature-card {
    /* Subsequent cards stay in their initial state */
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.feature-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sticky-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.sticky-text-container {
    flex: 1;
    max-width: 500px;
}

.sticky-visual-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.block-tag { font-family: var(--font-heading); font-size: 14px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; display: block; }
.block-heading { font-family: var(--font-heading); font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; color: #0a0a0a; }
.block-desc { font-size: 20px; color: #444; line-height: 1.6; }

/* Custom Device Frame */
.custom-device-frame {
    background: transparent !important;
    border: none !important;
    border-radius: 40px;
    box-shadow: none !important;
}

.frame-screen-composite {
    background: transparent !important;
}

.reward-notify-animation {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 28px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 0.5px rgba(255,255,255,0.4);
    width: calc(100% - 32px);
    animation: slideInNotify 5s infinite cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

@keyframes slideInNotify {
    0% { transform: translate(-50%, -40px); opacity: 0; filter: blur(10px); }
    10%, 90% { transform: translate(-50%, 0); opacity: 1; filter: blur(0); }
    100% { transform: translate(-50%, -10px); opacity: 0; filter: blur(5px); }
}

.app-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.notify-title { font-size: 11px; font-weight: 600; color: rgba(0,0,0,0.5); text-transform: none; letter-spacing: -0.2px; margin-bottom: 2px; display: flex; justify-content: space-between; align-items: center; width: 100%; }
.notify-subtitle { font-size: 14px; font-weight: 700; color: #000; letter-spacing: -0.3px; }

.artist-scroll-wrapper { width: 100vw; margin-left: calc(50% - 50vw); }

/* Mission stats */
.mission-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stat-num { font-family: var(--font-heading); font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Token sale banner */
.token-sale-banner { position: relative; border-radius: 48px; padding: 100px 64px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); }
.token-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; }

/* Roadmap timeline */
.roadmap-timeline { padding: 60px 0; }
.timeline-track { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.05); transform: translateX(-50%); }
.timeline-progress { position: absolute; left: 0; top: 0; width: 100%; background: var(--brand-orange); transition: height 0.3s ease; box-shadow: 0 0 20px var(--brand-orange); }
.timeline-item { position: relative; width: 50%; padding: 40px; }
.timeline-item:nth-child(even) { margin-left: auto; text-align: left; }
.timeline-item:nth-child(odd) { text-align: right; padding-right: 60px; }
.timeline-item:nth-child(even) { padding-left: 60px; }
.timeline-dot { position: absolute; right: -10px; top: 60px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-dark); border: 2px solid rgba(255,255,255,0.2); z-index: 2; transition: all 0.4s ease; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; right: auto; }
.timeline-item.active .timeline-dot { border-color: var(--brand-orange); background: var(--brand-orange); box-shadow: 0 0 15px var(--brand-orange); }

.timeline-stats { display: flex; gap: 24px; margin-top: 24px; font-weight: 700; font-size: 14px; }
.timeline-item:nth-child(odd) .timeline-stats { justify-content: flex-end; }

.valuation-banner { padding: 64px; border-radius: 40px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.valuation-amount { font-family: var(--font-heading); font-size: 80px; font-weight: 900; margin: 16px 0; }

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 64px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .hero-title { font-size: 72px; }
    .massive-heading { font-size: 48px; }
    .sticky-content-split { flex-direction: column; height: auto; gap: 48px; }
    .mission-grid { grid-template-columns: 1fr; gap: 48px; }
    .scroll-step { position: relative; transform: none; top: 0; display: none; text-align: center; }
    .scroll-step.active { display: block; transform: none; }
    .comparison-table th, .comparison-table td { padding: 16px 12px; }
    .comparison-table-wrapper { padding: 24px 16px; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .roadmap-timeline { padding: 32px 0; }
    .timeline-track { left: 24px; transform: none; }
    .timeline-item { width: 100%; padding-left: 80px; padding-right: 0; }
    .timeline-item:nth-child(even) { margin-left: 0; padding-left: 80px; }
    .timeline-dot { left: 15px; right: auto; }
    .timeline-item:nth-child(even) .timeline-dot { left: 15px; }
}

@media (max-width: 768px) {
    .top-nav { display: none; }
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 18px; margin-bottom: 40px; }
    .massive-heading { font-size: 36px !important; }
    .hero-actions { flex-direction: column; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 32px; }
    .mission-grid { gap: 32px; }
    .animated-ecosystem-container { height: 400px; padding: 16px; }
    .anim-float-item { padding: 6px 12px 6px 6px; }
    .icon-circle { width: 24px; height: 24px; }
    .icon-circle i { width: 12px; height: 12px; }
    .float-text .action { font-size: 8px; }
    .float-amount { font-size: 12px; }
    .anim-float-item.t1 { top: 5%; left: 0%; }
    .anim-float-item.t2 { bottom: 5%; right: 0%; }
    .anim-float-item.t3 { top: 15%; right: 0%; }
    .device-frame { max-width: 280px; }
    .block-heading { font-size: 32px; }
    .block-desc { font-size: 16px; }
    .card-price { font-size: 48px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .token-sale-banner { padding: 40px 24px; }
    .valuation-amount { font-size: 48px; }
    .valuation-banner { padding: 32px 16px; }
    .timeline-item { padding-left: 56px; }
    .timeline-item:nth-child(even) { padding-left: 56px; }
    .timeline-track { left: 16px; }
    .timeline-dot { left: 5px; width: 20px; height: 20px; }
    .timeline-item:nth-child(even) .timeline-dot { left: 5px; }
}

/* Add snap alignment to major sections */
.hero-section,
.section,
.footer {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

/* Ensure cards snap centered and don't get skipped */
.feature-card-wrapper {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.artist-benefit-item:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.02);
}

.artist-benefit-item:hover h4 {
    color: var(--text-orange) !important;
}

/* ============================= */
/* Accessibility: focus & motion */
/* ============================= */
:focus-visible {
    outline: 2px solid var(--brand-orange);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 24px;
    z-index: 1000;
    background: var(--brand-orange);
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 24px;
}

section[id],
.stacking-cards-section {
    scroll-margin-top: 100px;
}

.mr-2 { margin-right: 8px; }

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    html, body {
        scroll-behavior: auto;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }
}

/* ============================= */
/* Eyebrows, pills & badges       */
/* ============================= */
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

.audience-proof-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 32px 40px;
    background: linear-gradient(to top, var(--bg-dark) 40%, rgba(10, 10, 10, 0) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
}

.audience-statement {
    max-width: 720px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    line-height: 1.5;
}

.audience-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.audience-badges.justify-center { justify-content: center; }

.badge-pill {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
}

.badge-pill-muted {
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.1);
}

.partners-label,
.future-vision-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-reassurance {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.hero-reassurance i {
    width: 18px;
    height: 18px;
    color: var(--brand-orange);
}

/* ============================= */
/* Value pillars (Mission)        */
/* ============================= */
.value-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.value-pillar h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.value-pillar p {
    font-size: 15px;
    line-height: 1.6;
}

/* ============================= */
/* Pillar / How-it-works cards    */
/* ============================= */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 28px;
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    display: block;
    margin-bottom: 16px;
}

.pillar-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: block;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* ============================= */
/* Feature lists (Artists/Fans)   */
/* ============================= */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.feature-list li i {
    width: 18px;
    height: 18px;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.feature-list-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    text-align: left;
}

.block-footnote {
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.5;
}

/* ============================= */
/* Vision chain                   */
/* ============================= */
.vision-chain {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.vision-chain-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 22px;
    border-radius: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.vision-chain-arrow {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.vision-chain-arrow i {
    width: 16px;
    height: 16px;
}

/* ============================= */
/* Investor section (understated) */
/* ============================= */
.investor-section {
    background: var(--bg-alt);
}

.investor-pillars {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    font-size: 14px;
    max-width: 800px;
}

.investor-pillars li::before {
    content: '\2022';
    color: var(--brand-orange);
    margin-right: 8px;
}

/* ============================= */
/* Final CTA                      */
/* ============================= */
.final-cta-section {
    background: radial-gradient(circle at center, rgba(255, 140, 0, 0.08) 0%, var(--bg-dark) 70%);
}

/* ============================= */
/* Footer                         */
/* ============================= */
.footer-top {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-nav a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--text-main);
}

.footer-status {
    font-size: 12px;
    max-width: 700px;
    margin: 0 auto 24px;
    text-align: center;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
}

/* ============================= */
/* Mobile navigation               */
/* ============================= */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-panel {
    position: fixed;
    top: 90px;
    left: 24px;
    right: 24px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-nav-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-panel .nav-link {
    padding: 14px 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-panel .nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-panel .btn-primary {
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .value-pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .feature-list-inline {
        grid-template-columns: 1fr;
    }

    .mission-graphic[style*="order: 1"] {
        order: 0 !important;
    }
}

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