html,
body {
  margin: 0;
  background: #f4f2ec;
}

.lo-page {
  --lo-bg: #f4f2ec;
  --lo-surface: #ffffff;
  --lo-tint: #ece9e1;
  --lo-line: rgba(0, 0, 0, .12);
  --lo-line-soft: rgba(0, 0, 0, .08);
  --lo-text: #14110e;
  --lo-mute: rgba(20, 17, 14, .66);
  --lo-faint: rgba(20, 17, 14, .48);
  --lo-hover: rgba(20, 17, 14, .06);
  --lo-accent-soft: color-mix(in srgb, var(--lo-accent) 14%, transparent);
  --lo-accent-line: color-mix(in srgb, var(--lo-accent) 55%, transparent);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--lo-bg);
  color: var(--lo-text);
}

.lo-page *,
.lo-page *::before,
.lo-page *::after {
  box-sizing: border-box;
}

.lo-skip {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--fc-black);
  color: var(--fc-white);
  padding: 10px 14px;
  text-decoration: none;
}

.lo-skip:focus {
  transform: none;
}

.lo-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.lo-reset {
  color: inherit;
  text-decoration: none;
}

.lo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  padding: 15px 24px;
  background: var(--lo-accent);
  color: var(--lo-ink);
  cursor: pointer;
  font-family: var(--fc-font-mono);
  font-size: 14px;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transition:
    transform var(--fc-t-instant) var(--fc-ease-sharp),
    background var(--fc-t-fast) var(--fc-ease-sharp),
    color var(--fc-t-fast) var(--fc-ease-sharp),
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-btn:hover {
  background: var(--fc-volt);
  color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.lo-btn:active {
  transform: scale(.98);
}

.lo-btn--lg {
  padding: 18px 30px;
  font-size: 15px;
}

.lo-btn--ghost {
  border: 1px solid var(--lo-line);
  background: transparent;
  color: var(--lo-text);
}

.lo-btn--ghost:hover {
  border-color: var(--lo-text);
  background: var(--lo-hover);
  box-shadow: none;
}

.lo-btn--find {
  background: var(--fc-volt);
  color: #000000;
}

.lo-btn--find:hover {
  background: var(--lo-accent);
  color: var(--lo-ink);
}

.lo-btn--spotify,
.lo-btn--spotify:hover {
  background: #1db954;
  color: #ffffff;
}

.lo-btn--spotify:hover {
  background: #17a344;
}

.lo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 40px;
  border-bottom: 1px solid var(--lo-line-soft);
  background: rgba(244, 242, 236, .85);
  backdrop-filter: blur(12px);
  min-width: 0;
}

.lo-header__brand {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-header__brand:hover {
  background: var(--lo-hover);
}

.lo-logo {
  display: block;
  height: 58px;
  width: 194px;
}

.lo-logo--sm {
  height: 16px;
  width: 52px;
}

.lo-logo--footer {
  height: 42px;
  width: 140px;
}

.lo-logo--invert {
  filter: invert(1);
}

.lo-header__nav,
.lo-header__right {
  display: flex;
  align-items: center;
}

.lo-header__nav {
  gap: 6px;
}

.lo-header__right {
  gap: 10px;
  min-width: 0;
}

.lo-navlink,
.lo-loginlink {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--lo-mute);
  font-family: var(--fc-font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  padding: 9px 13px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
  hyphens: auto;
  transition:
    color var(--fc-t-fast) var(--fc-ease-sharp),
    background var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-loginlink {
  color: var(--lo-text);
  padding: 10px 14px;
}

.lo-navlink:hover,
.lo-loginlink:hover {
  background: var(--lo-accent);
  color: var(--lo-ink);
}

.lo-section {
  padding: 94px 0;
}

.lo-section--tint {
  background: var(--lo-tint);
}

.lo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--lo-accent);
  font-family: var(--fc-font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.lo-sec-head h2,
.lo-hero h1 {
  margin: 0;
  color: var(--lo-text);
}

.lo-sec-sub {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--lo-mute);
  font-size: 16.5px;
  line-height: 1.5;
}

.lo-more {
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--lo-text);
  font-family: var(--fc-font-mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  padding: 8px 12px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.lo-more:hover {
  border-color: var(--lo-accent-line);
  background: var(--lo-accent-soft);
  color: var(--lo-accent);
}

.lo-heroA {
  display: flex;
  flex-direction: column;
  padding: 52px 0 26px;
}

#find.lo-section {
  padding: 38px 0 58px;
}

.lo-hero__headline {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 28px;
  max-width: 1120px;
  margin-top: 26px;
}

.lo-heroA h1 {
  margin: 0;
  flex: 0 1 auto;
  font-size: clamp(60px, 10vw, 152px);
}

.lo-hero__sub {
  max-width: 46ch;
  margin: 26px 0 0;
  color: var(--lo-mute);
  font-size: clamp(18px, 2vw, 23px);
}

.lo-promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 26px;
  padding: 30px 36px;
  max-width: 860px;
  border-radius: 10px;
  background: var(--fc-bubblegum);
  text-decoration: none;
  transition: transform var(--fc-t-instant) var(--fc-ease-sharp);
}

