:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent-color: #d4af37;
    --accent-color-light: #f5d98a;
    --accent-color-dark: #b8860b;
    --accent-rgb: 212, 175, 55;
    --accent-gradient: linear-gradient(135deg, #f7e6a8 0%, #d4af37 45%, #b8860b 100%);
    --nav-border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
    --font-main: 'Inter', sans-serif;
}

/* Global */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none;
}

body.no-custom-cursor .cursor,
body.no-custom-cursor .cursor-follower {
    display: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-content svg,
.preloader-logo {
    width: auto;
    height: 140px;
    max-width: 260px;
    object-fit: contain;
    animation: pulse 1.5s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardGlowDrift {
    0% {
        transform: translate3d(-6%, -4%, 0) scale(1);
    }
    50% {
        transform: translate3d(4%, 6%, 0) scale(1.04);
    }
    100% {
        transform: translate3d(-6%, -4%, 0) scale(1);
    }
}

@keyframes heroCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Background */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #050505;
    pointer-events: none;
}

#particle-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Performance mode (auto-enabled on low-power devices) */
body.performance-mode {
    cursor: auto;
}

body.performance-mode .cursor,
body.performance-mode .cursor-follower {
    display: none;
}

body.performance-mode .background-mesh {
    opacity: 0.6;
}

body.performance-mode .tilt-card::before {
    animation: none;
}

body.performance-mode .tilt-card,
body.performance-mode .card,
body.performance-mode .why-choose-card,
body.performance-mode .listing-card,
body.performance-mode .verified-sale-card,
body.performance-mode .marketplace-card,
body.performance-mode .valuation-card,
body.performance-mode .modal,
body.performance-mode .nda-modal,
body.performance-mode .info-box {
    backdrop-filter: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

body.performance-mode .listing-card:hover,
body.performance-mode .card:hover,
body.performance-mode .why-choose-card:hover,
body.performance-mode .marketplace-card:hover {
    transform: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

body.performance-mode .animate-text,
body.performance-mode .animate-text.delay-1,
body.performance-mode .animate-text.delay-2 {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Cursor */
.cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(var(--cursor-x, 0px), var(--cursor-y, 0px), 0) translate(-50%, -50%);
    will-change: transform;
}

.cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate3d(var(--cursor-x, 0px), var(--cursor-y, 0px), 0) translate(-50%, -50%) scale(var(--cursor-scale, 1));
    transition: background-color 0.2s ease, border-color 0.2s ease;
    will-change: transform;
}

.cursor-follower.active {
    --cursor-scale: 1.5;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (hover: none), (pointer: coarse) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ticker {
        animation: none !important;
    }

    .hero-cards .tilt-card-wrapper {
        animation: none;
    }

    .tilt-card::before {
        animation: none;
    }
}

@media (max-width: 1100px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .institutional-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .navbar {
        padding: 1.25rem 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }

    .nav-actions {
        gap: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--nav-border);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.logo-image {
    width: auto;
    height: clamp(44px, 6vw, 64px);
    max-width: clamp(140px, 24vw, 240px);
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--nav-border);
}

.btn-primary {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-primary:hover {
    color: var(--accent-color);
}

.nav-actions .btn-primary {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-actions .btn-primary:hover {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: translateY(-1px);
}

.divider {
    width: 1px;
    height: 15px;
    background-color: var(--nav-border);
}

.icon-link {
    color: var(--text-primary);
    font-size: 1rem;
    transition: transform 0.2s;
}

.icon-link:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 120;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 110;
}

.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: rgba(5, 5, 5, 0.95);
    border-left: 1px solid var(--nav-border);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 120;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-sidebar.is-open {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.mobile-close {
    background: transparent;
    border: 1px solid var(--nav-border);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-actions .btn-primary {
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--accent-color);
    border-radius: 999px;
    text-align: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 0 2rem;
    padding-top: 120px;
}

.hero-content {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-copy p {
    margin-left: 0;
    margin-right: 0;
}

.hero-copy .hero-cards {
    justify-content: flex-start;
}

.hero-feature-card {
    max-width: 480px;
    width: 100%;
    border: 1px solid var(--nav-border);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(7, 7, 7, 0.75);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-feature-media {
    position: relative;
}

.hero-feature-media img {
    width: 100%;
    height: clamp(220px, 32vw, 280px);
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-feature-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-feature-pill--genre {
    left: auto;
    right: 16px;
    background: rgba(19, 19, 19, 0.85);
}

.hero-feature-body {
    padding: 1.4rem 1.6rem 1.6rem;
    background: linear-gradient(135deg, rgba(35, 58, 68, 0.92), rgba(45, 26, 28, 0.95));
}

.hero-feature-title {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.hero-feature-byline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.hero-feature-byline-label {
    font-size: 0.85rem;
}

.hero-feature-byline-name {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-feature-verified {
    display: inline-block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.hero-feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.hero-feature-stat {
    flex: 1 1 calc(50% - 0.6rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #cbd5e1;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-feature-stat i {
    color: var(--accent-color-light);
    font-size: 0.85rem;
}

.hero-feature-stat--accent {
    background: rgba(var(--accent-rgb), 0.18);
    border-color: rgba(var(--accent-rgb), 0.45);
    color: #f7e6a8;
}

.hero-feature-price {
    font-size: 1.7rem;
    font-weight: 700;
}

.hero-feature-price-note {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.4rem;
}

.hero-feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.65);
}

.hero-feature-card:hover .hero-feature-media img {
    transform: scale(1.04);
    filter: saturate(1.1);
}

.hero-feature-card:hover .hero-feature-pill {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.hero-feature-card:hover .hero-feature-stat {
    border-color: rgba(var(--accent-rgb), 0.4);
    background: rgba(var(--accent-rgb), 0.12);
}

.hero-feature-card:hover .hero-feature-stat--accent {
    background: rgba(var(--accent-rgb), 0.22);
    border-color: rgba(var(--accent-rgb), 0.6);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.9rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tilt-card-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.hero-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-cards .tilt-card-wrapper {
    width: min(90vw, 380px);
    flex: 1 1 320px;
    animation: heroCardFloat 10s ease-in-out infinite;
    will-change: transform;
}

.hero-cards .tilt-card {
    height: clamp(320px, 42vh, 380px);
    display: flex;
    align-items: stretch;
}

.hero-cards .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.hero-cards .card-content p {
    max-width: 260px;
    min-height: 3.5rem;
}

.hero-cards .card-content .btn-hero {
    margin-top: auto;
}


.tilt-card {
    background: var(--card-bg);
    border: 1px solid var(--nav-border);
    padding: 2.5rem 4rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.1s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.tilt-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.16), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(var(--accent-rgb), 0.18), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb), 0.12), transparent 55%);
    animation: cardGlowDrift 18s ease-in-out infinite;
    z-index: 0;
}

.tilt-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.card-content {
    transform: translateZ(20px);
    position: relative;
    z-index: 2;
}

.tilt-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.btn-hero {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: var(--accent-gradient);
    color: white;
}

/* Sections & Grids */
.section-container {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Institutional & Crypto */
.institutional-section {
    text-align: center;
}

.institutional-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.institutional-step {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--nav-border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.institutional-step:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.institutional-step h3 {
    margin: 1rem 0 0.6rem;
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--text-primary);
    font-weight: 700;
}

.institutional-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.institutional-note {
    max-width: 640px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--nav-border);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.icon-large {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Why Choose Enemy */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.why-choose-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--nav-border);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 0 28px rgba(var(--accent-rgb), 0.2);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.why-choose-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

/* Ticker & Stats */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--card-bg);
    border-y: 1px solid var(--nav-border);
    padding: 1rem 0;
    backdrop-filter: blur(5px);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 4rem;
    border-top: 1px solid var(--nav-border);
    background: #080808;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Trusted By */
.trusted-by-section {
    padding: 3rem 2rem 1rem;
    border-top: 1px solid var(--nav-border);
    text-align: center;
}

.trusted-by-title {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.trusted-by-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.trusted-by-item {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.trusted-by-item i {
    color: #34d399;
    font-size: 1.4rem;
}

/* Footer */
.main-footer {
    padding: 5rem 2rem;
    background: #000;
    text-align: center;
    border-top: 1px solid var(--nav-border);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: auto;
    height: 60px;
    max-width: 260px;
    object-fit: contain;
}

.footer-site-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--nav-border);
    background: rgba(255, 255, 255, 0.04);
    margin-top: 0.6rem;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-site-link:hover {
    color: #ffffff;
    background: var(--accent-gradient);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-discord-btn {
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 0.7rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, background-color 0.2s;
}

.footer-discord-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-gradient);
    color: white;
}

.copyright {
    margin-top: 4rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* --- LIVE LISTINGS --- */
.listings-section {
    padding: 7rem 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.listings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.listings-header h2 {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    margin-bottom: 0.8rem;
}

.listing-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--nav-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.listing-card {
    background: var(--card-bg);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
}

.listing-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.listing-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.listing-title {
    font-size: 1.1rem;
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.listing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

/* --- LISTING BADGES & NDA --- */
.listing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.listing-badges:empty {
    display: none;
}

.listing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--nav-border);
    color: var(--text-secondary);
}

.listing-badge--verified {
    color: var(--accent-color);
    border-color: rgba(96, 165, 250, 0.4);
}

.listing-badge--revenue {
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.4);
}

.listing-badge--escrow {
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.4);
}

.listing-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.listing-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.listing-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.listing-btn--locked {
    background: transparent;
    border: 1px solid #ef4444;
    color: #ef4444;
}

.nda-locked .listing-title,
.nda-locked .listing-revenue {
    filter: blur(6px);
    user-select: none;
}

/* --- SECURITY & PROCESS --- */
.process-section {
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(var(--accent-rgb), 0.3);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    color: var(--accent-color);
    font-size: 1.4rem;
}

.process-icon-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

/* --- VERIFIED SALES --- */
.verified-sales-section {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--nav-border);
}

.verified-sales-carousel {
    overflow: hidden;
    padding: 0 2rem;
}

.verified-sales-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: verified-scroll 30s linear infinite;
}

.verified-sale-card {
    min-width: 220px;
    height: 220px;
    background: var(--card-bg);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.2rem;
}

.verified-thumb {
    position: absolute;
    inset: 0;
    display: block;
    cursor: pointer;
    z-index: 1;
}

.verified-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
}

.verified-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.75));
}

