/* ============================================================
   INPRINT – GLOBAL RED NEON THEME
   Clean, Optimized, Mobile-First
============================================================ */

/* ---------- COLOR SYSTEM ---------- */
:root {
    --bg-dark: #05060a;
    --bg-light: #0f1118;
    --accent: #ff0000;
    --accent-soft: #ff1a1a;
    --text: #f5f5f5;
    --muted: #b6b6c7;
    --card: #171924;
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- BASE BODY ---------- */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #400000 0, #05060a 45%, #000 100%);
    color: var(--text);
    line-height: 1.5;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 100px;
}

a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: var(--accent-soft);
}

/* ============================================================
   HEADER + LOGO
============================================================ */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

/* ============================================================
   DESKTOP NAVIGATION
============================================================ */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
nav a {
    font-size: 0.9rem;
    color: var(--muted);
}
nav a:hover {
    color: var(--accent-soft);
}

/* ============================================================
   HAMBURGER (MOBILE ONLY)
============================================================ */
.hamburger {
    display: none;       /* mobile only */
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 6px var(--accent);
    transition: 0.35s ease;
}

/* ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   NEON MOBILE NAV DROPDOWN
============================================================ */
#mainNav {
    display: flex;
}

@media (max-width: 900px) {
    #mainNav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: rgba(0,0,0,0.92);
        border-bottom: 1px solid rgba(255,0,0,0.3);
        padding: 10px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    #mainNav.show {
        display: flex !important;
    }

    #mainNav a {
        padding: 14px 20px;
        text-align: center;
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.1rem;
        text-shadow: 0 0 6px var(--accent);
    }

    .hamburger {
        display: flex;
    }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #cc0000);
    color: #000;
    box-shadow:
        0 0 12px rgba(255,0,0,0.6),
        0 0 35px rgba(255,0,0,0.4),
        0 0 60px rgba(255,0,0,0.2);
}
.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
    border-color: var(--accent-soft);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,2.5fr);
    gap: 32px;
    align-items: center;
}

.tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-soft);
    margin-bottom: 10px;
}

.pill {
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 999px;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 10px;
}

.hero .lead {
    max-width: 32rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.hero-meta {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ============================================================
   HERO HIGHLIGHT
============================================================ */
.hero-highlight {
    padding: 18px;
    border-radius: 24px;
    background: radial-gradient(circle at top, #4a0010 0, #05060a 60%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.hero-highlight h2 {
    color: var(--accent-soft);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.mockup-window {
    min-height: 350px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pillar-img img {
    max-height: 330px;
    width: auto;
}

/* ============================================================
   FEATURES GRID
============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.features-grid .card {
    background: var(--card);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

.features-grid .card p {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ============================================================
   FOOTER (FIXED)
============================================================ */
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    padding: 12px 0;
    border-top: 1px solid rgba(255,0,0,0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.site-footer a {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================================
   COOKIE BAR
============================================================ */
.cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -200px;
    background: rgba(0,0,0,0.92);
    text-align: center;
    padding: 20px;
    transition: bottom 0.6s ease;
    z-index: 9999;
}
.cookie-bar.show {
    bottom: 0;
}
.cookie-btn {
    background: var(--accent);
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: #000;
    font-weight: 700;
}

/* ============================================================
   MOBILE HERO + NAV FIXES
============================================================ */
@media (max-width: 900px) {

    header {
        padding: 6px 4px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 1.25rem !important;
        margin: 4px 0;
    }

    .hero .lead {
        font-size: 0.85rem;
    }

    .mockup-window {
        min-height: 220px;
    }

    .pillar-img img {
        max-height: 200px;
    }

    .hero-actions {
        text-align: center;
    }
}
