:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --content-max: 1080px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Stable medal tokens (used in leaderboard rank chips) */
  --gold: linear-gradient(135deg, #fde68a, #f59e0b);
  --silver: linear-gradient(135deg, #e5e7eb, #9ca3af);
  --bronze: linear-gradient(135deg, #fcd9b6, #b45309);
}

/* ===========================================
   Day Game — warm cream paper, sky, field, Reds red
   (Default theme)
   =========================================== */
:root,
[data-theme="light"] {
  --bg: #faf6e9;
  --bg-elev: #ffffff;
  --bg-elev-2: #f4eed9;
  --border: rgba(21, 41, 63, 0.10);
  --border-strong: rgba(21, 41, 63, 0.22);
  --text: #15293f;
  --text-muted: #4d5e78;
  --text-faint: #7d8a9d;
  --accent: #C6011F;
  --accent-strong: #9b0017;
  --accent-contrast: #ffffff;
  --ring: rgba(198, 1, 31, 0.45);

  /* Ballpark scenery */
  --sky-top: #8ecae6;
  --sky-mid: #c4e4f3;
  --field-light: #a5cf7c;
  --field-deep: #4a8e36;
  --sun: #f6c453;

  --glow-1: rgba(246, 196, 83, 0.45);
  --glow-2: rgba(135, 206, 235, 0.30);

  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 22px rgba(21, 41, 63, 0.07);
  --shadow-card-hover:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 36px rgba(21, 41, 63, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

::selection { background: var(--accent); color: var(--accent-contrast); }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.4s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

.nav {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.brand-logo {
  height: 24px;
  width: auto;
  display: block;
}

/* Hero — sky over field */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 12vw, 140px) 0 clamp(56px, 8vw, 96px);
}

.ballpark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    /* Fade to page bg at the bottom for clean section handoff */
    linear-gradient(180deg, transparent 55%, var(--bg) 100%),
    /* Cream wash on the left so navy text reads cleanly over the photo */
    linear-gradient(
      95deg,
      var(--bg) 0%,
      var(--bg) 22%,
      color-mix(in oklab, var(--bg) 78%, transparent) 48%,
      color-mix(in oklab, var(--bg) 25%, transparent) 75%,
      transparent 100%
    ),
    /* Subtle top vignette so the lockup and eyebrow pills sit cleanly */
    linear-gradient(
      180deg,
      color-mix(in oklab, var(--bg) 35%, transparent) 0%,
      transparent 18%
    ),
    /* The photo */
    url("images/ballpark.png"),
    /* Fallback sky-and-field gradient if the photo is missing */
    linear-gradient(
      180deg,
      var(--sky-top) 0%,
      var(--sky-mid) 38%,
      var(--field-light) 62%,
      var(--field-deep) 100%
    );
  background-size: auto, auto, auto, cover, auto;
  background-position: center, center, center, center, center;
  background-repeat: no-repeat;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-inner { position: relative; max-width: 760px; }

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  padding: 8px 18px 8px 16px;
  background: color-mix(in oklab, var(--bg-elev) 75%, transparent);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(21, 41, 63, 0.10);
}
.lockup-verisoul {
  height: 24px;
  width: auto;
  display: block;
}
.lockup-x {
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 400;
}
.lockup-reds {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(198, 1, 31, 0.35));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: color-mix(in oklab, var(--bg-elev) 90%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in oklab, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 10px color-mix(in oklab, var(--accent)  0%, transparent); }
  100% { box-shadow: 0 0 0 0   color-mix(in oklab, var(--accent)  0%, transparent); }
}

.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--text);
}
.hero-title .accent {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-muted);
  max-width: 60ch;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.highlight-red {
  background: var(--accent);
  color: #fff;
  padding: 2px 9px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 8px 22px color-mix(in oklab, var(--accent) 30%, transparent);
}
.btn-primary:hover { background: var(--accent-strong); }

.btn-ghost {
  background: color-mix(in oklab, var(--bg-elev) 70%, transparent);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: var(--bg-elev); border-color: var(--text-faint); }

/* Sections */
.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) var(--gutter) clamp(56px, 8vw, 96px);
}

.section-head { margin-bottom: 28px; max-width: 720px; }
.section-head h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: none;
}
.updated {
  margin: 0;
  font-size: 13px;
  color: var(--text-faint);
}
.updated a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}
.updated a:hover { color: var(--accent-strong); }

