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

:root {
  --black: #111110;
  --mid: #6b6b67;
  --light: #c8c8c2;
  --bg: #f8f7f4;
  --white: #ffffff;
  --accent: #111110;
}

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--light);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.status-pill::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b7d4f;
  animation: pulse 2s ease-in-out infinite;
}

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

  50% {
    opacity: 0.4;
  }
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--mid);
}

.tagline {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

footer {
  padding: 1.75rem 3rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--light);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--mid);
}

@media (max-width: 520px) {
  header,
  footer {
    padding: 1.5rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
