/* ============================================================
   mypool11in.com — Mint Scorecard v1
   Single source of truth for the live site. Bump ?v= on every edit.
   ============================================================ */

:root {
  --primary: #087A5B;
  --primary-700: #065D44;
  --primary-300: #3CA98A;
  --accent: #E28222;
  --accent-700: #B8651A;
  --live: #E63946;
  --background: #F2FAF6;
  --surface: #FFFFFF;
  --surface-2: #DCF3E8;
  --surface-3: #F2FAF6;
  --ink: #12322B;
  --ink-2: #2A4A42;
  --muted: #55716A;
  --border: #BFE2D4;
  --border-2: #D6EEDF;
  --gold: #B8860B;
  --slate: #0E2A24;
  --shadow-1: 0 1px 2px rgba(18, 50, 43, 0.06), 0 2px 8px rgba(18, 50, 43, 0.04);
  --shadow-2: 0 4px 18px rgba(18, 50, 43, 0.08);
  --shadow-3: 0 12px 40px rgba(18, 50, 43, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --content-max: 1240px;
  --content-narrow: 880px;
  --gutter: 24px;
  --ticker-h: 38px;
  --header-h: 68px;
  --mobile-cta-h: 64px;
  --font-en: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-hi: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-en);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
}

body.has-mobile-cta {
  padding-bottom: var(--mobile-cta-h);
}

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

a {
  color: var(--primary-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-700);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

h3 {
  font-size: clamp(19px, 1.6vw, 22px);
}

h4 {
  font-size: 17px;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

li {
  margin-bottom: 0.4em;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

blockquote {
  margin: 0 0 1.2em;
  padding: 12px 18px;
  border-left: 3px solid var(--primary);
  background: var(--surface-2);
  color: var(--ink-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-hi);
  font-size: 16px;
  line-height: 1.55;
}

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container.narrow {
  max-width: var(--content-narrow);
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ============================================================
   TICKER (signature device — ticker-led-storyline)
   ============================================================ */

.ticker {
  position: relative;
  background: var(--slate);
  color: #DEF4E9;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0.02em;
  z-index: 40;
}

.ticker-label {
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--slate);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ticker-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 1.6s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.ticker-track {
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.ticker-track-inner {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  padding-left: 100%;
  column-gap: 32px;
  font-variant-numeric: tabular-nums;
}

.ticker-track-inner:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #DEF4E9;
}

.ticker-item .team {
  font-weight: 600;
}

.ticker-item .score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #FFD7B0;
}

.ticker-item .status {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ticker-item .status.live {
  background: var(--live);
  color: #fff;
}

.ticker-item .status.up {
  color: #9FE3C5;
}

.ticker-item .sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 14px;
}

/* ============================================================
   HEADER (persistent, sticky, centered nav)
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 0 auto;
}

.brand-mark:hover {
  color: var(--primary);
}

.brand-glyph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-300) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
}

.main-nav a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover {
  background: var(--surface-2);
  color: var(--primary);
}

.main-nav a.active {
  color: var(--primary);
  background: var(--surface-2);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-cta-ghost {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.header-cta-ghost:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--surface-2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  z-index: 300;
  position: relative;
}

.hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 200ms ease;
  position: relative;
}

.hamburger-bar::before,
.hamburger-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 250ms ease, top 250ms ease;
}

.hamburger-bar::before { top: -7px; }
.hamburger-bar::after { top: 7px; }

.hamburger[aria-expanded="true"] .hamburger-bar {
  background: transparent;
}

.hamburger[aria-expanded="true"] .hamburger-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 36, 0.55);
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  background: var(--surface);
  padding: 24px 22px 32px;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-drawer h4,
.mobile-drawer .mobile-drawer-h {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 22px 0 10px;
  font-weight: 700;
}

.mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.mobile-drawer li {
  margin: 0;
}

.mobile-drawer a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--border-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

.mobile-drawer a:hover {
  color: var(--primary);
}

.mobile-drawer-cta {
  margin-top: 18px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
}

.mobile-drawer-cta:hover {
  background: var(--accent-700);
  color: #fff;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1.2;
  font-family: var(--font-en);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 12px rgba(226, 130, 34, 0.28);
}

.btn-primary:hover {
  background: var(--accent-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04), 0 8px 22px rgba(226, 130, 34, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-1);
}

.btn-secondary:hover {
  background: var(--primary-700);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-700);
  border-color: var(--primary);
  border-width: 1px;
  border-style: solid;
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-quiet {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
  border-width: 1px;
  border-style: solid;
}

.btn-quiet:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block {
  width: 100%;
  padding: 14px 22px;
}

.btn-large {
  padding: 16px 28px;
  font-size: 15px;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 230;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) 14px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 18px rgba(18, 50, 43, 0.08);
}

.mobile-sticky-cta .btn {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

/* ============================================================
   HERO / MOSAIC NEWSROOM
   ============================================================ */

.hero-mosaic {
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-2) 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(8, 122, 91, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 82% 78%, rgba(226, 130, 34, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-mosaic .container {
  position: relative;
}

.hero-mosaic h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 18px;
}

.hero-mosaic .lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 680px;
  margin-bottom: 22px;
}

.hero-mosaic .cred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--muted);
}

.hero-mosaic .cred-row .cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-mosaic .cred-row .cred::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

.hero-mosaic .cred-row .cred.warn::before {
  background: var(--accent);
}

.hero-mosaic .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: 220px 200px;
  gap: 14px;
  position: relative;
}

