/* ═══════════════════════════════════════════════════════════════
   HIGHEND HERO + HOME PAGE DESIGN SYSTEM
   Teleportz Enterprises — Premium UI
   ═══════════════════════════════════════════════════════════════ */

:root {
    --hero-primary: #0f172a;
    --hero-teal: #0f766e;
    --hero-cyan: #5eead4;
    --hero-gold: #fbbf24;
    --hero-accent: #14b8a6;
    --hero-text: #ffffff;
    --hero-glass: rgba(15, 23, 42, 0.78);
    --hero-border: rgba(255, 255, 255, 0.08);
}

/* ── Animations ─────────────────────────────── */
@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(-45deg);
    }

    100% {
        transform: translateX(100%) rotate(-45deg);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.08;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes orbitRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ── Hero Card ─────────────────────────────── */
.hero-card {
    background: var(--hero-glass) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid var(--hero-border) !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
    padding: 4rem 5rem !important;
    border-radius: 36px !important;
    animation: heroFloat 7s ease-in-out infinite, fadeSlideUp 1s ease-out !important;
    overflow: hidden !important;
    position: relative;
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%, rgba(255, 255, 255, 0.02) 45%,
            rgba(255, 255, 255, 0.06) 50%,
            rgba(255, 255, 255, 0.02) 55%, transparent 100%);
    transform: rotate(-45deg);
    animation: shine 10s infinite linear;
    pointer-events: none;
}

/* ── Hero Badge ─────────────────────────────── */
.hero-badge-blurred {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(20, 184, 166, 0.25) !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 4px 24px rgba(20, 184, 166, 0.12) !important;
    transition: all 0.35s ease !important;
    color: var(--hero-cyan) !important;
}

.hero-badge-blurred:hover {
    background: rgba(20, 184, 166, 0.18) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.2) !important;
}

/* ── Hero Title ─────────────────────────────── */
.hero-title {
    font-size: clamp(1.8rem, 6vw, 5.2rem) !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    background: linear-gradient(135deg, #ffffff 0%, #5eead4 40%, #fbbf24 100%) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 6s ease infinite !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 0.5rem !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25)) !important;
    display: block;
    text-align: center;
    white-space: nowrap;
    line-height: 1.05 !important;
}

.brand-main {
    display: inline-block;
    white-space: nowrap !important;
}

.brand-subtitle {
    display: block !important;
    font-size: 0.32em !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
    opacity: 0.85 !important;
    margin-top: 4px !important;
    font-weight: 700 !important;
    background: linear-gradient(90deg, #ffffff, var(--hero-cyan)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* ── Hero Lead Text ─────────────────────────── */
.hero-lead {
    color: rgba(255, 255, 255, 0.75) !important;
}

.text-accent-bright {
    background: linear-gradient(90deg, var(--hero-cyan), #22c55e) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 700 !important;
}

/* ── Feature Pills ─────────────────────────── */
.hero-features-container {
    gap: 14px !important;
}

.feature-pill {
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    backdrop-filter: blur(8px) !important;
}

.feature-pill:hover {
    transform: translateY(-4px) scale(1.04) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--hero-cyan) !important;
    color: var(--hero-cyan) !important;
    box-shadow: 0 10px 28px rgba(94, 234, 212, 0.18) !important;
}

/* ── Hero Buttons ─────────────────────────── */
.btn-hero-main {
    background: linear-gradient(135deg, var(--hero-teal) 0%, var(--hero-accent) 100%) !important;
    padding: 17px 38px !important;
    font-size: 1.05rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 14px 36px rgba(15, 118, 110, 0.4) !important;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    border-radius: 999px !important;
}

.btn-hero-main:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 20px 48px rgba(15, 118, 110, 0.55) !important;
}

.btn-hero-sub {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    padding: 17px 38px !important;
    font-size: 1.05rem !important;
    color: white !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 999px !important;
    transition: all 0.35s ease !important;
}

.btn-hero-sub:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-3px) !important;
}

/* ── Scroll Indicator ─────────────────────── */
.scroll-indicator-home {
    margin-top: 2.5rem;
}

.scroll-indicator-home .scroll-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    animation: heroFloat 3s ease-in-out infinite;
}

.scroll-indicator-home .scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.scroll-indicator-home i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

/* ── Parallax Background ─────────────────── */
.hero-visuals::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--hero-cyan) 0%, transparent 70%);
    top: -120px;
    right: -120px;
    opacity: 0.12;
    filter: blur(60px);
    z-index: -1;
    animation: pulseGlow 10s infinite alternate;
}

.hero-visuals::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    bottom: -180px;
    left: -180px;
    opacity: 0.1;
    filter: blur(70px);
    z-index: -1;
    animation: pulseGlow 8s infinite alternate-reverse;
}

/* ── Floating Particles ─────────────────── */
.floating-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.p1 {
    width: 8px;
    height: 8px;
    top: 18%;
    left: 12%;
    animation: float 8s infinite;
}

.p2 {
    width: 14px;
    height: 14px;
    top: 58%;
    left: 82%;
    animation: float 12s infinite 1s;
}

.p3 {
    width: 6px;
    height: 6px;
    top: 38%;
    left: 88%;
    animation: float 10s infinite 0.5s;
}

.p4 {
    width: 10px;
    height: 10px;
    top: 78%;
    left: 18%;
    animation: float 14s infinite 2s;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
    .hero-card {
        padding: 2.5rem 1.5rem !important;
        border-radius: 28px !important;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 3rem) !important;
        letter-spacing: -1px !important;
        white-space: normal;
    }

    .brand-main {
        white-space: normal !important;
    }

    .btn-hero-main,
    .btn-hero-sub {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
    }
}