/* ========================================
   Subservient Ghostface - SCARY MOVIE
   Inspired by autoresearch.lol layout
   ======================================== */

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

:root {
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --bg-card: #141414;
    --text: #e5e5e5;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #e11d48;
    --accent-dim: #be123c;
    --border: #222222;
    --radius: 8px;
    --max-width: 800px;
    --font-sans: ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: #f43f5e;
}

/* ========================================
   Age Gate
   ======================================== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-content {
    text-align: center;
    max-width: 420px;
    width: 100%;
    padding: 48px 24px;
}

.age-logo-container {
    margin-bottom: 24px;
}

.age-logo {
    display: inline-block;
    opacity: 0.6;
}

.age-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.age-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.age-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.age-field {
    flex: 1;
    text-align: left;
}

.age-field label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.age-field select {
    width: 100%;
    padding: 10px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-sans);
    appearance: none;
    cursor: pointer;
}

.age-field select:focus {
    outline: none;
    border-color: var(--accent);
}

.age-submit {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.age-submit:hover {
    background: var(--accent-dim);
}

/* ========================================
   Site Wrapper
   ======================================== */
.site-wrapper {
    min-height: 100vh;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    display: block;
    opacity: 0.7;
}

.nav-brand {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-badge {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 80px 24px 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-flag {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.flag {
    font-size: 18px;
    line-height: 1;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-logo-icon {
    flex-shrink: 0;
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo-main {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

.hero-logo-accent {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--accent);
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}

.hero-cta:hover {
    background: var(--accent-dim);
    color: white;
    transform: translateY(-1px);
}

.hero-meta {
    margin-top: 40px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 64px 24px;
    border-bottom: 1px solid var(--border);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-dark {
    background: var(--bg-alt);
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-mono);
    margin-bottom: 8px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text);
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ========================================
   Cards & Grid
   ======================================== */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cards-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Steps
   ======================================== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.step-number {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-mono);
    min-width: 28px;
    line-height: 1.6;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Content Block (Deep Dive)
   ======================================== */
.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.content-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTA Block
   ======================================== */
.cta-block {
    text-align: center;
    margin-top: 32px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.faq-q {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.faq-a {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 32px 24px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 700px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }

    .cards-3col {
        grid-template-columns: 1fr;
    }

    .hero-logo-main {
        font-size: 26px;
    }

    .hero-logo-accent {
        font-size: 34px;
    }

    .hero-logo-icon {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 22px;
    }

    .age-form {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding: 48px 16px 40px;
    }

    .section {
        padding: 40px 16px;
    }

    .nav-inner {
        padding: 10px 16px;
    }

    .nav-brand {
        font-size: 12px;
    }
}
