/* Ward Radio Gaming — high-tech gaming hub */

:root {
  --bg-deep: #000000;
  --bg-header: #000000;
  --bg-panel: #0c1019;
  --bg-elevated: #121826;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.16);
  --text: #e8edf7;
  --text-muted: #8b95a8;
  --accent: #00e5ff;
  --accent-dim: rgba(0, 229, 255, 0.15);
  --purple: #a855f7;
  --gold: #fbbf24;

  --minecraft: #5cdb4a;
  --minecraft-glow: rgba(92, 219, 74, 0.35);
  --roblox: #0959ee;
  --roblox-glow: rgba(42, 109, 197, 0.452);
  --crossplay: #f97316;
  --crossplay-glow: rgba(249, 115, 22, 0.38);
  --bedrock: #60a5fa;
  --bedrock-glow: rgba(96, 165, 250, 0.35);

  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Raleway", system-ui, sans-serif;
  --font-light: "Barlow", system-ui, sans-serif;
  --nav-accent: #ff8819;
  --nav-font-size: 20px;
  --nav-line-height: 40px;

  --nav-height: 88px;
  --max-width: 1200px;
  --card-size: min(380px, 100%);

  /* Minimum readable sizes for badges, tags, and UI labels */
  --text-ui-sm: 1rem;
  --text-ui-xs: 0.9rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: normal;
}

p, li {
  font-family: var(--font-body);
}

/* Ambient background */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--left {
  top: -200px;
  left: -150px;
  background: var(--purple);
}

.bg-glow--right {
  top: 40%;
  right: -200px;
  background: var(--accent);
}

/* Header — Ward Radio main site style */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--bg-header);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1012px;
  min-height: var(--nav-height);
  height: auto;
  margin: 0 auto;
  padding: 17px clamp(1rem, 4vw, 2rem) 20px;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--nav-font-size);
  font-weight: 400;
  letter-spacing: normal;
  line-height: var(--nav-line-height);
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--nav-accent);
}

.nav__links a[aria-current="page"],
.nav__links a.nav__link--active {
  color: var(--nav-accent);
}

.nav__cta,
.nav__jump,
.nav__discord {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 !important;
  font-family: var(--font-body) !important;
  font-size: var(--nav-font-size) !important;
  font-weight: 400 !important;
  letter-spacing: normal;
  line-height: var(--nav-line-height);
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s;
}

.nav__cta:hover,
.nav__jump:hover,
.nav__discord:hover {
  color: var(--nav-accent) !important;
  filter: none;
}

.nav__cta[aria-current="page"],
.nav__cta.nav__link--active,
.nav__jump[aria-current="page"],
.nav__jump.nav__link--active,
.nav__discord[aria-current="page"],
.nav__discord.nav__link--active {
  color: var(--nav-accent) !important;
}

.nav__discord-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.nav__discord-icon svg {
  width: var(--nav-font-size);
  height: var(--nav-font-size);
}