.sold-stamp {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) rotate(-12deg);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;
}

.verified-price {
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    pointer-events: none;
}

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

/* --- FAQ --- */
.faq-section {
    padding-top: 4rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.is-open .faq-answer {
    padding-bottom: 1.2rem;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

/* --- VALUATION CALCULATOR --- */
.valuation-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--nav-border);
    background: rgba(var(--accent-rgb), 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.valuation-open {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-primary);
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.valuation-open:hover {
    transform: translateY(-1px);
    background: rgba(var(--accent-rgb), 0.2);
}

.valuation-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.valuation-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.valuation-modal {
    width: min(92vw, 480px);
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    backdrop-filter: blur(14px);
    position: relative;
    text-align: center;
}

.valuation-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.valuation-close:hover {
    color: #ef4444;
}

.valuation-rate {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.valuation-input-group {
    text-align: left;
    margin: 1.5rem 0 0.5rem;
}

.valuation-input-group input {
    width: 100%;
}

.valuation-calc-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.9rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: white;
    margin-top: 0.8rem;
    cursor: pointer;
}

.valuation-result {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.valuation-result h4 {
    font-size: 2rem;
    margin-top: 0.4rem;
}

.valuation-error {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    margin: 0.4rem 0;
}

.valuation-error.is-visible {
    display: block;
}

/* --- NDA GATE MODAL --- */
.nda-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.nda-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nda-modal {
    width: min(92vw, 420px);
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nda-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nda-close:hover {
    color: #ef4444;
}

.nda-modal input {
    width: 100%;
    margin: 0.8rem 0 1rem;
}

.nda-submit {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.8rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: white;
    cursor: pointer;
}

/* --- LIVE ACTIVITY TOASTS --- */
.toast-stack {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2300;
    pointer-events: none;
}

.activity-toast {
    min-width: 220px;
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-weight: 600;
    transform: translateX(120%);
    opacity: 0;
    animation: toast-in 0.4s ease forwards, toast-out 0.4s ease 4s forwards;
}

@keyframes toast-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-out {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* --- FORM STYLES --- */
.form-section {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marketplace-section {
    padding: 8rem 4rem 4rem;
    min-height: 100vh;
}

.marketplace-header {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.marketplace-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
}

.marketplace-header p {
    max-width: 700px;
}

.marketplace-subnote {
    margin-top: 0.6rem;
    max-width: 720px;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.marketplace-category {
    margin-bottom: 3rem;
}

.marketplace-category:last-of-type {
    margin-bottom: 2rem;
}

.marketplace-category-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 0 auto 1.5rem;
    max-width: 1100px;
}

.marketplace-category-header h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin: 0;
}

.marketplace-category-header p {
    margin: 0;
    color: var(--text-secondary);
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.marketplace-card {
    background: var(--card-bg);
    border: 1px solid var(--nav-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.marketplace-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.marketplace-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.marketplace-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
}

.marketplace-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-color);
    background: radial-gradient(circle at top, rgba(var(--accent-rgb), 0.25), rgba(0, 0, 0, 0.2));
    text-align: center;
    padding: 1rem;
}

.marketplace-body {
    padding: 1.2rem 1.2rem 1rem;
}

.marketplace-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.marketplace-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.18);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    color: var(--text-primary);
}

.marketplace-genre {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--nav-border);
    color: var(--text-secondary);
}

.marketplace-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.marketplace-price {
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.marketplace-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.marketplace-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: #b6b6b6;
}

.marketplace-stat i {
    color: var(--accent-color-light);
    font-size: 0.85rem;
}

.marketplace-stat.stat-missing {
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
}

.marketplace-stat.stat-missing i {
    color: #f87171;
}

.robux-stat {
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}

.robux-stat .robux-label {
    font-weight: 700;
    color: #4ade80;
}

.robux-stat.robux-positive {
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}

.robux-stat.robux-positive .robux-label {
    color: #4ade80;
}

.robux-stat.robux-negative {
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
}

.robux-stat.robux-negative .robux-label {
    color: #f87171;
}

.marketplace-cta {
    padding: 0 1.2rem 1.2rem;
}

.marketplace-add {
    width: 100%;
    border-radius: 12px;
    border: 1px solid transparent;
    background: var(--accent-gradient);
    color: var(--text-primary);
    padding: 0.65rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.marketplace-add:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.marketplace-note {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.08);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.marketplace-note i {
    color: var(--accent-color);
    margin-top: 0.15rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
}

.form-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--nav-border);
    padding: 3rem;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.website-group {
    display: none;
}

.website-group.is-visible {
    display: flex;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
}

input,
select,
textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--nav-border);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 8px;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.checkbox-group input {
    margin-top: 5px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--accent-color);
    background: rgba(var(--accent-rgb), 0.05);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: filter 0.2s;
}