.lo-promo-strip:hover {
  transform: translateY(-1px);
}

.lo-promo-strip__copy {
  display: block;
}

.lo-promo-strip__copy strong {
  display: block;
  color: #000;
  font-family: var(--fc-font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.lo-promo-strip__copy span {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, .78);
  font-size: 17px;
  font-weight: 600;
}

.lo-promo-strip__cta {
  flex: 0 0 auto;
  padding: 16px 24px;
  border-radius: 6px;
  background: #000;
  color: var(--fc-volt);
  font-family: var(--fc-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .lo-promo-strip {
    padding: 16px 18px;
  }
}

.lo-hero__note {
  max-width: 52ch;
  margin: 14px 0 0;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lo-hero__search {
  max-width: 640px;
  margin-top: 34px;
}

.lo-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

/* FAN-580: the volt "share this" strip sat too tight under the Spotify CTA —
   roughly double the share-row's own 12px top margin, matching the hero's
   24px spacing rhythm (see .lo-hero__quote below). */
.lo-hero__cta-row + .share-row {
  margin-top: 24px;
}

.lo-hero__quote {
  max-width: 720px;
  margin: 24px 0 0;
  padding: 16px 0 16px 22px;
  border-left: 6px solid var(--fc-volt);
  color: var(--lo-text);
}

.lo-hero__quote blockquote {
  margin: 0;
  font-family: var(--fc-font-display);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 700;
  line-height: 1.12;
}

.lo-hero__quote figcaption {
  margin-top: 8px;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lo-heroA__music {
  position: relative;
  width: min(100%, 760px);
  height: 150px;
  margin-top: 26px;
  overflow: hidden;
  --lo-music-line: rgba(20, 17, 14, .16);
}

.lo-music__staff {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  height: 53px;
  background: repeating-linear-gradient(
    to bottom,
    var(--lo-music-line) 0 1px,
    transparent 1px 13px
  );
  -webkit-mask-image: linear-gradient(to right, #000000 0 82%, transparent 100%);
  mask-image: linear-gradient(to right, #000000 0 82%, transparent 100%);
}

.lo-music__staff::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 34px;
  height: 68px;
  border: 3px solid var(--lo-accent-line);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.lo-music__note {
  position: absolute;
  top: calc(8px + (var(--y) * 8px));
  left: calc(var(--x) * 3.35%);
  width: 26px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  color: var(--lo-accent);
  transform: rotate(-17deg);
  animation: lo-music-note 2600ms var(--fc-ease-sharp) infinite;
  animation-delay: var(--d);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .10));
}

.lo-music__note::before {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 7px;
  width: 3px;
  height: 52px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(17deg);
  transform-origin: bottom;
}

.lo-music__note::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 43px;
  width: 18px;
  height: 19px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  opacity: 0;
  transform: skewY(24deg);
}

.lo-music__note--eighth::after {
  opacity: 1;
}

.lo-music__note--low {
  color: var(--fc-volt);
}

.lo-music__note--beamed {
  color: #1db954;
}

.lo-music__note--beamed::after {
  right: -48px;
  bottom: 46px;
  width: 50px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: currentColor;
  opacity: 1;
  transform: rotate(4deg);
}

.lo-music__pulse {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  align-items: center;
  height: 38px;
  gap: 5px;
  -webkit-mask-image: linear-gradient(to right, #000000 0 72%, transparent 100%);
  mask-image: linear-gradient(to right, #000000 0 72%, transparent 100%);
}

.lo-music__pulse span {
  width: 5px;
  height: var(--h, 44%);
  background: var(--lo-accent);
  opacity: .68;
  transform-origin: center;
  animation: lo-music-meter 1500ms var(--fc-ease-sharp) infinite;
  animation-delay: calc((var(--i) % 9) * 70ms);
}

.lo-music__pulse span:nth-child(6n+1) { --h: 28%; }
.lo-music__pulse span:nth-child(6n+2) { --h: 74%; }
.lo-music__pulse span:nth-child(6n+3) { --h: 46%; }
.lo-music__pulse span:nth-child(6n+4) { --h: 92%; }
.lo-music__pulse span:nth-child(6n+5) { --h: 36%; }
.lo-music__pulse span:nth-child(6n+6) { --h: 62%; }

/* Full-width waveform band (moved below "Find your team") */
.lo-heroA__music--band {
  width: 100%;
  height: 56px;
  margin: 0;
  overflow: hidden;
}
.lo-heroA__music--band .lo-music__pulse {
  position: static;
  height: 100%;
  gap: 0;
  justify-content: space-between;
  -webkit-mask-image: none;
  mask-image: none;
}
.lo-heroA__music--band .lo-music__pulse span {
  width: 4px;
  opacity: .8;
}

.lo-quote-wrap {
  padding-top: 30px;
  padding-bottom: 48px;
}

.lo-quote-wrap .lo-hero__quote {
  margin: 0;
}

@keyframes lo-music-note {
  0%,
  100% {
    opacity: .72;
    transform: translateY(0) rotate(-17deg);
  }

  44% {
    opacity: 1;
    transform: translateY(-9px) rotate(-12deg);
  }
}

@keyframes lo-music-meter {
  0%,
  100% {
    opacity: .42;
    transform: scaleY(.55);
  }

  48% {
    opacity: 1;
    transform: scaleY(1.12);
  }
}

.lo-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  gap: 12px;
  border: 1.5px solid var(--lo-line);
  border-radius: 6px;
  background: var(--lo-surface);
  color: var(--lo-text);
  cursor: pointer;
  padding: 17px 19px;
  text-align: left;
  transition:
    border-color var(--fc-t-fast) var(--fc-ease-sharp),
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-search:hover,
.lo-search:focus-within {
  border-color: var(--fc-bubblegum);
  box-shadow: 0 0 0 3px rgba(255, 111, 177, .25);
}

.lo-search--lg {
  max-width: 640px;
  padding: 21px 23px;
}

.lo-search__ico {
  flex-shrink: 0;
  color: var(--lo-faint);
  font-size: 22px;
  line-height: 1;
}

.lo-search__label {
  display: block;
  margin: 0 0 8px;
  color: var(--lo-muted);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lo-search__placeholder,
.lo-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--lo-text);
  font-family: var(--fc-font-body);
  font-size: 17px;
  font-weight: 500;
  outline: none;
}

.lo-search--lg .lo-search__placeholder,
.lo-search--lg input {
  font-size: 19px;
}

.lo-search input::placeholder {
  color: var(--lo-faint);
}

.lo-search input:focus,
.lo-search input:focus-visible {
  outline: none;
}

.lo-search__kbd {
  flex-shrink: 0;
  border: 1px solid var(--lo-line);
  border-radius: 3px;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  padding: 3px 7px;
}

.lo-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lo-teampill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--team-a) 24%, var(--lo-line-soft));
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-a) 12%, transparent), color-mix(in srgb, var(--team-b) 10%, transparent)),
    var(--lo-surface);
  color: var(--lo-text);
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  padding: 7px 17px 7px 7px;
  text-decoration: none;
  transition:
    background var(--fc-t-fast) var(--fc-ease-sharp),
    border-color var(--fc-t-fast) var(--fc-ease-sharp),
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp),
    transform var(--fc-t-instant) var(--fc-ease-sharp);
}

