/* Reset & Base */
:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #eeeeee;
    --accent-color: #FFD400; /* Yellow */
    --accent-glow: rgba(255, 212, 0, 0.45);
    --font-heading: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    --font-body: 'Courier New', Courier, monospace; /* Tech/Raw feel */
    --spacing-container: 1200px;
    --section-padding: 100px 20px;
    --cursor-size: 400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 9999;
}

/* Custom Cursor */
#cursor-halo {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: screen;
    opacity: 0.75;
    transition: width 0.2s ease, height 0.2s ease;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
}

p {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: none; /* Keep custom cursor logic */
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: skew(-5deg) scale(1.05);
}

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

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    transform: skew(-5deg);
    position: relative;
}

.logo span {
    color: var(--accent-color);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.4s;
}

.hero-actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.6s;
    flex-wrap: wrap;
}

/* Operations & About */
.section {
    padding: var(--section-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
    margin-bottom: 30px;
}

/* Cards / Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

/* Hiring List */
.hiring-list {
    list-style: none;
    margin-top: 30px;
}

.hiring-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ddd;
}

.hiring-list li::before {
    content: "✖"; /* Graffiti style marker */
    color: var(--accent-color);
    margin-right: 15px;
    font-weight: bold;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
        --cursor-size: 0px; /* Disable heavy cursor on mobile */
    }

    #cursor-halo {
        display: none;
    }

    * {
        cursor: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}
