:root {
  --ink: #f7f1df;
  --ink-strong: #fff9e8;
  --muted: #b9b095;
  --faint: #82795f;
  --board: #03160f;
  --board-2: #082417;
  --board-3: #102c1e;
  --panel: rgba(3, 22, 15, 0.78);
  --panel-solid: #081b13;
  --line: rgba(247, 241, 223, 0.18);
  --line-strong: rgba(247, 241, 223, 0.34);
  --gold: #f4c75f;
  --gold-2: #daa63a;
  --red: #ef5a45;
  --green: #5ac876;
  --paper: #f4ecd9;
  --paper-ink: #191510;
  --paper-muted: #655d50;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Oswald, "Arial Narrow", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--board);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(2, 12, 8, 0.8), rgba(2, 12, 8, 0.94)),
    url("assets/design/tactical-board-bg.jpg") center top / cover fixed,
    var(--board);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 199, 95, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(244, 199, 95, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 76px;
  padding: 14px clamp(16px, 3vw, 48px);
  background: rgba(2, 13, 9, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: rgba(244, 199, 95, 0.08);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-copy strong span {
  color: var(--gold);
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 44px);
}

.top-nav a {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.top-nav a:hover {
  color: var(--gold);
}

.header-guard {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.header-guard span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
  vertical-align: -0.15em;
}

main {
  position: relative;
  z-index: 1;
}

.desk-hero {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(18px, 2.4vw, 34px) clamp(14px, 3vw, 40px) 28px;
}

@media (min-width: 1181px) {
  .desk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(330px, 0.9fr);
    gap: 20px;
  }

  .desk-hero__header {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .desk-grid {
    display: contents;
  }

  .match-board {
    grid-column: 1;
    grid-row: 2;
  }

  .side-stack {
    grid-column: 2;
    grid-row: 2 / span 2;
  }

  .service-grid {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }
}

.desk-hero__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.eyebrow,
.panel-kicker,
.league {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.fixture-row time,
.team,
.paper-card h2,
.stat-value {
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
}

.desk-hero h1 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.date-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.date-control strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  font-size: 15px;
}

.date-control button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.date-control button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(330px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.panel,
.paper-card,
.content-band,
.record-table-wrap,
.match-analysis,
.offer-card,
.legal-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  background: linear-gradient(180deg, rgba(8, 35, 23, 0.88), rgba(3, 18, 12, 0.9));
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px 14px;
}

.panel-heading.tight {
  padding-bottom: 10px;
}

.panel-heading h2,
.trap-panel h2,
.partner-panel h2,
.daily-sheet h2,
.ledger-panel h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--ink-strong);
}

.fixture-list {
  padding: 0 14px 14px;
}

.fixture-row {
  display: grid;
  grid-template-columns: 36px 90px minmax(92px, 0.8fr) 42px minmax(92px, 0.8fr) minmax(120px, 1fr) minmax(110px, auto);
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.fixture-row:first-child {
  border-top: 0;
}

.fixture-row:hover,
.fixture-row.is-featured {
  background: rgba(244, 199, 95, 0.08);
}

.fixture-star {
  display: grid;
  place-items: center;
  color: var(--gold);
}

.fixture-row time {
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1;
}

.team {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink-strong);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.team img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #fff;
  flex: 0 0 auto;
}

.versus {
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.fixture-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.row-action {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.paper-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 34px 28px 26px;
  color: var(--paper-ink);
  background:
    linear-gradient(90deg, rgba(25, 21, 16, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(25, 21, 16, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.paper-tape {
  display: inline-block;
  margin-bottom: 26px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--paper-ink);
  transform: rotate(-5deg);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-date {
  position: absolute;
  top: 32px;
  right: 28px;
  color: var(--paper-muted);
  font-weight: 600;
}

.paper-card h2 {
  max-width: 300px;
  margin-bottom: 6px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
}

.fixture-title {
  margin-bottom: 22px;
  color: var(--paper-muted);
  font-size: 23px;
}

.price-mark {
  display: grid;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 28px;
  padding: 12px 24px;
  border: 3px solid rgba(25, 21, 16, 0.7);
  border-radius: 50%;
  transform: rotate(-5deg);
  text-align: center;
}

.price-mark span {
  color: var(--paper-muted);
  font-style: italic;
}

.price-mark strong {
  color: #1d6a36;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}

.risk-line {
  height: 2px;
  margin: 0 0 16px;
  background: rgba(239, 90, 69, 0.8);
}

.paper-card p {
  color: var(--paper-ink);
  line-height: 1.48;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.button-dark {
  width: 100%;
  margin-top: 12px;
  color: var(--ink-strong);
  background: linear-gradient(180deg, #113a26, #082417);
}

.button-gold {
  width: 100%;
  color: #191510;
  background: linear-gradient(180deg, #f8d274, #dca539);
  border-color: rgba(25, 21, 16, 0.2);
}

.trap-panel,
.partner-panel,
.daily-sheet,
.ledger-panel {
  padding: 0 20px 20px;
}

.trap-panel .panel-heading,
.daily-sheet .panel-heading,
.ledger-panel .panel-heading {
  padding-left: 0;
  padding-right: 0;
}

.trap-panel > p,
.partner-panel > p,
.daily-sheet > p,
.ledger-panel > p {
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag-red {
  color: var(--red);
}

.ad-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.ad-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 5px;
  background: rgba(90, 200, 118, 0.22);
  color: var(--ink-strong);
  font-weight: 800;
}

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

.partner-grid a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.partner-grid a:hover {
  border-color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.18fr);
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 1181px) {
  .desk-grid {
    display: contents;
  }

  .service-grid {
    margin-top: 0;
  }
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.22);
}

.signup-form > button[type="submit"]:not(.button) {
  display: none;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox-line input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
}

.ledger-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 18px;
}

.ledger-stats div {
  display: grid;
  gap: 5px;
}

.ledger-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ledger-stats strong {
  color: var(--ink-strong);
  font-size: 24px;
}

.result-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.result-dot {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #10140f;
  font-weight: 900;
}

.result-dot.win {
  background: var(--green);
}

.result-dot.loss {
  background: var(--red);
}

.result-dot.push,
.result-dot.pending {
  background: #b4b0a8;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4vw, 64px);
  width: min(100% - 28px, 1480px);
  margin: 26px auto;
  padding: clamp(24px, 5vw, 56px);
  background: rgba(2, 13, 9, 0.84);
}

.content-band h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.content-band p {
  max-width: 800px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.proof-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.proof-list span {
  color: var(--muted);
  line-height: 1.45;
}

.responsible-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1560px);
  margin: 0 auto 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.responsible-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  border-left: 1px solid var(--line);
}

.responsible-strip a:first-child {
  border-left: 0;
}

.responsible-strip span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 3vw, 48px);
  color: var(--muted);
  background: rgba(2, 13, 9, 0.94);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-brand {
  color: var(--ink-strong) !important;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.page-shell,
.match-shell {
  width: min(100% - 28px, 1240px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) 0;
}

.page-hero {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 13, 9, 0.82);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(44px, 7vw, 82px);
}

.page-hero p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.filters button,
.filters a {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  text-decoration: none;
}

.filters .active,
.filters [aria-pressed="true"] {
  color: #17130b;
  background: var(--gold);
  border-color: var(--gold);
}

.tip-list,
.offer-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

.tip-row,
.offer-card,
.legal-page,
.match-analysis,
.side-card {
  padding: 22px;
  background: rgba(3, 22, 15, 0.82);
}

.tip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tip-row h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.tip-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tip-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.tip-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tip-meta strong {
  color: var(--gold);
  font-size: 20px;
}

.tip-meta a {
  color: var(--ink-strong);
  font-weight: 800;
}

.seo-copy,
.body-copy {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 13, 9, 0.72);
}

.seo-copy h2,
.body-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.seo-copy p,
.body-copy p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.65;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.stats-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 22, 15, 0.82);
}

.stats-strip span,
.record-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-strip strong,
.record-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink-strong);
  font-size: 28px;
}

