/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #252422;
    --offblack: #252422;
    --bg-line-color: #ffffff27;
    --ai-highlight-color: #EB5B31;
    --offwhite: #FFFCF2;
}

.ai-highlight {
    color: var(--ai-highlight-color);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image:
        linear-gradient(to right, var(--bg-line-color), transparent 1px),
        linear-gradient(to bottom, var(--bg-line-color), transparent 1px);
    background-size: 20px 20px;
    color: var(--offwhite);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}


header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-color), transparent 100%);
    backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to bottom, var(--bg-color) 20%, transparent 100%);
    mask-image: linear-gradient(to bottom, var(--bg-color) 20%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.brand-logo {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--offwhite);
    text-decoration: none;
    letter-spacing: 0.05rem;
    position: absolute;
    left: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

header.logo-visible .brand-logo {
    opacity: 1;
    pointer-events: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--offwhite);
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav ul {
    list-style: none;
    display: flex;
    gap: clamp(1.5rem, 6vw, 3rem);
    justify-content: center;
}

nav a {
    color: var(--offwhite);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.25rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--offwhite);
}

@media (max-width: 768px) {
    header {
        padding: 1.2rem 1.5rem;
        justify-content: space-between;
    }

    .brand-logo {
        position: static;
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 65%;
        background: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        border-left: 1px solid var(--bg-line-color);
        backdrop-filter: blur(12px);
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    nav a {
        font-size: 1.1rem;
        letter-spacing: 0.2rem;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-text {
    /* font-family: 'Roboto Mono', monospace; */
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 80;
    line-height: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.brand-name {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(4rem, 15vw, 12rem);
    color: var(--ai-highlight-color);
    font-weight: 700;
}




.hero-logo {
    width: clamp(160px, 35vw, 700px);
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-logo {
        width: clamp(120px, 60vw, 280px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Content Sections */
.content-section {
    /* min-height: 80vh; */
    display: flex;
    align-items: center;
    padding: 5rem 3rem;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
}



h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

p {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 300;
    color: var(--offwhite);
}

.people-link {
    color: var(--offwhite);
    font-weight: 700;
    text-decoration: none;
}

.people-link:hover {
    text-decoration: underline;
}

/* Button */
.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    border: 1px solid var(--offwhite);
    color: var(--offwhite);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--offwhite);
    color: var(--offblack);
}

/* Footer */
footer {
    padding: 3rem 1rem;
    text-align: center;
}

footer p {
    font-size: 0.7rem;
    color: var(--offwhite);
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}