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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, #1a1a2e 0%, #0a0a0a 60%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        linear-gradient(225deg, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== Glow Orbs ===== */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    top: -10%;
    left: -10%;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.5), transparent);
    bottom: -15%;
    right: -10%;
    animation-delay: 2s;
    animation-duration: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ===== Hero Content ===== */
.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50px;
    margin-bottom: 2rem;
}

/* ===== Title ===== */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.domain {
    font-size: clamp(1.7rem, 5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    white-space: nowrap;
    background: linear-gradient(135deg, #c084fc 0%, #a78bfa 40%, #f472b6 60%, #fb923c 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    line-height: 1.1;
}

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

.tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* ===== Subtitle ===== */
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ===== CTA Button ===== */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
    background-size: 300% 300%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.4), 0 0 80px rgba(236, 72, 153, 0.2);
    animation: gradientShift 4s ease-in-out infinite, ctaFloat 3s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.6), 0 0 120px rgba(236, 72, 153, 0.3);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.cta-icon {
    font-size: 1.5rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ===== Hero Note ===== */
.hero-note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* ===== Other Domains ===== */
.other-domains {
    margin-top: 2.5rem;
    font-size: 0.85rem;
}

.other-domains-title {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
}

.domain-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-top: 1.25rem;
}

.domain-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.domain-list a:hover {
    color: #f472b6;
}

/* ===== Particles ===== */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ===== Footer ===== */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 24px 20px;
    z-index: 2;
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 768px), (max-height: 500px) {
    .badge {
        margin-bottom: 1rem;
    }

    .hero-title {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1.05rem;
    }

    .hero-note {
        margin-top: 1rem;
    }

    .other-domains {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px), (max-height: 400px) {
    .badge {
        margin-bottom: 0.75rem;
    }

    .hero-title {
        gap: 0.15rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-note {
        margin-top: 0.75rem;
        font-size: 0.7rem;
    }

    .domain {
        font-size: clamp(1.3rem, 5vw, 2.2rem);
    }

    .tagline {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}
