:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-2: #0d1119;
  --panel: #121824;
  --panel-2: #171f2d;
  --line: rgba(255, 255, 255, .11);
  --muted: #a8b0bf;
  --text: #f4f2ea;
  --gold: #d9af53;
  --gold-2: #f0d58a;
  --green: #48c78e;
  --danger: #ff6978;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% -20%, rgba(217, 175, 83, .24), transparent 42%),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto;
  animation: gridSweep 18s linear infinite;
}

@keyframes gridSweep {
  from {
    background-position: 0 0, 0 0, center;
  }
  to {
    background-position: 44px 44px, 44px 44px, center;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px 14px;
  margin: 0 -14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 9, 13, .66);
  backdrop-filter: blur(18px);
}

.live-ticker {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(217, 175, 83, .2);
  border-radius: 999px;
  background: rgba(8, 12, 18, .72);
  box-shadow: 0 0 34px rgba(217, 175, 83, .08);
}

.live-ticker::before,
.live-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 90px;
  height: 100%;
}

.live-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.live-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 10px 0;
  animation: tickerLoop 34s linear infinite;
}

.ticker-track span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  white-space: nowrap;
}

@keyframes tickerLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 175, 83, .55);
  border-radius: 8px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 30px rgba(217, 175, 83, .18);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 12, 18, .74);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(217, 175, 83, .16);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
  min-height: 690px;
  overflow: hidden;
  padding: 96px 52px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 24%, rgba(217, 175, 83, .4), transparent 26%),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, .14), transparent 22%),
    linear-gradient(120deg, rgba(7, 9, 13, .95) 0%, rgba(9, 18, 20, .83) 48%, rgba(90, 67, 23, .46) 100%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 213, 138, .72), transparent);
  box-shadow: 0 0 36px rgba(217, 175, 83, .42);
}

.pitch-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.35) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at center, transparent 0 78px, rgba(255,255,255,.32) 79px 81px, transparent 82px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  animation: pitchDrift 16s linear infinite;
}

.stadium-beams,
.fog-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stadium-beams {
  opacity: .5;
  background:
    conic-gradient(from 212deg at 76% 10%, transparent 0 14deg, rgba(240, 213, 138, .22) 16deg 24deg, transparent 27deg 360deg),
    conic-gradient(from 198deg at 88% 0%, transparent 0 10deg, rgba(255, 255, 255, .16) 12deg 18deg, transparent 22deg 360deg);
  mix-blend-mode: screen;
  animation: lightFlicker 4.8s ease-in-out infinite;
}

.fog-layer {
  opacity: .44;
  background:
    radial-gradient(ellipse at 70% 72%, rgba(255, 255, 255, .12), transparent 34%),
    radial-gradient(ellipse at 28% 88%, rgba(217, 175, 83, .12), transparent 36%);
  filter: blur(18px);
  animation: fogDrift 9s ease-in-out infinite alternate;
}

@keyframes lightFlicker {
  0%, 100% {
    opacity: .42;
  }
  45% {
    opacity: .58;
  }
  50% {
    opacity: .36;
  }
  55% {
    opacity: .62;
  }
}

@keyframes fogDrift {
  from {
    transform: translate3d(-18px, 8px, 0);
  }
  to {
    transform: translate3d(16px, -8px, 0);
  }
}

@keyframes pitchDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(72px);
  }
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 800px;
  margin-bottom: 12px;
  font-size: clamp(54px, 9vw, 116px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  display: grid;
  gap: 2px;
  max-width: 640px;
  margin-bottom: 12px;
  color: #fff7df;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
}

.hero-copy span {
  display: block;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 30px;
  color: #d6d9df;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.hero-risk {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(217, 175, 83, .32);
  border-radius: 8px;
  background: rgba(8, 12, 18, .64);
  box-shadow:
    inset 0 0 70px rgba(217, 175, 83, .18),
    0 28px 90px rgba(0, 0, 0, .46);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 60% 34%, rgba(240, 213, 138, .34), transparent 32%);
  animation: goldPulse 3.8s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, .62), transparent 36%),
    linear-gradient(180deg, transparent 48%, rgba(7, 9, 13, .88));
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.08);
}

@keyframes goldPulse {
  0%, 100% {
    opacity: .38;
    transform: scale(1);
  }
  50% {
    opacity: .72;
    transform: scale(1.06);
  }
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  transition: left .48s ease;
}

.button:hover::after {
  left: 125%;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary,
.button.buy {
  color: #100d05;
  border-color: rgba(217, 175, 83, .7);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.button.gold-ghost,
.button.copy {
  color: var(--gold-2);
  border-color: rgba(217, 175, 83, .34);
  background: rgba(217, 175, 83, .08);
}

.button.disabled,
.button[aria-disabled="true"],
.button:disabled {
  pointer-events: none;
  color: var(--muted);
  background: rgba(255, 255, 255, .08);
}

.hero-panel {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  width: min(340px, calc(100% - 64px));
  padding: 20px;
  border: 1px solid rgba(217, 175, 83, .34);
  border-radius: 8px;
  background: rgba(8, 12, 18, .72);
  backdrop-filter: blur(20px);
}

.scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.scoreline:last-child {
  border-bottom: 0;
}

.scoreline span {
  color: var(--muted);
  font-weight: 700;
}

.scoreline strong {
  color: var(--gold-2);
  font-size: 28px;
}

.token-band,
.toolbar,
.leaderboard-wrap,
.about-grid article {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 24, 36, .84);
  box-shadow: var(--shadow);
}

.token-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
}

