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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #f8f8f8;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 10;
}

/* Hero Navigation Bar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.3);
    padding: 1.5rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.15);
    z-index: 1000;
}

nav .nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f8f8f8;
    text-transform: uppercase;
}

nav .slash {
    color: #9333ea;
    margin: 0 0.3rem;
}

/* Main Content Section */
main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 3rem 3rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #f8f8f8;
    line-height: 1;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.5rem;
    color: #9333ea;
    margin-bottom: 3rem;
    font-weight: 400;
}

.description {
    max-width: 700px;
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.highlight-section {
    margin-top: 4rem;
    width: 100%;
}

.highlight-section h2 {
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.highlight-section h2 .slash {
    color: #9333ea;
    margin: 0 0.5rem;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    padding: 2rem 3rem 1rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.footer-section h3 .slash {
    color: #9333ea;
    margin-right: 0.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-links a {
    color: #f8f8f8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: #9333ea;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #f8f8f8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #9333ea;
}

.copyright {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.copyright .slash {
    color: #9333ea;
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .nav-content {
        padding: 0 1.5rem;
    }

    main {
        padding: 6rem 1.5rem 2rem 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    footer {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .copyright {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    nav .logo.location {
        display: none !important;
    }
}