:root {
    --bg: #f5f7f8;
    --card: #ffffff;
    --text: #15352f;
    --muted: #5c726d;
    --line: #dde6e2;
    --brand: #0c7b5d;
    --brand-strong: #095f48;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}
a { color: var(--brand-strong); text-decoration: none; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100vw - 32px)); margin: 0 auto; }
.topbar { background: #0f2d26; color: white; position: sticky; top: 0; z-index: 20; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; gap: 16px; }
.brand { color: white; font-size: 1.2rem; font-weight: 800; letter-spacing: .02em; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a { color: rgba(255,255,255,.9); }
.page { padding: 28px 0 56px; }
.footer { padding: 0 0 40px; color: var(--muted); }
.hero { display: grid; gap: 24px; padding: 32px; background: linear-gradient(135deg, #123c33, #1d6f59); color: white; border-radius: 28px; box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.eyebrow { display: inline-flex; padding: 6px 12px; background: rgba(255,255,255,.14); border-radius: 999px; font-size: .86rem; margin-bottom: 12px; }
.hero h1, .section-header h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.06; margin: 0; }
.lead { font-size: 1.05rem; max-width: 72ch; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0 18px; border-radius: 14px; border: 1px solid var(--line);
    background: white; color: var(--text); font-weight: 700; cursor: pointer;
}
.button-primary { background: var(--brand); color: white; border-color: var(--brand); }
.card {
    background: var(--card); border: 1px solid var(--line); border-radius: 24px;
    padding: 22px; box-shadow: 0 12px 32px rgba(20, 56, 47, .04);
}
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { margin: 20px 0; }
.stat-card { display: flex; flex-direction: column; gap: 6px; }
.stat-value { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
.stat-label, .muted { color: var(--muted); }
.feature-list { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.mini-stats { display: flex; gap: 22px; flex-wrap: wrap; }
.mini-stats div { display: grid; gap: 4px; }
.mini-stats strong { font-size: 1.4rem; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 10px 0 18px; }
.request-list, .stack { display: grid; gap: 14px; }
.request-item { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.request-item:last-child { border-bottom: 0; padding-bottom: 0; }
.request-meta { display: grid; gap: 6px; text-align: right; color: var(--muted); }
.filters { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto auto; gap: 12px; align-items: center; }
input, select, textarea {
    width: 100%; border: 1px solid #cfdad6; background: #fff; color: var(--text);
    border-radius: 14px; min-height: 46px; padding: 10px 14px; font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.checkbox-inline { display: inline-flex; align-items: center; gap: 10px; min-height: 46px; }
.checkbox-inline input { width: auto; min-height: auto; }
.player-card { display: grid; grid-template-columns: 96px 1fr; gap: 18px; }
.avatar { width: 96px; height: 96px; object-fit: cover; border-radius: 22px; background: #eef4f2; }
.player-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.player-head h2, .championship-head h2 { margin: 0 0 6px; font-size: 1.18rem; }
.pill { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; background: #e8f6f1; color: var(--brand-strong); font-size: .9rem; font-weight: 700; }
.player-meta, .championship-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.request-grid { display: grid; grid-template-columns: 90px 1fr; gap: 8px 12px; margin-top: 12px; }
.success { color: #0c7b5d; font-weight: 700; }
.championship-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.align-right { justify-content: flex-end; }
.compact-grid { gap: 12px; }
@media (max-width: 980px) {
    .grid-2, .grid-3, .filters { grid-template-columns: 1fr; }
    .stack-mobile, .championship-head, .player-head, .request-item { display: grid; }
    .request-meta { text-align: left; }
}