.mosaic-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}

.mosaic-tile:hover {
  transform: translateY(-2px);
}

.mosaic-tile.wide {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.mosaic-tile.tile-a { grid-column: 2 / 3; grid-row: 1 / 2; }
.mosaic-tile.tile-b { grid-column: 2 / 3; grid-row: 2 / 3; }

.mosaic-tile-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mosaic-tile-bg.grass {
  background:
    linear-gradient(135deg, rgba(8, 122, 91, 0.85) 0%, rgba(6, 93, 68, 0.95) 100%),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.mosaic-tile-bg.court {
  background:
    linear-gradient(135deg, #C2410C 0%, #7C2D12 100%),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.mosaic-tile-bg.pitch {
  background:
    linear-gradient(135deg, #1E40AF 0%, #0E2A24 100%),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.mosaic-tile-bg.matte {
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-700) 100%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
}

.mosaic-tile-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255, 255, 255, 0.03) 22px 23px);
}

.mosaic-tile-content {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  color: #fff;
  width: 100%;
  background: linear-gradient(0deg, rgba(14, 42, 36, 0.85) 0%, transparent 100%);
}

.mosaic-tile-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  margin-bottom: 10px;
}

.mosaic-tile-chip.live {
  background: var(--live);
  color: #fff;
}

.mosaic-tile-title {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.mosaic-tile-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.mosaic-tile.wide .mosaic-tile-title {
  font-size: clamp(20px, 1.8vw, 26px);
}

.mosaic-tile.wide .mosaic-tile-content {
  padding: 28px 26px;
}

/* ============================================================
   SECTION BASICS
   ============================================================ */

section {
  padding: 56px 0;
  position: relative;
}

section.compact {
  padding: 32px 0;
}

section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

section.band {
  background: var(--surface-2);
}

section.deep {
  background: var(--slate);
  color: #DEF4E9;
}

section.deep h1, section.deep h2, section.deep h3, section.deep h4 {
  color: #fff;
}

section.deep p {
  color: rgba(255, 255, 255, 0.85);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head .sh-title {
  font-size: clamp(22px, 2vw, 30px);
  margin: 0;
  letter-spacing: -0.01em;
}

.section-head .sh-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 56ch;
  margin: 6px 0 0;
}

.section-head .sh-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-700);
  white-space: nowrap;
}

