/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: #fff;
    text-decoration: none;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    letter-spacing: -0.02em;
}

.dimmed {
    color: #888888;
}

.highlight {
    color: #ffffff;
}

/* HERO SPLIT LAYOUT */
.hero-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.hero-left {
    flex: 1;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #1a1a1a;
}

.hero-right {
    flex: 0.8;
    background-color: #050505;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-right {
        border-top: 1px solid #1a1a1a;
        padding: 40px 5% 80px 5%;
    }
    .hero-left {
        border-right: none;
        padding: 60px 5% 40px 5%;
    }
    .main-headline {
        font-size: clamp(36px, 8vw, 48px);
    }
    .sub-headline {
        margin-bottom: 40px;
    }
    .hero-features {
        margin-bottom: 40px;
    }
}

/* BRANDING */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 80px;
}

.logo-box {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.brand-text {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
}

/* LEFT SIDE CONTENT */
.main-headline {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.sub-headline {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 500px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    max-width: 450px;
}

.hero-feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-feature p {
    font-size: 14px;
    color: #888888;
}

/* BADGES */
.badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    border: 1px solid #222;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* RIGHT SIDE FORM */
.form-container {
    max-width: 400px;
    width: 100%;
}

.form-container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-container p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 40px;
    line-height: 1.6;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #888888;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #333;
    padding: 14px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #666;
}

.btn-primary {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-text {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    transition: color 0.2s ease;
}

.btn-text:hover {
    color: #fff;
}

.form-footer {
    border-top: 1px solid #1a1a1a;
    padding-top: 24px;
}

.form-footer p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.form-footer a {
    color: #888;
    text-decoration: underline;
}

/* BELOW THE FOLD STYLES */
.content-wrapper {
    background-color: #000;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 5%;
}

.text-center {
    text-align: center;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 80px 5%;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    text-align: center;
}

.section-label {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
}

.logos span {
    font-size: 20px;
    font-weight: 700;
    color: #888;
}

/* PROBLEM SECTION */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #888;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #888;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.stat-card {
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    background: linear-gradient(180deg, #050505 0%, #000000 100%);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: #888;
}

/* STEPS SECTION */
.steps-section h2 {
    font-size: 36px;
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    padding: 40px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.step-card:hover {
    border-color: #333;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.step-card p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
}

/* FEATURES SECTION */
.features-section h2 {
    font-size: 36px;
    margin-bottom: 100px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-text p {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

.feature-visual {
    flex: 1;
    width: 100%;
}

/* MOCKUPS */
.mockup-terminal, .mockup-code {
    background-color: #050505;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.terminal-header {
    background-color: #111;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #222;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-body, .mockup-code {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

code {
    color: #888;
    white-space: pre-wrap;
}

.success { color: #27c93f; }
.danger { color: #ff5f56; }
.highlight-code { color: #ffbd2e; }

/* FOOTER */
.footer {
    border-top: 1px solid #1a1a1a;
    padding: 40px 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #555;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .container {
        padding: 60px 5%;
    }
    
    .feature-text h3 {
        font-size: 24px;
    }
    
    .steps-section h2, .features-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .logos {
        gap: 30px;
    }
    
    .logos span {
        font-size: 16px;
    }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: none; /* hidden by default, shown by JS */
    flex-direction: column;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 601px) {
    .cookie-banner {
        width: auto;
    }
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* LEGAL PAGES */
.legal-container {
    max-width: 800px;
    margin: 120px auto 60px auto;
    padding: 0 5%;
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.legal-container .last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
    display: block;
}

.legal-container h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #ddd;
}

.legal-container p {
    color: #a0a0a0;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul {
    color: #a0a0a0;
    margin-left: 20px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul li {
    margin-bottom: 8px;
}

.nav-simple {
    position: absolute;
    top: 40px;
    left: 5%;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: absolute;
    top: 40px;
    right: 5%;
    display: flex;
    gap: 8px;
    z-index: 100;
}

.lang-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    border-color: #666;
    color: #ccc;
}

.lang-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}
