:root {
    --primary-color: #ff8e71;
    --secondary-color: #00d2ff;
    --accent-color: #f7ff00;
    --dark-color: #0a0a0a;
    --light-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

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

ul {
    list-style: none;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot,
.cursor-circle {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: transform 0.15s ease-out;
}

/* Background Mesh Gradient */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0a0a0a;
    background-image:
        radial-gradient(at 0% 0%, hsla(12, 100%, 72%, 0.15) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 50%, 0.1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(62, 100%, 50%, 0.1) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(320, 100%, 50%, 0.1) 0, transparent 50%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, transparent 100%);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--light-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-image-container {
    flex: 1;
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    filter: saturate(1.2);
    mask-image: linear-gradient(to bottom, black 80%, transparent);
}

.hero h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    max-width: 500px;
    opacity: 0.7;
    margin-bottom: 3rem;
}

/* Grid & Cards */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card:hover .card-img {
    transform: scale(1.1);
}

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 1.2rem 3rem;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: 100px;
    font-weight: 700;
    display: inline-block;
    border: none;
    overflow: hidden;
    position: relative;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: white;
}

/* Footer */
footer {
    padding: 10rem 5% 5rem;
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.footer-info p {
    font-size: 1.1rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(100px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.2s ease;
}

/* Mobile */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        margin: 0 auto 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}