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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;
    line-height: 1.5;
}

.hero {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1560958089-b8a1929cea89?auto=format&fit=crop&q=80&w=2071');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    transition: opacity 0.3s ease;
}

.content.hidden {
    display: none;
    opacity: 0;
}

.logo {
    margin-bottom: 2rem;
}

.logo svg {
    stroke: white;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

p {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    max-width: 36rem;
    margin: 0 auto 3rem;
    color: #e5e5e5;
}

.cta-button {
    background-color: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e5e5e5;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover svg {
    transform: translateX(-4px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.875rem;
    color: #a3a3a3;
    z-index: 10;
}