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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

#main {
    min-height: 100vh;
    width: 100%;
}

/* Header styles */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 1200px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    background: white;
    padding: 12px 24px;
    border-radius: 22px;
    font-weight: 700;
    color: black;
}

.menu-button {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 14px;
}

h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: clamp(1.5rem, 4vw, 4rem);
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }
    
    .hero {
        padding: 0 20px;
    }
}