﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0d0d0d;
    --surface: #141414;
    --border: #222;
    --accent: #e8ff47;
    --accent2: #ff6b35;
    --text: #f0ede6;
    --muted: #ccc;
    --card-hover: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.4;
    }

/* ── NAV ── */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-decoration: none;
}

    .nav-logo span {
        color: var(--accent);
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--text);
        }

        .nav-links a.active {
            color: var(--accent);
        }

.nav-cta {
    background: var(--accent);
    color: #000;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .nav-cta:hover {
        background: #fff;
        transform: translateY(-1px);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── HERO ── */
.hero {
    padding: 7rem 3rem 6rem;
    border-bottom: 1px solid var(--border);
    max-width: 900px;
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 2rem;
        height: 1px;
        background: var(--accent);
    }

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 8vw, 8.5rem);
    line-height: 0.93;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

    .hero-title em {
        color: var(--accent);
        font-style: normal;
        display: block;
    }

.hero-sub {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.85;
    max-width: 600px;
    margin-bottom: 3rem;
}

    .hero-sub strong {
        color: var(--text);
        font-weight: 600;
    }

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 0.9rem 2.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: #fff;
        transform: translateY(-2px);
    }

/* ── STATS STRIP ── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.7s ease 0.1s both;
}

.stat-block {
    background: var(--bg);
    padding: 2.5rem 2rem;
    transition: background 0.2s;
}

    .stat-block:hover {
        background: var(--surface);
    }

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.78rem;
    color: #ccc;
    line-height: 1.6;
}

/* ── SECTION ── */
.section {
    padding: 5rem 3rem;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.7s ease 0.15s both;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
}

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ── AUDIENCE ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.audience-card {
    background: var(--bg);
    padding: 2rem 1.75rem;
    transition: background 0.2s;
}

    .audience-card:hover {
        background: var(--surface);
    }

.audience-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.audience-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.audience-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.65;
}

.topics-wrap {
    margin-top: 0.5rem;
}

.topics-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.topic-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.2s;
    cursor: default;
}

    .topic-tag:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* ── PLACEMENTS ── */
.placements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.placement-card {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.2s;
}

    .placement-card:hover {
        background: var(--card-hover);
    }

.placement-preview {
    width: 100%;
    padding: 1.75rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}

/* Leaderboard preview */
.preview-leaderboard {
    width: 100%;
    height: 44px;
    background: #0a1a0a;
    border: 1px solid #1a3a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

    .preview-leaderboard .pl {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1rem;
        color: #39ff14;
        white-space: nowrap;
    }

    .preview-leaderboard .pt {
        font-size: 0.55rem;
        color: #446644;
        flex: 1;
        text-align: center;
    }

    .preview-leaderboard .pc {
        font-size: 0.5rem;
        font-family: 'JetBrains Mono', monospace;
        color: #39ff14;
        border: 1px solid #39ff14;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

/* Sidebar preview */
.preview-sidebar-wrap {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    align-items: flex-start;
}

.preview-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.preview-content-line {
    height: 5px;
    background: #1e1e1e;
    border-radius: 2px;
    width: 100%;
}

    .preview-content-line.s {
        width: 70%;
    }

    .preview-content-line.xs {
        width: 45%;
    }

.preview-sidebar-col {
    width: 60px;
    min-height: 90px;
    background: #080d18;
    border: 1px solid #1a2a3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem;
    flex-shrink: 0;
}

    .preview-sidebar-col .pl {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 0.75rem;
        color: #4ec9ff;
        line-height: 1;
    }

    .preview-sidebar-col .pt {
        font-size: 0.38rem;
        color: #4a6470;
        text-align: center;
        line-height: 1.3;
    }

    .preview-sidebar-col .pc {
        font-size: 0.38rem;
        font-family: 'JetBrains Mono', monospace;
        color: #4ec9ff;
        border: 1px solid #4ec9ff;
        padding: 0.1rem 0.3rem;
        margin-top: 0.15rem;
    }

/* Inline preview */
.preview-inline-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.preview-line-group {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.preview-inline-line {
    height: 4px;
    background: #1e1e1e;
    border-radius: 2px;
}

    .preview-inline-line.s {
        width: 65%;
    }

.preview-inline-ad {
    width: 100%;
    height: 36px;
    background: #1a0d08;
    border: 1px solid #3a2018;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 0.75rem;
    margin: 0.3rem 0;
}

    .preview-inline-ad .pl {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 0.8rem;
        color: #ff6b35;
        white-space: nowrap;
    }

    .preview-inline-ad .pt {
        font-size: 0.45rem;
        color: #664433;
        flex: 1;
    }

    .preview-inline-ad .pc {
        font-size: 0.42rem;
        font-family: 'JetBrains Mono', monospace;
        color: #ff6b35;
        border: 1px solid #ff6b35;
        padding: 0.12rem 0.35rem;
        white-space: nowrap;
    }

.placement-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.placement-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.placement-size {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.placement-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
}

.placement-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-key {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spec-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: var(--text);
}

/* ── WHY US ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.why-card {
    background: var(--bg);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: background 0.2s;
}

    .why-card:hover {
        background: var(--surface);
    }

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #ccc;
    line-height: 1;
    flex-shrink: 0;
    width: 3rem;
    margin-top: -0.3rem;
}

.why-title {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.why-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── GUIDELINES ── */
.guidelines-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.guideline-card {
    background: var(--bg);
    padding: 2rem;
    transition: background 0.2s;
}

    .guideline-card:hover {
        background: var(--surface);
    }

.guideline-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ccc;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.guideline-title {
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

.guideline-text {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── INTEREST FORM ── */
.contact-section {
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start;
    animation: fadeUp 0.7s ease 0.2s both;
}

.contact-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.contact-sub {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-note {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--surface);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    line-height: 1.7;
    letter-spacing: 0.03em;
}

    .contact-note strong {
        color: var(--accent);
        font-weight: 600;
    }

.contact-promises {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}

    .promise-item::before {
        content: '✓';
        color: var(--accent);
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.72rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .promise-item strong {
        color: var(--text);
    }

/* FORM */
.interest-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-input, .form-select, .form-textarea {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--accent);
    }

    .form-input::placeholder, .form-textarea::placeholder {
        color: #333;
    }

.form-select {
    background: var(--bg);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

    .form-select option {
        background: #1a1a1a;
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checks {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--muted);
    transition: color 0.2s;
    user-select: none;
}

    .form-check:hover {
        color: var(--text);
    }

    .form-check input[type="checkbox"] {
        width: 1rem;
        height: 1rem;
        accent-color: var(--accent);
        cursor: pointer;
        flex-shrink: 0;
    }

.form-submit {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 1rem 2.25rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
    margin-top: 0.5rem;
}

    .form-submit:hover {
        background: #fff;
        transform: translateY(-2px);
    }

    .form-submit:disabled {
        opacity: 0.7;
        cursor: default;
        transform: none;
    }

.form-disclaimer {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #ccc;
    line-height: 1.65;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-q {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
    user-select: none;
    gap: 1rem;
}

    .faq-q:hover {
        background: var(--surface);
    }

.faq-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.87rem;
    color: #ccc;
    line-height: 1.8;
    padding: 0 2rem;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

/* ── FOOTER ── */
footer {
    padding: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
}

    .footer-brand span {
        color: var(--accent);
    }

.footer-links-row {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

    .footer-links-row a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.78rem;
        transition: color 0.2s;
    }

        .footer-links-row a:hover {
            color: var(--text);
        }

.footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: #333;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 3.5rem 1.5rem 3rem;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .placements-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .guidelines-row {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
}