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

:root {
    --black: #090909;
    --white: #F5F2EB;
    --blue: #00AAFF;
    --blue-dark: #0077CC;
    --gray: #1A1A1A;
    --gray2: #2A2A2A;
    --gray3: #555;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh
}


/* ── NAV ── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(9, 9, 9, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1a1a1a;
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none
}

.logo-svg {
    height: 30px;
    width: auto;
    flex-shrink: 0
}

.nav-badge {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--blue);
    border: 1px solid #1e3a52;
    padding: 4px 10px
}


/* ── HERO ── */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 48px 60px;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.hero>*:not(.hero-canvas) {
    position: relative;
    z-index: 1
}

.hero-left {}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--blue);
    margin-bottom: 20px
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 68px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -1.5px;
    margin-bottom: 24px
}

.hero-title .hl {
    color: var(--blue)
}

.hero-sub {
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 40px
}

.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #d1d1d1;
    letter-spacing: 0.08em
}

.trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0
}


/* ── FORM CARD ── */

.form-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #222;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.form-card-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: 12px
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px
}

.form-card-sub {
    font-size: 15px;
    color: #d1d1d1;
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.5
}

.form-group {
    margin-bottom: 16px
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #d1d1d1;
    margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #111;
    border: 1px solid #2a2a2a;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue)
}

.form-group select option {
    background: #111
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    padding: 15px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.06em;
    margin-top: 8px;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #22BBFF
}

.form-disclaimer {
    font-size: 12px;
    color: #d1d1d1;
    margin-top: 12px;
    line-height: 1.5;
    text-align: center;
    font-family: var(--font-mono)
}


/* ── SOCIAL PROOF STRIP ── */

.proof-strip {
    background: var(--gray);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 28px 48px
}

.proof-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px
}

.proof-stat {
    text-align: center
}

.proof-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1
}

.proof-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #d1d1d1;
    letter-spacing: 0.1em;
    margin-top: 4px
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: #2a2a2a
}


/* ── FEATURES ── */

.features {
    padding: 80px 48px
}

.features-header {
    text-align: center;
    margin-bottom: 56px
}

.features-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: 12px
}

.features-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.0
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: #1a1a1a;
    border: 1px solid #1a1a1a
}

.feat {
    background: var(--black);
    padding: 32px 28px
}

.feat-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: 0.1em
}

.feat-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px
}

.feat-desc {
    font-size: 15px;
    color: #d1d1d1;
    line-height: 1.7;
    font-weight: 300
}


/* ── CYBER SPECIFIC ── */

.cyber-section {
    padding: 72px 48px;
    background: var(--gray)
}

.cyber-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.cyber-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--blue);
    margin-bottom: 12px
}

.cyber-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 20px
}

.cyber-body {
    font-size: 15px;
    color: #d1d1d1;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px
}

.cyber-list {
    list-style: none
}

.cyber-list li {
    font-size: 15px;
    color: #d1d1d1;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 300
}

.cyber-list li::before {
    content: '→';
    color: var(--blue);
    flex-shrink: 0
}

.cyber-card {
    background: var(--black);
    border: 1px solid #222;
    padding: 32px
}

.cyber-card-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--blue);
    letter-spacing: 0.1em;
    margin-bottom: 20px
}

.terminal-line {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    gap: 12px
}

.terminal-line .cmd {
    color: var(--blue);
    flex-shrink: 0
}

.terminal-line .val {
    color: #d1d1d1
}

.terminal-line.active .val {
    color: #ccc
}

.terminal-line.hit .val {
    color: var(--blue)
}


/* ── CTA BOTTOM ── */

.cta-bottom {
    padding: 80px 48px;
    text-align: center;
    border-top: 1px solid #1a1a1a
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.0
}

.cta-sub {
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 300;
    margin-bottom: 36px
}

.cta-btn {
    display: inline-block;
    background: var(--blue);
    color: var(--black);
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 48px;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
}

.cta-btn:hover {
    background: #22BBFF
}


/* ── FOOTER ── */

footer {
    border-top: 1px solid #1a1a1a;
    padding: 32px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 16px
}

footer p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #d1d1d1;
    letter-spacing: 0.06em
}

.footer-certs {
    display: flex;
    gap: 8px;
    justify-self: center
}

footer p:last-child {
    justify-self: end
}

.cert-pill {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--blue);
    border: 1px solid #1e3a52;
    padding: 4px 10px;
    letter-spacing: 0.06em
}


/* ── MOBILE ── */

@media(max-width:768px) {
    nav {
        padding: 0 20px
    }

    .nav-badge {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 90px 20px 48px;
        gap: 48px
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 52px);
        letter-spacing: -0.5px
    }

    .proof-strip {
        padding: 24px 20px
    }

    .proof-divider {
        display: none
    }

    .features {
        padding: 60px 20px
    }

    .cyber-section {
        padding: 60px 20px
    }

    .cyber-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cta-bottom {
        padding: 60px 20px
    }

    footer {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .proof-strip-inner {
        justify-content: center;
        gap: 35px;
    }
}