.record-table-wrap {
  overflow-x: auto;
  background: rgba(3, 22, 15, 0.82);
}

.record-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.record-table th,
.record-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.record-table th {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.record-table td {
  color: var(--ink);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status.pending {
  color: #15130f;
  background: var(--gold);
}

.status.win {
  color: #07130d;
  background: var(--green);
}

.status.loss {
  color: white;
  background: var(--red);
}

.match-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.match-analysis h1 {
  font-size: clamp(44px, 7vw, 82px);
}

.teams-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}

.teams-line img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.bet-slip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.bet-slip div,
.record-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.bet-slip span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bet-slip strong {
  color: var(--ink-strong);
  font-size: 22px;
}

.match-section {
  margin-top: 26px;
}

.match-section h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.clean-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.risk-panel {
  padding: 20px;
  border-left: 4px solid var(--red);
  background: rgba(239, 90, 69, 0.08);
}

.match-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-card h2 {
  font-size: 28px;
}

.odds-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.odds-row strong {
  color: var(--gold);
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.offer-card h2 {
  font-size: 30px;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.55;
}

.offer-card .button {
  margin-top: 10px;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.legal-page h2 {
  font-size: 32px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-guard {
    display: none;
  }

  .top-nav {
    justify-content: flex-end;
  }

  .desk-grid,
  .service-grid,
  .match-shell {
    grid-template-columns: 1fr;
  }

  .side-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .paper-card {
    min-height: auto;
  }

  .fixture-row {
    grid-template-columns: 30px 82px minmax(88px, 1fr) 36px minmax(88px, 1fr) minmax(90px, 0.8fr);
  }

  .row-action {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .top-nav {
    position: fixed;
    top: 70px;
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 13, 9, 0.98);
    box-shadow: var(--shadow);
  }

  body.nav-open .top-nav {
    display: grid;
  }

  .top-nav a {
    padding: 15px;
    border-radius: 6px;
  }

  .top-nav a:hover {
    background: rgba(244, 199, 95, 0.1);
  }

  .desk-hero__header {
    align-items: start;
    flex-direction: column;
  }

  .date-control {
    width: 100%;
    justify-content: space-between;
  }

  .side-stack {
    grid-template-columns: 1fr;
  }

  .content-band,
  .legal-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .responsible-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .responsible-strip a:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy small {
    display: none;
  }

  .desk-hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1,
  .page-hero h1,
  .match-analysis h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .fixture-list {
    display: grid;
    gap: 10px;
    padding: 0 10px 10px;
  }

  .fixture-row {
    grid-template-columns: 30px 72px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .fixture-star {
    grid-column: 1;
    grid-row: 1 / span 5;
    align-self: start;
    padding-top: 5px;
  }

  .fixture-row time {
    grid-column: 2;
    grid-row: 1;
    font-size: 24px;
  }

  .team {
    font-size: 28px;
  }

  .team-home {
    grid-column: 3;
    grid-row: 1;
  }

  .versus {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .team-away {
    grid-column: 3;
    grid-row: 3;
  }

  .fixture-note,
  .row-action {
    grid-column: 3;
  }

  .paper-card {
    padding: 28px 18px 20px;
  }

  .card-date {
    position: static;
    margin-bottom: 18px;
  }

  .price-mark {
    margin-left: 0;
  }

  .service-grid,
  .desk-grid {
    gap: 12px;
  }

  .panel-heading,
  .tip-row,
  .seo-copy,
  .body-copy,
  .page-hero,
  .match-analysis,
  .offer-card,
  .legal-page {
    padding: 18px;
  }

  .ledger-stats,
  .stats-strip,
  .bet-slip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tip-row {
    grid-template-columns: 1fr;
  }

  .tip-meta {
    justify-items: start;
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-symbol {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .date-control strong {
    font-size: 13px;
  }

  .responsible-strip {
    grid-template-columns: 1fr;
  }

  .responsible-strip a,
  .responsible-strip a:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .responsible-strip a:first-child {
    border-top: 0;
  }
}
