
:root {
    --mega-primary: #0061f2;
    --mega-secondary: #6900f2;
    --mega-dark: #0b1220;
    --mega-slate: #475569;
    --mega-light: #f8fafc;
    --mega-white: #ffffff;
    --mega-glass: rgba(255, 255, 255, 0.7);
    --mega-border: rgba(255, 255, 255, 0.1);
    --mega-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    --mega-gradient: linear-gradient(135deg, var(--mega-primary) 0%, var(--mega-secondary) 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--mega-white);
    color: var(--mega-dark);
    overflow-x: hidden;
}

/* 1. Typography Extensions */
.fw-black { font-weight: 900; }
.text-outline {
    -webkit-text-stroke: 1px var(--mega-primary);
    color: transparent;
}
.text-primary-gradient {
    background: var(--mega-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tracking-widest { letter-spacing: 0.2em; }

/* 2. Mega Hero Styles */
.mega-hero-section {
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 97, 242, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(105, 0, 242, 0.05) 0%, transparent 50%);
}

.mega-hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 97, 242, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
}

.mega-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 97, 242, 0.08);
    border-radius: 999px;
    border: 1px solid rgba(0, 97, 242, 0.1);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--mega-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--mega-primary);
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 97, 242, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 97, 242, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 97, 242, 0); }
}

.btn-mega-primary {
    background: var(--mega-gradient);
    color: white;
    border: none;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-mega-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 97, 242, 0.3);
    color: white;
}

.btn-mega-outline {
    background: transparent;
    border: 2px solid var(--mega-dark);
    color: var(--mega-dark);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.btn-mega-outline:hover {
    background: var(--mega-dark);
    color: white;
}

/* 3. Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--mega-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    padding: 40px;
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: var(--mega-shadow);
}

.bento-1 { grid-column: span 2; grid-row: span 2; background: var(--mega-dark); color: white; }
.bento-2 { grid-column: span 2; background: var(--mega-white); }
.bento-3 { grid-column: span 1; background: var(--mega-primary); color: white; }
.bento-4 { grid-column: span 1; background: var(--mega-white); }

/* 4. Glass Card */
.glass-card {
    background: var(--mega-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--mega-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--mega-shadow);
}

/* 5. Performance Benchmarks */
.benchmark-row {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 12px;
    overflow: hidden;
}

.benchmark-fill {
    height: 100%;
    background: var(--mega-gradient);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* 6. Domain Search Professional */
.mega-domain-box {
    background: #0b1220;
    border-radius: 40px;
    padding: 60px;
    position: relative;
    z-index: 10;
}

.mega-search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 100px;
}

.mega-search-input input {
    color: white !important;
}

.mega-search-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* 7. Footer Professional */
.mega-footer {
    background: var(--mega-dark);
    color: white;
    padding-top: 100px;
    padding-bottom: 50px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--mega-primary);
    padding-left: 5px;
}

/* Animations */
[data-gsap="fade-up"] { opacity: 0; transform: translateY(30px); }
[data-gsap="fade-in"] { opacity: 0; }
[data-gsap="zoom-in"] { opacity: 0; transform: scale(0.9); }

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .display-1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .mega-hero-btns { flex-direction: column; }
    .mega-domain-box { padding: 30px; }
}
