:root {
    --bg: #050505;
    --panel: rgba(14, 14, 14, .82);
    --line: rgba(255,255,255,.12);
    --muted: #8d8d8d;
    --text: #f3f3f3;
    --accent: #c9c9c9;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,.055), transparent 32rem),
        linear-gradient(135deg, #030303 0%, #0a0a0a 50%, #020202 100%);
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    pointer-events: none;
}

.ambient { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .12; pointer-events: none; }
.ambient-one { width: 280px; height: 280px; top: 8%; left: 8%; background: #fff; }
.ambient-two { width: 240px; height: 240px; right: 6%; bottom: 8%; background: #aaa; }

.construction-card {
    position: relative;
    width: min(900px, 100%);
    padding: clamp(30px, 6vw, 72px);
    text-align: center;
    background: linear-gradient(145deg, rgba(20,20,20,.9), rgba(7,7,7,.78));
    border: 1px solid var(--line);
    box-shadow: 0 30px 100px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.035);
    backdrop-filter: blur(16px);
}

.brand-mark {
    width: min(520px, 90%);
    margin: 0 auto 24px;
}
.brand-mark img { display: block; width: 100%; height: auto; filter: brightness(1.8) contrast(1.05); }

.status-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 4px 0 24px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8d8d8;
    box-shadow: 0 0 14px rgba(255,255,255,.7);
    animation: pulse 1.8s ease-in-out infinite;
}

h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 800;
}
h1 span { color: #8f8f8f; }
.intro {
    max-width: 590px;
    margin: 24px auto 0;
    color: #a7a7a7;
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.7;
}

.progress-wrap { max-width: 560px; margin: 42px auto 0; text-align: left; }
.progress-labels { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 10px; color: #666; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.progress-track { height: 3px; overflow: hidden; background: #1c1c1c; }
.progress-bar { width: 68%; height: 100%; background: linear-gradient(90deg, #5e5e5e, #eee, #6b6b6b); animation: shimmer 3s linear infinite; background-size: 200% 100%; }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    padding: 12px 18px;
    color: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: .2s ease;
}
.contact-link:hover { background: #fff; color: #000; transform: translateY(-1px); }

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 52px;
    color: #555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.footer-divider { width: 3px; height: 3px; background: #444; border-radius: 50%; }

@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

@media (max-width: 600px) {
    .page-shell { padding: 14px; }
    .construction-card { padding: 34px 22px 28px; }
    .brand-mark { width: 100%; margin-bottom: 10px; }
    .status-line { margin-bottom: 20px; }
    .progress-wrap { margin-top: 32px; }
    footer { margin-top: 38px; line-height: 1.6; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