.nav__platform-icon {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.nav__platform-icon img {
  width: var(--nav-font-size);
  height: var(--nav-font-size);
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (min-width: 769px) {
  .nav__links {
    width: 100%;
    max-width: 1012px;
  }
}

/* Main layout */
main {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Hero */
.hub-page .hero {
  padding: 2rem 0 3rem;
}

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero__brand-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero__brand-logo {
  display: block;
  width: min(300px, 78vw);
  height: auto;
  object-fit: contain;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__badge {
  padding: 0.55rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 999px;
  background: var(--accent-dim);
}

.hero__badge--large {
  padding: 0.7rem 1.45rem;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.hero__badge--minecraft {
  color: #fff;
  border-color: rgba(92, 219, 74, 0.35);
  background: rgba(92, 219, 74, 0.12);
}

.hero__badge--roblox {
  color: var(--roblox);
  border-color: rgba(9, 89, 238, 0.35);
  background: rgba(9, 89, 238, 0.12);
}

.hero__badge--crossplay {
  color: var(--crossplay);
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.12);
}

.hero__platform-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.hero__platform-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.hero__platform-icon--crossplay {
  color: var(--crossplay);
}

.hero__platform-icon svg {
  width: 72px;
  height: 72px;
}

.hero__platform-icon--crossplay svg {
  display: block;
  margin: 0 auto;
}

.stat__value--text {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.hero--roblox .stat__value,
.hero--crossplay .stat__value {
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.hero__live {
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

.hero__live .stat {
  min-width: 120px;
  gap: 0.5rem;
}

.hero__live .stat__value {
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  line-height: 1;
}

.hero__live .stat__label {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.12em;
}

.hero__date {
  font-family: var(--font-light);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #a8b4cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 400;
  color: var(--text-muted);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__value--youtube {
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.02em;
}

.stat__value--youtube.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
}

.youtube-stat__loader {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border: 2.5px solid rgba(0, 229, 255, 0.2);
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: youtube-stat-spin 0.75s linear infinite;
}

@keyframes youtube-stat-spin {
  to {
    transform: rotate(360deg);
  }
}

.stat__label {
  font-family: var(--font-light);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Content + platform grid */
.content {
  padding: 2rem 0 4rem;
}

#platforms {
  scroll-margin-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 1.25rem);
}

.content__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.content__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.content__intro p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.platform-card {
  position: relative;
  aspect-ratio: 1;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s,
    box-shadow 0.35s;
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.platform-card--minecraft::before {
  background: radial-gradient(circle at 50% 100%, var(--minecraft-glow), transparent 65%);
}

.platform-card--roblox::before {
  background: radial-gradient(circle at 50% 100%, var(--roblox-glow), transparent 65%);
}

.platform-card--crossplay::before {
  background: radial-gradient(circle at 50% 100%, var(--crossplay-glow), transparent 65%);
}

.platform-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-bright);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-card--minecraft:hover {
  box-shadow: 0 24px 48px -12px var(--minecraft-glow), 0 0 0 1px rgba(92, 219, 74, 0.3);
}

.platform-card--roblox:hover {
  box-shadow: 0 24px 48px -12px var(--roblox-glow), 0 0 0 1px rgba(77, 95, 255, 0.3);
}

.platform-card--crossplay:hover {
  box-shadow: 0 24px 48px -12px var(--crossplay-glow), 0 0 0 1px rgba(249, 115, 22, 0.35);
}

.platform-card__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: scan 4s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes scan {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

.platform-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
}

.platform-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  color: var(--text);
  opacity: 0.9;
}

.platform-card__icon img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.platform-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.platform-card--crossplay .platform-card__icon { color: var(--crossplay); }

.platform-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.platform-card__desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.platform-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s;
}

.platform-card:hover .platform-card__action {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
}

/* Info blocks */
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

main > .info {
  padding-top: 0;
}

.info__block {
  padding: 1.75rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.info__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  font-size: var(--text-ui-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
}

.info__tag--minecraft {
  color: var(--minecraft);
  background: rgba(92, 219, 74, 0.12);
  border: 1px solid rgba(92, 219, 74, 0.25);
}

.info__tag--roblox {
  color: var(--roblox);
  background: rgba(77, 124, 255, 0.12);
  border: 1px solid rgba(77, 104, 255, 0.25);
}

.info__tag--crossplay {
  color: var(--crossplay);
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.28);
}

.info__block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
}

.info__block p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  margin-bottom: 3rem;
}

.cta-band__inner {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(168, 85, 247, 0.06)),
    var(--bg-panel);
}

.cta-band__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
}

.cta-band__inner p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-band__button {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 229, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-band__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 229, 255, 0.35);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.site-footer a {
  color: var(--accent);
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.8;
}

.site-footer__copy {
  margin-top: 0.5rem;
  font-size: var(--text-ui-sm);
  opacity: 0.6;
}

