/* ============================================= */
/*  andrezinho.com – Domain For Sale             */
/*  Dark / Grey Modern Theme                     */
/* ============================================= */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #f9f9f9;
    --border: #e0e0e0;
    --border-hover: #cccccc;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #999999;
    --accent: #333333;
    --accent-hover: #000000;
    --green: #16a34a;
    --green-dim: rgba(22, 163, 74, 0.1);
    --gradient-start: #f0f0f0;
    --gradient-end: #ffffff;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Noise Texture Overlay ---------- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ---------- Container ---------- */
.container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Logo ---------- */
.logo-area {
    margin-bottom: 2rem;
}

.logo-icon {
    width: 56px;
    height: 56px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.logo-icon:hover {
    color: var(--text-primary);
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.logo-img:hover {
    opacity: 0.9;
}

/* ---------- Domain Name ---------- */
.domain-name {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tld {
    font-weight: 400;
    opacity: 0.6;
}

/* ---------- Badge ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid rgba(52, 211, 153, 0.2);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ---------- Description ---------- */
.description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.description strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ---------- Features ---------- */
.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 100px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.25rem;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.cta-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button-icon {
    font-size: 1rem;
}

.email-display {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Inter', monospace;
    letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }

    .domain-name {
        font-size: 2rem;
    }

    .features {
        gap: 0.75rem;
    }

    .feature {
        min-width: 80px;
        padding: 0.75rem 0.75rem;
    }

    .cta-section {
        padding: 2rem 1.25rem;
    }
}