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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #050505 0%, #0a0a0a 35%, #0f0f0f 65%, #050505 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.logo-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192,192,192,0.15) 0%, rgba(229,229,229,0.10) 40%, rgba(5,5,5,0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    animation: ethereal-glow 4s ease-in-out infinite alternate, pulse-aura 3s ease-in-out infinite;
}

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

@keyframes ethereal-glow {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
}

.logo-pure {
    color: #ffffff;
    font-weight: 900;
}

.logo-agi {
    background: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 25%, #FFFFFF 50%, #E5E5E5 75%, #C0C0C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.logo-domain {
    color: #ffffff;
    font-weight: 600;
    opacity: 0.9;
}

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

.brain-icon {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite, pulse-gold 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-gold {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.9)); }
}

.tagline-container {
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(199, 210, 254, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    opacity: 0.92;
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(165, 180, 252, 0.85);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.88;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.strategic-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 50%, #FFFFFF 100%);
    color: #050505;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 4px 15px rgba(192, 192, 192, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(192, 192, 192, 0.7); }
}

.price-main, .price-minimum {
    text-align: center;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.price-minimum .price-amount {
    font-size: 3rem;
    background: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* CTA Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cta-button.primary, .cta-button.secondary, .cta-button.tertiary {
    background: linear-gradient(135deg, #B8860B 0%, #C0C0C0 20%, #E5E5E5 40%, #FFFFFF 60%, #E5E5E5 80%, #C0C0C0 100%);
    color: #050505;
    border: 2px solid rgba(192, 192, 192, 0.4);
    box-shadow: 0 4px 25px rgba(192, 192, 192, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
    background-size: 300% 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-position: 100% 0;
    box-shadow: 0 8px 40px rgba(192, 192, 192, 0.7), 0 0 60px rgba(192, 192, 192, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.08) translateY(-2px);
    filter: brightness(1.3) saturate(1.2);
    border-color: rgba(192, 192, 192, 0.8);
}

.cta-button:active {
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 6px 30px rgba(192, 192, 192, 0.6);
}

.cta-button.secondary:hover {
    background: #e5b84f;
    border-color: #e5b84f;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.6);
}

.cta-button.contact {
    background: linear-gradient(135deg, #ffd700 0%, #ffd700 100%);
    color: #050505;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 25px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}

/* Acquisition Options Section */
.acquisition-options {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(192, 192, 192, 0.03);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.acquisition-options p {
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Feature Highlight Section */
.feature-highlight {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-signal, .urgency-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-signal .icon, .urgency-message .icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.trust-signal p, .urgency-message p {
    margin: 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.urgency-message {
    background: rgba(255, 165, 0, 0.08);
    border-color: rgba(255, 165, 0, 0.3);
}

/* Security Section */
.security-section {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.security-section p {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Trust Badges Section */
.trust-badges {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
}

.badges-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.badge-icon.godaddy {
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
}

.badge-icon.afternic {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.badge-icon.escrow {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.badge-icon.sedo {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 2rem 0 4rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 2rem;
}

.trust-text {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 0 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .pricing-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding-top: 3rem;
    }
    
    .strategic-badge {
        position: static;
        transform: none;
        margin-bottom: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-minimum .price-amount {
        font-size: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .feature-highlight {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-signal, .urgency-message {
        width: 100%;
        max-width: 350px;
    }
    
    .badges-container {
        gap: 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .badge {
        padding: 1rem;
        flex-direction: row;
        gap: 0.75rem;
        width: auto;
        min-width: 140px;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.75rem;
    }
    
    .sub-headline {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-minimum .price-amount {
        font-size: 1.5rem;
    }
}
