* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f5f2ed;
  color: #292929;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.page-header {
  margin-bottom: 32px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #77716a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-subtitle {
  margin: 14px 0 0;
  color: #77716a;
  font-size: 16px;
}

.cards-container {
  width: 100%;
}

.system-message {
  padding: 30px;
  border: 1px solid #e5e0d8;
  border-radius: 20px;
  background: #ffffff;
  color: #77716a;
  text-align: center;
  box-shadow:
    0 10px 28px
    rgba(35, 30, 25, 0.06);
}

@media (max-width: 700px) {
  .page-shell {
    padding: 32px 16px 52px;
  }

  .page-header {
    margin-bottom: 24px;
  }
}