/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./src/app/landing.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/**
 * Landing Page Styles - Waypoint Branding
 * 
 * Brand Colors:
 * - Cream: #F9F4EE (logo, text on dark bg)
 * - Black: #000000 (background)
 * - Blue: #003362 (primary accent)
 * 
 * Logo margin rule: 1/4 of logo height
 */

.landing_container__JoiMB {
    min-height: 100dvh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-black, #000000);
    padding: 0;
    overflow: hidden;
}

/* Header with logo and tagline */
.landing_header__TkI7r {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
}

.landing_logoWrapper__8m1wq {
    /* Margin = 1/4 of logo height */
    margin-bottom: 20px;
    animation: landing_logoFadeIn__P27k4 1.2s ease-out;
}

.landing_logo__Z__TN {
    /* Force proper sizing - logo should be prominent */
    width: 320px !important;
    height: auto !important;
    max-width: 85vw;
}

@keyframes landing_logoFadeIn__P27k4 {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.landing_tagline__Y2aHe {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-cream, #F9F4EE);
    opacity: 0.7;
    margin: 0;
    letter-spacing: 0.08em;
    animation: landing_taglineFadeIn__Hg1jX 1s ease-out 0.3s backwards;
}

@keyframes landing_taglineFadeIn__Hg1jX {
    from { 
        opacity: 0;
        transform: translateY(5px);
    }
    to { 
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Action buttons at bottom */
.landing_actions__Ww_6l {
    display: flex;
    gap: 12px;
    padding: 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    width: 100%;
}

.landing_button__BWbGJ {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid var(--color-cream, #F9F4EE);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-cream, #F9F4EE);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}

.landing_button__BWbGJ:hover {
    background: rgba(249, 244, 238, 0.1);
    border-color: var(--color-cream, #F9F4EE);
}

.landing_button__BWbGJ:active {
    transform: scale(0.98);
}

.landing_buttonPrimary__UorAE {
    background: var(--color-cream, #F9F4EE);
    border-color: var(--color-cream, #F9F4EE);
    color: var(--color-black, #000000);
}

.landing_buttonPrimary__UorAE:hover {
    background: rgba(249, 244, 238, 0.85);
    border-color: rgba(249, 244, 238, 0.85);
    color: var(--color-black, #000000);
}

/* Tablet and larger */
@media (min-width: 600px) {
    .landing_actions__Ww_6l {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .landing_logo__Z__TN {
        max-width: 340px;
    }
}

