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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(0, 197, 232, 0.10) 0%,
            rgba(0, 213, 160, 0.05) 28%,
            rgba(7, 13, 23, 0) 55%
        ),
        #070d17;

    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.landing {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
    text-align: center;
}

.logo {
    display: block;
    width: min(600px, 90vw);
    height: auto;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.18em;

    background: linear-gradient(
        90deg,
        #00c5e8,
        #00d5a0,
        #9be63f
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
