:root {
  color-scheme: light;
  font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  text-align: center;
}

.hero-image {
  margin: 0 auto 32px;
  max-width: 360px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.lede {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.6;
}

.status {
  margin: 0;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact {
  margin: 16px 0 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #0f172a;
}

.contact a:hover {
  opacity: 0.7;
}

.footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.85rem;
}

.footer p {
  margin: 0;
}
