:root {
    --bg: #081422;
    --panel: #10263c;
    --accent: #00b894;
    --accent-2: #ffe066;
    --text: #f4f6f8;
    --muted: #b7c6d1;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1000px 500px at 90% -10%, rgba(255, 122, 24, 0.28), transparent 60%),
        radial-gradient(800px 500px at 5% 100%, rgba(255, 209, 102, 0.2), transparent 55%),
        var(--bg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    overflow: hidden;
}

.page-stack {
    position: relative;
    width: min(760px, 100%);
    display: grid;
    gap: 2rem;
    animation: rise 650ms ease-out;
}

.bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.45;
}

.shape-a {
    width: 280px;
    height: 280px;
    background: #ff7a18;
    top: -70px;
    right: -80px;
}

.shape-b {
    width: 240px;
    height: 240px;
    background: #2ec4b6;
    left: -80px;
    bottom: -90px;
}

.content {
    background: linear-gradient(145deg, rgba(16, 38, 60, 0.92), rgba(12, 29, 46, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.eyebrow {
    margin: 0;
    color: var(--accent-2);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 8vw, 5.4rem);
    line-height: 0.95;
    margin: 0.6rem 0 1rem;
    letter-spacing: 0.02em;
}

.lead {
    margin: 0 0 1.2rem;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 58ch;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlights span {
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1rem;
    }

    h1 {
        margin-bottom: 0.8rem;
    }
}
