@charset "utf-8";
/* CSS Document */
/* Thin Genexcess Title Bar */
.genexcess-titlebar {
    text-align: center;
    padding: 10px 0;
    background: #111;
    border-bottom: 2px solid #444;
}

.genexcess-titlebar span {
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: #66ccff;
    text-shadow: 0 0 8px #0099ff;
    font-weight: 600;
}
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

/* ===========================
   HEADER
   =========================== */

.site-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 30px;
    background: #111;
    border-bottom: 2px solid #444;
    position: relative;
}

/* Neon accent bar */
.site-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0099ff, #66ccff, #33ffcc);
    box-shadow: 0 0 12px #0099ff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Header logo (unique class) */
.header-logo {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 0 6px #0099ff);
}

.site-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: #66ccff;
    text-shadow: 0 0 10px #0099ff;
}

/* ===========================
   MAIN NAVIGATION
   =========================== */

.main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: #1a1a1a;
}

.main-nav a {
    color: #66ccff;
    text-decoration: none;
    font-weight: 500;
}
.main-nav a:hover {
    text-shadow: 0 0 6px #00ccff;
}
/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: #0d0d0d;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(#0099ff22 1px, transparent 1px),
        linear-gradient(90deg, #0099ff22 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

/* Depth fade + scanlines */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            rgba(0, 0, 0, 0) 2px
        ),
        linear-gradient(
            to bottom,
            rgba(13, 13, 13, 0) 0%,
            rgba(13, 13, 13, 0.4) 40%,
            rgba(13, 13, 13, 0.75) 70%,
            #0d0d0d 100%
        );
    pointer-events: none;
    z-index: 2;
}

/* Hero logo */
.hero-logo {
    width: clamp(160px, 40vw, 380px);
    height: auto;
    display: block;
    margin: 0 auto 25px;
    filter: drop-shadow(0 0 12px #0099ff);
    position: relative;
    z-index: 3;
}

/* Hero text */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-size: 2.4rem;
    color: #66ccff;
    text-shadow: 0 0 10px #0099ff;
}

.hero p {
    margin-top: 12px;
    color: #cccccc;
    font-size: 1.1rem;
}

/* ===========================
   MAIN CONTENT
   =========================== */

.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 30px;
}
.card {
    background: #1a1a1a;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 6px;
    transition: transform 0.2s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #66ccff;
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    text-align: center;
    padding: 20px;
    background: #111;
    border-top: 2px solid #444;
    color: #888;
}
/* Responsive Hero Logo */
@media (max-width: 900px) {
    .hero-logo {
        width: clamp(140px, 50vw, 300px);
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

@media (max-width: 600px) {
    .hero-logo {
        width: clamp(120px, 60vw, 240px);
        filter: drop-shadow(0 0 8px #0099ff);
    }

    .hero {
        padding: 70px 15px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
/* ===========================
   RESPONSIVE — TABLETS (900px)
   =========================== */

@media (max-width: 900px) {

    /* Hero logo scales smoothly */
    .hero-logo {
        width: clamp(150px, 45vw, 320px);
        margin-bottom: 20px;
    }

    /* Hero text scales */
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Cards get more breathing room */
    .content {
        gap: 25px;
        padding: 25px;
    }
/* ===========================
   RESPONSIVE — PHONES (600px)
   =========================== */

@media (max-width: 600px) {
	}
    /* Title bar scales */
    .genexcess-titlebar span {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    /* Hero spacing tightens */
    .hero {
        padding: 70px 15px;
    }

    /* Hero logo shrinks more */
    .hero-logo {
        width: clamp(130px, 60vw, 260px);
        filter: drop-shadow(0 0 8px #0099ff);
    }

    /* Hero text scales */
    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Cards stack cleanly */
    .content {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .card {
        padding: 18px;
    }	