@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at top left, #3730a320 0%, transparent 35%),
        radial-gradient(circle at bottom right, #06b6d420 0%, transparent 35%),
        linear-gradient(180deg, #09090b, #111827, #020617);
    position: relative;
}

img,
picture,
svg,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .45rem 1.2rem .45rem .55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(241, 234, 234, 0.5);
    backdrop-filter: blur(20px);
    color: #e2e8f0;
    font-size: .85rem;
    letter-spacing: .04em;
    margin-bottom: 20px;

    transition: .35s ease;
}

.badge img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, .35));

}

.badge::before {
    content: "";
    position: absolute;
    width: 36px;
    height: 36px;
    margin-left: 4px;
    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .35),
            transparent 70%);
    filter: blur(8px);
    opacity: .5;
}

.badge:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

:root {
    --bg-1: #0f172a;
    --bg-2: #1e293b;
    --bg-3: #312e81;

    --primary: #6366f1;
    --secondary: #22d3ee;
    --accent: #8b5cf6;

    --text: #ffffff;
    --text-soft: #cbd5e1;
    --text-muted: #94a3b8;

    --glass: rgba(255, 255, 255, .08);
    --glass-border: rgba(255, 255, 255, .15);

    --radius: 28px;

    --shadow: 0 20px 50px rgba(0, 0, 0, .35);

}

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    animation: float 10s ease-in-out infinite alternate;
}

.blob:nth-child(1) {
    width: 280px;
    height: 280px;
    background: var(--primary);
    top: -80px;
    left: -80px;
}

.blob:nth-child(2) {
    width: 220px;
    height: 220px;
    background: var(--secondary);
    right: -60px;
    bottom: -60px;
    animation-duration: 12s;
}

.blob:nth-child(3) {
    width: 180px;
    height: 180px;
    background: var(--accent);
    top: 45%;
    right: 20%;
    animation-duration: 15s;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.card {
    position: relative;
    width: 100%;
    max-width: 720px;
    padding: 4rem;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .10),
            rgba(255, 255, 255, .05));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 2px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, .45),
        inset 0 1px rgba(255, 255, 255, .08);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.card:hover {
    transform: translateY(-16px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .55);

}

.card::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(18, 25, 40, 9),
            rgba(20, 25, 45, 9));
    z-index: 1;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle),
            transparent 0deg,
            transparent 300deg,
            rgba(34, 211, 238, 0.9) 325deg,
            rgba(99, 102, 241, 0.9) 340deg,
            rgba(139, 92, 246, 0.9) 355deg,
            transparent 360deg);
    animation: rotateBorder 7s linear infinite;
    z-index: 0;
}

.card>* {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
    text-shadow:
        0 0 15px rgba(255, 255, 255, .5),
        0 0 35px rgba(99, 102, 241, .45),
        0 0 60px rgba(34, 211, 238, .35);
    position: relative;
    animation: glow 6s ease-in-out infinite;
}

h1::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 40px;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
    background: radial-gradient(rgba(99, 102, 241, .55), transparent);
    filter: blur(30px);
    z-index: -1;
}

p {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-soft);
    margin-bottom: .75rem;
}

span {
    display: block;
    font-size: .95rem;
    color: var(--text-muted);
    letter-spacing: .08em;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translateY(-20px) translateX(-10px) scale(1);
    }

    to {
        transform: translateY(20px) translateX(20px) scale(1.15);
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, .2);
    }

    50% {
        text-shadow:
            0 0 35px rgba(103, 232, 249, .4),
            0 0 60px rgba(99, 102, 241, .35);
    }
}

@media (min-width:768px) {
    .card {
        padding: 4rem;
    }
}

@media (min-width:1200px) {
    .blob:nth-child(1) {
        width: 420px;
        height: 420px;
    }

    .blob:nth-child(2) {
        width: 320px;
        height: 320px;
    }

    .blob:nth-child(3) {
        width: 260px;
        height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto;

    }

}