/* ============================================
   MAVERICK TEAM — COMING SOON
   Black & White Premium Landing Page
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --gray-950: #0d0d0d;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #555555;
    --gray-400: #777777;
    --gray-300: #999999;
    --gray-200: #bbbbbb;
    --gray-100: #dddddd;
    --gray-50: #f0f0f0;
    --white: #ffffff;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Noise Overlay --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* --- Grid Background --- */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-lines {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent);
}

/* --- Floating Orbs --- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: float-orb 25s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* --- Particles --- */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* --- Container --- */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header --- */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    opacity: 0;
    animation: fade-in-down 0.8s var(--ease-out-expo) 0.2s forwards;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    animation: spin-slow 20s linear infinite;
}

.logo-icon--small {
    width: 28px;
    height: 28px;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--white);
}

.logo-text--small {
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    color: var(--black);
    background: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    color: var(--black);
    background: var(--gray-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0 60px;
    min-height: calc(100vh - 90px);
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    border: 1px solid var(--gray-700);
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.4s forwards;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gray-200);
}

/* --- Hero Title --- */
.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: reveal-word 1s var(--ease-out-expo) var(--delay) forwards;
}

.title-line--1 .title-word {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--gray-400);
}

.title-line--2 .title-word {
    font-size: clamp(3rem, 9vw, 7.5rem);
    color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: reveal-word 1s var(--ease-out-expo) var(--delay) forwards, shimmer 4s linear infinite 1.5s;
}

.title-line--3 .title-word {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: var(--gray-400);
}

@keyframes reveal-word {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* --- Hero Subtitle --- */
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 560px;
    margin-bottom: 50px;
    font-weight: 400;
    opacity: 0;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

/* --- Countdown --- */
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fade-in-up 0.8s var(--ease-out-expo) 0.9s forwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 16px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--gray-600);
    transform: translateY(-2px);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-600);
    padding-bottom: 16px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* --- Subscribe Form --- */
.subscribe-form {
    width: 100%;
    max-width: 480px;
    opacity: 0;
    animation: fade-in-up 0.8s var(--ease-out-expo) 1.1s forwards;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--gray-700);
    border-radius: 100px;
    padding: 5px 5px 5px 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.input-wrapper:focus-within {
    border-color: var(--gray-400);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.04);
}

.email-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--white);
    padding: 10px 0;
    min-width: 0;
}

.email-input::placeholder {
    color: var(--gray-500);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--gray-100);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

.submit-btn:active {
    transform: scale(0.98);
}

.btn-icon {
    display: flex;
    transition: transform 0.3s var(--ease-out-expo);
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 12px;
    text-align: center;
}

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--gray-600);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--gray-200);
    animation: fade-in-up 0.5s var(--ease-out-expo);
}

.success-message svg {
    color: var(--white);
    flex-shrink: 0;
}

.success-message.active {
    display: flex;
}

/* --- About Section --- */
.about {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.about.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    border-color: var(--gray-600);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--gray-700);
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    background: rgba(255,255,255,0.1);
    border-color: var(--gray-500);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-400);
}

/* --- Footer --- */
.footer {
    padding: 50px 0 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--gray-800);
    color: var(--gray-400);
    transition: all 0.3s var(--ease-out-expo);
    background: rgba(255,255,255,0.02);
}

.social-link:hover {
    color: var(--white);
    border-color: var(--gray-500);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-900);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* --- Animations --- */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .header {
        padding: 20px 0;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link:not(.nav-link--cta) {
        display: none;
    }

    .hero {
        padding: 50px 0 40px;
        min-height: calc(100vh - 70px);
    }

    .hero-badge {
        margin-bottom: 28px;
    }

    .hero-subtitle {
        margin-bottom: 36px;
    }

    .countdown {
        gap: 6px;
        margin-bottom: 36px;
    }

    .countdown-item {
        min-width: 64px;
        padding: 12px 8px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

    .input-wrapper {
        flex-direction: column;
        border-radius: 16px;
        padding: 4px;
        gap: 0;
    }

    .email-input {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 4px;
    }

    .countdown-item {
        min-width: 56px;
        padding: 10px 6px;
    }

    .countdown-value {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.55rem;
    }
}

/* --- Selection --- */
::selection {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}
