/* GLOBAL */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f5f5f7;
    background: #000;
}

/* CINEMATIC NOIR BACKGROUND */
.snokuos-bg {
    min-height: 100vh;
    background:
        radial-gradient(circle at center,
            #14161b 0%,
            #08090d 40%,
            #020203 100%);
    position: relative;
}

/* HEADER */
.snoku-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1b1d22;
}

.snoku-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.brand-text span {
    font-size: 0.8rem;
    color: #9ea0a8;
}

/* MAIN */
.snoku-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
}

/* HERO */
.hero {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
}

.hero-inner {
    max-width: 640px;
    animation: heroFadeUp 1.1s ease-out forwards;
    opacity: 0;
}

.hero-inner h1 {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.hero-inner p {
    font-size: 1.05rem;
    color: #d0d1d6;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(10, 11, 14, 0.85);
    border: 1px solid #1b1d22;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #b3b5bc;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border-color: #f5c26b;
}

/* HERO ANIMATION */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .snoku-main {
        padding: 2.5rem 1.25rem 3rem;
    }

    .hero-inner h1 {
        font-size: 2rem;
    }
}
