/* CSS Custom Properties */
:root {
    /* Primary gradient colors */
    --color-purple-dark: #5F00E5;
    --color-purple: #8916FF;
    --color-purple-light: #D392FF;
    /* Secondary gradient colors */
    --color-violet: #7C16C9;
    --color-blue: #192CFF;
    --color-cyan: #6AD5FF;
    /* Background gradient colors */
    --color-bg-dark: #231F3A;
    --color-bg-medium: #29339E;
    --color-bg-light: #3E3765;
    /* Text colors */
    --color-text: #ffffff;
    --color-text-secondary: #e2e8f0;
    --color-text-muted: #cbd5e1;
    --color-footer: #64748b;
    /* Gradients */
    --gradient-primary: linear-gradient(147.28deg, var(--color-purple-dark) -2.43%, var(--color-purple) 41.48%, var(--color-purple-light) 97.54%);
    --gradient-secondary: linear-gradient(147.28deg, var(--color-violet) -2.43%, var(--color-blue) 41.48%, var(--color-cyan) 97.54%);
    --gradient-bg: linear-gradient(147.28deg, var(--color-bg-medium) -2.43%, var(--color-bg-dark) 31.42%, var(--color-bg-light) 97.54%);
    /* Interaction colors (with alpha) */
    --color-purple-alpha-25: rgba(137, 22, 255, 0.25);
    --color-purple-alpha-30: rgba(137, 22, 255, 0.3);
    --color-purple-alpha-40: rgba(137, 22, 255, 0.4);
    --color-purple-light-alpha: rgba(211, 146, 255, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animated Background Objects */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-object {
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    z-index: 1;
    overflow: hidden;
}

/* Hover disabled - bubbles are non-interactive */

.floating-object:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.obj-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.floating-object:hover .obj-content {
    transform: scale(1.02);
}

.obj-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.floating-object:hover .obj-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Individual object styling and animations */
.influencer-obj {
    background: linear-gradient(147.28deg, rgba(95, 0, 229, 0.25), rgba(137, 22, 255, 0.25));
    top: 60%;
    left: 20%;
    animation-name: float1;
}

.companies-obj {
    background: linear-gradient(147.28deg, rgba(137, 22, 255, 0.25), rgba(211, 146, 255, 0.25));
    top: 60%;
    right: 20%;
    animation-name: float3;
}

.analytics-obj {
    background: linear-gradient(147.28deg, rgba(124, 22, 201, 0.25), rgba(25, 44, 255, 0.25));
    top: 25%;
    left: 10%;
    animation-name: float4;
}

.growth-obj {
    background: linear-gradient(147.28deg, rgba(25, 44, 255, 0.25), rgba(106, 213, 255, 0.25));
    top: 30%;
    right: 8%;
    animation-name: float5;
}

.web3-obj {
    background: linear-gradient(147.28deg, rgba(95, 0, 229, 0.25), rgba(106, 213, 255, 0.25));
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    animation-name: float6;
}

@keyframes float6 {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-20px) scale(1.03);
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(5deg);
    }

    66% {
        transform: translateY(20px) rotate(-3deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(-15px);
    }

    75% {
        transform: translateY(25px) translateX(10px);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-35px) translateX(20px) scale(1.05);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-25px) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }

    75% {
        transform: translateY(15px) rotate(2deg);
    }
}

/* Sparkle effect for floating objects */
.floating-object::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--color-purple-alpha-30), transparent, var(--color-purple-light-alpha), transparent);
    border-radius: 22px;
    z-index: -1;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0;
}

.floating-object:hover::before {
    opacity: 1;
}

@keyframes sparkle {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.5;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Pulse effect on floating objects */
.floating-object::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    border: 2px solid var(--color-purple-alpha-30);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite alternate, shimmer 4s ease-in-out infinite;
    position: relative;
    will-change: filter;
}

.company-name::after {
    content: 'Influence360';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(95, 0, 229, 0.5));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(211, 146, 255, 0.8));
    }
}

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

.tagline {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 0.05em;
}

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

/* Hero content entrance animation */
.hero-content {
    animation: heroEntrance 1.2s ease-out;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    text-align: center;
    max-width: 800px;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    color: var(--color-footer);
    font-size: 0.9rem;
}

/* Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .floating-object {
        padding: 18px 25px;
        font-size: 16px;
    }

    .obj-icon {
        font-size: 24px;
    }

    /* Enhanced animations for larger screens */
    @keyframes float1 {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        33% {
            transform: translateY(-40px) rotate(6deg);
        }

        66% {
            transform: translateY(25px) rotate(-4deg);
        }
    }

    @keyframes float3 {

        0%,
        100% {
            transform: translateY(0px) translateX(0px);
        }

        25% {
            transform: translateY(-25px) translateX(-20px);
        }

        75% {
            transform: translateY(30px) translateX(15px);
        }
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .floating-object {
        padding: 12px 18px;
        font-size: 13px;
    }

    .obj-icon {
        font-size: 18px;
    }

    .influencer-obj {
        top: 65%;
        left: 15%;
    }

    .companies-obj {
        top: 65%;
        right: 15%;
    }

    .analytics-obj {
        top: 28%;
        left: 8%;
    }

    .growth-obj {
        top: 32%;
        right: 6%;
    }

    .web3-obj {
        bottom: 15%;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .company-name {
        font-size: 2.5rem;
    }

    .floating-object {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 15px;
    }

    .obj-icon {
        font-size: 14px;
    }

    .influencer-obj {
        top: 70%;
        left: 10%;
    }

    .companies-obj {
        top: 70%;
        right: 10%;
    }

    .analytics-obj {
        top: 15%;
        left: 5%;
    }

    .growth-obj {
        top: 18%;
        right: 5%;
    }

    .web3-obj {
        bottom: 12%;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .floating-object {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 12px;
    }

    .obj-icon {
        font-size: 12px;
    }

    .obj-content {
        gap: 6px;
    }

    .influencer-obj {
        top: 75%;
        left: 5%;
    }

    .companies-obj {
        top: 75%;
        right: 5%;
    }

    .analytics-obj {
        top: 12%;
        left: 3%;
    }

    .growth-obj {
        top: 15%;
        right: 3%;
    }

    .web3-obj {
        bottom: 8%;
    }
}
