/*Styles*/
:root {
    --primary: #0e7ccb;
    --secondary: #134ec2;
    --accent: #f97316;
    --anchor: #0b1220;
    --light: #f3f4f6;
    --text: #111111;
    --muted: #9ca3af;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--light);
    background: var(--anchor);
}

.page-bg {
    position: relative;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(14, 124, 203, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 80% 15%, rgba(19, 78, 194, 0.34) 0%, transparent 42%),
        radial-gradient(circle at 50% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 45%),
        linear-gradient(120deg, #090f1a 0%, #0b1220 40%, #111a31 100%);
}

.hero {
    position: relative;
    z-index: 2;
    width: min(880px, 100%);
    text-align: center;
    padding: clamp(1rem, 2vw, 1.75rem);
    border: 1px solid rgba(243, 244, 246, 0.08);
    border-radius: 24px;
    background: rgba(11, 18, 32, 0.22);
    backdrop-filter: blur(4px);
    box-shadow:
        0 0 0 1px rgba(14, 124, 203, 0.1) inset,
        0 12px 36px rgba(8, 18, 40, 0.2);
}

.brand-logo-svg {
    width: clamp(230px, 42vw, 470px);
    height: auto;
    margin-bottom: 1.1rem;
}

.logo-mark {
    transform-origin: center;
    transform-box: fill-box;
    animation: spin-mark 10s linear infinite;
}

.headline {
    margin: 0;
    font-family: "Epilogue", sans-serif;
    font-size: clamp(1.6rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.08;
    white-space: nowrap;
    letter-spacing: 0.01em;
    color: var(--white);
    text-shadow: 0 0 20px rgba(14, 124, 203, 0.45);
}

.description {
    margin: 1rem auto 0;
    max-width: 62ch;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.7;
    color: var(--light);
    opacity: 0.95;
}

.coming-soon {
    margin: 1.6rem auto 0;
    width: fit-content;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.55);
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.25), rgba(14, 124, 203, 0.24));
    box-shadow:
        0 0 18px rgba(249, 115, 22, 0.45),
        0 0 26px rgba(14, 124, 203, 0.25);
    animation: pulse-glow 2.2s ease-in-out infinite;
}

.gradient-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 360px;
    height: 360px;
    top: -80px;
    left: -70px;
    background: radial-gradient(circle, rgba(14, 124, 203, 0.45), rgba(14, 124, 203, 0));
}

.orb-2 {
    width: 420px;
    height: 420px;
    right: -110px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.36), rgba(249, 115, 22, 0));
    animation-delay: 1s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(156, 163, 175, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(156, 163, 175, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    pointer-events: none;
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 244, 246, 0.9), rgba(14, 124, 203, 0.4));
    opacity: 0.5;
    animation: rise var(--duration, 10s) linear infinite;
    animation-delay: var(--delay, 0s);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
}

.reveal.is-visible {
    animation: reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow:
            0 0 18px rgba(249, 115, 22, 0.45),
            0 0 26px rgba(14, 124, 203, 0.25);
    }
    50% {
        box-shadow:
            0 0 22px rgba(249, 115, 22, 0.8),
            0 0 32px rgba(14, 124, 203, 0.45);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-14px) translateX(8px);
    }
}

@keyframes spin-mark {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0;
    }
    12% {
        opacity: 0.45;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translate3d(var(--drift, 0px), -105vh, 0) scale(1.1);
        opacity: 0;
    }
}

@media (max-width: 680px) {
    .page-bg {
        padding: 1.2rem;
    }

    .hero {
        border-radius: 18px;
        padding: 1rem;
    }

    .description {
        line-height: 1.55;
    }

    .brand-logo-svg {
        width: min(100%, 380px);
    }

    .headline {
        white-space: nowrap;
        font-size: clamp(1.3rem, 6.1vw, 2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
