/* ═══════════════════════════════════════════════════════
   LUX — style.css   |   Premium Dark Theme
   ═══════════════════════════════════════════════════════ */

:root {
    --bg:           #06080f;
    --surface:      #0d1117;
    --card-bg:      rgba(255, 255, 255, 0.042);
    --card-border:  rgba(139, 168, 255, 0.18);
    --text:         #f0f4ff;
    --muted:        #7a8db3;
    --subtle:       #4a5a80;
    --accent:       #6c8eff;
    --accent-2:     #a78bfa;
    --header-bg:    rgba(6, 8, 15, 0.8);
    --footer-bg:    rgba(6, 8, 15, 0.7);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Animated mesh background ──────────────────────── */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-mesh::before,
.bg-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: meshFloat 12s ease-in-out infinite alternate;
}

.bg-mesh::before {
    width: 900px; height: 900px;
    top: -300px; right: -200px;
    background: radial-gradient(circle, rgba(108, 142, 255, 0.22) 0%, rgba(80, 50, 200, 0.12) 60%, transparent 100%);
    animation-delay: 0s;
}

.bg-mesh::after {
    width: 700px; height: 700px;
    bottom: -250px; left: -150px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, rgba(50, 20, 150, 0.10) 60%, transparent 100%);
    animation-delay: 5s;
}

@keyframes meshFloat {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(40px, -30px) scale(1.06); }
    66%  { transform: translate(-20px, 50px) scale(0.96); }
    100% { transform: translate(30px, 20px) scale(1.04); }
}

/* Dot grid overlay */
.bg-dots {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(108, 142, 255, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2.5rem;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(108, 142, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.header-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 12px rgba(108, 142, 255, 0.6));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.header-logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 22px rgba(108, 142, 255, 0.9));
    transform: scale(1.06);
}

.header-wordmark {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text);
    text-transform: uppercase;
}

/* ── Main ───────────────────────────────────────────── */
.coming-soon-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.25rem;
}

/* ── Card ───────────────────────────────────────────── */
.card {
    position: relative;
    width: min(700px, 94vw);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 4rem 3rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 2px 0 rgba(255, 255, 255, 0.07) inset,
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(108, 142, 255, 0.06);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(108, 142, 255, 0.6) 40%,
        rgba(167, 139, 250, 0.6) 60%,
        transparent);
    border-radius: 999px;
}

.card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── LUX eyebrow pill ──────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding: 0.3rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg,
        rgba(108, 142, 255, 0.15),
        rgba(167, 139, 250, 0.12));
    border: 1px solid rgba(108, 142, 255, 0.3);
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Heading ───────────────────────────────────────── */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, #ffffff 30%, #b8c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Body text ─────────────────────────────────────── */
.lead {
    margin: 0 auto;
    max-width: 50ch;
    line-height: 1.75;
    color: var(--muted);
    font-size: 1rem;
}

.lead + .lead { margin-top: 0.8rem; }

.lead.subtle {
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 0.9;
}

.lead.muted-small {
    font-size: 0.82rem;
    color: var(--subtle);
}

/* ── Bot tags row ──────────────────────────────────── */
.bot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.8rem 0 0;
}

.bot-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bot-tag:hover {
    background: rgba(108, 142, 255, 0.12);
    border-color: rgba(108, 142, 255, 0.35);
    color: var(--text);
}

.bot-tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
}

/* ── Divider ───────────────────────────────────────── */
.card-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent) 40%,
        var(--accent-2) 60%,
        transparent);
    border: none;
    margin: 2rem auto;
    border-radius: 2px;
}

/* ── Status badge ──────────────────────────────────── */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 1.8rem;
}

.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b, 0 0 16px rgba(245,158,11,0.4);
    animation: pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1;   box-shadow: 0 0 8px #f59e0b, 0 0 16px rgba(245,158,11,0.4); }
    50%       { opacity: 0.4; box-shadow: 0 0 4px #f59e0b; }
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 100;
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--subtle);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--footer-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-footer a {
    color: #8aabff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
    .site-header { padding: 0.75rem 1.25rem; }
    .card { padding: 2.5rem 1.5rem; }
    .header-wordmark { display: none; }
}

/* -- Admin login button (header, top-right) ------------- */
.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.35);
    color: #8fa8ff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-login-btn:hover {
    background: rgba(88, 101, 242, 0.28);
    border-color: rgba(88, 101, 242, 0.6);
    color: #fff;
}
