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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #000;
}

.landing {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 700px;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.domain {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #000;
}

.tagline {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.features {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.features li {
    font-size: 0.95rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232e7d32'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #333;
}

.email {
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: #000;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #000;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .content {
        padding: 2.5rem 1.5rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .tagline {
        font-size: 1rem;
    }
}
