:root {
  color-scheme: light;
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-strong: #151515;
  --text: #181818;
  --muted: #6f6a61;
  --border: #ded8ce;
  --accent: #2f6f5e;
  --accent-strong: #1f4f42;
  --gold: #dca93f;
  --shadow: 0 18px 50px rgba(29, 23, 14, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: end;
  padding-bottom: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy,
.composer p,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.metric-panel {
  min-height: 178px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-strong);
  color: #fffaf1;
  box-shadow: var(--shadow);
}

.metric-value {
  display: block;
  font-size: 4rem;
  font-weight: 850;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 12px;
  color: #ddd4c4;
}

.composer,
.board {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.composer {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  padding: 28px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #433f39;
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 111, 94, 0.16);
}

button {
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-weight: 800;
}

button:hover {
  background: var(--accent-strong);
}

.board {
  margin-top: 28px;
  padding: 28px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.feedback-list {
  display: grid;
  gap: 12px;
}

.feedback-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.vote-box {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.vote-count {
  color: var(--accent-strong);
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1;
}

.vote-box button {
  width: 42px;
  height: 36px;
  padding: 0;
}

.feedback-title {
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-weight: 850;
}

.feedback-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-select {
  color: var(--text);
  font-weight: 750;
}

.empty {
  padding: 28px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 28px 0;
  }

  .hero,
  .composer,
  .feedback-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .metric-panel {
    min-height: auto;
  }
}
