:root {
  --red: #e11e2a;
  --red-2: #b4141e;
  --ink: #121417;
  --muted: #5c6570;
  --line: #e6e8eb;
  --paper: #f6f7f8;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 20, 23, 0.08);
  --radius: 18px;
  --max: 760px;
  --header: 76px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Manrope", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.wide { width: min(calc(100% - 32px), 1100px); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: #fff; border-bottom: 1px solid var(--line);
}
.nav { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo img { height: 42px; }
.nav-links { display: flex; gap: 10px; list-style: none; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 14px; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-2); }
.btn-ghost { background: #fff; border-color: var(--line); }
.btn-block { width: 100%; }
.btn-danger { background: #fff; color: var(--red); border-color: #f3c4c7; }

.hero { padding: 56px 0 24px; text-align: center; }
.hero img { height: 84px; margin: 0 auto 18px; }
.hero h1 { font-size: clamp(28px, 5vw, 42px); letter-spacing: -.03em; }
.hero p { color: var(--muted); margin-top: 10px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; margin: 0 auto 40px;
}
h2 { font-size: 22px; margin: 28px 0 14px; }
h2:first-child { margin-top: 0; }
label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; }
.hint { display: block; color: var(--red); font-size: 12px; font-weight: 600; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--paper);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checks { display: grid; gap: 8px; }
.check { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.check input { width: auto; }
.hidden { display: none !important; }
.hp { position: absolute; left: -9999px; }
.status { margin-top: 14px; font-weight: 700; }
.status.error { color: var(--red); }
.status.ok { color: #157347; }
.note { color: var(--muted); font-size: 14px; margin-top: 10px; }

.badge {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px;
  border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.badge.pending { background: #fff3cd; color: #856404; }
.badge.approved { background: #d1e7dd; color: #0f5132; }
.badge.rejected, .badge.suspended { background: #f8d7da; color: #842029; }

.dl { display: grid; grid-template-columns: 180px 1fr; gap: 8px 16px; }
.dl dt { color: var(--muted); font-size: 13px; }
.dl dd { font-weight: 700; }

.site-footer { text-align: center; color: #8d97a3; font-size: 13px; padding: 24px 0 40px; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 700px) {
  .row, .dl { grid-template-columns: 1fr; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
}
