/**
 * Minimalist Landing Page - Pure Zinc Gray Theme
 * Ultra-clean, centered, focused
 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #18181b;
    overflow-x: hidden;
}

html {
    background: #18181b;
    overflow-x: hidden;
}

/* Main Container */
.landing-minimal {
    min-height: 100vh;
    background: #18181b;
    background-image:
        radial-gradient(at 20% 30%, rgba(161, 161, 170, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(161, 161, 170, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(63, 63, 70, 0.15) 0px, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.landing-minimal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(113, 113, 122, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(113, 113, 122, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.content-wrapper {
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s backwards;
}

.logo-box {
    width: 6rem;
    height: 6rem;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logo-box:hover {
    transform: scale(1.05);
    border-color: #52525b;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
}

.tornado-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: #a1a1aa;
    stroke-width: 2.5;
}

@keyframes windBlow {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(3px) rotate(2deg);
    }

    75% {
        transform: translateX(-3px) rotate(-2deg);
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

/* Brand Name */
.brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fafafa;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out 0.4s backwards;
    text-transform: uppercase;
    font-style: italic;
}

/* Tagline */
.tagline {
    margin-bottom: 2.5rem;
    animation: fadeIn 0.5s ease-out 0.6s backwards;
}

.tagline p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #71717a;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tagline p:first-child {
    color: #a1a1aa;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fafafa;
    color: #18181b;
    font-weight: 600;
    font-size: 1.0625rem;
    padding: 1.125rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out 0.8s backwards;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: #e4e4e7;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px) scale(1.03);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(0.25rem);
}

/* Footer Note */
.footer-note {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #52525b;
    animation: fadeIn 0.5s ease-out 1s backwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .brand-name {
        font-size: 2.5rem;
    }

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

    .cta-button {
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
    }

    .logo-box {
        width: 4rem;
        height: 4rem;
    }

    .logo-icon {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 480px) {
    .landing-minimal {
        padding: 1.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .tagline p {
        font-size: 0.9375rem;
    }
}