:root {
  --moo-ink: #151a14;
  --moo-paper: #f2f0e7;
  --moo-mint: #b6ff4d;
  --moo-green: #1d6f50;
  --moo-pink: #ff8cae;
  --moo-yellow: #ffd761;
  --moo-violet: #a99af4;
  --moo-line: rgba(242, 240, 231, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--moo-paper);
  background:
    radial-gradient(circle at 88% 12%, rgba(182, 255, 77, 0.13), transparent 23rem),
    radial-gradient(circle at 10% 52%, rgba(169, 154, 244, 0.1), transparent 28rem),
    var(--moo-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.moo-topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 36px, 1240px);
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--moo-line);
}

.moo-mark,
.moo-ticket-link {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.moo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.moo-mark-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moo-mint);
  box-shadow: 0 0 0 5px rgba(182, 255, 77, 0.12);
}

.moo-ticket-link {
  color: rgba(242, 240, 231, 0.7);
}

.moo-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.moo-nav a {
  color: rgba(242, 240, 231, 0.58);
  font-size: 0.73rem;
  font-weight: 750;
  text-decoration: none;
}

.moo-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  padding: 118px 0 70px;
}

.moo-kicker,
.moo-section-heading > p,
.moo-card-label {
  margin: 0;
  color: var(--moo-mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.moo-kicker span {
  color: rgba(242, 240, 231, 0.58);
}

.moo-hero h1 {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
  font-size: clamp(5.5rem, 15vw, 12rem);
  font-weight: 950;
  line-height: 0.68;
  letter-spacing: -0.1em;
}

.moo-hero h1 span:last-child {
  margin-left: clamp(32px, 7vw, 90px);
  color: transparent;
  -webkit-text-stroke: 2px var(--moo-paper);
}

.moo-city {
  display: flex;
  max-width: 700px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--moo-line);
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.moo-city span {
  color: var(--moo-mint);
  font-size: 0.7em;
}

.moo-intro {
  max-width: 570px;
  margin: 25px 0 0;
  color: rgba(242, 240, 231, 0.7);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.moo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.moo-hero-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 35px;
  color: rgba(242, 240, 231, 0.36);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.moo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 19px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.moo-button-primary {
  color: var(--moo-ink);
  background: var(--moo-mint);
}

.moo-button-quiet {
  border: 1px solid var(--moo-line);
}

.moo-event-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(182, 255, 77, 0.25);
  border-radius: 34px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(182, 255, 77, 0.09), rgba(242, 240, 231, 0.025));
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.moo-bloom {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  margin: 6px auto 34px;
  place-items: center;
}

.moo-bloom i {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 52% 48% 58% 42%;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.moo-bloom i:nth-child(1) { transform: translateY(-50px); background: var(--moo-mint); }
.moo-bloom i:nth-child(2) { transform: translateX(50px) rotate(90deg); background: var(--moo-pink); }
.moo-bloom i:nth-child(3) { transform: translateY(50px) rotate(180deg); background: var(--moo-yellow); }
.moo-bloom i:nth-child(4) { transform: translateX(-50px) rotate(270deg); background: var(--moo-violet); }

.moo-bloom b {
  position: relative;
  z-index: 2;
  font-size: 3.6rem;
  line-height: 1;
}

.moo-event-card > p {
  margin: 0;
  color: var(--moo-mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.moo-event-card > strong {
  display: block;
  margin-top: 4px;
  font-size: 2.45rem;
  letter-spacing: -0.05em;
}

.moo-event-card dl {
  margin: 22px 0 0;
  border-top: 1px solid var(--moo-line);
}

.moo-event-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--moo-line);
}

.moo-event-card dt {
  color: rgba(242, 240, 231, 0.55);
}

.moo-event-card dd {
  margin: 0;
  font-weight: 750;
}

.moo-countdown {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: rgba(242, 240, 231, 0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.moo-countdown strong {
  color: var(--moo-mint);
  font-size: 0.8rem;
}

.moo-essentials {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  padding: 110px 0 130px;
  border-top: 1px solid var(--moo-line);
}

.moo-section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr;
  gap: 28px;
  align-items: start;
}

.moo-section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.moo-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 62px;
}

.moo-info-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  border: 1px solid var(--moo-line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(242, 240, 231, 0.035);
}

.moo-card-number {
  color: rgba(242, 240, 231, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
}

.moo-card-label {
  margin-top: auto;
}

.moo-info-grid h3 {
  margin: 10px 0 0;
  font-size: 1.75rem;
}

.moo-info-grid p:not(.moo-card-label) {
  color: rgba(242, 240, 231, 0.62);
  line-height: 1.55;
}

.moo-info-grid a {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.moo-info-grid a:hover,
.moo-info-grid a:focus-visible,
.moo-ticket-link:hover,
.moo-ticket-link:focus-visible {
  color: var(--moo-mint);
}

.moo-skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--moo-ink);
  background: var(--moo-mint);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.moo-skip-link:focus {
  transform: translateY(0);
}

.moo-heading-deck {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(242, 240, 231, 0.58);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.6;
}

.moo-night-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  margin-top: 14px;
}

.moo-night-card {
  min-height: 410px;
  border: 1px solid var(--moo-line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(242, 240, 231, 0.035);
}

.moo-night-card-accent {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 140, 174, 0.18), transparent 17rem),
    rgba(242, 240, 231, 0.045);
}

.moo-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.moo-card-heading p,
.moo-name-call > div > p,
.moo-study-progress p {
  margin: 0;
  color: var(--moo-mint);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.moo-card-heading span {
  color: rgba(242, 240, 231, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
}

.moo-night-card > h3 {
  max-width: 520px;
  margin: 72px 0 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.moo-night-card > p {
  max-width: 520px;
  color: rgba(242, 240, 231, 0.62);
  line-height: 1.65;
}

.moo-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.moo-checklist button {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--moo-line);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--moo-paper);
  background: rgba(21, 26, 20, 0.24);
  font: inherit;
  font-size: 0.83rem;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.moo-checklist button i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(242, 240, 231, 0.38);
  border-radius: 50%;
}

.moo-checklist button[aria-pressed="true"] {
  color: var(--moo-mint);
  border-color: rgba(182, 255, 77, 0.4);
  background: rgba(182, 255, 77, 0.08);
}

.moo-checklist button[aria-pressed="true"] i {
  border: 5px solid var(--moo-mint);
}

.moo-night-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.moo-night-links a {
  border: 1px solid var(--moo-line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 780;
  text-decoration: none;
}

.moo-pulse {
  padding: 125px max(18px, calc((100% - 1240px) / 2)) 135px;
  color: var(--moo-ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(182, 255, 77, 0.36), transparent 26rem),
    radial-gradient(circle at 4% 88%, rgba(169, 154, 244, 0.22), transparent 22rem),
    var(--moo-paper);
}

.moo-section-heading-light > p {
  color: var(--moo-green);
}

.moo-section-heading-light .moo-heading-deck {
  color: rgba(21, 26, 20, 0.6);
}

.moo-feed-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  padding: 18px 0;
  border-top: 1px solid rgba(21, 26, 20, 0.16);
  border-bottom: 1px solid rgba(21, 26, 20, 0.16);
}

.moo-feed-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.moo-feed-filters button,
.moo-refresh {
  border: 0;
  color: rgba(21, 26, 20, 0.56);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.moo-feed-filters button {
  border: 1px solid rgba(21, 26, 20, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
}

.moo-feed-filters button.is-active {
  color: var(--moo-paper);
  border-color: var(--moo-ink);
  background: var(--moo-ink);
}

.moo-refresh {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.moo-refresh:disabled {
  cursor: wait;
}

.moo-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #43ad56;
  box-shadow: 0 0 0 5px rgba(67, 173, 86, 0.13);
}

.moo-refresh.is-loading .moo-live-dot {
  animation: moo-pulse-dot 900ms ease-in-out infinite alternate;
}

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

.moo-feed-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(21, 26, 20, 0.16);
  border-radius: 24px;
  padding: 24px;
  color: var(--moo-ink);
  background: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.moo-feed-card:hover,
.moo-feed-card:focus-visible {
  border-color: rgba(29, 111, 80, 0.55);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-3px);
}

.moo-feed-card.has-image {
  min-height: 430px;
  color: white;
  background: #1c211b;
}

.moo-feed-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 10, 0.96), rgba(10, 12, 10, 0.12) 68%);
}

.moo-feed-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moo-feed-meta,
.moo-feed-card h3,
.moo-feed-card > p,
.moo-feed-footer {
  position: relative;
  z-index: 1;
}

.moo-feed-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: currentColor;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.58;
}

