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

:root {
  --red: #c0392b;
  --red-light: #fef2f2;
  --ink: #111110;
  --ink-muted: #666560;
  --ink-faint: #aaa9a4;
  --bg: #faf9f6;
  --border: rgba(0, 0, 0, 0.1);
}

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
}

.wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
  animation: fadein 0.9s ease both;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadein 0.9s 0.1s ease both;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  animation: fadein 0.9s 0.2s ease both;
}

.logo span {
  color: var(--red);
}

.tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(15px, 3vw, 18px);
  color: var(--ink-muted);
  margin-bottom: 40px;
  animation: fadein 0.9s 0.3s ease both;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 40px;
  animation: fadein 0.9s 0.35s ease both;
}

.teaser {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 420px;
  margin: 0 auto 40px;
  animation: fadein 0.9s 0.4s ease both;
}

.teaser strong {
  color: var(--ink);
  font-weight: 500;
}

.allegations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto 44px;
  animation: fadein 0.9s 0.5s ease both;
}

.allegation {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
}

.allegation-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.allegation-text {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.allegation-text strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 40px;
  animation: fadein 0.9s 0.6s ease both;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.footer-note {
  font-size: 12px;
  color: var(--ink-faint);
  font-style: italic;
  line-height: 1.6;
  animation: fadein 0.9s 0.7s ease both;
}

.footer-note a {
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
}
