/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #0d1b14;
    color: #ffffff;
    line-height: 1.6;
}

/* NAV */
.nav {
    background: #08120d;
    padding: 1rem 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
}

.logo a:visited {
    color: #ffffff;
}

.logo a:hover {
    opacity: 0.85;
}

nav a {
    margin-left: 1.5rem;
    color: #c9e4d0;
    text-decoration: none;
    font-size: 0.95rem;
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    position: relative;
}

/* SALES */
.sales h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #cfe8d6;
    margin-bottom: 2rem;
}

.benefits li {
    list-style: none;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* LOGIN */
.login-area {
    position: relative;
    z-index: 1;
    transition: all 0.25s ease;
}

.login-card {
    background: rgba(255,255,255,0.06);
    background: rgba(15, 42, 29, 0.85);
    transition: all 0.25s ease;
}

.login-area:hover {
    z-index: 10;
}

.login-area:hover .login-card {
    background: #0f2a1d;
    box-shadow: 0 30px 70px rgba(0,0,0,0.55);
    transform: translateY(-4px) scale(1.01);
}

.login-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.login-card h2 {
    margin-bottom: 1.5rem;
}

.login-card input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
}

.login-card button {
    width: 100%;
    padding: 0.8rem;
    background: #1fa971;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.login-links {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.login-links a {
    color: #9fe0bc;
    text-decoration: none;
}

/* IMAGE */
.hero-image {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 320px;
    opacity: 0.35;
    filter: blur(1px);
}

/* FEATURES */
.features {
    background: #08120d;
    padding: 3rem 2rem;
    text-align: center;
}

.feature-grid {
    max-width: 900px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-grid div {
    background: rgba(255,255,255,0.05);
    padding: 1.2rem;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto 0;
        opacity: 0.45;
        filter: none;
    }

    .sales h1 {
        font-size: 2rem;
    }

    nav {
        display: none;
    }

    .logo a::after {
        content: " ↩";
        font-size: 0.8rem;
        opacity: 0.6;
    }
}