.lo-teampill:hover {
  border-color: var(--lo-accent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-a) 18%, transparent), color-mix(in srgb, var(--team-c) 16%, transparent)),
    var(--lo-accent-soft);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
}

.lo-avatar {
  display: grid;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .16);
}

.lo-avatar span:nth-child(1) { background: var(--team-a); }
.lo-avatar span:nth-child(2) { background: var(--team-b); }
.lo-avatar span:nth-child(3) { background: var(--team-c); }
.lo-avatar span:nth-child(4) { background: #000000; }

.lo-avatar img {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--team-a), var(--team-b) 50%, var(--team-c));
  object-fit: cover;
}

.lo-flagmark {
  display: grid;
  width: 28px;
  height: 22px;
  flex-shrink: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .14),
    0 1px 4px rgba(0, 0, 0, .08);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.lo-avatar--sm {
  width: 22px;
  height: 22px;
}

.lo-avatar--lg {
  width: 40px;
  height: 40px;
}

.lo-flagmark--lg {
  width: 42px;
  height: 32px;
  border-radius: 7px;
  font-size: 27px;
}

.lo-avatar--player {
  width: 38px;
  height: 38px;
}

.lo-teamwall,
.lo-cardgrid,
.lo-playgrid,
.lo-picker__grid {
  display: grid;
  gap: 18px;
}