.section-head .sh-link::after {
  content: " →";
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-tag.warn {
  color: var(--accent-700);
  border-color: rgba(226, 130, 34, 0.3);
  background: rgba(226, 130, 34, 0.08);
}

.section-tag.cold {
  color: var(--ink-2);
}

/* ============================================================
   BENTO / ASYMMETRIC GRID
   ============================================================ */

.bento {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
}

.bento.asymmetric-a {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.bento.asymmetric-a .bento-card:nth-child(1) {
  grid-row: 1 / 3;
}

.bento.asymmetric-b {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.bento-card .bc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.bento-card .bc-eyebrow.warn { color: var(--accent-700); }
.bento-card .bc-eyebrow.cold { color: var(--ink-2); }

.bento-card h3, .bento-card h4 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.bento-card p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0 0 12px;
  flex: 1 1 auto;
}

.bento-card .bc-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.bento-card .bc-link {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-700);
}

.bento-card.accent {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 100%);
  color: #fff;
  border-color: var(--primary-700);
}

.bento-card.accent h3, .bento-card.accent h4, .bento-card.accent p {
  color: #fff;
}

.bento-card.accent .bc-eyebrow {
  color: #FFD7B0;
}

.bento-card.accent .bc-link {
  color: #FFE7C2;
}

.bento-card.warm {
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-700) 100%);
  color: #fff;
  border-color: var(--accent-700);
}

.bento-card.warm h3, .bento-card.warm h4, .bento-card.warm p {
  color: #fff;
}

.bento-card.warm .bc-eyebrow {
  color: #FFE6CE;
}

.bento-card.warm .bc-link {
  color: #FCEDB1;
}

.bento-card.flat {
  background: var(--surface-2);
  border-color: var(--border);
}

.bento-card.feature {
  padding: 28px;
}

.bento-card.feature h3 {
  font-size: 22px;
}

/* ============================================================
   SPLIT (4-COL AUTHORITY)
   ============================================================ */

.split-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.split-4 .split-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
}

.split-4 .split-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.split-4 .split-card h3, .split-4 .split-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.split-4 .split-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   SCOREBOARD TABLE (dense-table pattern)
   ============================================================ */

.scoreboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.scoreboard-head, .scoreboard-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.4fr) 70px 70px 60px 80px;
  align-items: center;
  padding: 12px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border-2);
  font-variant-numeric: tabular-nums;
  gap: 8px;
}

.scoreboard-head {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.scoreboard-row:last-child {
  border-bottom: 0;
}

.scoreboard-row .format {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
}

.scoreboard-row .format.t10 { color: var(--accent-700); }
.scoreboard-row .format.odi { color: #1E40AF; }
.scoreboard-row .format.test { color: var(--ink); }

.scoreboard-row .match {
  font-weight: 600;
  color: var(--ink);
}

.scoreboard-row .match .sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
}

.scoreboard-row .num {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
}

.scoreboard-row .num strong {
  color: var(--primary);
}

.scoreboard-row .pct {
  text-align: right;
  font-weight: 600;
  color: var(--ink-2);
}

.scoreboard-row .pct .arrow {
  color: var(--primary);
  font-size: 12px;
  margin-left: 2px;
}

.scoreboard-row .pct .arrow.down { color: var(--live); }

.scoreboard-row .action {
  text-align: right;
}

.scoreboard-row .action a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-2);
  color: var(--primary-700);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.scoreboard-row .action a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   CAPTAIN EVIDENCE (2x2 form arrows)
   ============================================================ */

.captain-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.captain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.captain-card .role-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.captain-card .role-chip.vc {
  background: var(--primary);
}

.captain-card .role-chip.bowl {
  background: var(--ink);
}

.captain-card .role-chip.bat {
  background: var(--accent-700);
}

.captain-card .name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 0 0 4px;
  color: var(--ink);
}

.captain-card .role {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.captain-card .form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.captain-card .form-row .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 70px;
}

.captain-card .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
  color: var(--primary);
  flex: 0 0 36px;
}

.captain-card .arrow.down { color: var(--live); }
.captain-card .arrow.flat { color: var(--muted); }

/* ============================================================
   PAYOUT LEDGER (asymmetric tier ladder)
   ============================================================ */

.ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ledger-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.ledger-content p {
  color: var(--ink-2);
  margin-bottom: 16px;
}

.ledger-tiers {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.ledger-tier {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-2);
}

.ledger-tier:last-child {
  border-bottom: 0;
}

