/* ============================================
   КРМКТЛ — Крипто Маркетологи
   Style: VITALIK_HOLDS_LAMBO
   Version: 1.0
   ============================================ */

/* Variables */
:root {
    /* Colors — Layered backgrounds for variety */
    --bg-primary: #0A0A0A;
    --bg-secondary: #101013;
    --bg-tertiary: #16161A;
    --bg-card: #1C1C22;
    --bg-elevated: #222228;
    --bg-light: #28282F;

    /* Section alternating backgrounds */
    --section-dark: #0A0A0A;
    --section-medium: #111115;
    --section-light: #18181D;

    /* Light/Blueprint style sections */
    --section-cream: #F5F0E6;
    --section-paper: #EDE8DC;
    --section-blueprint: #E8E4D9;
    --text-dark: #1A1A1A;
    --text-dark-secondary: #4A4A4A;

    --border-primary: #27272F;
    --border-secondary: #4A4A55;

    --text-primary: #EEEEE8;
    --text-secondary: #A5A49E;
    --text-muted: #8F8F88;

    /* Accent - Orange (ONLY color!) */
    --accent: #FF6B00;
    --accent-deep: #D4540D;
    --accent-glow: rgba(255, 107, 0, 0.15);
    --accent-hover: #FF7D1A;

    /* Supplementary */
    --green: #34D399;
    --green-glow: rgba(52, 211, 153, 0.10);
    --blue: #60A5FA;
    --purple: #A78BFA;

    /* Typography */
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'Onest', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-radius: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: flex;
}

.nav-logo .logo-kr,
.nav-logo .logo-mktl {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav-logo:hover .logo-mktl {
    color: var(--accent);
    animation: logo-pulse 0.6s ease-in-out;
}

@keyframes logo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

.nav-cta {
    padding: 10px 20px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s ease;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-mural {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%),
        url('../img/hero-mural.jpg') center/cover no-repeat;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 50% at 50% 30%,
        transparent 0%,
        var(--bg-primary) 100%
    );
}

.hero-dust {
    position: absolute;
    inset: 0;
    background: url('../img/dust-texture.png') repeat;
    opacity: 0.05;
    animation: dust-float 20s linear infinite;
}

@keyframes dust-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, 100px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 7vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-accent {
    color: var(--accent);
    display: block;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 107, 0, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    color: #FFFFFF;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow:
        0 4px 20px rgba(255, 107, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.6);
}

.trust-item svg {
    color: var(--green);
    width: 20px;
    height: 20px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: subtle-bounce 3s ease-in-out infinite;
    z-index: 10;
    opacity: 0.7;
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.hero-car {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.8;
}

.hero-lambo {
    width: clamp(200px, 40vw, 500px);
    filter: drop-shadow(0 0 60px var(--accent-glow));
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: var(--bg-secondary);
}

/* Secondary button on light backgrounds */
.marketplace .btn-secondary,
.section-light-theme .btn-secondary {
    background: #FFFFFF;
    color: #333333;
    border: 2px solid #333333;
}

.marketplace .btn-secondary:hover,
.section-light-theme .btn-secondary:hover {
    background: #333333;
    color: #FFFFFF;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

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

.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

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

.stat-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-primary);
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.25;
}

/* ============================================
   FOR WHOM SECTION
   ============================================ */

.for-whom {
    padding: var(--section-padding) 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--card-radius);
    padding: 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: var(--border-secondary);
    transform: translateY(-4px);
}

.card-highlight {
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.card-highlight:hover {
    border-color: var(--accent);
}

.card-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.card-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   VALUE SECTION
   ============================================ */

.value {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--card-radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.value-icon {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: var(--section-padding) 0;
}

.cta-box {
    background: var(--section-cream);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top right, rgba(255, 107, 0, 0.08), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
}

.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cta-text {
    font-size: 15px;
    color: var(--text-dark-secondary);
    max-width: 400px;
}

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

.footer {
    padding: 60px 0 30px;
    background: var(--section-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
    display: flex;
}

.footer-logo .logo-kr,
.footer-logo .logo-mktl {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer-logo:hover .logo-mktl {
    color: var(--accent);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-dark-secondary);
    max-width: 280px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-dark-secondary);
    padding: 6px 0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-dark-secondary);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    color: var(--text-dark-secondary);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-dark-secondary);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.vendors-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

.more-count {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 8px;
}

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

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 64px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 28px;
    }

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

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .cta-text {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ============================================
   MOBILE MENU
   ============================================ */

.nav.menu-open .nav-burger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav.menu-open .nav-burger span:nth-child(2) {
    opacity: 0;
}

.nav.menu-open .nav-burger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 40px 24px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-primary);
}

.mobile-menu a:last-child {
    color: var(--accent);
    border-bottom: none;
    margin-top: 20px;
}

/* ============================================
   NAV ENHANCEMENTS
   ============================================ */

.nav-link-highlight {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

/* ============================================
   HERO SECTION — Enhanced with Art
   ============================================ */

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%) contrast(1.15);
    opacity: 0.65;
    z-index: 0;
}

