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

body {
    margin: 0;
    background-color: #fff;
    width: 100vw;
    min-height: 100vh;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}

header,
main,
footer {
    position: relative;
    z-index: 1;
}

main {
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 101px;
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #bfbfbf;
}

header img {
    height: 46px;
    width: auto;
}

header a {
    font-size: 18px;
    font-family: "sofia-pro", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: #000;
}

header a:hover {
    text-decoration: none;
    color: #cccccc;
}

/* HERO SECTION */
.hero {
    padding: 100px 125px 60px 125px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

h1 {
    font-family: "big-caslon-fb", Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.15;
    color: #000;
    margin-bottom: 40px;
}

.features {
    font-family: "sofia-pro", Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.tagline {
    font-family: "sofia-pro", Georgia, serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 40px;
}

.pricing {
    margin-bottom: 80px;
}

.pricing p {
    font-family: "sofia-pro", Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.pricing strong {
    font-weight: 700;
}

.cta-label {
    font-family: "sofia-pro", Georgia, serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-family: "sofia-pro", Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 18px 40px;
    width: 220px;
    text-align: center;
    margin-bottom: 14px;
}

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

@media (max-width: 768px) {
    header {
        padding: 20px 24px;
    }

    header img {
        height: 32px;
    }

    .hero {
        padding: 64px 26px 44px 28px;
        max-width: 100%;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .tagline {
        font-size: 17px;
        margin-bottom: 56px;
    }

    .pricing p {
        font-size: 17px;
    }

    .pricing {
        margin-bottom: 56px;
    }

    .cta-label {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
    }
}
