

.ofl-page {
  --ofl-s0: #180d22;
  --ofl-s2: #241a30;
  --ofl-sundrop: #ddff00;
  --ofl-pebble: #ede6f2;
  --ofl-text-muted: rgba(237, 230, 242, 0.68);
  --ofl-text-faint: rgba(237, 230, 242, 0.45);
  --ofl-border: rgba(237, 230, 242, 0.12);

  
  --ofl-intake-w: 546px;
  --ofl-field-gap: 18px;
  --ofl-poster-w: 183px;
  --ofl-poster-h: 280px;
  --ofl-poster-gap: 12px;

  
  padding-top: var(--header-height);
  background: var(--ofl-s0);
  color: var(--ofl-pebble);
  
  overflow-x: clip;
}

.ofl-shell {
  max-width: 1512px;
  margin: 0 auto;
  min-height: min(982px, calc(100vh - var(--header-height)));
  display: grid;
  
  grid-template-columns: var(--ofl-intake-w) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 0 clamp(20px, 4vw, 64px);
}



.ofl-intake {
  padding: 48px 0;
}

.ofl-wordmark {
  position: relative;
  display: inline-block;
  margin: 0 0 6px;
  font-family: var(--font-montra), var(--font-body);
  
  font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ofl-oshi {
  color: var(--ofl-pebble);
}

.ofl-flash {
  color: var(--ofl-sundrop);
}

.ofl-spark {
  position: absolute;
  top: -0.36em;
  right: -0.42em;
  width: 0.62em;
  height: 0.62em;
  fill: var(--ofl-pebble);
}

.ofl-tagline {
  margin: 0 0 14px;
  font-family: var(--font-montra), var(--font-body);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ofl-pebble);
}

.ofl-lede {
  margin: 0 0 30px;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ofl-text-muted);
}

.ofl-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ofl-field-gap);
  margin: 0 0 22px;
}

.ofl-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.75rem;
  color: var(--ofl-text-muted);
}

.ofl-select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid var(--ofl-border);
  border-radius: 12px;
  background-color: var(--ofl-s2);
  color: var(--ofl-pebble);
  font-family: inherit;
  font-size: 0.9375rem;
  cursor: pointer;
  
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ede6f2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.ofl-select:focus-visible {
  outline: 2px solid var(--ofl-sundrop);
  outline-offset: 2px;
}

.ofl-start {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  border: 0;
  border-radius: 100px;
  background: var(--ofl-pebble);
  color: #1b1022;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.ofl-start:hover {
  filter: brightness(1.06);
}

.ofl-start:focus-visible {
  outline: 2px solid var(--ofl-sundrop);
  outline-offset: 3px;
}

.ofl-start[disabled] {
  opacity: 0.55;
  cursor: default;
}

.ofl-hint {
  margin: 12px 0 0;
  min-height: 1.2em;
  font-size: 0.8125rem;
  color: var(--ofl-text-faint);
}



.ofl-collage {
  display: grid;
  
  grid-auto-flow: column;
  grid-auto-columns: var(--ofl-poster-w);
  justify-content: end;
  gap: var(--ofl-poster-gap);
  
  height: min(982px, calc(100vh - var(--header-height)));
  overflow: hidden;
}

.ofl-col {
  overflow: hidden;
}

.ofl-track {
  display: grid;
  gap: var(--ofl-poster-gap);
  
  animation: ofl-scroll-up 60s linear infinite;
  will-change: transform;
}


.ofl-col-1 .ofl-track {
  animation-duration: 64s;
}

.ofl-col-2 .ofl-track {
  animation-name: ofl-scroll-down;
  animation-duration: 52s;
}

.ofl-col-3 .ofl-track {
  animation-duration: 58s;
}

.ofl-poster {
  display: block;
  width: var(--ofl-poster-w);
  height: var(--ofl-poster-h);
  border-radius: 12px;
  object-fit: cover;
  background: var(--ofl-s2);
}

@keyframes ofl-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes ofl-scroll-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}


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

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

@media (prefers-reduced-motion: reduce) {
  .ofl-track {
    animation: none;
  }
}




@media (max-width: 1271px) {
  .ofl-col-3 {
    display: none;
  }
}



