/* ============================================
   Gecker Pre-Launch Splash Page Styles
   ============================================ */

/* CSS Variables - Matching Gecker Brand Colors */
:root {
    /* Primary (Orange) - from tailwind.config.js */
    --color-primary: #FB8C00;
    --color-primary-light: #FFA726;
    --color-primary-dark: #F57C00;

    /* Secondary (Blue) - from tailwind.config.js */
    --color-secondary: #1E88E5;
    --color-secondary-light: #42A5F5;
    --color-secondary-dark: #1976D2;

    /* Gray scale */
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-white: #FFFFFF;

    /* Warning/Alert */
    --color-warning: #F59E0B;
    --color-warning-light: #FEF3C7;

    --font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --transition-base: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(to bottom, #FFFFFF 0%, #F9FAFB 100%);
    color: var(--color-gray-900);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 140, 0, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.mascots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.mascot {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition-base);
}

.mascot:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Combined bounce + wiggle animations - extra smooth with many keyframes */
@keyframes bounce-wiggle-left {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-8px) rotate(-2deg);
    }
    20% {
        transform: translateY(-18px) rotate(-4deg);
    }
    30% {
        transform: translateY(-28px) rotate(-5deg);
    }
    40% {
        transform: translateY(-35px) rotate(-4deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    60% {
        transform: translateY(-35px) rotate(4deg);
    }
    70% {
        transform: translateY(-28px) rotate(5deg);
    }
    80% {
        transform: translateY(-18px) rotate(4deg);
    }
    90% {
        transform: translateY(-8px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes bounce-wiggle-right {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    10% {
        transform: translateY(-8px) rotate(2deg);
    }
    20% {
        transform: translateY(-18px) rotate(4deg);
    }
    30% {
        transform: translateY(-28px) rotate(5deg);
    }
    40% {
        transform: translateY(-35px) rotate(4deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    60% {
        transform: translateY(-35px) rotate(-4deg);
    }
    70% {
        transform: translateY(-28px) rotate(-5deg);
    }
    80% {
        transform: translateY(-18px) rotate(-4deg);
    }
    90% {
        transform: translateY(-8px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.logo-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent headline wrapping on desktop */
@media (min-width: 769px) {
    .hero-title {
        white-space: nowrap;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
}

/* Alpha Badge */
.alpha-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-warning);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--color-warning);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        border-color: var(--color-primary);
        box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    }
}

.badge-icon {
    font-size: 2rem;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50%, 60%, 70%, 80%, 90% { transform: rotate(0deg); }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge-content strong {
    font-size: 1.1rem;
    color: var(--color-gray-900);
    display: block;
    margin-bottom: 0.25rem;
}

.badge-content span {
    font-size: 0.95rem;
    color: var(--color-gray-600);
}

.badge-content a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.badge-content a:hover {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 900px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-800);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-white);
}

.pill-icon {
    font-size: 1.25rem;
}

/* Info Section */
.info-section {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

/* Card suits display - centered below description */
.card-suits-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 2.5rem;
}

/* Playing card suit colors - Gecker brand colors */
.card-diamond,
.card-heart {
    color: var(--color-primary-dark); /* Gecker dark orange #F57C00 */
}

.card-spade,
.card-club {
    color: var(--color-secondary-dark); /* Gecker dark blue #1976D2 */
}

.info-text {
    font-size: 1rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-warning {
    background: var(--color-warning-light);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-warning);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
    line-height: 1.8;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li strong {
    color: var(--color-gray-900);
    font-weight: 600;
}

/* Progress Section */
.progress-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-gray-200);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-weight: 600;
    color: var(--color-gray-900);
    font-size: 0.95rem;
}

.progress-percentage {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: var(--color-gray-100);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    transition: width 1s ease;
    box-shadow: 0 2px 8px rgba(251, 140, 0, 0.4);
}

.progress-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-gray-600);
    font-style: italic;
}

/* Status Section */
.status-section {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.status-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-gray-50);
    border-radius: 0.75rem;
    transition: var(--transition-base);
    cursor: default;
}

.status-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.status-item.status-active {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
    color: var(--color-white);
}

.status-item.status-active .status-dot {
    background: var(--color-white);
    animation: pulse-dot 2s infinite;
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-phase {
    font-weight: 700;
    font-size: 0.95rem;
    color: inherit;
}

.status-detail {
    font-size: 0.8rem;
    opacity: 0.9;
    color: inherit;
}

.status-item:not(.status-active) .status-phase {
    color: var(--color-gray-900);
}

.status-item:not(.status-active) .status-detail {
    color: var(--color-gray-600);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-400);
    flex-shrink: 0;
    margin-top: 4px;
}

.roadmap-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-gray-50);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-600);
    font-style: italic;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* How It Works Section */
.how-it-works-section {
    width: 100%;
    max-width: 900px;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.works-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
}

.works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.works-card-highlight {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, rgba(102, 165, 246, 0.05) 100%);
    border: 2px solid var(--color-secondary-light);
}

.works-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.works-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.works-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.works-description {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.works-note {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Acknowledgments Section */
.acknowledgments-section {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.05) 0%, rgba(30, 136, 229, 0.05) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid rgba(251, 140, 0, 0.2);
}

.acknowledgment-text {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    line-height: 1.9;
    text-align: center;
}

.acknowledgment-text em {
    color: var(--color-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
    width: 100%;
}

.footer-text {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
}

.footer-text a:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

.footer-links {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.footer-links a {
    color: var(--color-gray-600);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

.separator {
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .alpha-badge {
        flex-direction: column;
        text-align: center;
    }

    .badge-content {
        align-items: center;
        text-align: center;
    }

    .feature-pills {
        gap: 0.75rem;
    }

    .pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .acknowledgments-section {
        padding: 1.5rem;
    }

    .acknowledgment-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .mascots svg {
        width: 60px;
        height: 60px;
    }
}
