:root {
    --lime-green: #CEFE02; 
    --black: #000000;
}

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

body {
    background-color: var(--lime-green);
    /* 1. Body Font: Neue Haas Grotesk */
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 400; 
    color: var(--black);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* --- Navigation --- */
nav {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 1rem;
    z-index: 10;
}

nav a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}

/* --- Main Layout --- */
main {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px;
}

.logo-container {
    margin-bottom: 2rem;
}

/* --- Hero Typography (Brutal Type) --- */
.hero-text {
    font-family: "Brutal Type W00 Regular", sans-serif;
    font-size: 5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    line-height: 1;
}

.tm {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
    position: absolute;
    top: 5px;
    right: -30px;
}

/* --- Form Styling --- */
.input-wrapper {
    background: rgba(0, 0, 0, 0.05);
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 520px; 
    padding: 12px 16px;
    border-radius: 2px;
}

input {
    background: transparent;
    border: none;
    outline: none;
    padding: 5px;
    font-size: 0.9rem;
    color: var(--black);
    width: 65%;
    text-transform: uppercase;
    font-family: inherit;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 5px;
    font-family: inherit;
    font-weight: 600;
    white-space: nowrap; /* Prevents button text from breaking */
}

button:hover {
    opacity: 0.6;
}

#msg {
    margin-top: 15px;
    font-size: 0.8rem;
    height: 20px;
}


/* --- About Overlay --- */
#about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 100;
    display: flex;
    align-items: center; 
    justify-content: center;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.about-container {
    width: 100%;
    max-width: 800px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-logo {
    margin-bottom: 3rem;
}

.about-text p {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 750px;
}

.signature {
    margin-top: 1rem;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    /* 1. Smaller Hero Text */
    .hero-text {
        font-size: 2.2rem; /* Reduced from 3rem */
        padding: 0 10px;
        margin-bottom: 3rem;
    }

    .tm {
        font-size: 0.7rem;
        top: 2px;
        right: -15px;
    }

    /* 2. More Padding for Main & About */
    main {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-container {
        padding: 40px 30px; /* Increased side padding for About text */
    }

    /* 3. Form Adjustments for Mobile */
    .input-wrapper {
        padding: 10px 12px;
    }

    input {
        font-size: 0.8rem;
        width: 60%; /* Give button more room */
    }
    
    button {
        font-size: 0.75rem; /* Slightly smaller to keep "GET ACCESS" on one line */
    }

    nav {
        top: 1.5rem;
        right: 1.5rem;
    }
    .close-btn {
        top: 1.5rem;
        right: 1.5rem;
    }
}