/* HECTEC.AI // REFERENCE MATCH V2.0 */

:root {
    --bg-void: #020205;
    --neon-cyan: #00F0FF;
    --neon-blue: #0066FF;
    --text-white: #FFFFFF;
    --text-dim: #94a3b8;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Courier Prime', monospace;
}

/* --- DARK MODE BACKGROUND FIX --- */
body {
    background-color: #000;
    /* This layers a dark blue tint OVER your circuit image to make it look like the reference */
    background-image: 
        linear-gradient(to bottom, rgba(2, 5, 20, 0.9), rgba(0, 0, 0, 0.95)),
        url('circuit-bg.jpg');
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

.logo-icon {
    height: 40px; /* Restricts the logo size so it doesn't explode */
    margin-right: 15px;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--neon-cyan); }

/* --- HERO SECTION (SIDE-BY-SIDE) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Shield takes less space, Text takes more */
    gap: 50px;
    max-width: 1400px;
    align-items: center;
}

/* LEFT SIDE: GIANT SHIELD */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-shield-img {
    width: 100%;
    max-width: 450px; /* Controls the big shield size */
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* RIGHT SIDE: TEXT */
.hero-content {
    text-align: left; /* Aligns text to the left like the image */
}

h1.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

/* --- COUNTDOWN (CENTERED BELOW) --- */
.countdown-wrapper {
    margin-top: 40px;
    text-align: left;
}

.countdown-label {
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.countdown-timer {
    display: flex;
    gap: 30px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.timer-block {
    text-align: center;
}
.timer-text {
    font-size: 0.7rem;
    color: #666;
    display: block;
    font-family: var(--font-mono);
    margin-top: 5px;
}

/* BUTTON */
.hero-btn {
    margin-top: 40px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-display);
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}
.hero-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* --- PRODUCT GRID (DARK CARDS) --- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.dark-card {
    background: rgba(10, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dark-card img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: 0.3s;
}
.dark-card:hover img { opacity: 1; transform: scale(1.02); }

.card-content {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #000, transparent);
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content, .countdown-wrapper { text-align: center; }
    .countdown-timer { justify-content: center; }
    .product-grid { grid-template-columns: 1fr; }
}