/* ===== Season 2026 strip (inside .oc-card, which is dark in both modes) ===== */

.season-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 30px 0 6px;
  counter-reset: season-step;
}
.season-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
}
/* connecting rail */
.season-step::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 26px;
  right: -12px;
  height: 2px;
  background: rgba(255, 255, 255, .16);
}
.season-step:last-child::before { display: none; }
.season-step.is-done::before { background: rgba(230, 43, 30, .75); }

.season-step-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}
.season-step-dot svg { width: 13px; height: 13px; }
.season-step.is-done .season-step-dot {
  background: var(--red);
  border-color: var(--red);
}
.season-step.is-current .season-step-dot {
  border-color: var(--red);
  box-shadow: 0 0 0 0 rgba(230, 43, 30, .55);
  animation: oc-pulse 1.6s ease-out infinite;
}
.season-step.is-current .season-step-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.season-step-label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
}
.season-step-sub {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.35;
}
.season-step.is-done .season-step-label,
.season-step.is-current .season-step-label { color: #fff; }
.season-step.is-current .season-step-sub { color: rgba(255, 255, 255, .8); }

@media (max-width: 700px) {
  .season-steps { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .season-step::before { display: none; }
}

/* revealed speakers grid (speakers phase) */
.season-speakers {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}
.season-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
}
.season-speaker img,
.season-speaker-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.season-speaker-avatar {
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.season-speaker div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.season-speaker strong { color: #fff; font-size: .98rem; line-height: 1.25; }
.season-speaker span { color: rgba(255, 255, 255, .6); font-size: .82rem; line-height: 1.35; }
.season-speaker-tba { border-style: dashed; }
.season-speaker-tba .season-speaker-avatar { background: rgba(255, 255, 255, .12); }

.oc-roles li a { color: inherit; text-decoration: none; }
.season-team-link { text-decoration: none; }
.season-team-link:hover { color: #fff; }

/* v2 structure: slim hero pill replacing the duplicate 2026 card */
.hero-next-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(230, 43, 30, .5);
  background: rgba(230, 43, 30, .07);
  color: inherit;
  text-decoration: none;
  transition: background .2s ease, transform .12s ease;
}
.hero-next-pill:hover { background: rgba(230, 43, 30, .14); transform: translateY(-2px); }
.hero-next-pill strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em; }
.hero-next-pill span { color: var(--muted); font-size: .92rem; }
.hero-next-pill .hero-next-arrow { color: var(--red); font-size: 1rem; }
.hero-next-pill .oc-pulse-lg { width: 9px; height: 9px; }

/* v3 structure: hero stat strip under the pill */
.hero-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: .92rem;
}
.hero-stats strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-right: 5px;
}

/* v3 structure: slim partners band */
.partners-band { padding: 44px 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* v2 structure: nominate as a distinct nav CTA */
.nav-cta {
  margin: 16px 0 0;
  width: 100%;
  font-size: .9rem;
  padding: 12px 14px;
}
.mobile-menu .nav-cta { margin-top: 18px; flex-shrink: 0; }

/* 2026 partners block on partners.php */
.partners26 {
  margin: 26px 0 10px;
  padding: 28px 30px;
  border-radius: 18px;
  border: 1px dashed rgba(230, 43, 30, .55);
  background: rgba(230, 43, 30, .05);
}
.partners26 h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 6px 0 8px;
}
.partners26 p { color: var(--muted); max-width: 62ch; margin: 0 0 16px; }
.partners26-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}
.partners26-card {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border-light);
  text-align: center;
}
.partners26-card img { max-height: 52px; max-width: 100%; object-fit: contain; }
.partners26-card strong { font-size: .92rem; }
.partners26-card span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.partners26-lastyear {
  margin: 34px 0 0;
}

/* ===== Nominate section (page background, must work in light + dark) ===== */

.nominate-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 44px;
  align-items: center;
}
.nominate-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.nominate-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--red), #ff6a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nominate-lead { margin: 0 0 26px; }
.nominate-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nominate-meta { color: var(--muted); font-size: .92rem; }

.nominate-dot {
  position: relative;
  justify-self: center;
  width: min(320px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.nominate-dot-core {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ff6a5c, var(--red) 62%, #b51c12 100%);
  box-shadow: 0 24px 70px rgba(230, 43, 30, .35);
  display: grid;
  place-items: center;
}
.nominate-dot-core svg { width: 34%; height: 34%; opacity: .95; }
.nominate-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(230, 43, 30, .45);
  animation: nominate-ripple 3.2s ease-out infinite;
}
.nominate-ring-2 { animation-delay: 1.6s; }
@keyframes nominate-ripple {
  0%   { transform: scale(.72); opacity: .9; }
  100% { transform: scale(1.06); opacity: 0; }
}

@media (max-width: 860px) {
  .nominate-inner { grid-template-columns: 1fr; gap: 30px; }
  .nominate-dot { width: min(210px, 60vw); order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .nominate-ring, .season-step.is-current .season-step-dot { animation: none; }
}