@media (max-width: 1099px) {
  .ofl-shell {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 32px;
    padding-bottom: clamp(32px, 6vw, 64px);
  }

  .ofl-intake {
    max-width: var(--ofl-intake-w);
    padding-bottom: 0;
    
    text-align: center;
  }

  
  .ofl-collage {
    order: -1;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 10px;
    
    height: auto;
    
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  
  .ofl-col {
    height: auto;
  }

  .ofl-track {
    display: flex;
    flex-direction: row;
    
    width: max-content;
    height: 100%;
  }

  
  .ofl-col-1 .ofl-track {
    animation-name: ofl-scroll-left;
    animation-duration: 48s;
  }

  .ofl-col-2 .ofl-track {
    animation-name: ofl-scroll-right;
    animation-duration: 62s;
  }

  
  .ofl-poster {
    width: max(99px, calc((100vw - 4 * var(--ofl-poster-gap)) / 4));
    height: auto;
    aspect-ratio: 183 / 280;
  }
}

@media (max-width: 560px) {
  .ofl-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  
  .ofl-label,
  .ofl-hint {
    text-align: center;
  }

  
  .ofl-field {
    width: 100%;
    max-width: 251px;
    margin-inline: auto;
  }
}




.aoyp-live .aoyp-native {
  display: none;
}
.aoyp-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 14px 0 16px;
  border: 1px solid var(--ofl-border);
  border-radius: 12px;
  background: var(--ofl-s2);
  color: var(--ofl-pebble);
  font-family: inherit;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
}
.aoyp-trigger:hover {
  border-color: rgba(237, 230, 242, 0.24);
}
.aoyp-trigger:focus-visible {
  outline: 2px solid var(--ofl-sundrop);
  outline-offset: 2px;
}
.aoyp-caret {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
}
.aoyp-open .aoyp-caret {
  transform: rotate(180deg);
}

.aoyp-panel {
  z-index: 1000;
  display: grid;
  gap: 8px;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid var(--pebble-20);
  border-radius: var(--radius-lg, 12px);
  background: var(--charcoal, #150c21);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  color: var(--pebble, #ededed);
  font-family: var(--font-bricolage, 'Bricolage Grotesque', sans-serif);
}
.aoyp-decades,
.aoyp-years {
  display: grid;
  gap: 4px;
}
.aoyp-decades {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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


.aoyp-head {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 2px 6px;
  border-bottom: 1px solid var(--pebble-10);
}
.aoyp-head-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(237, 237, 237, 0.55);
}

.aoyp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -2px 0;
  padding: 4px 8px 4px 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--pebble, #ededed);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background 0.12s ease;
}
.aoyp-back:hover {
  background: rgba(237, 237, 237, 0.08);
}
.aoyp-back:focus-visible {
  outline: 2px solid var(--sundrop);
  outline-offset: -2px;
}
.aoyp-back-chev {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--sundrop);
}


@keyframes aoyp-in-fwd {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes aoyp-in-back {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.aoyp-in-fwd {
  animation: aoyp-in-fwd 0.16s ease-out;
}
.aoyp-in-back {
  animation: aoyp-in-back 0.16s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .aoyp-in-fwd,
  .aoyp-in-back {
    animation: none;
  }
}
.aoyp-decade,
.aoyp-year {
  padding: 8px 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(237, 237, 237, 0.72);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}
.aoyp-decade:hover,
.aoyp-year:hover {
  background: rgba(237, 237, 237, 0.08);
  color: var(--pebble, #ededed);
}
.aoyp-decade:focus-visible,
.aoyp-year:focus-visible {
  outline: 2px solid var(--sundrop);
  outline-offset: -2px;
}

.aoyp-decade.aoyp-on {
  background: rgba(237, 237, 237, 0.1);
  color: var(--pebble, #ededed);
}
.aoyp-year.aoyp-on {
  background: var(--sundrop);
  color: var(--charcoal, #150c21);
}

@media (max-width: 560px) {
  .aoyp-years {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}




@media (max-width: 1099px) {
  .ofl-shell {
    gap: min(32px, 3vh);
  }

  
  .ofl-poster {
    height: min(151px, 13vh);
    aspect-ratio: auto;
  }

  .ofl-intake {
    padding-top: min(48px, 4vh);
  }

  .ofl-wordmark {
    margin-bottom: min(6px, 1vh);
  }

  .ofl-tagline {
    margin-bottom: min(14px, 1.6vh);
  }

  .ofl-lede {
    margin-bottom: min(30px, 2.5vh);
  }

  .ofl-fields {
    margin-bottom: min(22px, 2vh);
    gap: min(18px, 2vh);
  }

  .ofl-label {
    margin-bottom: min(8px, 1vh);
  }

  
  .ofl-select {
    height: min(48px, 5.5vh);
  }
}


@media (max-width: 1099px) and (max-height: 740px) {
  .ofl-collage {
    gap: 8px;
  }

  .ofl-poster {
    height: min(104px, 9.5vh);
  }

  .ofl-wordmark {
    font-size: 1.9rem;
  }

  .ofl-tagline {
    font-size: 0.95rem;
  }

  
  .ofl-lede {
    display: none;
  }

  .ofl-label {
    margin-bottom: 4px;
  }

  .ofl-start {
    min-height: 44px;
    padding: 11px 28px;
  }

  
  .ofl-hint {
    display: none;
  }
}


@media (max-width: 1099px) and (max-height: 620px) {
  .ofl-wordmark {
    font-size: 1.75rem;
  }

  
  .ofl-tagline {
    display: none;
  }

  .ofl-poster {
    height: min(104px, 7.5vh);
  }
}
