:root {
    font-family: "Space Grotesk", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f5f5f5;
    background-color: #05040a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw;
    background: radial-gradient(ellipse at top, rgba(153, 0, 255, 0.35), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(0, 181, 255, 0.3), transparent 65%),
        linear-gradient(135deg, #04000b 20%, #050915 80%);
    color: inherit;
    overflow-x: hidden;
    overflow-y: auto;
}

.background-glow {
    position: fixed;
    inset: -10vw;
    background: conic-gradient(from 120deg, #ff6ec4, #7873f5, #1de0f2, #ff6ec4);
    filter: blur(120px);
    opacity: 0.5;
    z-index: 0;
    animation: slow-spin 40s linear infinite alternate;
}

.background-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: 0.25;
    transform: perspective(800px) rotateX(60deg);
    transform-origin: center;
    animation: grid-tilt 12s ease-in-out infinite alternate;
    z-index: 0;
}

.orb {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.7;
    mix-blend-mode: screen;
    z-index: 0;
    animation: float 16s ease-in-out infinite;
}

.orb-one {
    top: -10%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 214, 112, 0.9), rgba(255, 107, 177, 0.15));
    animation-delay: -4s;
}

.orb-two {
    bottom: -5%;
    right: 8%;
    background: radial-gradient(circle, rgba(0, 255, 209, 0.9), rgba(60, 94, 255, 0.1));
    animation-delay: -10s;
}

.orb-three {
    top: 40%;
    right: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(84, 58, 183, 0.1));
    animation-delay: -2s;
}

.scene {
    position: relative;
    z-index: 1;
    width: min(1100px, 90vw);
    background-color: rgba(5, 6, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 4rem);
    backdrop-filter: blur(25px);
    box-shadow: 0 40px 90px rgba(4, 5, 16, 0.85);
    overflow: hidden;
}

.scene::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-text {
    position: relative;
    text-align: left;
}

.hero-text::after {
    content: "";
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
    filter: blur(80px);
    opacity: 0.5;
    animation: pulse 6s ease-in-out infinite;
    z-index: -1;
}

.eyebrow {
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

h1 {
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 1.1;
    background: linear-gradient(120deg, #c6ffdd, #fbd786, #f7797d, #a18cd1, #fbc2eb);
    background-size: 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 8s ease-in-out infinite alternate;
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 5px 40px rgba(252, 223, 255, 0.3);
}

.subtitle {
    font-size: 1.25rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.7;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.8rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.45s ease, background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.btn.primary {
    background: linear-gradient(120deg, #ff6ec7, #9156ff, #18e3ff);
    color: #05040a;
    box-shadow: 0 15px 40px rgba(255, 110, 199, 0.4);
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cards {
    margin-top: clamp(2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.75rem;
    border-radius: 22px;
    background: rgba(8, 13, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.08), transparent 40%);
    animation: sweep 6s linear infinite;
}

.info-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
}

.info-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 30px) scale(1.05);
    }
    100% {
        transform: translate(30px, -20px) scale(0.95);
    }
}

@keyframes slow-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes grid-tilt {
    0% {
        transform: perspective(800px) rotateX(60deg) rotateZ(0deg);
    }
    100% {
        transform: perspective(800px) rotateX(60deg) rotateZ(3deg);
    }
}

@keyframes sweep {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    body {
        padding: 1.5rem;
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
