@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0d0d0d;
    --card-bg: #141414;
    --accent-color: #ffffff;
    --text-color: #f7f7f7;
    --muted-color: #888888;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Sora', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    display: none;
}

@media (pointer: fine) {
    #cursor {
        display: block;
    }
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/Mick-L/noise-overlay/master/img/noise.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.05em;
    font-weight: 700;
    text-transform: uppercase;
}

.title-xl {
    font-size: clamp(3rem, 10vw, 12rem);
    line-height: 0.85;
}

/* Navigation */
nav {
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-premium {
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-premium:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
}

.bg-dark-accent {
    background-color: #0a0a0a;
}

/* Cards */
.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 4rem 0;
    background: #000;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-size: 6rem;
    font-weight: 900;
    margin-right: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}