:root {
    --bg-main: #0a0a0a;
    --bg-sec: #141414;
    --accent: #E0FF00; /* Volt Yellow */
    --text-main: #ffffff;
    --text-muted: #888888;
    --border: #333333;
    
    --font-heading: 'Anton', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

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

/* ================= NAV ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

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

.btn-primary {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 0;
    transition: all 0.3s;
}

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

/* ================= HERO ================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518063319789-7217e6706b04?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.kicker {
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

h1.glitch {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-solid {
    background: var(--accent);
    color: #000;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1rem 2.5rem;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid var(--accent);
    transition: all 0.3s;
}

.btn-solid:hover {
    background: transparent;
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 1rem 2.5rem;
    letter-spacing: 1px;
    display: inline-block;
    border: 1px solid var(--text-main);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--text-main);
    color: #000;
}

/* ================= TICKER ================= */
.marquee {
    background: var(--accent);
    color: #000;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.marquee-content span {
    padding: 0 2rem;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================= STATS BAND ================= */
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: var(--bg-sec);
}

.stat-block {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-block:last-child {
    border-right: none;
}

.stat-block h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-block p {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ================= SPLIT SECTION ================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

.split-section.reverse .split-text {
    order: 2;
    border-right: none;
    border-left: 1px solid var(--border);
}

.split-section.reverse .split-image {
    order: 1;
}

.split-text {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-right: 1px solid var(--border);
}

.split-text .tag {
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid var(--accent);
    padding: 0.25rem 0.75rem;
}

.split-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease;
}

.split-section:hover .split-image img {
    filter: grayscale(0%) contrast(1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #222 url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.video-placeholder span {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    padding: 1rem 2rem;
    border: 2px solid var(--text-main);
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder span:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ================= COMMON SECTION ================= */
.section-header {
    text-align: center;
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-header p {
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ================= COLLECTIONS ================= */
.collection-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    group;
}

.collection-card:last-child {
    border-right: none;
}

.card-img {
    height: 500px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.collection-card:hover .card-img {
    filter: grayscale(0%);
}

.card-content {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-main);
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
}

.arrow-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
}

/* ================= ROADMAP ================= */
.roadmap {
    border-bottom: 1px solid var(--border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.step {
    padding: 3rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.step:last-child {
    border-right: none;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--border);
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
    z-index: 0;
}

.step h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ================= REVIEWS ================= */
.reviews {
    border-bottom: 1px solid var(--border);
}

.review-box {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
    text-align: center;
    background: var(--bg-sec);
}

.review-box:last-child {
    border-right: none;
}

.quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.author {
    font-family: var(--font-display);
    color: var(--accent);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ================= CTA BANNER ================= */
.cta-banner {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--accent);
    color: #000;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.cta-banner p {
    font-family: var(--font-display);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #000;
}

.email-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #000;
    outline: none;
}

.email-form input::placeholder {
    color: rgba(0,0,0,0.5);
}

.email-form button {
    padding: 0 2rem;
    background: #000;
    color: var(--accent);
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.email-form button:hover {
    background: #222;
}

/* ================= FOOTER ================= */
footer {
    padding: 5rem 4rem 2rem;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.75rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-family: var(--font-display);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ================= UTILS & RESPONSIVE ================= */
.mt-4 { margin-top: 2rem; }

@media (max-width: 1024px) {
    .stats-band, .grid-3, .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-image {
        min-height: 400px;
    }
    .split-section.reverse .split-text {
        order: 1;
    }
    .split-section.reverse .split-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    h1.glitch { font-size: 4rem; }
    .hero-buttons { flex-direction: column; }
    .stats-band, .grid-3, .process-steps, .footer-grid {
        grid-template-columns: 1fr;
    }
    .stat-block, .collection-card, .step, .review-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}
