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

/* Body */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    width: 100%;
    background: #111;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

@media (max-width: 600px) {
    .logo {
        height: 50px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    animation: fadeIn 1.2s ease-out;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #bdbdbd;
}

/* Soft gradient overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
