/* Global Variables & Reset */
:root {
    --bg-color: #030303;
    --text-main: #ffffff;
    --text-muted: #888888;
    --neon-cyan: #00f3ff;
    --neon-violet: #b026ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body,
html {
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo,
.footer-logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Utility Classes */
.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transform: scale(1.5);
    transform-origin: left center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    background: radial-gradient(circle at center, #1a052b 0%, var(--bg-color) 70%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1540039155732-d674140af278?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.15;
    mix-blend-mode: screen;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--neon-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--neon-violet);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
    background: rgba(176, 38, 255, 0.1);
}

/* Services (Bento Grid) */
.services {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    z-index: 2;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    z-index: 2;
}

.span-2 {
    grid-column: span 2;
}

/* Custom Backgrounds for Bento */
.live-bg {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.broadcast-bg {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(0, 243, 255, 0.05));
}

.ips-bg {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7), rgba(176, 38, 255, 0.1)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
}

/* Approach Section */
.approach {
    padding: 10rem 2rem;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.massive-text {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    max-width: 1400px;
    margin: 0 auto;
    color: #222;
    transition: color 0.5s ease;
}

.approach:hover .massive-text {
    color: #fff;
}

.neon-text {
    color: var(--text-main);
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

/* Original IPs Section */
.original-ips {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.ip-card {
    height: 500px;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.ip-card:nth-child(1) {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent), url('https://images.unsplash.com/photo-1533162711139-2a905a396446?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.ip-card:nth-child(2) {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent), url('https://images.unsplash.com/photo-1598387993281-cecf8b71a8f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.ip-content {
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.ip-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.ip-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.ip-card p {
    color: #aaa;
    font-size: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.ip-card:hover .ip-content {
    transform: translateY(-10px);
}

.ip-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(176, 38, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.ip-card:hover .glow-effect {
    opacity: 1;
}

/* Brands */
.brands {
    border-top: 1px solid var(--glass-border);
}

.split-screen {
    display: flex;
    min-height: 60vh;
}

.split-left {
    flex: 1;
    background: var(--neon-cyan);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.split-left h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
}

.split-right {
    flex: 1;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(176, 38, 255, 0.1), transparent);
}

.manifesto {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.manifesto strong {
    color: var(--text-main);
    font-size: 2rem;
    display: block;
    margin-top: 1rem;
    font-family: var(--font-heading);
}

/* Live & Broadcast */
.live-broadcast {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--bg-color), #0a0a0a);
    position: relative;
}

.live-broadcast::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1574367157582-78d103ba1965?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.pill {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}

.pill:hover {
    background: var(--text-main);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

.footer-mantra {
    color: var(--neon-cyan);
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .span-2 {
        grid-column: span 1;
    }

    .bento-card {
        min-height: 250px;
    }

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

    .split-screen {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
}