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

:root {
    /* Foxmandal Color Palette */
    --deep-navy: #000e27;
    --navy: #00234e;
    --gold: #e9c176;
    --gold-light: #ffdea5;
    --gold-dark: #a88642;
    --brown-dark: #160d00;
    --brown: #312100;

    /* Warm neutrals */
    --cream: #fcf9f8;
    --cream-dark: #f0edec;
    --cream-darker: #f6f3f2;
    --warm-gray: #ebe7e7;
    --warm-gray-dark: #e5e2e1;
    --cream-bg: #f3f0ef;

    /* Greys */
    --dark: #1c1b1b;
    --dark-dim: #313030;
    --gray-mid: #44474f;
    --gray: #555f6d;
    --gray-light: #596372;
    --gray-lighter: #747780;
    --gray-pale: #c4c6d0;

    /* Accents */
    --blue-gray: #728bbc;
    --blue-pale: #d6e0f1;

    /* Brand colors mapped */
    --bg-dark: var(--deep-navy);
    --bg-darker: #000a18;
    --text-primary: var(--cream);
    --text-secondary: var(--gray-pale);
    --brand-primary: var(--gold);
    --brand-accent: var(--gold-light);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Pattern - subtle texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(233, 193, 118, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(114, 139, 188, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient Gold Glow */
body::after {
    content: '';
    position: fixed;
    top: 30%;
    left: 50%;
    width: 1000px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(233, 193, 118, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-md) var(--space-xl);
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: var(--deep-navy);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--cream);
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

/* Status Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(233, 193, 118, 0.25);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 193, 118, 0.15), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Title */
.title {
    font-size: clamp(2.5rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: var(--space-lg);
    max-width: 900px;
    text-transform: lowercase;
}

.title span {
    display: block;
    color: var(--gold);
}

.title .accent {
    color: var(--gold-light);
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-pale);
    max-width: 520px;
    margin-bottom: var(--space-2xl);
}

/* Feature Highlights */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
    width: 100%;
    max-width: 680px;
    margin-bottom: var(--space-2xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(233, 193, 118, 0.12);
    background: rgba(0, 14, 39, 0.3);
    transition: var(--transition);
}

.feature:hover {
    border-color: rgba(233, 193, 118, 0.3);
    background: rgba(233, 193, 118, 0.08);
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.5px;
}

/* Email Signup */
.signup-section {
    width: 100%;
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.signup-text {
    font-size: 0.9rem;
    color: var(--gray-pale);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.signup-form {
    display: flex;
    gap: 12px;
}

.signup-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(233, 193, 118, 0.05);
    border: 1px solid rgba(233, 193, 118, 0.15);
    color: var(--cream);
    font-size: 0.95rem;
    transition: var(--transition);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(233, 193, 118, 0.1);
}

.signup-form input::placeholder {
    color: rgba(252, 249, 248, 0.3);
}

.signup-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--deep-navy);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.signup-form button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
}

.success-message {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0;
    transition: var(--transition);
}

.success-message.show {
    opacity: 1;
}

/* Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 400px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -2px;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--gray-pale);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Footer */
.footer {
    padding: var(--space-lg) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    border-top: 1px solid rgba(233, 193, 118, 0.1);
    margin-top: auto;
}

.footer p {
    font-size: 0.8rem;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(233, 193, 118, 0.15);
    color: var(--gray-pale);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        letter-spacing: -2px;
    }

    .signup-form {
        flex-direction: column;
    }

    .countdown {
        gap: var(--space-sm);
    }

    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: var(--space-sm);
    }

    .title {
        letter-spacing: -1px;
    }

    .features {
        flex-direction: column;
        gap: 8px;
    }

    .feature {
        padding: 10px 16px;
    }
}