.moo-feed-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.moo-feed-card > p {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: currentColor;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.64;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.moo-feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.7rem;
  font-weight: 800;
}

.moo-feed-loading {
  pointer-events: none;
}

.moo-feed-loading span,
.moo-feed-loading b,
.moo-feed-loading p {
  display: block;
  border-radius: 999px;
  background: rgba(21, 26, 20, 0.09);
  animation: moo-loading 1.1s ease-in-out infinite alternate;
}

.moo-feed-loading span { width: 34%; height: 10px; }
.moo-feed-loading b { width: 82%; height: 28px; margin-top: auto; }
.moo-feed-loading p { width: 100%; height: 58px; }

.moo-feed-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  justify-content: center;
}

.moo-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
}

.moo-source-row a {
  color: rgba(21, 26, 20, 0.6);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.moo-study {
  width: min(100% - 36px, 1240px);
  margin: 0 auto;
  padding: 130px 0 135px;
}

.moo-name-call {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 40px;
  margin-top: 68px;
  border: 1px solid rgba(182, 255, 77, 0.3);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 0% 100%, rgba(182, 255, 77, 0.1), transparent 20rem),
    rgba(242, 240, 231, 0.025);
}

.moo-name-call h3 {
  margin: 12px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.moo-name-call ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.moo-name-call li {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  border-left: 1px solid var(--moo-line);
  padding-left: 14px;
}

.moo-name-call li span {
  color: rgba(242, 240, 231, 0.3);
  font-size: 0.65rem;
  font-weight: 800;
}

.moo-name-call li b {
  margin-top: auto;
  font-size: 0.9rem;
}

.moo-name-call li em {
  margin-top: 4px;
  color: var(--moo-mint);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.moo-study-progress {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 56px;
}

.moo-study-progress strong {
  display: block;
  margin-top: 6px;
  font-size: 1.25rem;
}

.moo-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(242, 240, 231, 0.1);
}

.moo-progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--moo-mint), var(--moo-yellow), var(--moo-pink), var(--moo-violet));
  transition: width 220ms ease;
}

