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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    overflow: hidden;
    background: #ffffff;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Gradient Clouds */
.clouds-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.cloud-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.6) 0%, rgba(196, 181, 253, 0) 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.cloud-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 207, 232, 0.5) 0%, rgba(251, 207, 232, 0) 70%);
    top: 20%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 30s;
}

.cloud-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.5) 0%, rgba(165, 180, 252, 0) 70%);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.cloud-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 186, 116, 0.4) 0%, rgba(253, 186, 116, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -15s;
    animation-duration: 35s;
}

.cloud-5 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.5) 0%, rgba(147, 197, 253, 0) 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: -20s;
    animation-duration: 32s;
}

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

/* Data Connectors */
.data-connectors {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.connector {
    position: absolute;
    animation: drift 25s infinite ease-in-out;
    opacity: 0.9;
}

.connector-api {
    color: #14b8a6;
}

.connector:nth-child(1) .connector-database,
.connector-database:nth-child(1) {
    color: #f59e0b;
}

.connector:nth-child(2),
.connector:nth-child(2) * {
    color: #ec4899;
}

.connector:nth-child(3),
.connector:nth-child(3) * {
    color: #8b5cf6;
}

.connector:nth-child(4),
.connector:nth-child(4) * {
    color: #f97316;
}

.connector:nth-child(5),
.connector:nth-child(5) * {
    color: #fb7185;
}

.connector:nth-child(6),
.connector:nth-child(6) * {
    color: #c084fc;
}

.connector:nth-child(7),
.connector:nth-child(7) * {
    color: #fbbf24;
}

.connector:nth-child(8),
.connector:nth-child(8) * {
    color: #f472b6;
}

.connector:nth-child(9),
.connector:nth-child(9) * {
    color: #fb923c;
}

.connector:nth-child(10),
.connector:nth-child(10) * {
    color: #e879f9;
}

.connector-file {
    color: #ec4899;
}

.connector-stream {
    color: #3b82f6;
}

.connector:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.connector:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    animation-duration: 20s;
}

.connector:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -6s;
    animation-duration: 22s;
}

.connector:nth-child(4) {
    top: 60%;
    right: 25%;
    animation-delay: -9s;
    animation-duration: 19s;
}

.connector:nth-child(5) {
    top: 40%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 21s;
}

.connector:nth-child(6) {
    bottom: 30%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 23s;
}

.connector:nth-child(7) {
    top: 10%;
    right: 40%;
    animation-delay: -4s;
    animation-duration: 24s;
}

.connector:nth-child(8) {
    bottom: 15%;
    left: 45%;
    animation-delay: -8s;
    animation-duration: 17s;
}

.connector:nth-child(9) {
    top: 50%;
    left: 15%;
    animation-delay: -11s;
    animation-duration: 25s;
}

.connector:nth-child(10) {
    top: 70%;
    right: 35%;
    animation-delay: -14s;
    animation-duration: 20s;
}

.connector:nth-child(11) {
    top: 35%;
    right: 8%;
    animation-delay: -7s;
    animation-duration: 22s;
}

.connector:nth-child(12) {
    bottom: 40%;
    left: 35%;
    animation-delay: -16s;
    animation-duration: 19s;
}

.connector:nth-child(13) {
    top: 20%;
    left: 60%;
    animation-delay: -5s;
    animation-duration: 21s;
}

.connector:nth-child(14) {
    bottom: 35%;
    right: 45%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.connector:nth-child(15) {
    top: 45%;
    left: 8%;
    animation-delay: -13s;
    animation-duration: 23s;
}

.connector:nth-child(13) {
    top: 18%;
    left: 55%;
    animation-delay: -5s;
    animation-duration: 21s;
}

.connector:nth-child(14) {
    bottom: 28%;
    right: 40%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.connector:nth-child(15) {
    top: 42%;
    left: 12%;
    animation-delay: -13s;
    animation-duration: 23s;
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -80px) rotate(90deg);
    }
    50% {
        transform: translate(60px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-80px, -60px) rotate(270deg);
    }
}

