/* ========================================
   EVERYTHING APP - MAIN STYLESHEET
   Brutalist Minimalist Aesthetic
   ======================================== */

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

body {
    background: #FAF8F3;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
    letter-spacing: 0.02em;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    border-bottom: 1px solid #000;
    background: #FAF8F3;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.login-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.login-link:hover {
    opacity: 1;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
    min-height: 70vh;
    border-bottom: 1px solid #000;
    position: relative;
}

.hero-with-bg {
    background-size: cover;
    background-position: center;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 243, 0.85);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-subhead {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================
   BUTTONS
   ======================================== */
.holo-button {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid #000;
    background: linear-gradient(45deg, 
        #ff0080, #ff8c00, #40e0d0, #00ff00, #0080ff, #8000ff, #ff0080);
    background-size: 300% 300%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    animation: holographic 8s ease infinite;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.holo-button:hover {
    transform: scale(1.05);
    animation-duration: 2s;
}

.holo-button:active {
    transform: scale(0.98);
}

.button-black {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid #000;
    background: #000;
    color: #FAF8F3;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.button-black:hover {
    background: #FAF8F3;
    color: #000;
}

.button-outline {
    display: inline-block;
    padding: 20px 60px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.button-outline:hover {
    background: #000;
    color: #FAF8F3;
}

/* ========================================
   FEATURE GRID
   ======================================== */
.features {
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-box {
    padding: 60px 40px;
    border-right: 1px solid #000;
}

.feature-box:last-child {
    border-right: none;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    border: 1px solid #000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.8;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    border-bottom: 1px solid #000;
}

.content-section .container {
    padding: 100px 40px;
}

.content-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    line-height: 1.1;
}

.content-section h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    margin-top: 60px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* ========================================
   STATEMENT SECTION
   ======================================== */
.statement {
    border-bottom: 1px solid #000;
}

.statement .container {
    padding: 120px 40px;
    text-align: center;
}

.statement-text {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: bold;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    border-bottom: 1px solid #000;
}

.cta-section .container {
    padding: 80px 40px;
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 0;
}

.email-input {
    flex: 1;
    padding: 20px;
    border: 1px solid #000;
    border-right: none;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    outline: none;
}

.submit-button {
    padding: 20px 40px;
    border: 1px solid #000;
    background: #000;
    color: #FAF8F3;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #FAF8F3;
    color: #000;
}

/* ========================================
   FORMS
   ======================================== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #000;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
    border: 1px solid #000;
    margin: 60px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border: 1px solid #000;
    text-align: left;
}

.comparison-table th {
    background: #000;
    color: #FAF8F3;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.1em;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    border-top: 1px solid #000;
}

footer .container {
    padding: 60px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #000;
    font-size: 14px;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-partners a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 10px;
}

/* ========================================
   LOGIN/GATED PAGES
   ======================================== */
.login-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.login-box {
    max-width: 500px;
    width: 100%;
    border: 1px solid #000;
    padding: 60px;
    background: #fff;
}

.login-box h1 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .features .container {
        grid-template-columns: 1fr;
    }

    .feature-box {
        border-right: none;
        border-bottom: 1px solid #000;
    }

    .feature-box:last-child {
        border-bottom: none;
    }

    .content-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    nav .container {
        padding: 30px 20px;
    }

    .nav-links {
        display: none;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        border-right: 1px solid #000;
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .login-box {
        padding: 40px 30px;
    }
}