:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-secondary: #888888;
    --primary-color: #D4AF37;
    /* Gold */
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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");
    pointer-events: none;
    z-index: 9998;
}

/* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.cursor.active {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

/* Typography Utilities */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.hero h1 {
    font-size: 8vw;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    margin-left: -0.5vw;
    /* Optical alignment */
}

.gradient-text {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 500px;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
    border-radius: 50%;
}

.cta-button:hover::before {
    transform: scale(1);
}

.cta-button:hover {
    color: #000;
    border-color: var(--primary-color);
}

/* Sections */
.section {
    padding: 10rem 4rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-size: 4rem;
    color: #fff;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.card {
    grid-column: span 6;
    background: var(--surface-color);
    padding: 4rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.card:nth-child(odd) {
    grid-column: span 7;
}

.card:nth-child(even) {
    grid-column: span 5;
}

.card:hover {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.card-arrow {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.card:hover .card-arrow {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: rotate(-45deg);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
    line-height: 1.8;
}

/* Newsletter */
.newsletter-container {
    background: var(--surface-color);
    padding: 6rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 3rem auto 0;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-main);
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: none;
    padding: 0 2rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: #fff;
}

/* Footer */
footer {
    padding: 4rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 12vw;
    }

    .hero-description {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .section {
        padding: 6rem 2rem;
    }

    .card {
        grid-column: span 12 !important;
        padding: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-container {
        padding: 3rem 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }
}