/* Global styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 3%;
    background: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0; width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 0.5px solid #363636;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-weight: 600; font-size: 1.2rem; letter-spacing: -0.4px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { color: #888; text-decoration: none; font-size: 1rem; transition: 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }

/* Hamburger menu */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; background: none; border: none; }
.bar { width: 22px; height: 2px; background: #fff; margin: 3px 0; transition: 0.3s; }

/* Content sections */
.hero { height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.content { padding: 120px 10% 40px; max-width: 800px; margin: auto; }
.home-content { padding-top: 0; padding-bottom: 80px; }

h1 { font-size: 3rem; margin-bottom: 20px; letter-spacing: -2px; font-weight: 600; }
p { color: #888; line-height: 1.6; font-size: 1.1rem; letter-spacing: -0.2px; }
.content p + p { margin-top: 18px; }
.content ul { color: #888; line-height: 1.7; padding-left: 22px; margin: 18px 0; }
.content li + li { margin-top: 8px; }
.info-block { margin-top: 36px; padding-top: 24px; border-top: 1px solid #303030; }
.info-block h2 { font-size: 1.2rem; margin: 0 0 12px; font-weight: 600; letter-spacing: -0.8px; }

/* Buttons */
.cta-button {
    background: #fff; color: #000; padding: 12px 24px; border-radius: 8px;
    text-decoration: none; font-weight: 500; display: inline-block; margin-top: 10px;
}

.home-content .cta-button {
    margin-top: 18px;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 70%;
        background: #1c1c1c; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s;
    }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 18px 0; }
    .nav-links a { font-size: 1.45rem; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .content { padding: 110px 8% 36px; }
    .hero { padding: 0 8%; }
}