/* Mobile nav + responsive layout */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --nav-font-size: 18px;
    --nav-line-height: 36px;
    --header-offset: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  }

  html {
    overscroll-behavior-y: none;
    background: #000;
  }

  body {
    font-size: 1.1rem;
    padding-top: var(--header-offset);
    background: var(--bg-deep);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    isolation: isolate;
    height: var(--header-offset);
    min-height: var(--header-offset);
    padding-top: env(safe-area-inset-top, 0px);
    overflow: hidden;
    background: #000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -50vh;
    height: calc(100% + 50vh);
    z-index: 0;
    background: #000;
  }

  .site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #000;
    background-image: url("../src/images/ward_radio_banner_mobile.avif");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
    pointer-events: none;
  }

  .nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: var(--nav-height);
    min-height: var(--nav-height);
    padding: 0 clamp(1rem, 4vw, 2rem);
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 3;
    transform: none;
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .nav__links.is-open + .nav__toggle {
    transform: none;
  }

  .nav__links {
    position: fixed;
    top: var(--header-offset);
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: #000;
    border-bottom: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .minecraft-page .nav__links {
    gap: 0;
  }

  .nav__links.is-open {
    max-height: calc(100dvh - var(--header-offset));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 0 calc(0.5rem + env(safe-area-inset-bottom, 0px));
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links li {
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links li:last-child {
    border-bottom: none;
  }

  .nav__links a,
  .nav__links a.nav__cta,
  .nav__links a.nav__jump,
  .nav__links a.nav__discord {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    width: 100%;
    min-height: 0;
    padding: 0.75rem 1.1rem !important;
    font-family: var(--font-body) !important;
    font-size: var(--nav-font-size) !important;
    font-weight: 400 !important;
    letter-spacing: normal;
    line-height: var(--nav-line-height);
    text-align: left;
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none;
  }

  .nav__links a:hover,
  .nav__links a.nav__cta:hover,
  .nav__links a.nav__jump:hover,
  .nav__links a.nav__discord:hover {
    color: var(--nav-accent) !important;
    background: rgba(255, 136, 25, 0.06) !important;
  }

  .nav__links a[aria-current="page"],
  .nav__links a.nav__link--active,
  .nav__links a.nav__cta[aria-current="page"],
  .nav__links a.nav__jump[aria-current="page"],
  .nav__links a.nav__discord[aria-current="page"] {
    color: var(--nav-accent) !important;
    background: rgba(255, 136, 25, 0.08) !important;
  }

  .nav__links a .nav__platform-icon img {
    width: var(--nav-font-size);
    height: var(--nav-font-size);
    filter: none;
    opacity: 1;
  }

  .nav__links a .nav__discord-icon svg {
    width: var(--nav-font-size);
    height: var(--nav-font-size);
  }

  .nav__links.is-open + .nav__toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav__links.is-open + .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav__links.is-open + .nav__toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .platform-grid,
  .info {
    grid-template-columns: 1fr;
  }

  main {
    padding: 0 clamp(0.85rem, 4vw, 1.25rem) 3rem;
  }

  .hub-page .hero {
    padding: 1.25rem 0 2rem;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero__lead {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    margin-bottom: 2rem;
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__live {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.35rem, 2vw, 1rem);
    width: 100%;
  }

  .hero__live .stat {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    padding: 0.65rem 0.25rem;
  }

  .hero__live .stat__value {
    font-size: clamp(1.2rem, 5.5vw, 2rem);
  }

  .hero__live .stat__label {
    font-size: clamp(0.62rem, 2.4vw, 0.85rem);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .platform-card {
    aspect-ratio: auto;
    min-height: 300px;
  }

  .platform-card__desc {
    max-width: none;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .content {
    padding: 1.5rem 0 3rem;
  }

  .content__intro {
    margin-bottom: 2rem;
  }

  .cta-band__inner {
    padding: 2.25rem 1.25rem;
  }

  .site-footer {
    padding: 2rem clamp(1rem, 4vw, 1.5rem);
    text-align: center;
  }
}

.stat__label--adaptive .is-narrow {
  display: none;
}

@media (max-width: 420px) {
  .stat__label--adaptive .is-wide {
    display: none;
  }

  .stat__label--adaptive .is-narrow {
    display: inline;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid .platform-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .info {
    grid-template-columns: 1fr;
  }
}
