:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #00f0ff;
    /* Neon Cyan */
    --secondary-color: #1a1a1a;
    --accent-gold: #ffd700;

    --font-main: 'Outfit', sans-serif;

    --cursor-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Canvas Background */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* Custom Cursor */
#cursor {
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

#cursor-blur {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
}

/* UI Structure */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.menu-items a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.menu-items a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: black;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* Hero Typography */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 10vw;
}

.hero h1 {
    font-size: 8vw;
    line-height: 0.9;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    /* Gradient Text */
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 400px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    pointer-events: none;
    opacity: 1;
    /* Start visible */
}

/* Utilities */
.min-h-screen {
    min-height: 100vh;
}

/* Sections */
.section-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: white;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}