/* Video background with smooth fade-in */
.hero-bg {
    background: var(--bg-primary);
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 70%;
    filter: saturate(0.6) contrast(1.05) brightness(0.9);
    z-index: 0;
    opacity: 0;
    animation: videoFadeIn 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Center vignette for text readability */
        radial-gradient(
            ellipse 100% 80% at 50% 50%,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(10, 10, 10, 0.3) 50%,
            transparent 100%
        ),
        /* Bottom fade to next section */
        linear-gradient(180deg,
            transparent 0%,
            transparent 60%,
            rgba(10, 10, 10, 0.7) 85%,
            var(--bg-primary) 100%
        ),
        /* Top nav area */
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.4) 0%,
            transparent 12%
        );
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
    padding: 50px 0;
    background: var(--section-paper);
    border-top: 1px solid #D4CFC2;
    border-bottom: 1px solid #D4CFC2;
}

.social-proof .proof-label {
    color: #555555;
}

.social-proof .proof-logo {
    color: #333333;
}

.proof-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.proof-logo:hover {
    opacity: 1;
}

.proof-logo-more {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    opacity: 1;
}

/* ============================================
   SECTION DESCRIPTION
   ============================================ */

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* ============================================
   MARKETPLACE SECTION
   ============================================ */

.marketplace {
    padding: var(--section-padding) 0;
    background: var(--section-cream);
    position: relative;
}

.marketplace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 100%);
    pointer-events: none;
}

.marketplace .section-title {
    color: #1A1A1A;
}

.marketplace .section-desc {
    color: #555555;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.market-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: var(--card-radius);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.market-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.market-card h3 {
    color: #1A1A1A;
}

.market-card-desc {
    color: #555555;
}

.market-card-featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.market-card-featured:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
}

.market-card-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.market-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.market-card-logo {
    width: 48px;
    height: 48px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
    overflow: hidden;
    flex-shrink: 0;
}

.market-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.market-card-info h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}

.market-card-category {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #888888;
}

.market-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.market-card-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #5C2A00;
}

.bonus-icon {
    font-size: 16px;
}

.bonus-badge {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: #000;
    padding: 3px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.market-card-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-style: dashed;
}

.market-card-more .more-icon {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 8px;
}

.market-card-more h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.market-card-more p {
    font-size: 12px;
    color: #888888;
    margin-bottom: 16px;
}

/* ============================================
   BUTTON VARIANTS
   ============================================ */

.btn-small {
    padding: 10px 16px;
    font-size: 12px;
}

.btn-glow {
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.3);
}

/* ============================================
   DIVIDER WITH ART
   ============================================ */

/* ============================================
   DECORATIVE ART FLOATS — controlled sizing
   ============================================ */

.art-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.art-float img {
    max-width: 300px;
    max-height: 300px;
    filter: grayscale(100%) contrast(1.2);
}

.art-float-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.art-float-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   DIVIDER SECTION
   ============================================ */

.divider-art {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-primary);
}

.divider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.3);
    opacity: 0.25;
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
}

.divider-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.divider-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 3vw, 28px);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 24px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

/* ============================================
   COMMUNITY SECTION — Video Background
   ============================================ */

.community {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.community-video {
    background: transparent;
}

.community-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.community-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.4);
}

.community-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, transparent 15%),
        linear-gradient(180deg, transparent 85%, var(--bg-primary) 100%);
}

.community .container {
    position: relative;
    z-index: 2;
}

.community .section-header {
    margin-bottom: 48px;
}

.community .section-title {
    color: #FFFFFF;
}

.community .section-desc {
    color: var(--text-secondary);
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.community-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.community-card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

.community-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.community-card p {
    font-size: 14px;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

.community-cta-center {
    text-align: center;
}

.community-cta-center .cta-note {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-text strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

.community-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.community-note {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.community-visual {
    position: relative;
}

.community-image {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(30%) contrast(1.1);
}

.community-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.overlay-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--accent);
}

.stat-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   VENDORS CTA SECTION
   ============================================ */

.vendors-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.vendors-box {
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 107, 0, 0.04));
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 0 80px var(--accent-glow);
    position: relative;
    overflow: hidden;
}

.vendors-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
    pointer-events: none;
}

.vendors-box-art {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 320px;
    height: 320px;
    opacity: 0.15;
    pointer-events: none;
}

.vendors-box-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2);
}

.vendors-content {
    position: relative;
}

.vendors-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    margin: 12px 0;
}

.vendors-content p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 16px;
}

.vendors-pricing {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-from {
    font-size: 14px;
    color: var(--text-muted);
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.vendors-social-proof {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.vendor-proof-item {
    display: flex;
    flex-direction: column;
}

.vendor-proof-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--accent);
}

.vendor-proof-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vendors-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

/* ============================================
   FOOTER WITH ART
   ============================================ */

.footer {
    position: relative;
    padding: 80px 0 30px;
    background: var(--section-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.footer-art {
    display: none; /* Removed per design review */
}

.footer-bg-image {
    display: none;
}

.footer-brand {
    position: relative;
}

.footer-tg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark-secondary);
    transition: all 0.2s ease;
}

.footer-tg:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-tg svg {
    color: var(--accent);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    color: #000;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* ============================================
   RESPONSIVE — New Sections
   ============================================ */

@media (max-width: 1024px) {
    .marketplace-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-visual {
        order: -1;
    }
}

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

    .market-card-more {
        padding: 40px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .divider-art {
        height: 200px;
    }

    .divider-text {
        padding: 0 20px;
        text-align: center;
    }

    .vendors-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .vendors-content p {
        max-width: 100%;
    }

    .vendors-actions {
        width: 100%;
    }

    .vendors-actions .btn {
        width: 100%;
    }

    .vendors-box-art {
        display: none;
    }

    .community-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-art {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
