:root {
  --teal: #53c9c6;
  --teal-dark: #329e9b;
  --teal-light: #8ddbd9;
  --accent: #a7e4e2;
  --lime: #cedd44;
  --lime-light: #dde77c;
  --charcoal: #25282a;
  --ink: #1a1d1f;
  --grey: #6c7277;
  --white: #ffffff;
  --scene: 16s;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Montserrat, system-ui, sans-serif;
  cursor: none;
  user-select: none;
}

.dev-badge {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 2.4vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.35vh;
  pointer-events: none;
}

.board {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-rows: 11vh 1fr 10vh;
  padding: 2.2vh 3.2vw 0;
  background:
    radial-gradient(90vw 70vh at 110% -10%, rgba(83, 201, 198, 0.18), transparent 55%),
    radial-gradient(70vw 50vh at -10% 110%, rgba(206, 221, 68, 0.08), transparent 50%),
    linear-gradient(180deg, #1a1d1f 0%, #25282a 55%, #1a1d1f 100%);
}

.top {
  display: grid;
  grid-template-columns: 16vw 1fr 16vw;
  align-items: center;
  gap: 2vw;
}

.logo { height: 6.4vh; width: auto; justify-self: start; }

.studio {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 2.1vh;
  color: var(--teal);
}

.clock {
  justify-self: end;
  text-align: right;
  line-height: 1;
}

#clock-time {
  font-size: 4.6vh;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.secs {
  font-size: 2vh;
  color: var(--teal);
  margin-left: 0.25em;
  font-weight: 600;
}

.ampm {
  font-size: 1.6vh;
  letter-spacing: 0.12em;
  margin-left: 0.4em;
  color: var(--accent);
  font-weight: 600;
}

.date {
  margin-top: 0.6vh;
  font-size: 1.5vh;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}

.stage {
  position: relative;
  overflow: hidden;
}

.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(1.4vh);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scene.on {
  opacity: 1;
  transform: none;
}

.kicker {
  font-size: 1.7vh;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 1.4vh;
}

h1 {
  font-size: 8.4vh;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 700;
}

.lede {
  margin-top: 2vh;
  font-size: 2.6vh;
  font-weight: 500;
  color: #d7dcde;
  max-width: 70vw;
  line-height: 1.35;
}

.meta {
  display: flex;
  gap: 1vw;
  margin-top: 3vh;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid rgba(83, 201, 198, 0.45);
  background: rgba(83, 201, 198, 0.1);
  color: var(--accent);
  padding: 1.1vh 1.6vw;
  border-radius: 999px;
  font-size: 1.8vh;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill.lime {
  border-color: rgba(206, 221, 68, 0.55);
  background: rgba(206, 221, 68, 0.12);
  color: var(--lime);
}

.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3.2vw;
  align-items: center;
  width: 100%;
}

.hero-row.has-photo {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.hero-row > div:first-child {
  min-width: 0;
}

.hero-row h1 {
  font-size: 7.2vh;
  padding-right: 0.08em;
}

.hero-instructor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4vh;
  justify-self: center;
}

.hero-photo {
  width: 22vh;
  height: 22vh;
  border-radius: 50%;
  object-fit: cover;
  border: 0.35vh solid rgba(83, 201, 198, 0.45);
  background: rgba(83, 201, 198, 0.12);
  flex-shrink: 0;
}

.hero-photo.empty {
  display: grid;
  place-items: center;
  font-size: 8vh;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.hero-instructor-name {
  font-size: 2vh;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.count {
  text-align: right;
  justify-self: end;
  min-width: 0;
}

.count .num {
  font-size: 9.2vh;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 0.9;
  white-space: nowrap;
  padding-left: 0.06em;
}

.count .lbl {
  margin-top: 1vh;
  font-size: 2vh;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

.grid7 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.4vh 1.2vw;
  height: 68vh;
}

.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6vh;
  padding: 2.4vh 1.6vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .name {
  font-size: 2.6vh;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card .sub {
  color: var(--teal);
  font-size: 1.5vh;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.6vh;
}

.card p {
  color: #c5cbce;
  font-size: 1.7vh;
  line-height: 1.35;
  margin-top: 1.2vh;
}

.dots-int {
  display: flex;
  gap: 0.35vw;
  margin-top: 1.4vh;
}

.dots-int b {
  width: 1.1vw;
  height: 0.7vh;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.dots-int b.on { background: var(--lime); }

.today {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3vh 2vw;
  align-content: start;
}

.today.many {
  gap: 0.9vh 1.6vw;
}

.row {
  display: grid;
  grid-template-columns: 13vw auto 1fr auto;
  align-items: center;
  gap: 1.2vw;
  padding: 1.6vh 1.4vw;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.2vh;
  border-left: 0.45vw solid var(--teal);
}

.who {
  width: 5.6vh;
  height: 5.6vh;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(83, 201, 198, 0.14);
  display: grid;
  place-items: center;
  font-size: 1.6vh;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.04em;
}

.who.empty { border: 1px solid rgba(83, 201, 198, 0.25); }

.today.many .row {
  padding: 1.1vh 1.2vw;
}

.today.many .row .cn { font-size: 2.2vh; }
.today.many .row .when { font-size: 2.1vh; }
.today.many .who { width: 4.6vh; height: 4.6vh; font-size: 1.4vh; }

.row.live { border-left-color: var(--lime); background: rgba(206, 221, 68, 0.08); }
.row.limited { border-left-color: var(--lime); }
.row.waitlist, .row.full { opacity: 0.82; }

.row .when {
  font-size: 2.4vh;
  font-weight: 700;
  color: var(--teal);
}

.row.live .when { color: var(--lime); }

.row .cn { font-size: 2.6vh; font-weight: 800; }

.row .cs { color: #9aa3a7; font-size: 1.5vh; letter-spacing: 0.12em; text-transform: uppercase; }

.row .badge {
  font-size: 1.5vh;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lime);
  white-space: nowrap;
}

.row .badge.open { color: var(--teal); }
.row .badge.limited { color: var(--lime); }
.row .badge.waitlist,
.row .badge.full { color: #9aa3a7; }

.three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6vw;
}

.three h2 {
  font-size: 3vh;
  color: var(--teal);
  margin-bottom: 1.6vh;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.three li {
  list-style: none;
  font-size: 2.1vh;
  line-height: 1.45;
  margin-bottom: 1.2vh;
  padding-left: 1.2vw;
  border-left: 3px solid rgba(83, 201, 198, 0.5);
  color: #dce2e4;
}

.quote {
  max-width: 78vw;
}

.quote blockquote {
  font-size: 4.6vh;
  font-weight: 600;
  line-height: 1.2;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 3vh;
  font-style: normal;
  font-size: 2.2vh;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  margin-top: 3vh;
}

.plan {
  border-radius: 2vh;
  padding: 4vh 2.4vw;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(83, 201, 198, 0.25);
}

.plan.cheers {
  background: linear-gradient(160deg, rgba(83, 201, 198, 0.22), rgba(255, 255, 255, 0.03));
}

.plan .stat {
  font-size: 8vh;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
}

.plan h2 { font-size: 3.4vh; margin: 0.6vh 0 1.4vh; }

.plan p { font-size: 2.2vh; color: #d0d6d8; line-height: 1.35; }

.event {
  max-width: 86vw;
}

.event h1 {
  font-size: 8.4vh;
  line-height: 0.95;
  margin-bottom: 2.2vh;
}

.event-line {
  font-size: 3.4vh;
  font-weight: 600;
  font-style: italic;
  color: var(--lime);
  margin-bottom: 2.4vh;
}

.scan {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 4vw;
  align-items: center;
}

.qr {
  width: 32vh;
  height: 32vh;
  background: white;
  padding: 1.4vh;
  border-radius: 1.6vh;
}

.qr img { width: 100%; height: 100%; object-fit: contain; }

.bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding-bottom: 1.4vh;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 1.2vh;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker span {
  display: inline-block;
  font-size: 2.15vh;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5cdcf;
  padding-left: 2vw;
  animation: marquee 48s linear infinite;
}

.board.event-chrome .ticker {
  visibility: hidden;
}

.dots {
  display: none;
}

.dots i {
  width: 0.7vw;
  height: 0.7vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.dots i.on { background: var(--teal); }

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.45vh;
  background: rgba(255, 255, 255, 0.08);
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--lime));
  animation: fill var(--scene) linear;
}

@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}

.scene-hundred {
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: visible;
}

.hundred-glow {
  position: absolute;
  inset: -10vh -8vw;
  background:
    radial-gradient(50vw 50vh at 50% 42%, rgba(83, 201, 198, 0.28), transparent 58%),
    radial-gradient(40vw 36vh at 50% 58%, rgba(206, 221, 68, 0.16), transparent 55%);
  animation: glowPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hundred-rings,
.hundred-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hundred-rings i {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 22vh;
  height: 22vh;
  margin: -11vh 0 0 -11vh;
  border: 0.25vh solid rgba(83, 201, 198, 0.45);
  border-radius: 50%;
  animation: ringOut 4.2s ease-out infinite;
}

.hundred-rings i:nth-child(2) { animation-delay: 1.4s; border-color: rgba(206, 221, 68, 0.35); }
.hundred-rings i:nth-child(3) { animation-delay: 2.8s; }

.hundred-sparks i {
  position: absolute;
  width: 0.55vh;
  height: 0.55vh;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0;
  animation: spark 2.8s ease-in-out infinite;
}

.hundred-sparks i:nth-child(odd) { background: var(--teal); }

.hundred-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  padding: 0 2vw;
}

.hundred-hero .kicker {
  letter-spacing: 0.46em;
  font-size: 1.9vh;
  margin-bottom: 0.4vh;
  animation: riseIn 0.8s ease both;
}

.hundred-num {
  display: inline-block;
  font-size: 26vh;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  padding: 0.04em 0.2em 0.02em 0.08em;
  background: linear-gradient(180deg, #ffffff 8%, var(--teal) 52%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 3.4vh rgba(83, 201, 198, 0.45));
  animation: numIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  overflow: visible;
}

.hundred-hero h1 {
  font-size: 6.4vh;
  margin-top: 0.4vh;
  animation: riseIn 0.9s ease 0.35s both;
}

.hundred-hero .event-line {
  margin-bottom: 0.6vh;
  animation: riseIn 0.9s ease 0.5s both;
}

.hundred-hero .lede {
  margin-top: 0.4vh;
  max-width: 70vw;
  animation: riseIn 0.9s ease 0.65s both;
}

.hundred-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 0.5vw;
  width: min(56vw, 92vh);
  margin-top: 3.2vh;
}

.hundred-grid b {
  aspect-ratio: 1;
  border-radius: 0.28vh;
  background: rgba(83, 201, 198, 0.18);
  opacity: 0;
  transform: scale(0.35);
  animation: cellOn 0.35s ease forwards;
  animation-delay: calc(var(--i) * 22ms + 0.4s);
}

.hundred-grid b:nth-child(10n) { background: var(--lime); }
.hundred-grid b:nth-child(5n) { background: var(--teal); }

.hundred-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2vh;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hundred-marquee span {
  display: inline-block;
  padding-left: 2vw;
  font-size: 1.7vh;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  animation: marquee 28s linear infinite;
}

.hundred-marquee.family span {
  animation-duration: 140s;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes ringOut {
  0% { transform: scale(0.45); opacity: 0.7; }
  100% { transform: scale(3.4); opacity: 0; }
}

@keyframes spark {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  40% { opacity: 0.95; transform: scale(1.4); }
  70% { opacity: 0.2; transform: scale(0.8); }
}

@keyframes numIn {
  from { opacity: 0; transform: scale(0.72) translateY(3vh); }
  to { opacity: 1; transform: none; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1.6vh); }
  to { opacity: 1; transform: none; }
}

@keyframes cellOn {
  to { opacity: 1; transform: scale(1); }
}

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

.scene-hosts {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hosts-glow {
  position: absolute;
  inset: -10vh -8vw;
  background:
    radial-gradient(52vw 48vh at 50% 40%, rgba(206, 221, 68, 0.22), transparent 58%),
    radial-gradient(44vw 40vh at 50% 62%, rgba(83, 201, 198, 0.22), transparent 55%);
  animation: glowPulse 3.4s ease-in-out infinite;
  pointer-events: none;
}

.hosts-rings i { border-color: rgba(206, 221, 68, 0.4); }
.hosts-rings i:nth-child(2) { border-color: rgba(83, 201, 198, 0.4); }

.hosts-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hosts-hero .kicker {
  letter-spacing: 0.46em;
  animation: riseIn 0.8s ease both;
}

.hosts-names {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2.2vw;
  margin: 1.2vh 0 1.6vh;
  line-height: 0.9;
}

.hosts-name {
  display: inline-block;
  font-size: 14vh;
  font-weight: 800;
  letter-spacing: -0.04em;
  padding: 0 0.12em 0.04em;
  background: linear-gradient(180deg, #ffffff 10%, var(--teal) 70%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 2.6vh rgba(83, 201, 198, 0.4));
  overflow: visible;
}

.hosts-name-l { animation: nameInL 1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hosts-name-r { animation: nameInR 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both; }

.hosts-amp {
  font-size: 8vh;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  animation: ampPulse 2.4s ease-in-out 0.4s infinite both;
}

.hosts-rule {
  width: 0;
  height: 0.45vh;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--lime), var(--teal), transparent);
  margin: 0.4vh 0 2.2vh;
  animation: ruleDraw 1.1s ease 0.55s forwards;
}

.hosts-hero .event-line {
  font-size: 3.8vh;
  animation: riseIn 0.9s ease 0.55s both;
}

.hosts-hero .lede {
  max-width: 88vw;
  padding: 0 4vw;
  box-sizing: border-box;
  white-space: normal;
  animation: riseIn 0.9s ease 0.7s both;
}

@keyframes nameInL {
  from { opacity: 0; transform: translateX(-6vw); }
  to { opacity: 1; transform: none; }
}

@keyframes nameInR {
  from { opacity: 0; transform: translateX(6vw); }
  to { opacity: 1; transform: none; }
}

@keyframes ampPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes ruleDraw {
  from { width: 0; }
  to { width: 36vw; }
}
}

.empty h1 { font-size: 7vh; }