.ledger-tier .step {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 13px;
}

.ledger-tier .step.top { background: var(--accent); }
.ledger-tier .step.tier2 { background: var(--primary-300); }
.ledger-tier .step.tier3 { background: var(--ink); }

.ledger-tier .tname {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.ledger-tier .tdesc {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.ledger-tier .tval {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-700);
  text-align: right;
}

/* ============================================================
   APP PANEL (split text + device cue)
   ============================================================ */

.app-panel {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.app-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.app-panel .ap-content {
  position: relative;
  z-index: 1;
}

.app-panel .ap-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.app-panel h2 {
  color: #fff;
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.app-panel p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
  font-size: 15px;
}

.app-panel .platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.app-panel .platform {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.app-panel .ap-device {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.app-panel .ap-device .screen {
  background: var(--slate);
  border-radius: 14px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #9FE3C5;
  line-height: 1.6;
  min-height: 200px;
}

.app-panel .ap-device .screen .line {
  display: block;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(159, 227, 197, 0.18);
}

.app-panel .ap-device .screen .line:last-child {
  border-bottom: 0;
}

.app-panel .ap-device .screen .green {
  color: #2EE6A8;
}

.app-panel .ap-device .screen .amber {
  color: #FFD7B0;
}

.app-panel .ap-device .screen .white {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   PLAYER ROLL (3-card asymmetric)
   ============================================================ */

.player-roll {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.player-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.player-card .pc-bar {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.player-card .pc-bar .fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-300) 100%);
  border-radius: 3px;
}

.player-card .pc-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.player-card .pc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-300) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex: 0 0 52px;
  letter-spacing: 0.02em;
}

.player-card .pc-avatar.bat { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-700) 100%); }
.player-card .pc-avatar.all { background: linear-gradient(135deg, var(--primary-700) 0%, var(--slate) 100%); }
.player-card .pc-avatar.bowl { background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%); }

.player-card .pc-name {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.005em;
}

.player-card .pc-role {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}

.player-card .pc-stat {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1;
}

.player-card .pc-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.player-card .pc-foot {
  font-size: 12px;
  color: var(--ink-2);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-en);
  letter-spacing: -0.005em;
}

.faq-q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-q .faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  flex: 0 0 26px;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-q .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   RULE ROWS (2-column methodology)
   ============================================================ */

.rules {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.rule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rule-card .rule-marker {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}

.rule-card h3, .rule-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.rule-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   RESPONSIBLE PARTICIPATION
   ============================================================ */

.responsible {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.responsible h2,
.responsible h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.responsible p {
  color: var(--ink-2);
  font-size: 14.5px;
}

.responsible .juris-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 13px;
}

.responsible .juris-list li {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-2);
  font-weight: 600;
  margin: 0;
}

.juris-h {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 700;
}

.responsible .age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 24px;
  font-size: 14px;
}

.site-footer .ft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer .ft-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .ft-brand .brand-mark {
  color: #fff;
}

.site-footer .ft-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 30ch;
  margin: 0;
}

.site-footer h3,
.site-footer h5 {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  font-weight: 500;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .ft-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .ft-bar .ft-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .ft-bar .ft-bar-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* ============================================================
   TRUST / AUTHORITY STRIP
   ============================================================ */

.authority-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.authority-strip .as-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.authority-strip .as-left .as-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.authority-strip .as-left .as-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.authority-strip .as-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.authority-strip .as-stamp::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   BANNER / ARTICLE HERO
   ============================================================ */

.article-hero {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--background) 100%);
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--border-2);
}

.article-hero .ah-crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.article-hero .ah-crumbs a {
  color: var(--muted);
}

.article-hero .ah-crumbs a:hover {
  color: var(--primary);
}

.article-hero .ah-crumbs .sep {
  margin: 0 8px;
  color: var(--border);
}

.article-hero h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  margin-bottom: 12px;
  max-width: 800px;
}