/* AI Agents */
.ai-agents {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.agent {
    position: absolute;
    width: 60px;
    height: 70px;
    cursor: pointer;
    animation: chase 20s infinite ease-in-out;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

.robot-svg {
    width: 100%;
    height: 100%;
}

/* Robot Head */
.agent-1 .robot-head {
    fill: url(#gradient1);
}

.agent-2 .robot-head {
    fill: url(#gradient2);
}

.agent-3 .robot-head {
    fill: url(#gradient3);
}

.agent-4 .robot-head {
    fill: url(#gradient4);
}

.agent-5 .robot-head {
    fill: url(#gradient5);
}

.agent-6 .robot-head {
    fill: url(#gradient6);
}

.agent-7 .robot-head {
    fill: url(#gradient7);
}

.agent-8 .robot-head {
    fill: url(#gradient8);
}

.agent-9 .robot-head {
    fill: url(#gradient9);
}

.agent-10 .robot-head {
    fill: url(#gradient10);
}

.agent-11 .robot-head {
    fill: url(#gradient11);
}

.agent-12 .robot-head {
    fill: url(#gradient12);
}

.agent-13 .robot-head {
    fill: url(#gradient13);
}

.agent-14 .robot-head {
    fill: url(#gradient14);
}

.agent-15 .robot-head {
    fill: url(#gradient15);
}

/* Robot Body & Arms */
.agent-1 .robot-body,
.agent-1 .robot-arm {
    fill: #764ba2;
}

.agent-2 .robot-body,
.agent-2 .robot-arm {
    fill: #3b82f6;
}

.agent-3 .robot-body,
.agent-3 .robot-arm {
    fill: #8b5cf6;
}

.agent-4 .robot-body,
.agent-4 .robot-arm {
    fill: #14b8a6;
}

.agent-5 .robot-body,
.agent-5 .robot-arm {
    fill: #fb923c;
}

.agent-6 .robot-body,
.agent-6 .robot-arm {
    fill: #c084fc;
}

.agent-7 .robot-body,
.agent-7 .robot-arm {
    fill: #2dd4bf;
}

.agent-8 .robot-body,
.agent-8 .robot-arm {
    fill: #fb7185;
}

.agent-9 .robot-body,
.agent-9 .robot-arm {
    fill: #f0abfc;
}

.agent-10 .robot-body,
.agent-10 .robot-arm {
    fill: #fcd34d;
}

.agent-11 .robot-body,
.agent-11 .robot-arm {
    fill: #fda4af;
}

.agent-12 .robot-body,
.agent-12 .robot-arm {
    fill: #e9d5ff;
}

.agent-13 .robot-body,
.agent-13 .robot-arm {
    fill: #f9a8d4;
}

.agent-14 .robot-body,
.agent-14 .robot-arm {
    fill: #fdba74;
}

.agent-15 .robot-body,
.agent-15 .robot-arm {
    fill: #f0abfc;
}

/* Visor animation */
.robot-visor {
    animation: visor-glow 2s infinite ease-in-out;
}

@keyframes visor-glow {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 4px white);
    }
}

/* Antenna light pulse */
.antenna-light {
    animation: antenna-pulse 1.5s infinite ease-in-out;
}

.agent-1 .antenna-light {
    filter: drop-shadow(0 0 4px #667eea);
    animation-delay: 0s;
}

.agent-2 .antenna-light {
    filter: drop-shadow(0 0 4px #06b6d4);
    animation-delay: 0.3s;
}

.agent-3 .antenna-light {
    filter: drop-shadow(0 0 4px #ec4899);
    animation-delay: 0.6s;
}

.agent-4 .antenna-light {
    filter: drop-shadow(0 0 4px #10b981);
    animation-delay: 0.9s;
}

.agent-5 .antenna-light {
    filter: drop-shadow(0 0 4px #f97316);
    animation-delay: 1.2s;
}

.agent-6 .antenna-light {
    filter: drop-shadow(0 0 4px #a855f7);
    animation-delay: 1.5s;
}

.agent-7 .antenna-light {
    filter: drop-shadow(0 0 4px #14b8a6);
    animation-delay: 1.8s;
}

.agent-8 .antenna-light {
    filter: drop-shadow(0 0 4px #f43f5e);
    animation-delay: 2.1s;
}

.agent-9 .antenna-light {
    filter: drop-shadow(0 0 4px #d946ef);
    animation-delay: 2.4s;
}

.agent-10 .antenna-light {
    filter: drop-shadow(0 0 4px #fbbf24);
    animation-delay: 2.7s;
}

.agent-11 .antenna-light {
    filter: drop-shadow(0 0 4px #fb7185);
    animation-delay: 3s;
}

.agent-12 .antenna-light {
    filter: drop-shadow(0 0 4px #c084fc);
    animation-delay: 3.3s;
}

.agent-13 .antenna-light {
    filter: drop-shadow(0 0 4px #f472b6);
    animation-delay: 3.6s;
}

.agent-14 .antenna-light {
    filter: drop-shadow(0 0 4px #fb923c);
    animation-delay: 3.9s;
}

.agent-15 .antenna-light {
    filter: drop-shadow(0 0 4px #e879f9);
    animation-delay: 4.2s;
}

@keyframes antenna-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.agent-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    animation: glow-pulse 2s infinite ease-in-out;
}

.agent-1 .agent-glow {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.6) 0%, rgba(102, 126, 234, 0) 70%);
    animation-delay: 0s;
}

.agent-2 .agent-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 70%);
    animation-delay: 0.5s;
}

.agent-3 .agent-glow {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, rgba(236, 72, 153, 0) 70%);
    animation-delay: 1s;
}

.agent-4 .agent-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0) 70%);
    animation-delay: 1.5s;
}

.agent-5 .agent-glow {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.6) 0%, rgba(249, 115, 22, 0) 70%);
    animation-delay: 2s;
}

.agent-6 .agent-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0) 70%);
    animation-delay: 2.5s;
}

.agent-7 .agent-glow {
    background: radial-gradient(circle, rgba(20, 184, 166, 0.6) 0%, rgba(20, 184, 166, 0) 70%);
    animation-delay: 3s;
}

.agent-8 .agent-glow {
    background: radial-gradient(circle, rgba(244, 63, 94, 0.6) 0%, rgba(244, 63, 94, 0) 70%);
    animation-delay: 3.5s;
}

.agent-9 .agent-glow {
    background: radial-gradient(circle, rgba(217, 70, 239, 0.6) 0%, rgba(217, 70, 239, 0) 70%);
    animation-delay: 4s;
}

.agent-10 .agent-glow {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 0%, rgba(251, 191, 36, 0) 70%);
    animation-delay: 4.5s;
}

.agent-11 .agent-glow {
    background: radial-gradient(circle, rgba(251, 113, 133, 0.6) 0%, rgba(251, 113, 133, 0) 70%);
    animation-delay: 5s;
}

.agent-12 .agent-glow {
    background: radial-gradient(circle, rgba(192, 132, 252, 0.6) 0%, rgba(192, 132, 252, 0) 70%);
    animation-delay: 5.5s;
}

.agent-13 .agent-glow {
    background: radial-gradient(circle, rgba(244, 114, 182, 0.6) 0%, rgba(244, 114, 182, 0) 70%);
    animation-delay: 6s;
}

.agent-14 .agent-glow {
    background: radial-gradient(circle, rgba(251, 146, 60, 0.6) 0%, rgba(251, 146, 60, 0) 70%);
    animation-delay: 6.5s;
}

.agent-15 .agent-glow {
    background: radial-gradient(circle, rgba(232, 121, 249, 0.6) 0%, rgba(232, 121, 249, 0) 70%);
    animation-delay: 7s;
}

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

.agent-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.agent-2 {
    top: 30%;
    right: 20%;
    animation-delay: -3s;
}

.agent-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: -6s;
}

.agent-4 {
    top: 55%;
    right: 30%;
    animation-delay: -9s;
}

.agent-5 {
    top: 10%;
    left: 45%;
    animation-delay: -4s;
}

.agent-6 {
    bottom: 15%;
    right: 15%;
    animation-delay: -7s;
}

.agent-7 {
    top: 65%;
    left: 8%;
    animation-delay: -11s;
}

.agent-8 {
    top: 40%;
    right: 8%;
    animation-delay: -14s;
}

.agent-9 {
    top: 75%;
    left: 40%;
    animation-delay: -5s;
}

.agent-10 {
    top: 12%;
    right: 35%;
    animation-delay: -8s;
}

.agent-11 {
    bottom: 10%;
    left: 55%;
    animation-delay: -12s;
}

.agent-12 {
    top: 50%;
    left: 28%;
    animation-delay: -16s;
}

.agent-13 {
    top: 28%;
    right: 50%;
    animation-delay: -2s;
}

.agent-14 {
    bottom: 35%;
    right: 22%;
    animation-delay: -10s;
}

.agent-15 {
    top: 62%;
    left: 70%;
    animation-delay: -18s;
}

@keyframes chase {
    0%, 100% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(120px, -80px);
    }
    40% {
        transform: translate(70px, 90px);
    }
    60% {
        transform: translate(-90px, -50px);
    }
    80% {
        transform: translate(-60px, 70px);
    }
}

.agent:hover {
    animation-play-state: paused;
}

.agent:hover .agent-body {
    animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Main Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.title {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand {
    font-weight: 700;
    background: linear-gradient(135deg, #de97c6 0%, #fc5353 50%, #ed9b68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.arc-overlay {
    position: absolute;
    top: -12%;
    left: 73%;
    width: 12%;
    height: 18%;
    pointer-events: none;
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    color: #4b5563;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cloud {
        filter: blur(40px);
    }

    .agent {
        width: 40px;
        height: 40px;
    }

    .agent-body {
        width: 40px;
        height: 40px;
    }

    .connector svg {
        width: 30px;
        height: 30px;
    }

    .content {
        padding: 0 20px;
        width: 100%;
    }

    .title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 0.5rem;
    }

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

    .arc-overlay {
        top: -10%;
        left: 71%;
        width: 14%;
        height: 22%;
    }
}

/* Coming Soon Section */
.coming-soon {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.coming-soon-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    background: linear-gradient(135deg, #de97c6 0%, #fc5353 50%, #ed9b68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    z-index: 100;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}
