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

body {
    font-family: 'Futura', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Lighter overlay, masculine font */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4),
        rgba(20, 20, 20, 0.3),
        rgba(0, 0, 0, 0.5)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
}

.domain-name {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7);
    font-family: 'Futura', 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    white-space: nowrap;
}

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

.of {
    font-family: 'Futura', 'Impact', 'Arial Black', sans-serif;
    font-weight: 400;
    font-size: 0.6em;
    color: #cccccc;
    margin: 0 30px;
}

.speed {
    font-weight: 900;
    color: #ffffff;
    position: relative;
}

.speed::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.8;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 50px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-container {
    margin-bottom: 60px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.negotiable {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 20px 70px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Futura', 'Avenir Next', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Power Stats - Stronger Typography */
.power-stats {
    background: #0a0a0a;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat {
    color: white;
    padding: 40px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Futura', 'Impact', sans-serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 2px;
}

/* Value Proposition - Clean Premium */
.value-proposition {
    padding: 120px 0;
    background: #111111;
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.benefit {
    background: transparent;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.benefit:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.benefit h3 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.benefit p {
    color: #cccccc;
    font-weight: 300;
    line-height: 1.8;
}

/* Market Data - Sophisticated */
.market-data {
    padding: 120px 0;
    background: #0a0a0a;
}

.market-data h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.sales-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sales-data {
        grid-template-columns: 1fr;
    }
}

.sale {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.sale:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.sale .domain {
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
}

.sale .price {
    font-weight: 300;
    color: #ffffff;
    font-size: 1.1rem;
}

.source {
    text-align: center;
    color: #666;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

/* Contact - Minimal Elegance */
.contact {
    padding: 120px 0;
    background: #111111;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 80px;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-method a:hover {
    border-bottom-color: #ffffff;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #666666;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.inquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.inquiry-form button {
    background: transparent;
    color: white;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.inquiry-form button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer */
footer {
    background: #000000;
    color: #666666;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-weight: 300;
    letter-spacing: 1px;
}

.privacy {
    margin-top: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .domain-name {
        font-size: 2.8rem;
        letter-spacing: 6px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Applications Section - Clean and Direct */
.applications {
    padding: 100px 0;
    background: #111111;
}

.applications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Futura', 'Impact', sans-serif;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .use-case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }
}

.use-case {
    background: transparent;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-family: 'Futura', 'Avenir Next', sans-serif;
}

.use-case:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
}
/* Success page styles */
.success-message {
    text-align: center;
    margin-top: 2rem;
}

.success-message h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.success-message p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