.article-hero .ah-deck {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.article-hero .ah-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.article-hero .banner-img {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-hero .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 48px 0 64px;
}

.article-body h2 {
  margin-top: 28px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  margin-top: 22px;
  font-size: 20px;
}

.article-body p, .article-body li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

.article-body .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.article-body .related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-body .related-card .rel-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body .related-card h4 {
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.005em;
}

.article-body .related-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}

.article-body .step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.article-body .step-list li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px 18px 60px;
  position: relative;
  margin-bottom: 10px;
}

.article-body .step-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 14px;
}

.article-body .step-list li h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.article-body .step-list li p {
  margin: 0;
  font-size: 14.5px;
}

.article-body .inline-image {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.article-body .inline-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body .inline-image figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 14px 12px;
  border-top: 1px solid var(--border-2);
  background: var(--surface);
}

.article-body .pull-quote {
  margin: 26px 0;
  padding: 22px 24px;
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 19px;
  font-style: normal;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.article-body .pull-quote cite {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
}

.article-body .danger-box {
  margin: 22px 0;
  padding: 18px 22px;
  background: rgba(226, 130, 34, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-2);
  font-size: 14.5px;
}

.article-body .danger-box strong {
  color: var(--accent-700);
}

.article-body .info-box {
  margin: 22px 0;
  padding: 18px 22px;
  background: var(--surface-2);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-2);
  font-size: 14.5px;
}

.article-body .info-box strong {
  color: var(--primary-700);
}

.article-body .toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0 28px;
}

.article-body .toc h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 10px;
}

.article-body .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-body .toc li {
  margin: 0;
  padding: 4px 0;
  font-size: 14px;
  color: var(--ink-2);
}

.article-body .toc a {
  color: var(--ink-2);
}

.article-body .toc a:hover {
  color: var(--primary);
}

/* ============================================================
   HUB NAV (related routes list)
   ============================================================ */

.hub-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
}

.hub-nav a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.005em;
}

.hub-nav a::before {
  content: "";
  width: 28px;
  height: 28px;
  background: var(--surface-2);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-300) 100%);
}

.hub-nav a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hub-nav .hn-1::before { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-300) 100%); }
.hub-nav .hn-2::before { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-700) 100%); }
.hub-nav .hn-3::before { background: linear-gradient(135deg, var(--primary-700) 0%, var(--slate) 100%); }
.hub-nav .hn-4::before { background: linear-gradient(135deg, var(--ink) 0%, var(--slate) 100%); }

/* ============================================================
   LOGO STRIP (small authority)
   ============================================================ */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 36px;
  padding: 22px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  margin: 24px 0;
}

.logo-strip .ls-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.logo-strip .ls-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  align-items: center;
}

.logo-strip .ls-mark {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.logo-strip .ls-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-block;
}

/* ============================================================
   TOC / LATEST POSTS
   ============================================================ */

.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.latest-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.latest-card .lc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.latest-card .lc-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.latest-card h3, .latest-card h4 {
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.latest-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
}

