/* ═══════════════════════════════════════════════════════════════════════════════
   NoCTF — main.css (V10 Complete — 900+ lines)
   Premium dark cyberpunk landing page styles.
   Covers: navbar, hero, about, labs, pricing, intel, overwatch,
           roadmap/vision, contact form, CTA, footer, terminal modal.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
    --bg: #050508;
    --bg-alt: #08080e;
    --bg-card: #0c0c14;
    --bg-elevated: #101018;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 243, 255, 0.15);
    --border-violet: rgba(140, 60, 255, 0.15);
    --cyan: #00f3ff;
    --green: #00ff41;
    --red: #ff003c;
    --violet: #8c3cff;
    --amber: #ffaa00;
    --white: #eaeaea;
    --dim: #666680;
    --muted: #3a3a50;
    --font-sans: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Consolas', monospace;
    --max-w: 1200px;
    --section-py: 120px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-sans);
    line-height: 1.65;
    overflow-x: hidden;
}

::selection {
    background: var(--cyan);
    color: #000;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 3px;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

a:hover {
    color: #fff;
}

strong {
    color: #fff;
    font-weight: 600;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.accent {
    color: var(--cyan);
}

.t-err {
    color: var(--red);
}

.t-dim {
    color: var(--dim);
}

/* ── BACKGROUND CANVAS ── */
.shader-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
}

/* ── LOADER ── */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVBAR — Full-Width with Playful Components
   ══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.nav-inner-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 20px;
    gap: 12px;
}

/* ── LEFT ZONE: Brand + Ticker ── */
.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.nav-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-hex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-spin {
    animation: hex-rotate 12s linear infinite;
    transform-origin: 12px 12px;
}

.hex-core {
    animation: hex-pulse 2s ease-in-out infinite;
}

@keyframes hex-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes hex-pulse {

    0%,
    100% {
        opacity: 1;
        r: 3;
    }

    50% {
        opacity: 0.4;
        r: 2;
    }
}

.brand-text {
    background: linear-gradient(135deg, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SCROLLING STATUS TICKER ── */
.nav-status-ticker {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    border-left: 1px solid var(--border);
    padding-left: 12px;
    margin-left: 4px;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--green);
    animation: pulse-led 2s ease-in-out infinite;
}

.ticker-track {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-text {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--dim);
    letter-spacing: 1.5px;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── CENTER ZONE: Nav Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--dim);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ── RIGHT ZONE: Activity + Uptime + Signal + CTA ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Network Activity Bars — 5 animated bars like an equalizer */
.nav-activity {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
    padding: 0 6px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.act-bar {
    width: 3px;
    background: var(--cyan);
    border-radius: 1px;
    animation: act-bounce 0.8s ease-in-out infinite alternate;
    animation-delay: var(--d);
}

@keyframes act-bounce {
    0% {
        height: 3px;
        opacity: 0.3;
    }

    100% {
        height: 14px;
        opacity: 1;
    }
}

/* Uptime Badge */
.nav-uptime {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.uptime-label {
    font-family: var(--font-mono);
    font-size: 0.45rem;
    color: var(--muted);
    letter-spacing: 1.5px;
}

.uptime-val {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--green);
}

/* Signal Strength Indicator */
.nav-signal {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.sig-bar {
    width: 3px;
    border-radius: 1px;
    background: var(--cyan);
    animation: sig-glow 3s ease-in-out infinite;
}

.sig-1 {
    height: 4px;
    animation-delay: 0s;
}

.sig-2 {
    height: 7px;
    animation-delay: 0.3s;
}

.sig-3 {
    height: 10px;
    animation-delay: 0.6s;
}

.sig-4 {
    height: 14px;
    animation-delay: 0.9s;
}

@keyframes sig-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 4px var(--cyan);
    }

    50% {
        opacity: 0.35;
        box-shadow: none;
    }
}

/* CTA Button */
.nav-cta {
    padding: 6px 14px !important;
    border: 1px solid var(--border-accent) !important;
    color: var(--cyan) !important;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.65rem !important;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 16px rgba(0, 243, 255, 0.25);
}

.nav-cta-alt {
    border-color: rgba(0, 255, 65, 0.25) !important;
    color: var(--green) !important;
}

.nav-cta-alt:hover {
    background: var(--green) !important;
    color: #000 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-inner {
    max-width: 780px;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--dim);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--dim);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 4px 24px rgba(0, 243, 255, 0.2);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.72rem;
}

