@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --primary: #eff4f8;
    --secondary: #1d466e;
    --accent: #d9a61f;
    --accent2: #40b3e5;
    --text: #1f2328;
    --white: #f8f9fa;
    --shadow: #1d466e33;
    --dot-active: #333;
    --dot-inactive: #bbb;
    --border-color: rgba(0, 0, 0, 0.1);
    --con-padding: clamp(2rem, 6vw, 5rem);
    --bg: #020617;
    --soft: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: "Open Sans", sans-serif;
    background: var(--bg);
    overflow: hidden;
}

.parallax {
    min-height: 100dvh;
    background: linear-gradient(
            to bottom,
            rgba(2, 6, 23, 0.9),
            rgba(2, 6, 23, 0.98)
        ),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=2000&q=80")
            center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wrapper {
    max-width: 900px;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 25px;
    padding: 60px 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    animation: floatIn 1.5s ease forwards;
}

@keyframes floatIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent2);
    margin-bottom: 10px;
}

.subtitle {
    color: var(--soft);
    margin-bottom: 35px;
    font-size: 15px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-box a {
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid var(--accent2);
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-box a.primary {
    background: var(--accent2);
    color: #020617;
}

.cta-box a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
}

footer {
    margin-top: 40px;
    font-size: 13px;
    color: var(--soft);
}

/* floating shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape.blue {
    background: #38bdf8;
    width: 300px;
    height: 300px;
    top: -60px;
    left: -80px;
    opacity: 0.3;
}

.shape.purple {
    background: #a78bfa;
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -60px;
    opacity: 0.25;
}

@media (max-width: 600px) {
    .wrapper {
        padding: 40px 25px;
    }

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 15px;
    }
}
