/* public/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #000000;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: #71717a;
    --subtle: #3f3f46;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #000;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== BACKGROUND with grid + blobs ===== */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #000;
    background-size: 60px 60px, 60px 60px;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 65%);
    animation-duration: 25s;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    bottom: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
    animation-duration: 32s;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -70px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 40px) scale(0.95);
    }
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
header {
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
    animation: dot-pulse 2.4s infinite;
}

@keyframes dot-pulse {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
        transform: scale(1.3);
    }
}

.nav-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== HERO ===== */
.hero {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 4rem;
    max-width: 860px;
    position: relative;
}

/* subtle glow behind headline */
.hero::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -10%;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 2.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.hero-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
    box-shadow: 0 0 8px #fff;
    animation: dot-pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 2rem;
}

/* first line — solid white */
.hero h1 .line-1 {
    display: block;
    color: #ffffff;
}

/* second line — bright gradient left→right with glow */
.hero h1 .highlight {
    display: block;
    background: linear-gradient(90deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.75) 50%,
            rgba(255, 255, 255, 0.35) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.25));
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* White pill button with shine sweep */
.btn-primary {
    position: relative;
    overflow: hidden;
    padding: 0.9rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.01em;
    font-family: inherit;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 4px 30px rgba(255, 255, 255, 0.12);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btn-shine 3.5s ease-in-out infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    40%,
    100% {
        left: 150%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    padding: 0.9rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ===== STATS ===== */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat-value {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--subtle);
    margin-top: 5px;
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

/* WhatsApp contact card */
.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.4rem 2rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
}

.wa-icon {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.contact-text-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-text-value {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ===== FOOTER ===== */
footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: var(--subtle);
    font-size: 0.83rem;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--subtle);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 1.75rem;
        flex-wrap: wrap;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}