:root {
  --bg: #f5efe4;
  --panel: rgba(255, 252, 246, 0.88);
  --text: #1f1d1a;
  --muted: #6f665d;
  --line: rgba(53, 41, 24, 0.1);
  --accent: #e9c46a;
  --shadow: 0 20px 60px rgba(49, 38, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 196, 106, 0.3), transparent 30%),
    radial-gradient(circle at top right, rgba(10, 92, 143, 0.18), transparent 25%),
    linear-gradient(180deg, #f7f1e8 0%, #f1e7d8 100%);
}

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

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.section-description,
.muted,
.input-hint,
.footnote {
  color: var(--muted);
}

.input-hint,
.footnote {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 20px;
  }

  .panel {
    border-radius: 24px;
    padding: 20px;
  }
}