.moo-study-progress > button {
  border: 0;
  color: rgba(242, 240, 231, 0.45);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.moo-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.moo-study-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  border: 1px solid var(--moo-line);
  border-radius: 24px;
  padding: 24px;
  background: rgba(242, 240, 231, 0.035);
  transition: border-color 180ms ease, background 180ms ease;
}

.moo-study-card.is-ready {
  border-color: rgba(182, 255, 77, 0.36);
  background: rgba(182, 255, 77, 0.055);
}

.moo-study-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.moo-study-priority,
.moo-study-difficulty {
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.moo-study-priority {
  color: var(--moo-mint);
}

.moo-study-difficulty {
  color: rgba(242, 240, 231, 0.35);
}

.moo-study-card h3 {
  margin: 48px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.moo-study-summary {
  margin: 15px 0 0;
  color: rgba(242, 240, 231, 0.58);
  font-size: 0.88rem;
  line-height: 1.55;
}

.moo-study-cue {
  margin-top: auto;
  padding-top: 28px;
}

.moo-study-cue > span {
  color: rgba(242, 240, 231, 0.36);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.moo-study-cue > strong {
  display: block;
  margin-top: 8px;
  color: var(--moo-mint);
  font-size: 1rem;
  line-height: 1.35;
}

.moo-study-cue > p {
  margin: 10px 0 0;
  color: rgba(242, 240, 231, 0.54);
  font-size: 0.8rem;
  line-height: 1.5;
}

.moo-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.moo-study-actions a,
.moo-study-actions button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--moo-line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--moo-paper);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.moo-study-actions button {
  margin-left: auto;
}

.moo-study-card.is-ready .moo-study-actions button {
  color: var(--moo-ink);
  border-color: var(--moo-mint);
  background: var(--moo-mint);
}

.moo-cram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 58px;
}

.moo-cram-card,
.moo-setlist-card {
  min-height: 560px;
  border: 1px solid var(--moo-line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(242, 240, 231, 0.035);
}

.moo-cram-card h3 {
  margin: 55px 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.moo-cram-card > ol {
  margin: 38px 0 28px;
  padding: 0;
  list-style: none;
}

.moo-cram-card > ol li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--moo-line);
  color: rgba(242, 240, 231, 0.56);
}

.moo-cram-card > ol li.is-active {
  color: var(--moo-mint);
}

.moo-cram-card > ol li span {
  font-size: 0.72rem;
  font-weight: 800;
}

.moo-cram-card > ol li b {
  color: var(--moo-paper);
  font-size: 0.86rem;
}

.moo-setlist-card {
  padding: 0;
}

.moo-setlist-card summary {
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 85% 14%, rgba(169, 154, 244, 0.22), transparent 20rem),
    rgba(242, 240, 231, 0.01);
  cursor: pointer;
  list-style: none;
}