.btn-secondary {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--dim);
    letter-spacing: 1px;
    padding: 12px 20px;
}

.btn-secondary:hover {
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.stat-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-auth {
    position: absolute;
    top: 90px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 1px;
}

.auth-led {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
    animation: pulse-led 2s ease-in-out infinite;
}

@keyframes pulse-led {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTIONS GENERAL
   ══════════════════════════════════════════════════════════════════════════ */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-alt);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--dim);
    max-width: 560px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.section-text {
    font-size: 0.95rem;
    color: var(--dim);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ── ABOUT SPLIT ── */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.info-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
}

.info-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.info-icon {
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.6;
}

/* ── LABS GRID ── */
.lab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lab-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.lab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    opacity: 0;
    transition: opacity 0.3s;
}

.lab-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.lab-card:hover::before {
    opacity: 1;
}

.lab-number {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.lab-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.lab-desc {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.lab-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.lab-tags span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 3px 8px;
    border: 1px solid var(--border);
    color: var(--dim);
    border-radius: 2px;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    padding: 36px 30px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    position: relative;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.pricing-featured {
    border-color: var(--border-accent);
    background: var(--bg-elevated);
}

.pricing-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    border-radius: 6px 6px 0 0;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 2px;
}

.pricing-tier {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--dim);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--dim);
    vertical-align: super;
}

.price-period {
    font-size: 0.8rem;
    color: var(--dim);
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 0.82rem;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check {
    color: var(--green);
    font-weight: 700;
}

.x-mark {
    color: var(--muted);
}

.btn-tier {
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--border);
    color: var(--dim);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-tier:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-tier-primary {
    border-color: var(--cyan);
    color: var(--cyan);
}

.btn-tier-primary:hover {
    background: var(--cyan);
    color: #000;
}

/* ══════════════════════════════════════════════════════════════════════════
   INTEL FEED
   ══════════════════════════════════════════════════════════════════════════ */
.intel-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.intel-col {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    overflow: hidden;
}

.intel-header {
    padding: 10px 16px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--border);
}

.threat-header {
    color: var(--red);
    border-left: 3px solid var(--red);
}

.defense-header {
    color: var(--cyan);
    border-left: 3px solid var(--cyan);
}

.feed-scroll {
    max-height: 360px;
    overflow-y: auto;
}

.news-item {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
    transition: background 0.15s;
    text-decoration: none;
}

.news-item:hover {
    background: var(--bg-elevated);
}

.news-title {
    color: var(--white);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 3px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: var(--dim);
    font-family: var(--font-mono);
}

.news-source {
    color: var(--green);
}

/* ── OVERWATCH ── */
.overwatch-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
}

.ow-panel {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    overflow: hidden;
}

.ow-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--dim);
    border-bottom: 1px solid var(--border);
}

.ow-meta {
    font-weight: 400;
}

.topo-container {
    height: 420px;
}

.ow-radar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#recon-radar {
    display: block;
    padding: 8px;
}

/* ══════════════════════════════════════════════════════════════════════════
   ROADMAP / VISION
   ══════════════════════════════════════════════════════════════════════════ */