.lo-teamwall {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.lo-teamtile {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--lo-line-soft);
  border-radius: 8px;
  background: var(--lo-surface);
  color: var(--lo-text);
  padding: 13px;
  text-decoration: none;
  transition:
    background var(--fc-t-fast) var(--fc-ease-sharp),
    border-color var(--fc-t-fast) var(--fc-ease-sharp),
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp),
    transform var(--fc-t-instant) var(--fc-ease-sharp);
}

.lo-teamtile:hover {
  border-color: var(--lo-accent);
  background: var(--lo-accent-soft);
  box-shadow: 0 0 0 3px var(--lo-accent-soft), 0 10px 24px rgba(0, 0, 0, .10);
  transform: translateY(-2px);
}

.lo-teamtile__name {
  display: block;
  color: var(--lo-text);
  font-family: var(--fc-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
}

.lo-teamtile__meta {
  display: block;
  margin-top: 6px;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.lo-cardgrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lo-chantcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.lo-chantcard__art,
.lo-plcard {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--team-a) 70%, #000000), color-mix(in srgb, var(--team-b) 62%, #000000)),
    var(--lo-photo) center / cover;
  background-blend-mode: color, normal;
}

.lo-chantcard__art {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 1;
  border-radius: 8px;
  padding: 15px;
  transition:
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp),
    transform var(--fc-t-instant) var(--fc-ease-sharp);
}

.lo-chantcard__art::after,
.lo-plcard__scrim {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .72) 100%);
}

.lo-chantcard:hover .lo-chantcard__art {
  box-shadow: 0 0 0 3px var(--lo-accent);
  transform: translateY(-3px);
}

.lo-chantcard__wave,
.lo-chantcard__hq,
.lo-chantcard__title,
.lo-chantcard__play {
  position: absolute;
  z-index: 2;
}

.lo-chantcard__wave {
  left: 15px;
  top: 15px;
}