.moo-setlist-card summary::-webkit-details-marker {
  display: none;
}

.moo-setlist-card summary span {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.moo-setlist-card summary small {
  color: var(--moo-violet);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.moo-setlist-card summary b {
  max-width: 470px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.moo-setlist-card summary i {
  font-size: 2.4rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.moo-setlist-card[open] summary {
  min-height: 210px;
  border-bottom: 1px solid var(--moo-line);
}

.moo-setlist-card[open] summary i {
  transform: rotate(45deg);
}

.moo-setlist-card > div {
  padding: 28px 38px 38px;
}

.moo-setlist-card > div > p {
  color: rgba(242, 240, 231, 0.56);
  line-height: 1.6;
}

.moo-setlist-card ol {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.moo-setlist-card li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--moo-line);
}

.moo-setlist-card li span {
  color: var(--moo-violet);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.moo-setlist-card li p {
  margin: 0;
  color: rgba(242, 240, 231, 0.65);
  font-size: 0.84rem;
  line-height: 1.5;
}

.moo-setlist-card a {
  color: var(--moo-paper);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.moo-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 90px max(18px, calc((100% - 1240px) / 2)) 40px;
  color: var(--moo-ink);
  background: var(--moo-mint);
}

.moo-footer > div p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.moo-footer > div strong {
  display: block;
  max-width: 800px;
  margin-top: 12px;
  font-size: clamp(2.5rem, 7vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.moo-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.moo-footer nav a {
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.moo-footer-note {
  grid-column: 1 / -1;
  margin: 45px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 26, 20, 0.2);
  color: rgba(21, 26, 20, 0.56);
  font-size: 0.7rem;
  line-height: 1.5;
}

.moo-nav a:hover,
.moo-nav a:focus-visible,
.moo-night-links a:hover,
.moo-night-links a:focus-visible,
.moo-source-row a:hover,
.moo-source-row a:focus-visible,
.moo-study-actions a:hover,
.moo-study-actions a:focus-visible,
.moo-setlist-card a:hover,
.moo-setlist-card a:focus-visible {
  color: var(--moo-mint);
}

.moo-pulse .moo-source-row a:hover,
.moo-pulse .moo-source-row a:focus-visible {
  color: var(--moo-green);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--moo-pink);
  outline-offset: 3px;
}

@keyframes moo-pulse-dot {
  to { transform: scale(0.72); opacity: 0.5; }
}

@keyframes moo-loading {
  to { opacity: 0.42; }
}

@media (max-width: 1080px) {
  .moo-info-grid,
  .moo-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moo-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moo-name-call {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .moo-nav {
    display: none;
  }

  .moo-hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .moo-event-card {
    min-height: 0;
  }

  .moo-section-heading,
  .moo-info-grid,
  .moo-night-grid,
  .moo-cram-grid {
    grid-template-columns: 1fr;
  }

  .moo-info-grid article {
    min-height: 260px;
  }

  .moo-name-call ol {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .moo-study-progress {
    grid-template-columns: 1fr auto;
  }

  .moo-progress-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .moo-setlist-card summary,
  .moo-cram-card,
  .moo-setlist-card {
    min-height: 480px;
  }
}

@media (max-width: 520px) {
  .moo-topbar {
    min-height: 66px;
  }

  .moo-ticket-link {
    font-size: 0.66rem;
  }

  .moo-mark {
    font-size: 0.65rem;
  }

  .moo-hero {
    padding-top: 104px;
  }

  .moo-hero h1 {
    font-size: clamp(5rem, 27vw, 8rem);
  }

  .moo-city {
    align-items: flex-end;
  }

  .moo-event-card {
    border-radius: 26px;
    padding: 22px;
  }

  .moo-info-grid,
  .moo-feed-grid,
  .moo-study-grid {
    grid-template-columns: 1fr;
  }

  .moo-checklist {
    grid-template-columns: 1fr;
  }

  .moo-feed-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .moo-feed-card {
    min-height: 300px;
  }

  .moo-feed-card.has-image {
    min-height: 390px;
  }

  .moo-study-progress {
    gap: 14px;
  }

  .moo-study-card {
    min-height: 430px;
  }

  .moo-study-actions button {
    margin-left: 0;
  }

  .moo-setlist-card > div {
    padding: 24px;
  }

  .moo-footer {
    grid-template-columns: 1fr;
  }

  .moo-footer nav {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
