:root {
  color-scheme: light;
  --bg: #f3f0e8;
  --surface: #fffdf8;
  --text: #17201f;
  --muted: #687370;
  --accent: #176b59;
  --accent-soft: #dff2ea;
  --border: #dedbd2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 14%, rgb(23 107 89 / 10%), transparent 30rem),
    var(--bg);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: clamp(20px, 5vw, 72px);
  place-items: center;
}

.card {
  width: min(760px, 100%);
  padding: clamp(28px, 7vw, 72px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgb(255 253 248 / 92%);
  box-shadow: 0 24px 80px rgb(23 32 31 / 10%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  border-radius: 15px;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.3em;
}

.kicker {
  margin: clamp(46px, 9vw, 82px) 0 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  min-height: 42px;
  margin-top: 42px;
  padding: 0 16px;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  border: 1px solid #b9d9cd;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(23 107 89 / 12%);
}

@media (max-width: 520px) {
  .card {
    border-radius: 20px;
  }

  .status {
    align-items: flex-start;
    border-radius: 18px;
    line-height: 1.35;
    padding-block: 12px;
  }

  .status__dot {
    margin-top: 4px;
    flex: 0 0 auto;
  }
}