.lo-chantcard__hq {
  right: 13px;
  top: 13px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .5);
  color: #ffffff;
  font-family: var(--fc-font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 2px 6px;
}

.lo-chantcard__title {
  right: 76px;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
  font-family: var(--fc-font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.02;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .7);
}

.lo-chantcard__title:hover {
  color: var(--lo-accent);
}

.lo-chantcard__play {
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--lo-accent);
  color: var(--lo-ink);
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  transform: translateY(6px);
  transition:
    opacity var(--fc-t-fast) var(--fc-ease-sharp),
    transform var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-chantcard:hover .lo-chantcard__play,
.lo-chantcard__play.is-playing {
  opacity: 1;
  transform: translateY(0);
  background: #000;
  color: #fff;
}

@media (hover: none), (pointer: coarse) {
  .lo-chantcard__play { min-width: 44px; min-height: 44px; opacity: 1; transform: translateY(0); }
}

.lo-chantcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lo-chantcard__teamwrap {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  color: var(--lo-text);
  text-decoration: none;
}

.lo-chantcard__team {
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lo-chantcard:hover .lo-chantcard__team {
  color: var(--lo-accent);
}

.lo-chantcard__plays {
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.lo-memband {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 44px;
  border: 1px solid var(--lo-line);
  border-radius: 16px;
  background: var(--lo-surface);
  padding: 44px;
}

.lo-memband__intro h2 {
  margin: 0;
}

.lo-memband__tag {
  max-width: 42ch;
  margin: 16px 0 26px;
  color: var(--lo-mute);
  font-size: 17px;
  line-height: 1.5;
}

.lo-memband__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lo-memband__fine,
.lo-signup__fine {
  margin-top: 18px;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}

.lo-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lo-benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--lo-text);
  font-size: 16.5px;
  line-height: 1.35;
}

.lo-benefit__check {
  display: grid;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--lo-accent-soft);
  color: var(--lo-accent);
}

.lo-playgrid {
  grid-template-columns: repeat(3, 1fr);
}

.lo-plcard {
  display: flex;
  aspect-ratio: 1.3;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  color: #ffffff;
  padding: 24px;
  text-decoration: none;
  transition:
    box-shadow var(--fc-t-fast) var(--fc-ease-sharp),
    transform var(--fc-t-fast) var(--fc-ease-sharp);
}

.lo-plcard:hover {
  box-shadow: 0 0 0 3px var(--lo-accent), 0 16px 34px rgba(0, 0, 0, .2);
  transform: translateY(-3px);
}

.lo-plcard__scrim {
  background: linear-gradient(155deg, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .78) 100%);
}

.lo-plcard__top,
.lo-plcard__bottom {
  position: relative;
  z-index: 2;
}