.latest-card .lc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-700);
  margin-top: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1099px) {
  .bento.asymmetric-a { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .bento.asymmetric-a .bento-card:nth-child(1) { grid-row: auto; }
  .bento.asymmetric-b { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .bento.asymmetric-b .bento-card:nth-child(3) { grid-column: 1 / -1; }
  .split-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .captain-grid { grid-template-columns: minmax(0, 1fr); }
  .ledger { grid-template-columns: minmax(0, 1fr); }
  .app-panel { grid-template-columns: minmax(0, 1fr); padding: 28px; }
  .player-roll { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .player-roll .player-card:nth-child(3) { grid-column: 1 / -1; }
  .rules { grid-template-columns: minmax(0, 1fr); }
  .responsible { grid-template-columns: minmax(0, 1fr); padding: 28px; }
  .hub-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .latest-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .latest-grid .latest-card:nth-child(3) { grid-column: 1 / -1; }
  .article-body .related-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .article-body .related-grid .related-card:nth-child(3) { grid-column: 1 / -1; }
  .site-footer .ft-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 899px) {
  :root { --gutter: 18px; }
  .main-nav { display: none; }
  .header-cta-ghost { display: inline-flex; }
  .header-cta { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: var(--mobile-cta-h); }
  .site-header .container { min-width: 0; }
  .site-header .container > * { min-width: 0; flex-shrink: 1; }
  .hero-mosaic { padding: 36px 0 40px; }
  .hero-mosaic .cred-row { margin-bottom: 18px; }
  .hero-mosaic .cta-row { margin-bottom: 24px; }
  .mosaic-grid { grid-template-columns: minmax(0, 1fr); grid-template-rows: 220px 180px 180px; }
  .mosaic-tile.wide { grid-column: 1 / 2; grid-row: 1 / 2; }
  .mosaic-tile.tile-a { grid-column: 1 / 2; grid-row: 2 / 3; }
  .mosaic-tile.tile-b { grid-column: 1 / 2; grid-row: 3 / 4; }
  section { padding: 40px 0; }
  .scoreboard-head, .scoreboard-row { grid-template-columns: 50px minmax(0, 1fr) 56px 56px 50px; }
  .scoreboard-head .pct, .scoreboard-row .pct { display: none; }
  .scoreboard-row .action { display: none; }
  .app-panel { padding: 24px; }
  .player-roll { grid-template-columns: minmax(0, 1fr); }
  .player-roll .player-card:nth-child(3) { grid-column: auto; }
  .responsible { padding: 22px; }
  .responsible .juris-list { grid-template-columns: minmax(0, 1fr); }
  .site-footer .ft-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .site-footer .ft-bar { flex-direction: column; align-items: flex-start; }
  .article-hero { padding: 36px 0 24px; }
  .article-body .related-grid { grid-template-columns: minmax(0, 1fr); }
  .article-body .related-grid .related-card:nth-child(3) { grid-column: auto; }
  .hub-nav { grid-template-columns: minmax(0, 1fr); }
  .latest-grid { grid-template-columns: minmax(0, 1fr); }
  .latest-grid .latest-card:nth-child(3) { grid-column: auto; }
  .authority-strip { flex-direction: column; align-items: flex-start; }
  .rules { grid-template-columns: minmax(0, 1fr); }
  .article-hero .banner-img { aspect-ratio: 4 / 3; }
}

@media (max-width: 559px) {
  :root { --gutter: 14px; }
  h1 { font-size: 28px; }
  .hero-mosaic h1 { font-size: 30px; }
  .hero-mosaic .cta-row { flex-direction: column; align-items: stretch; }
  .hero-mosaic .cta-row .btn { width: 100%; }
  .bento-card { padding: 18px; }
  .split-4 { grid-template-columns: minmax(0, 1fr); }
  .captain-card { grid-template-columns: minmax(0, 1fr); }
  .captain-card .arrow { display: none; }
  .ledger-tier { grid-template-columns: 28px minmax(0, 1fr); }
  .ledger-tier .tval { grid-column: 1 / -1; text-align: left; padding-left: 42px; }
  .scoreboard-head { display: none; }
  .scoreboard-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; }
  .scoreboard-row .num { text-align: left; font-size: 14px; }
  .scoreboard-row .format { font-size: 11px; }
  .scoreboard-row .match .sub { font-size: 12px; }
  .responsible { padding: 18px; }
  .rule-card { padding: 16px; }
  .faq-q { font-size: 15px; padding: 14px 18px; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 14px; }
  .hub-nav a { padding: 12px 14px; font-size: 13px; }
  .article-body .step-list li { padding: 14px 16px 14px 50px; }
  .article-body .step-list li::before { left: 12px; top: 12px; width: 28px; height: 28px; font-size: 12px; }
}

@media (min-width: 1100px) {
  .main-nav { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track-inner { animation: none; }
  .hero-mosaic .cred-row .cred::before { animation: none; }
  .ticker-label::before { animation: none; }
  * { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header { background: var(--surface); }
  .mobile-sticky-cta { background: var(--surface); }
  .mosaic-tile-chip { background: rgba(255, 255, 255, 0.9); }
}

/* Focus visibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

img[loading="lazy"] {
  background: var(--surface-2);
}

/* Sticky nav occlusion helper */
section[id], div[id] {
  scroll-margin-top: 90px;
}
