:root {
  color-scheme: light;
  font-family: "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  background: #f4f0e8;
  color: #1c2024;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #0f6b63;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 26px 0 12px;
  font-size: 1.05rem;
}

.lead {
  max-width: 720px;
  color: #4b5560;
  font-size: 1.08rem;
  line-height: 1.8;
}

.panel {
  border: 1px solid #d8d1c3;
  border-radius: 8px;
  background: #fffdf8;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(52, 45, 32, 0.08);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #3a4148;
  font-weight: 700;
}

input,
select {
  min-height: 44px;
  border: 1px solid #c9c2b6;
  border-radius: 6px;
  padding: 10px 12px;
  color: #1c2024;
  background: #ffffff;
  font: inherit;
}

button,
.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #ffffff;
  background: #0f6b63;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.note,
.status {
  color: #68727d;
  font-size: 0.92rem;
  line-height: 1.7;
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.scoreboard div {
  border: 1px solid #ddd5c8;
  border-radius: 8px;
  padding: 16px;
  background: #f8f5ee;
}

.scoreboard span {
  display: block;
  margin-bottom: 8px;
  color: #65707a;
  font-size: 0.82rem;
}

.scoreboard strong {
  display: block;
  font-size: 1.35rem;
}

li {
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 20px, 1040px);
    padding: 24px 0;
  }

  .panel {
    padding: 18px;
  }

  .grid,
  .scoreboard {
    grid-template-columns: 1fr;
  }
}
