/* --- THE NUCLEAR RESET --- */
:root {
    --bg: #000000;
    --card: rgba(12, 12, 12, 0.85);
    --border: rgba(255, 255, 255, 0.08);
    --muted: #8e8e93;
}

/* FIXED: Smooth Scroll added properly to HTML element, offset for navbar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
    cursor: none !important; 
    text-decoration: none !important;
}

/* 🛑 SAFE LINK RESET */
a { text-decoration: none !important; color: inherit; }
a:visited, a:active { color: inherit; }

/* 🛑 FORCED BLACK TEXT ON WHITE BUTTONS */
a.btn-white-solid, a.btn-white-pill, a.btn-primary-small, a.btn-highlight {
    color: #000000 !important;
}

body { background: var(--bg); color: #fff; overflow-x: hidden; }

/* GLOBAL CENTERING ENGINE */
.section-centered {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 120px 30px;
}

/* THE SPACING FIX */
.section-spacing { margin-top: 150px !important; }
.section-header { margin-bottom: 80px; }
.section-title { font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; margin-top: 15px; color: #fff !important;}

/* UI DECOR */
#particles-js { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -3; }
.grain { position: fixed; width: 100%; height: 100%; top: 0; background: url('https://grainy-gradients.vercel.app/noise.svg'); opacity: 0.12; z-index: 100; pointer-events: none; }
.orb { position: fixed; border-radius: 50%; filter: blur(140px); z-index: -2; opacity: 0.3; pointer-events: none; }
.orb-1 { top: 0; left: 0; width: 500px; height: 500px; background: rgba(255,255,255,0.06); }

/* PILLS */
.pill { 
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 10px 24px; border-radius: 50px; border: 1.5px solid var(--border);
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: #fff !important;
}
.outline-white { border-color: rgba(255,255,255,0.2) !important; }
.status-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px #fff; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; padding: 25px 40px; z-index: 1000; transition: 0.3s; }
nav.scrolled { backdrop-filter: blur(25px); background: rgba(0,0,0,0.9); border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; letter-spacing: 2px; text-transform: uppercase; font-size: 1.1rem; color: #fff !important; }
.nav-links a { color: var(--muted) !important; margin: 0 15px; font-size: 0.85rem; font-weight: 700; transition: 0.3s;}
.nav-links a:hover { color: #fff !important; }

/* HERO SECTION & CENTERING FIX */
.hero-content { display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 12vh; }
.main-title { font-size: clamp(3rem, 11vw, 6.5rem); font-weight: 900; line-height: 1; letter-spacing: -2px; margin-bottom: 30px; color: #fff !important; }
.gradient-chrome { background: linear-gradient(180deg, #fff 50%, #666 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
/* Hard centered block fix */
.hero-desc { color: var(--muted) !important; width: 100%; max-width: 650px; font-size: 1.25rem; margin: 0 auto 50px auto; text-align: center; display: inline-block; }
.btn-group { display: flex; gap: 15px; }

/* --- BUTTON SYSTEM (FORCED) --- */
.btn-white-pill {
    background: #ffffff !important;
    padding: 15px 35px; border-radius: 50px;
    font-weight: 800; font-size: 0.9rem;
    display: inline-flex; align-items: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-white-pill:hover { transform: scale(1.05); box-shadow: 0 5px 25px rgba(255,255,255,0.2); }

.btn-outline-pill {
    border: 1.5px solid var(--border);
    padding: 15px 35px; border-radius: 50px;
    font-weight: 800; font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-outline-pill:hover { background: #fff !important; color: #000 !important; }

/* --- RE-STABILIZED COUNTER --- */
.massive-wrapper { display: flex; align-items: center; gap: 40px; }
.accent-line { width: 6px; height: 130px; background: #fff; box-shadow: 0 0 30px #fff; border-radius: 6px; }
.outfit-font { font-family: 'Outfit', sans-serif !important; }
/* Shrunk font slightly to fit the large number cleanly */
.ticker-num { font-size: clamp(3.5rem, 15vw, 8.5rem); font-weight: 900; line-height: 1; letter-spacing: -4px; background: linear-gradient(180deg, #fff 50%, #444 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: #fff !important; }
.exp-footer { font-weight: 800; letter-spacing: 2px; color: var(--muted) !important; font-size: 0.85rem; margin-top: 10px; }
.plus-sign { opacity: 0; transition: 1.5s; color: #fff !important; }

/* BIO GRID */
.bio-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; text-align: left; align-items: center; }
.bio-content h2 { font-size: 3.2rem; margin-bottom: 25px; line-height: 1.1; color: #fff !important;}
.bio-text { font-size: 1.2rem; color: var(--muted) !important; margin-bottom: 20px; line-height: 1.8; }
.data-hub-row { display: flex; gap: 20px; }
.mini-data { flex: 1; padding: 45px 20px; text-align: center; border-radius: 25px !important; }
.mini-data h3 { font-size: 2.8rem; margin-bottom: 5px; color: #fff !important; font-weight: 800;}

/* CARDS */
.glass-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 25px !important; backdrop-filter: blur(40px); }

/* EXPERIENCE */
.job-list { width: 100%; display: flex; flex-direction: column; gap: 25px; }
.job-card { padding: 50px; text-align: left; display: block; transition: all 0.4s ease; }
.job-card:hover { border-color: rgba(255,255,255,0.4); transform: translateX(10px); background: rgba(20,20,25,0.9); }
.job-card h3 { font-size: 1.8rem; font-weight: 800; color: #fff !important; }
.role-tag { display: block; font-weight: 900; letter-spacing: 2px; color: var(--muted) !important; font-size: 0.75rem; margin: 8px 0 25px; text-transform: uppercase; }
.job-card p { color: var(--muted); font-size: 1.1rem; }

/* CLIENTS */
.client-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; }
.c-unit { padding: 55px; text-align: center; transition: all 0.4s ease;}
.c-unit:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-8px); background: rgba(20,20,25,0.9); }
.c-unit h3 { font-size: 1.6rem; color: #fff !important;}
.c-unit p { font-size: 0.75rem; font-weight: 900; letter-spacing: 2px; color: var(--muted) !important; margin-top: 10px;}

/* PRICING */
.pricing-deck { position: relative; }
.ribbon-glow { position: absolute; width: 140vw; height: 350px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-6deg); background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); filter: blur(100px); pointer-events: none; z-index: 1;}
.pricing-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; width: 100%; position: relative; z-index: 10; }
.p-card { padding: 60px 35px; text-align: left; position: relative; display: flex; flex-direction: column; transition: all 0.4s ease; }
.scale-hover:hover { transform: scale(1.05) translateY(-10px); z-index: 20; border-color: rgba(255,255,255,0.5); box-shadow: 0 40px 100px rgba(0,0,0,1); background: rgba(15,15,15,0.95); }

.hot-badge { 
    position: absolute; 
    top: -14px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #ffffff !important; 
    color: #000000 !important; /* THIS FORCES THE BLACK TEXT */
    padding: 6px 16px; 
    border-radius: 5px; 
    z-index: 10; 
    font-size: 0.65rem; 
    font-weight: 900;
}

/* SPICED UP PRICING BUTTONS */
.btn-price-hover { 
    background: transparent !important; border: 1.5px solid rgba(255,255,255,0.25); 
    padding: 16px; margin-top: 40px; width: 100%; border-radius: 12px; font-weight: 800; justify-content: center; display: inline-flex;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-price-hover:hover { 
    background: #ffffff !important; color: #000000 !important; 
    transform: scale(1.05); box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

.btn-white-solid { 
    background: #ffffff !important; 
    padding: 16px; margin-top: 40px; width: 100%; border-radius: 12px; font-weight: 800; justify-content: center; display: inline-flex; border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-white-solid:hover { 
    transform: scale(1.05); box-shadow: 0 0 35px rgba(255,255,255,0.4); 
}

/* CONTACT PANEL */
.operator-panel { padding: 90px 40px; width: 100%; }
.id-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 50px 0; }
.id-card { padding: 30px; text-align: left; transition: all 0.3s ease;}
.id-card:hover { border-color: rgba(255,255,255,0.4); background: rgba(20,20,25,0.9); }
.c-tag { background: #ffffff !important; border: none; padding: 5px 12px; border-radius: 5px; font-weight: 900; font-size: 0.6rem; }
.meta-row { display: flex; justify-content: center; gap: 40px; font-size: 0.8rem; color: var(--muted) !important; font-weight: 800; }

/* CURSOR */
.cursor-dot { position: fixed; width: 6px; height: 6px; background: #fff; border-radius: 50%; pointer-events: none; z-index: 999999; top: 0; left: 0; }
.cursor-outline { position: fixed; width: 38px; height: 38px; border: 1.5px solid rgba(255, 255, 255, 0.4); border-radius: 50%; pointer-events: none; z-index: 999998; transition: width 0.3s, height 0.3s; top: 0; left: 0; }

.reveal-up { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* --- RESTORED SOCIAL CARDS --- */
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 50px; }
.s-card { background: rgba(0,0,0,0.4); border: 1.5px solid var(--border); padding: 25px; border-radius: 15px; text-decoration: none; color: #fff; transition: 0.3s; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.s-card i { font-size: 1.8rem; }
.s-card h4 { font-size: 1.1rem; margin-bottom: -5px; }
.s-card span { font-size: 0.7rem; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.s-card:hover { background: #fff !important; color: #000 !important; border-color: #fff; transform: translateY(-5px); }
.s-card:hover span { color: #333; }

@media (max-width: 950px) {
    .social-cards { grid-template-columns: 1fr; }
}

footer { opacity: 0.3; padding: 100px 0 50px; text-align: center; font-size: 0.8rem; letter-spacing: 2px; }

/* ========================================= */
/* 📱 MOBILE & TABLET OPTIMIZATION ENGINE 📱 */
/* ========================================= */

/* Tablet Adjustments */
@media (max-width: 950px) {
    .bio-grid, .data-hub-row, .pricing-container, .id-stack, .client-grid { grid-template-columns: 1fr; }
    .hero-desc { padding: 0 20px; }
}

/* Phone-Specific Hard Fixes */
@media (max-width: 600px) {
    /* 1. Fix massive padding causing screen squishing */
    .section-centered { padding: 80px 20px; }
    .section-spacing { margin-top: 80px !important; }
    .section-header { margin-bottom: 40px; }
    
    /* 2. Fix the Massive Counter (Stack it and make line horizontal) */
    .massive-wrapper { flex-direction: column; gap: 20px; text-align: center; }
    .accent-line { width: 80px; height: 4px; margin: 0 auto; box-shadow: 0 0 15px #fff;}
    .ticker-num { font-size: 5rem; letter-spacing: -3px; }
    
    /* 3. Hero & Button stacking */
    .main-title { font-size: 3.2rem; }
    .pill { padding: 8px 16px; font-size: 0.65rem; }
    .btn-group { flex-direction: column; width: 100%; gap: 15px; }
    .btn-group .btn { width: 100%; justify-content: center; }
    
    /* 4. Fix Pricing Cards stretching off screen */
    .p-card { padding: 40px 25px; }
    .p-big { font-size: 3.5rem; }
    
    /* 5. Fix Contact Dashboard / Operator Panel overflow */
    .operator-panel { padding: 50px 20px; }
    .id-card { padding: 25px 20px; }
    .row span { font-size: 1.1rem; } /* Shrinks Discord/Roblox names to fit */
    
    /* Forces the Timezone/Payments row to stack cleanly instead of crushing */
    .meta-row { flex-direction: column; gap: 20px; } 
    
    /* 6. Nav Bar adjustments */
    nav { padding: 20px; }
    nav.scrolled { padding: 15px 20px; }
    .btn-primary-small { padding: 8px 16px; font-size: 0.75rem; }
}

/* FORCE PRICING TEXT TO GLOWING WHITE */
.p-robux { 
    color: #ffffff !important; 
    font-weight: 700 !important; 
    margin-bottom: 35px !important; 
    display: block !important; 
    font-size: 0.95rem !important; 
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important; 
}

/* ========================================= */
/* 🚀 ULTIMATE PRICING CARD MODERNIZATION 🚀 */
/* ========================================= */

.pricing-container {
    gap: 25px !important; /* Pushes the cards further apart */
}

.p-card {
    padding: 60px 45px !important; /* Massive breathing room inside */
    border-radius: 32px !important; /* Softer, ultra-modern corners */
    background: rgba(12, 12, 14, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* Make the middle card pop perfectly */
.p-card.featured {
    background: rgba(20, 20, 24, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

/* Modernized Titles */
.p-card label {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.5px !important;
    display: block;
}

/* Huge Gradient Prices */
.p-big {
    font-family: 'Outfit', sans-serif !important;
    font-size: 5rem !important; 
    font-weight: 900 !important;
    letter-spacing: -3px !important;
    line-height: 1 !important;
    margin: 5px 0 5px 0 !important;
    background: linear-gradient(180deg, #ffffff 30%, #666666 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Clean, subdued Robux text */
.p-robux {
    font-family: 'Inter', sans-serif !important;
    color: #a1a1aa !important; 
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important; 
    margin-bottom: 45px !important; /* Big gap before features start */
}

/* Feature List Formatting */
.p-items {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding-top: 40px !important;
}

.p-items p {
    font-size: 0.95rem !important;
    color: #d1d5db !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important; /* Centers the text with the icons */
    gap: 15px !important;
}

/* Premium Circular Checkmarks */
.p-items p i {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important; /* Resets old alignment */
}
/* --- CREATIVE CLICK FEEDBACK --- */
.cursor-dot { 
    transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease; 
}

.click-shockwave {
    position: fixed;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999997;
    animation: shockwaveAnim 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes shockwaveAnim {
    0% { width: 10px; height: 10px; opacity: 0.8; border-width: 3px; }
    100% { width: 120px; height: 120px; opacity: 0; border-width: 0px; }
}
/* --- YOUTUBE MEDIA SHOWCASE --- */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

/* Reduces internal padding so the video takes up maximum space inside the glass */
.video-card {
    padding: 25px !important; 
}

/* Mathematical 16:9 Aspect Ratio box to prevent black bars */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Stacks them on top of each other on phones/tablets */
@media (max-width: 950px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================= */
/* --- CUSTOM LOCAL AUDIO PLAYER (6-GRID)--- */
/* ========================================= */

.audio-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Creates a perfect 2-column grid */
    gap: 20px; 
    width: 100%; 
    margin-top: 30px; 
}

.audio-card { 
    padding: 35px 30px !important; 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
    justify-content: space-between;
}

.audio-header { display: flex; align-items: center; gap: 15px; }

.audio-icon { 
    width: 50px; height: 50px; 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 12px; 
    display: flex; justify-content: center; align-items: center; 
    font-size: 1.2rem; color: #fff; 
    flex-shrink: 0;
}

/* FORCES LEFT ALIGNMENT IGNORING THE CENTERED SECTION */
.audio-title { text-align: left; }
.audio-title h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 4px; line-height: 1.1; text-align: left; }
.audio-title p { font-size: 0.65rem; color: var(--muted); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; text-align: left; }

/* 🔥 THE MAGIC FIX FOR THE WHITE BAR 🔥 */
.custom-player { 
    width: 100%; 
    height: 45px; 
    border-radius: 50px; 
    outline: none; 
    color-scheme: dark; /* Forces the browser to render the audio player in dark mode */
}

/* Stacks to 1 column on smaller screens */
@media (max-width: 950px) {
    .audio-grid { grid-template-columns: 1fr; }
}
/* --- PRICING BUTTON SUB-NOTE --- */
.p-card-note {
    font-size: 0.72rem !important;
    color: var(--muted) !important;
    text-align: center !important;
    margin-top: 15px !important;
    opacity: 0.7;
    line-height: 1.4;
    display: block;
}