:root {
  --bg: #060608;
  --text: #f4f4f5;
  --muted: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #e8934a;
  --accent-2: #f5b86a;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-logo: Fraunces, Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% -5%, rgba(232, 147, 74, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(232, 147, 74, 0.06), transparent 50%);
  pointer-events: none;
}

.wrap {
  width: min(640px, 100% - 2.5rem);
  margin-inline: auto;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.construction-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
}

.logo {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 2rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(232, 147, 74, 0.3);
  border-radius: 999px;
  background: rgba(232, 147, 74, 0.1);
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 147, 74, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232, 147, 74, 0); }
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.contact {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover { color: var(--accent); }

footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