.kicker {
  margin: 0 0 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.prose { max-width: 64ch; color: var(--text-muted); font-size: 17px; }
.prose p { margin: 0 0 14px; }

/* Tabs — sticky top-level bar */
.tablist-wrap {
  position: sticky;
  top: 62px;
  z-index: 30;
  padding: 10px 0;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.tablist-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.tablist {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(21, 41, 63, 0.06);
}

.tab {
  position: relative;
  z-index: 1;
  padding: 10px 18px;
  font: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.tab:hover { color: var(--text); }
.tab[aria-selected="true"] { color: var(--accent-contrast); }

.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  box-shadow: 0 6px 16px color-mix(in oklab, var(--accent) 35%, transparent);
  transition: transform 0.35s var(--ease), width 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.tabpanel { animation: fadeIn 0.4s var(--ease); }
.tabpanel[hidden] { display: none; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.anchor {
  position: relative;
  top: -120px;
  height: 0;
}

/* Simplified Rules / Prospects panels */
.panel-intro {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 60ch;
}
.panel-intro a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}
.panel-intro a:hover { color: var(--accent-strong); }

.panel-instruction {
  margin: 0 0 22px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 64ch;
  line-height: 1.5;
}
.panel-instruction a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}
.panel-instruction a:hover { color: var(--accent-strong); }

.panel-cta {
  margin-bottom: 40px;
}

.tier-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.tier-bullets li {
  font-size: 14.5px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
  font-weight: 500;
}
.tier-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.tier-grand .tier-bullets li::before {
  background: #f59e0b;
}
.rules-meta {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
}
.rules-meta a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}
.rules-meta a:hover { color: var(--accent-strong); }

/* Cards */
.cards {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .cards, .cards-2 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  padding: 26px 24px 28px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-elev-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 26%, transparent);
}
.card-icon svg { width: 20px; height: 20px; }
.card h4 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card p { margin: 0; color: var(--text-muted); font-size: 15.5px; }
.card strong { color: var(--text); font-weight: 600; }

/* Rules grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 700px) { .rules-grid { grid-template-columns: 1fr; } }

.rules-block {
  padding: 22px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.rules-block h4 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.rules-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.rules-block li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.rules-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-faint);
}
.rules-block strong { color: var(--text); font-weight: 600; }

.rules-footnote {
  padding: 18px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 15px;
  background: color-mix(in oklab, var(--bg-elev) 50%, transparent);
}
.rules-footnote a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
}
.rules-footnote a:hover { color: var(--accent-strong); }
.rules-footnote p { margin: 0; }

/* Prospects list */
.lb-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  box-shadow: var(--shadow-card);
  padding: 10px 0;
}

.prospects-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .prospects-columns { grid-template-columns: 1fr; gap: 12px; }
}

.prospects-column { min-width: 0; }

.prospects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 0;
  column-rule: 1px solid var(--border);
}

.prospect {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  break-inside: avoid;
  transition: background-color 0.2s var(--ease);
}
.prospect:hover {
  background: color-mix(in oklab, var(--accent) 6%, transparent);
}

.prospect-baseball {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
}

.prospect-name {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  letter-spacing: -0.005em;
}

@media (max-width: 540px) {
  .prospects-list { column-count: 1; column-rule: 0; }
  .prospect { padding: 11px 18px; }
}

.prospects-section-title {
  margin: 40px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
}
.prospects-section-title:first-of-type {
  margin-top: 0;
}

/* Footer */
.site-footer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 32px var(--gutter) 48px;
  color: var(--text-faint);
  font-size: 13.5px;
  border-top: 1px solid var(--border);
}
.site-footer p { margin: 0; }
.site-footer a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
}
.site-footer a:hover { color: var(--text); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 560px) {
  .brand-logo { height: 20px; }
  .nav-pill { font-size: 12.5px; padding: 5px 10px; }
  .lockup { gap: 10px; padding: 6px 14px 6px 12px; }
  .lockup-verisoul { height: 20px; }
  .lockup-reds { height: 32px; }
}

/* ===========================================
   Prize ladder
   =========================================== */
.tier-section { margin: 8px 0 36px; }
.tier-section-head { margin-bottom: 22px; max-width: 720px; }
.tier-section-head .kicker { margin-bottom: 8px; }
.tier-section-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}

.tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .tiers { grid-template-columns: 1fr; }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.tier:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.tier::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.tier-tag {
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
  border-radius: 999px;
}

.tier-num {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin: 0 0 2px;
}
.tier-num-value {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.tier-num-plus {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 1px;
}

.tier-unit {
  margin: 0 0 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.tier-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0 -6px 18px;
}

.tier-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin: 0 0 12px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 26%, transparent);
}
.tier-icon svg { width: 22px; height: 22px; }

.tier-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tier-blurb {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Grand prize — gold treatment */
.tier-grand::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}
.tier-grand .tier-tag {
  color: #b45309;
  background: color-mix(in oklab, #f59e0b 16%, transparent);
  border-color: color-mix(in oklab, #f59e0b 32%, transparent);
}
.tier-grand .tier-num-value {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier-grand .tier-num-plus { color: #f59e0b; }
.tier-grand .tier-icon {
  background: color-mix(in oklab, #f59e0b 16%, transparent);
  color: #b45309;
  border-color: color-mix(in oklab, #f59e0b 30%, transparent);
}
.tier-grand {
  box-shadow: var(--shadow-card),
    0 0 0 1px color-mix(in oklab, #f59e0b 28%, transparent);
}
