body, html {
    height: 100%;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #f7f7f8;
    background: #0b0c0d;
    scroll-behavior: smooth;
}

.navbar {
    background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
    backdrop-filter: blur(6px);
}
.nav-brand { font-weight: 700; letter-spacing: 0.6px; }

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('Banner1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: filter 0.2s ease;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: .5rem;
    text-shadow: 0 6px 22px rgba(0,0,0,0.6);
}

.hero p.lead {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    color: #f0e9f5;
    opacity: .95;
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 0.45rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* SECTIONS */
section.features {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #070708 0%, #0f1012 100%);
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(2,2,4,0.7);
}

.feature-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.feature-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.feature-card:hover .feature-banner-img {
    transform: scale(1.05);
}

.feature-body {
    padding-bottom: 1.5rem !important;
}

.mod-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 0.75rem;
    border-radius: 14px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.mod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(2,2,4,0.7);
}
/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Small screens */
@media (max-width: 576px) {
    .hero-content { padding: 2rem 1.25rem; text-align: center; }
}