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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
    background: #F5F5F5;
    overflow-x: hidden;
    height: 100vh;
}

/* Logo Container */
.logo {
    position: fixed;
    top: 2rem;
    left: 4rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-family: 'Courier New', monospace;
}

.logo-text .top {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-text .bottom {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Wave Background */
.waves {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Content Container */
.content {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 4rem;
    max-width: 40rem;
}

.subtitle {
    color: white;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.line {
    display: block;
    width: 13rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #0EA5E9;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    width: max-content;
    border-radius: .4rem;
}

.cta-button:hover {
    background: #0284C7;
}

.waves {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url('assets/Waves.svg');
    background-size: cover;
    background-position: center 20px;
    background-repeat: no-repeat;
}

/* Responsive */
@media (min-width: 768px) {
    /* .logo {
        top: 2rem;
        left: 4rem;
    } */

    /* .subtitle {
        font-size: 1.25rem;
    } */

    /* h1 {
        font-size: 2rem;
    } */
}

@media (min-width: 1024px) {
    /* h1 {
        font-size: 2rem;
    } */

     .content {
        padding: 5rem 7rem;
    }
}