:root {
    --brand-purple: #9b51e0;
    --brand-green: #00ff88;
    --brand-blue: #2d9cdb;
    --brand-dark: #1a1a1a;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: #f3f4f6;
    color: #1a1a1a;
    overflow-x: hidden;
    overflow-y: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
}

.bg-wc-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -2;
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}
.blob-1 { top: -10%; left: -10%; width: 60vw; height: 60vw; background: rgba(155, 81, 224, 0.15); animation-delay: 0s; }
.blob-2 { bottom: -20%; right: -10%; width: 50vw; height: 50vw; background: rgba(0, 255, 136, 0.15); animation-delay: -5s; }
.blob-3 { top: 30%; right: 20%; width: 40vw; height: 40vw; background: rgba(45, 156, 219, 0.15); animation-delay: -8s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.decorative-ring {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -2;
    animation: rotate-organic 40s linear infinite;
}
.ring-1 { 
    width: 120vh;
    height: 120vh;
    top: -20%;
    left: -20%;
    animation: m-color 5s linear alternate,
            rotate-organic 60s linear infinite;
}
.ring-2 { width: 100vh; height: 100vh; bottom: -10%; right: -10%; animation-duration: 50s; animation-direction: reverse; border-color: rgba(45, 156, 219, 0.05); }
.ring-3 { 
    width: 80vh;
    height: 80vh;
    top: 10%;
    right: 10%;
    animation: m-color-2 15s linear alternate-reverse,
            rotate-organic 45s linear infinite;
            border-color: rgb(15, 211, 255, 0.19);
}

@keyframes m-color {
    0% { border-color: rgb(15, 211, 255); }
    25% { border-color: rgba(217, 230, 42, 0.873); }
    50% { border-color: rgba(96, 255, 23, 0.826); }
    75% { border-color: rgba(230, 42, 117, 0.939); }
    100% { border-color: rgba(98, 59, 255, 0.927); }
}

@keyframes m-color-2 {
    0% { border-color: rgb(15, 211, 255, 0.19); }
    25% { border-color: rgba(217, 230, 42, 0.19); }
    50% { border-color: rgba(96, 255, 23, 0.19); }
    75% { border-color: rgba(230, 42, 117, 0.19); }
    100% { border-color: rgba(98, 59, 255, 0.19); }
}

@keyframes rotate-organic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.logo{
    aspect-ratio: 1/1;
}

.input-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-wrapper:hover {
    background: rgba(255, 255, 255, 0.9);
}

.input-wrapper:focus-within {
    background: #ffffff;
    border-color: var(--brand-purple);
    box-shadow: 0 4px 20px rgba(155, 81, 224, 0.1);
    transform: translateY(-2px);
}

.custom-input {
    background: transparent;
    color: #1a1a1a;
}

.custom-input::placeholder {
    color: #9ca3af;
}

.custom-input:focus {
    outline: none;
}

.brand-badge {
    background: linear-gradient(135deg, #111 0%, #333 100%);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.brand-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--brand-green), var(--brand-blue), var(--brand-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
}

.btn-primary {
    background: #1a1a1a;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), var(--brand-green));
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    box-shadow: 0 10px 30px -5px rgba(45, 156, 219, 0.4);
    transform: translateY(-2px);
}

.loader {
    border: 3px solid rgba(255,255,255,0.3);
    border-left-color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }