:root {
  color-scheme: light;
  --bg: #f7f3eb;
  --ink: #151515;
  --muted: #5d625f;
  --line: #d7d0c3;
  --accent: #0f6b5f;
  --accent-strong: #0b4b43;
  --panel: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.15), transparent 32%),
    linear-gradient(315deg, rgba(192, 77, 54, 0.12), transparent 36%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 4rem);
  place-items: center;
}

.hero {
  width: min(100%, 780px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.8rem, 13vw, 8.5rem);
  line-height: 0.92;
}

.intro {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.status-panel {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: #2c312f;
  font-size: 0.95rem;
  font-weight: 600;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(15, 107, 95, 0.4);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.65rem rgba(15, 107, 95, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(15, 107, 95, 0);
  }
}

@media (max-width: 520px) {
  .status-panel {
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .status-dot {
    margin-top: 0.22rem;
  }
}