.btn-submit:hover {
    filter: brightness(1.2);
}

/* --- FORM VALIDATION --- */
.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4);
}

.checkbox-group.input-error {
    border-color: #ef4444;
}

/* --- SUCCESS MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    padding: 2rem;
    width: min(90vw, 420px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.modal p {
    margin-bottom: 1.6rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.modal-link:hover {
    transform: translateY(-1px);
    background: var(--accent-gradient);
    color: #111;
}

.modal-link.is-hidden {
    display: none;
}

.modal-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 980px) {
    .hero {
        text-align: center;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy .hero-cards {
        justify-content: center;
    }

    .hero-feature-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding-top: 110px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .section-container {
        padding: 5rem 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .institutional-steps {
        grid-template-columns: 1fr;
    }

    .marketplace-section {
        padding: 8rem 1.5rem 4rem;
    }

    .marketplace-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

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

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

    .form-section {
        padding: 7rem 1.5rem 3rem;
    }

    .form-container {
        padding: 2rem;
    }

    .listings-section {
        padding: 6rem 1.5rem 2rem;
    }

    .listings-header h2 {
        font-size: 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 32px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .process-step {
        text-align: left;
        padding-left: 3.5rem;
    }

    .process-icon {
        margin: 0 0 1rem;
    }

    .valuation-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .verified-sales-carousel {
        padding: 0 1rem;
    }

    .trusted-by-row {
        gap: 1.5rem;
    }

    .trusted-by-item {
        font-size: 1rem;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-top: 100px;
    }

    .badge {
        font-size: 0.7rem;
        letter-spacing: 1.2px;
    }

    .hero p {
        margin-bottom: 2rem;
    }

    .hero-cards {
        gap: 1.2rem;
    }

    .hero-cards .tilt-card-wrapper {
        width: 100%;
    }

    .hero-cards .tilt-card {
        height: auto;
        min-height: 280px;
    }

    .hero-feature-media img {
        height: 210px;
    }

    .hero-feature-stat {
        flex: 1 1 calc(50% - 0.5rem);
        font-size: 0.85rem;
    }

    .tilt-card {
        padding: 2rem 1.6rem;
    }

    .btn-hero,
    .btn-submit,
    .marketplace-add {
        width: 100%;
        text-align: center;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .marketplace-header {
        margin-bottom: 2rem;
    }

    .marketplace-category {
        margin-bottom: 2.2rem;
    }

    .marketplace-thumb {
        height: 150px;
    }

    .marketplace-stats-grid {
        grid-template-columns: 1fr;
    }

    .listings-section {
        padding: 6rem 1.5rem 2rem;
    }

    .listing-image {
        height: 140px;
    }

    .verified-sale-card {
        min-width: 180px;
        height: 180px;
    }

    .sold-stamp {
        top: 18px;
        font-size: 0.75rem;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-container {
        padding: 1.6rem;
    }

    .modal,
    .valuation-modal,
    .nda-modal {
        padding: 1.5rem;
    }

    .valuation-result h4 {
        font-size: 1.6rem;
    }
}