.roadmap-timeline {
    position: relative;
    padding-left: 40px;
    margin-bottom: 60px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.roadmap-item {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    background: var(--bg);
}

.roadmap-phase {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    min-width: 80px;
    padding-top: 2px;
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.roadmap-content p {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.65;
}

.roadmap-status {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
    height: fit-content;
    margin-top: 2px;
}

.status-live {
    background: rgba(0, 255, 65, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.status-progress {
    background: rgba(0, 243, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.status-planned {
    background: rgba(140, 60, 255, 0.1);
    color: var(--violet);
    border: 1px solid rgba(140, 60, 255, 0.2);
}

/* ── INTEGRATIONS ── */
.integration-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.integration-desc {
    font-size: 0.88rem;
    color: var(--dim);
    margin-bottom: 28px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.int-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
    font-size: 0.72rem;
    color: var(--dim);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
}

.int-item:hover {
    border-color: var(--border-accent);
    color: #fff;
    transform: translateY(-2px);
}

.int-icon {
    font-size: 1.3rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-full {
    grid-column: 1 / -1;
}

label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--dim);
    letter-spacing: 1px;
}

.req {
    color: var(--red);
}

input,
select,
textarea {
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
}

select {
    cursor: pointer;
}

select option {
    background: var(--bg-card);
    color: var(--white);
}

textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.timeline-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--dim);
    transition: all 0.3s var(--ease);
}

.radio-option:hover {
    border-color: var(--border-accent);
    color: #fff;
}

.radio-option input[type="radio"] {
    accent-color: var(--cyan);
}

.radio-option:has(input:checked) {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 243, 255, 0.03);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.05);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--green);
    margin-top: 8px;
}

.success-icon {
    font-size: 1.2rem;
}

/* ── CONTACT INFO SIDEBAR ── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-block {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-card);
}

.contact-block h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.contact-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.cl-label {
    color: var(--dim);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.cl-value {
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.contact-ai-note {
    font-size: 0.8rem;
    color: var(--dim);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ── CTA ── */
.cta-section {
    padding: 140px 0;
    text-align: center;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .section-sub {
    max-width: 480px;
    text-align: center;
}

/* ── FOOTER ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--dim);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.72rem;
}

.footer-links a:hover {
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════════════════
   TERMINAL MODAL
   ══════════════════════════════════════════════════════════════════════════ */
.term-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.term-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.term-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 780px;
    height: 72vh;
    max-height: 600px;
    background: #08080e;
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    z-index: 9001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.06), 0 16px 50px rgba(0, 0, 0, 0.6);
}

.term-modal.open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.term-chrome {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: #0b0b14;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.term-dots {
    display: flex;
    gap: 5px;
    margin-right: 14px;
}

.term-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--muted);
}

.term-dots span:first-child {
    background: var(--red);
}

.term-dots span:nth-child(2) {
    background: var(--amber);
}

.term-dots span:nth-child(3) {
    background: var(--green);
}

.term-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 1px;
}

.term-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--dim);
    font-size: 1rem;
    cursor: pointer;
}

.term-close:hover {
    color: #fff;
}

.term-body {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--white);
}

.t-line {
    word-wrap: break-word;
    margin-bottom: 1px;
}

.t-ok {
    color: var(--green);
}

.t-accent {
    color: var(--cyan);
}

.t-bright {
    color: #fff;
}

.t-warn {
    color: var(--amber);
}

.t-violet {
    color: var(--violet);
}

.input-line {
    display: flex;
    align-items: center;
    margin-top: 6px;
    color: var(--green);
}

.prompt {
    color: var(--cyan);
    font-weight: 700;
    margin-right: 5px;
    white-space: nowrap;
}

.input-text {
    color: var(--green);
}

.cursor-block {
    color: var(--green);
    animation: blink 1s step-end infinite;
    font-weight: 700;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lab-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .intel-grid {
        grid-template-columns: 1fr;
    }

    .overwatch-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-auth {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    :root {
        --section-py: 70px;
    }

    .term-modal {
        width: 95%;
        height: 78vh;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline-options {
        flex-direction: column;
    }
}