.token-ticker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 28px;
  font-weight: 900;
}

.contract-status {
  margin: 12px 0 0;
}

.contract-status strong {
  color: var(--gold-2);
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
  min-width: 330px;
}

.token-stats span,
.market-grid span {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .045);
  font-size: 12px;
  font-weight: 800;
}

.token-stats strong,
.market-grid strong {
  color: var(--text);
  font-size: 18px;
}

.token-actions {
  display: grid;
  gap: 10px;
}

.main-token-badge {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(217, 175, 83, .4);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(217, 175, 83, .09);
  font-size: 12px;
  font-weight: 900;
}

.token-band h2,
.section-heading h2,
.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .96;
  letter-spacing: 0;
}

.token-band p,
.page-hero p,
.about-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 56px 0 0;
}

.section-heading {
  margin-bottom: 22px;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coach-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coach-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 24, 36, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  transform-style: preserve-3d;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.coach-card:hover {
  border-color: rgba(217, 175, 83, .48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35), 0 0 34px rgba(217, 175, 83, .13);
  transform: translateY(-8px) perspective(900px) rotateX(1.5deg) rotateY(-1deg);
}

.coach-media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.coach-media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
}

.coach-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .65));
  pointer-events: none;
  z-index: 2;
}

.card-image::before,
.card-image::after,
.coach-image-wrap::before,
.coach-image-wrap::after,
.manager-image::before,
.manager-image::after {
  display: none !important;
  content: none !important;
}

.rank-badge,
.flag,
.country-code,
.coach-token-badge {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(8, 12, 18, .78);
  z-index: 3;
}

.coach-token-badge {
  left: 12px;
  bottom: 12px;
  min-width: 92px;
  height: 32px;
  padding: 0 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 46px;
  height: 34px;
  color: var(--gold-2);
  font-weight: 900;
}

.country-code {
  right: 12px;
  top: 12px;
  min-width: 50px;
  height: 34px;
  padding: 0 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.flag {
  right: 12px;
  bottom: 12px;
  width: 54px;
  height: 42px;
  font-size: 28px;
}

.coach-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.coach-body h3 {
  margin-bottom: 3px;
  font-size: 24px;
}

.manager {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.coach-style {
  min-height: 48px;
  margin: 0;
  color: #d9deea;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.confed-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin: 0 0 8px;
  padding: 0 9px;
  border: 1px solid rgba(217, 175, 83, .28);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(217, 175, 83, .1);
  font-size: 11px;
  font-weight: 900;
}

.token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.token-row span {
  color: var(--gold-2);
  font-weight: 900;
}

.token-row small {
  color: var(--muted);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.market-grid strong {
  font-size: 13px;
}

.contract-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contract-field input,
.search-field input,
.select-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 7, 10, .72);
}

.select-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.select-field select {
  padding: 0 16px;
}

.contract-field input {
  padding: 0 12px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.page-hero {
  padding: 80px 0 26px;
  max-width: 850px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px;
  gap: 18px;
  padding: 18px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.search-field input {
  padding: 0 16px;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
  font-weight: 900;
}

.filter-button.active {
  color: #100d05;
  border-color: transparent;
  background: var(--gold);
}

.filter-row {
  grid-column: 1 / -1;
}

.results-line {
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.leaderboard-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.leaderboard {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

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

.leaderboard tr {
  transition: background .2s ease;
}

.leaderboard tr:hover {
  background: rgba(217, 175, 83, .05);
}

.leaderboard .podium-row {
  background: linear-gradient(90deg, rgba(217, 175, 83, .12), transparent);
}

.leaderboard th {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.table-rank {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #100d05;
  background: var(--gold);
  font-weight: 900;
}

.podium-row .table-rank {
  box-shadow: 0 0 24px rgba(217, 175, 83, .36);
}

.table-nation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(217, 175, 83, .24);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(217, 175, 83, .08);
  font-size: 12px;
  font-weight: 900;
}

.status-pill.live {
  color: #102217;
  border-color: rgba(72, 199, 142, .5);
  background: var(--green);
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 6px;
}

.podium-card {
  position: relative;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(217, 175, 83, .24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0, rgba(217, 175, 83, .24), transparent 38%),
    rgba(18, 24, 36, .88);
  box-shadow: var(--shadow);
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.podium-card .flag {
  position: static;
  width: 56px;
  height: 44px;
  margin: 18px 0 12px;
}

.podium-card h3 {
  margin-bottom: 4px;
  font-size: 28px;
}

.podium-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.podium-card strong {
  color: var(--gold-2);
}

.podium-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  animation: fadeRise .72s ease both;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.about-grid article {
  margin-top: 0;
  padding: 24px;
}

.about-grid h2 {
  font-size: 24px;
}

.roadmap-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

code {
  color: var(--gold-2);
}

.site-footer {
  margin: 68px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.not-found {
  display: grid;
  place-items: start center;
  min-height: 100vh;
  padding: 120px 24px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 12px;
  font-size: 80px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 64px 24px 24px;
  }

  .hero-visual {
    order: -1;
    min-height: 420px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: none;
  }

  .coach-grid,
  .coach-grid.compact,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .token-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .token-stats {
    min-width: 0;
    width: 100%;
  }

  .toolbar,
  .podium-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-nav a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .coach-grid,
  .coach-grid.compact,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .token-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-grid,
  .card-actions,
  .token-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .site-header {
    padding-inline: 0;
    margin-inline: 0;
  }

  .coach-media {
    height: 280px;
  }

  .page-hero {
    padding-top: 48px;
  }
}
