:root {
  --bg: #0f1419;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --accent: #c41e3a;
  --max: 720px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: center;
}

.logo-link {
  display: inline-flex;
}

.logo-img {
  height: auto;
  max-width: min(220px, 70vw);
  width: 180px;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 4rem;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.625rem 1.125rem;
  border: 1px solid rgba(196, 30, 58, 0.45);
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--text);
  margin-bottom: 2rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

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

.contact a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

.legal-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.75;
}
