/* Base CSS - Reset, body, typography */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* overall background fallback */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, rgb(13, 39, 63) 0, #05060c 55%, #020308 100%);
    color: var(--fg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* typography */
.logo {
    display: block;
    max-width: 240px;
    height: auto;
    margin: 0 auto 0.8rem;
    opacity: 0.9;
}

.hero h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 3vw + 0.8rem, 2.8rem);
    letter-spacing: 0.12em;
    color: var(--fg);
}

.tagline {
    margin: 0 auto 1.2rem;
    max-width: 36rem;
    color: var(--muted);
    line-height: 1.5;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.coming-soon-text {
    margin-top: 1.4rem;
    font-size: 0.95rem;
    color: var(--muted);
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.coming-soon-desc {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.75;
    letter-spacing: 0.01em;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--fg);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card h2 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: #a3a9c1;
    line-height: 1.6;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

/* Website content is enabled - logo, text, timer, and cards are visible */

