:root {
  color-scheme: light dark;
  --canvas: #e9e4dc;
  --shell: #f8f5ef;
  --surface: #fffdf9;
  --soft: #f0ebe2;
  --text: #26241f;
  --muted: #716d64;
  --line: #ded7cb;
  --primary: #c7654f;
  --primary-soft: #f4ded7;
  --primary-ink: #7c3327;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 16%, var(--primary-soft), transparent 34rem),
    var(--canvas);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.shell {
  width: min(100% - 32px, 960px);
  margin: auto;
  padding: 72px 0 48px;
}

.hero {
  max-width: 760px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--shell);
  background: color-mix(in srgb, var(--shell) 92%, transparent);
  box-shadow: 0 24px 70px rgb(38 36 31 / 10%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.lead {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4;
}

.status {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.note {
  max-width: 680px;
  margin: 24px 0 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-ink);
  background: var(--primary-soft);
  font-size: 1.25rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.note p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  width: min(100% - 32px, 960px);
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .shell {
    padding-top: 32px;
  }

  .hero {
    border-radius: 24px;
  }

  .note {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #151817;
    --shell: #1d211f;
    --surface: #262b28;
    --soft: #303631;
    --text: #f3efe7;
    --muted: #aaa69e;
    --line: #3d443f;
    --primary: #e18872;
    --primary-soft: #4c312b;
    --primary-ink: #ffd9ce;
  }

  .hero {
    box-shadow: 0 24px 70px rgb(0 0 0 / 24%);
  }
}