.lo-plcard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lo-plcard__tier,
.lo-plcard__count {
  color: var(--fc-volt);
  font-family: var(--fc-font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lo-plcard__tier {
  font-size: 11px;
}

.lo-plcard__count {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
}

.lo-plcard__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .68);
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lo-plcard__title {
  display: block;
  color: #ffffff;
  font-family: var(--fc-font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: .98;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.lo-plcard__follow {
  display: inline-flex;
  margin-top: 13px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.lo-footer {
  background: var(--fc-black);
  color: var(--fc-volt);
  padding: 66px 0 108px;
}

.lo-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.lo-footer__brandtxt {
  margin-top: 18px;
  color: rgba(230, 255, 26, .55);
  font-family: var(--fc-font-mono);
  font-size: 12.5px;
  letter-spacing: .03em;
  line-height: 1.6;
}

.lo-footcol__h {
  margin-bottom: 12px;
  color: rgba(230, 255, 26, .7);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lo-footcol > a {
  display: block;
  margin: 0 -12px;
  border-radius: 8px;
  color: var(--fc-volt);
  font-size: 15px;
  padding: 8px 12px;
  text-decoration: none;
}

.lo-footcol > a:hover {
  background: rgba(230, 255, 26, .12);
  color: #ffffff;
}

.lo-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lo-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--fc-graphite);
  color: #ffffff;
  padding: 0;
  text-decoration: none;
}

.lo-social:hover {
  border-color: rgba(230, 255, 26, .35);
  background: #262626;
  transform: translateY(-1px);
}

.lo-social img {
  display: block;
}

.lo-footer__news {
  display: inline-block;
  margin-top: 14px;
  color: var(--lo-accent) !important;
  font-weight: 600;
}

.lo-footer__explore {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  border-radius: 10px;
  background: var(--fc-graphite);
  padding: 16px 22px;
}

.lo-footer__explore span {
  flex-shrink: 0;
  color: var(--fc-volt);
  font-family: var(--fc-font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lo-footer__explore a {
  border-radius: 7px;
  color: var(--fc-volt);
  font-family: var(--fc-font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 10px;
  text-decoration: none;
}

.lo-footer__explore a:hover {
  background: rgba(230, 255, 26, .12);
  color: #ffffff;
}

/* FAN-753: reversed out — solid volt card, black (ink) text. FAN-580
   already proved black-on-volt AA-safe elsewhere (18.68:1). */
.lo-footer__licensing {
  display: grid;
  grid-template-columns: minmax(120px, .4fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  background: var(--fc-volt);
  border-radius: 8px;
}

.lo-footer__licensing h2,
.lo-footer__licensing p {
  margin: 0;
}

.lo-footer__licensing h2 {
  font-family: var(--fc-font-display);
  font-size: 22px;
  line-height: 1;
}

.lo-footer__licensing h2 a {
  color: var(--fc-black);
  text-decoration: none;
}

.lo-footer__licensing p {
  max-width: 72ch;
  color: var(--fc-black);
  font-size: 15px;
  line-height: 1.5;
}

.lo-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  border-top: 1px solid rgba(230, 255, 26, .22);
  padding-top: 22px;
}

.lo-footer__legal {
  max-width: 66ch;
  color: rgba(230, 255, 26, .55);
  font-family: var(--fc-font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  line-height: 1.5;
}

.lo-footer__sound {
  color: var(--fc-volt);
  font-family: var(--fc-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.lo-player {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #0e0c0a;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .22);
  color: #ffffff;
  padding: 12px 24px;
  transform: translateY(110%);
  transition: transform var(--fc-t-base) var(--fc-ease-sharp);
}

.lo-player.is-open {
  transform: translateY(0);
}

.lo-page:has(.lo-player.is-open) { padding-bottom: 96px; }

.lo-player__mid {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}

.lo-player__toggle {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--lo-accent);
  color: var(--lo-ink);
  cursor: pointer;
}

.lo-player__now {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.lo-player__now > div { flex: 1 1 auto; min-width: 0; }

.lo-player__title {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  color: #ffffff;
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lo-player__team {
  margin-top: 3px;
  color: rgba(255, 255, 255, .55);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .04em;
}

.lo-player__track {
  min-width: 80px;
  flex: 1;
}

.lo-player__bar {
  position: relative;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, .16);
}

.lo-player__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 2px;
  background: var(--lo-accent);
}

.lo-player__time {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--fc-font-mono);
  font-size: 12px;
}

.lo-player__gate {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lo-player__gate-txt {
  color: rgba(255, 255, 255, .6);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .03em;
  text-align: right;
}

.lo-player__gate-txt b {
  color: var(--lo-accent);
}

.lo-player__close {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 8px;
}

.lo-player__close:hover {
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
}

.lo-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  background: rgba(20, 17, 14, .5);
  backdrop-filter: blur(8px);
  padding: 72px 24px 40px;
}

.lo-overlay[hidden] {
  display: none;
}

.lo-modal {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid var(--lo-line);
  border-radius: 14px;
  background: var(--lo-surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.lo-modal--signup {
  max-width: 480px;
}

.lo-modal__hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 30px 18px;
}

.lo-modal__title {
  margin: 0;
  color: var(--lo-text);
  font-family: var(--fc-font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.lo-modal__sub {
  margin: 9px 0 0;
  color: var(--lo-mute);
  font-size: 15px;
  line-height: 1.5;
}

.lo-modal__x {
  display: flex;
  flex-shrink: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--lo-faint);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
}

.lo-modal__x:hover {
  background: var(--lo-hover);
  color: var(--lo-text);
}

.lo-modal__body {
  padding: 0 30px 28px;
}

.lo-picker__search {
  margin: 0 30px 18px;
}

.lo-picker__search:focus-within {
  border-color: var(--fc-bubblegum);
  box-shadow: 0 0 0 3px rgba(255, 111, 177, .25);
}

.lo-picker__group {
  margin: 20px 0 12px;
  color: var(--lo-faint);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lo-picker__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lo-picker__empty {
  color: var(--lo-mute);
  font-size: 15px;
  padding: 14px 0;
}

.lo-picker__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  border-top: 1px solid var(--lo-line-soft);
  color: var(--lo-mute);
  font-family: var(--fc-font-mono);
  font-size: 12px;
  padding-top: 18px;
}

.lo-signup__preview {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--lo-tint);
  padding: 15px;
}

.lo-signup__preview[hidden] {
  display: none;
}

.lo-signup__chant {
  color: var(--lo-text);
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 700;
}

.lo-signup__meta {
  margin-top: 3px;
  color: var(--lo-mute);
  font-family: var(--fc-font-mono);
  font-size: 11px;
}

.lo-signup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lo-entity-marker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sw {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.sw__bar {
  width: 3px;
  min-height: 4px;
  height: 50%;
  border-radius: 0;
  background: var(--lo-accent);
  animation: lo-sw-pulse 1200ms var(--fc-ease-sharp) infinite;
  animation-delay: calc((var(--i) % 8) * 80ms);
  transform-origin: bottom;
}

.sw--paused .sw__bar {
  height: 30%;
  animation-play-state: paused;
}

.sw--mini {
  height: 14px;
}

.sw--mini .sw__bar {
  width: 2px;
}

.sw--eyebrow {
  height: 42px;
  gap: 4px;
}

.sw--eyebrow .sw__bar {
  width: 4px;
  min-height: 6px;
}

@keyframes lo-sw-pulse {
  0%,
  100% { height: 18%; }
  50% { height: 100%; }
}

@media (max-width: 1100px) {
  .lo-teamwall {
    grid-template-columns: repeat(3, 1fr);
  }

  .lo-cardgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .lo-header__nav {
    display: none;
  }

  .lo-playgrid,
  .lo-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .lo-memband {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .lo-teamwall {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lo-player {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 16px 14px;
  }

  .lo-page:has(.lo-player.is-open) { padding-bottom: 146px; }

  .lo-player__gate {
    justify-content: space-between;
  }

  .lo-player__gate-txt {
    display: none;
  }
}

@media (max-width: 640px) {
  .lo-wrap {
    padding: 0 20px;
  }

  .lo-header {
    gap: 12px;
    padding: 10px 20px;
  }

  .lo-logo {
    height: 42px;
    width: 140px;
  }

  .lo-header__right .lo-loginlink {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .lo-header__right .lo-btn {
    max-width: min(44vw, 180px);
    min-height: 44px;
    padding: 10px 12px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .lo-section {
    padding: 58px 0;
  }

  .lo-picker__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .lo-cardgrid,
  .lo-playgrid,
  .lo-teamwall,
  .lo-footer__top {
    grid-template-columns: 1fr;
  }

  .lo-search__kbd {
    display: none;
  }

  .lo-footer__licensing {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lo-page *,
  .lo-page *::before,
  .lo-page *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .sw__bar {
    animation: none !important;
    height: 40%;
  }

  .lo-music__note,
  .lo-music__pulse span {
    animation: none !important;
  }
}
