/* ============================================================
   style.crr  —  Under Construction Page
   Served as text/css via AddType in .htaccess
   ============================================================ */

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

:root {
    --bg:       #0d1b2a;
    --bg2:      #11233d;
    --teal:     #64ffda;
    --teal-dim: rgba(100, 255, 218, 0.15);
    --teal-glow:rgba(100, 255, 218, 0.08);
    --text:     #ccd6f6;
    --muted:    #8892b0;
    --radius:   12px;
}

html, body {
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* ── Canvas particles ─────────────────────────────────────── */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── Page wrapper ─────────────────────────────────────────── */
.page-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
    gap: 20px;
}

/* ── Logo ring ────────────────────────────────────────────── */
.logo-ring {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 18px rgba(100,255,218,0.45));
    animation: float 4s ease-in-out infinite;
}
.logo-ring svg { width: 100%; height: 100%; }

.spin-ring {
    transform-origin: 40px 40px;
    animation: spin 12s linear infinite;
}

@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0);    }
    50%      { transform: translateY(-10px);}
}

/* ── Eyebrow ──────────────────────────────────────────────── */
.eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.85;
}

/* ── Headline ─────────────────────────────────────────────── */
.headline {
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text) 40%, var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Sub ──────────────────────────────────────────────────── */
.sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 440px;
}

/* ── Countdown ────────────────────────────────────────────── */
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-glow);
    border: 1px solid rgba(100,255,218,0.12);
    border-radius: var(--radius);
    padding: 18px 28px;
    backdrop-filter: blur(8px);
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
}

.cd-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    transition: color 0.3s;
}

.cd-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.cd-sep {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    opacity: 0.4;
    align-self: flex-start;
    margin-top: 4px;
}

/* ── Progress bar ─────────────────────────────────────────── */
.progress-wrap {
    width: 100%;
    max-width: 380px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: var(--teal-dim);
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #457b9d, var(--teal));
    border-radius: 99px;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(100,255,218,0.4);
}

/* ── Live clock ───────────────────────────────────────────── */
.clock {
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
    border: 1px solid rgba(100,255,218,0.08);
    padding: 5px 14px;
    border-radius: 99px;
    background: var(--teal-glow);
}

/* ── Animated dots ────────────────────────────────────────── */
.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.2;
    animation: pulse-dot 1.4s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dot {
    0%, 80%, 100% { opacity: 0.15; transform: scale(0.85); }
    40%           { opacity: 1;    transform: scale(1.2);  }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .countdown { padding: 14px 16px; gap: 4px; }
    .cd-num    { font-size: 1.5rem; }
    .cd-block  { min-width: 42px; }
}
