@font-face {
  font-family: "Oldschool Grotesk";
  src: url("/fonts/OldschoolGroteskCompressed_W-Regular.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "PP Right Grotesk Mono";
  src: url("/fonts/PPRightGroteskMono-Medium.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "PP Right Grotesk Mono";
  src: url("/fonts/PPRightGroteskMono-Bold.woff2") format("woff2");
  font-weight: bold;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  background: #a4af99;
}

html,
body,
#root {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  font-family: "PP Right Grotesk Mono", sans-serif;
}

.background-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.background-glow::before, .background-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.background-glow::before {
  background: radial-gradient(circle at 50% 40%, rgba(255, 230, 180, 0.3) 0%, transparent 55%);
  opacity: 1;
}
.background-glow::after {
  background: radial-gradient(circle at 50% 40%, rgba(140, 70, 120, 0.35) 0%, transparent 55%);
  opacity: 0;
}
.background-glow--ade::before {
  opacity: 0;
}
.background-glow--ade::after {
  opacity: 1;
}

.background-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.scene-wrapper {
  position: fixed;
  inset: 0;
  z-index: 3;
  will-change: transform;
}

.stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.zoom-layer {
  position: fixed;
  inset: 0;
  will-change: transform, opacity;
  transform-origin: center center;
}

#root canvas {
  position: relative;
  z-index: 1;
}

.background-label {
  color: #ffbd65;
  font-family: "Oldschool Grotesk", sans-serif;
  font-size: clamp(250px, 25vw, 400px);
  white-space: pre-line;
  text-align: center;
  pointer-events: none;
  user-select: none;
  transition: color 3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 0.75em;
}
.background-label--ade {
  color: #d792cb;
}

.debug-overlay {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  color: #0f0;
  font-family: monospace;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  pointer-events: none;
}

.bottom-stack {
  pointer-events: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, calc(100% + 60px));
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.bottom-stack--visible {
  transform: translateX(-50%);
}
body.artist-detail-open .bottom-stack, body.news-article-open .bottom-stack {
  transform: translate(-50%, calc(100% + 60px));
}
body.tickets-panel-open .bottom-stack {
  z-index: 102;
}

.bottom-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  border-radius: 100px;
  background: #f6f7e0;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 345px;
  height: 64px;
}
@media (max-width: 600px) {
  .bottom-bar {
    width: calc(100vw - 60px);
  }
}
.bottom-bar--night {
  background: #f6f7e0;
}
.bottom-bar__left {
  display: flex;
  flex: 1 0 0;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.bottom-bar__right {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.bottom-bar__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 100px;
  background: #ffbd65;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #f5a438;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}
.bottom-bar__menu-btn:hover {
  filter: brightness(1.08) saturate(1.2);
}
.bottom-bar--night .bottom-bar__menu-btn {
  background: #d792cb;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #b85ba8;
}
.bottom-bar__sound-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.bottom-bar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.bottom-bar__logo img {
  width: 30px;
  height: 34px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-bar__logo:hover img {
  transform: scale(1.08);
}
.bottom-bar__toggle {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2px;
  border: none;
  border-radius: 100px;
  background: #e2e3ce;
  height: 52px;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.bottom-bar__toggle:disabled {
  cursor: default;
}
.bottom-bar__toggle-pill {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: #f6f7e0;
  box-shadow: inset -1px 2px 8px white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.bottom-bar__toggle-pill--right {
  transform: translateX(48px);
}
.bottom-bar__toggle-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #a0a090;
  opacity: 0.4;
  transition: opacity 0.4s ease, color 0.4s ease;
}
.bottom-bar__toggle-btn--active {
  opacity: 1;
  color: #000;
}
.bottom-bar__icon {
  display: block;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.bottom-bar__icon--menu {
  width: 11px;
  height: 7px;
  position: relative;
  background: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.bottom-bar__icon--menu::before, .bottom-bar__icon--menu::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), top 0.35s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-bar__icon--menu::before {
  top: 0;
}
.bottom-bar__icon--menu::after {
  bottom: 0;
}
.bottom-bar__icon--open::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.bottom-bar__icon--open::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.bottom-bar__icon--speaker {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("/images/icons/speaker.svg");
  mask-image: url("/images/icons/speaker.svg");
  color: #000;
}
.bottom-bar__icon--speaker-muted {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("/images/icons/speaker-muted.svg");
  mask-image: url("/images/icons/speaker-muted.svg");
  color: #000;
}
.bottom-bar__icon--tree {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("/images/icons/tree.svg");
  mask-image: url("/images/icons/tree.svg");
}
.bottom-bar__icon--crane {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url("/images/icons/crane.svg");
  mask-image: url("/images/icons/crane.svg");
}

.tickets-button {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 345px;
  height: 50px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #f6f7e0;
  font-family: "Oldschool Grotesk", sans-serif;
  font-weight: 400;
  isolation: isolate;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tickets-button--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.tickets-button__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 24px rgba(255, 189, 101, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: box-shadow 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tickets-button__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffbd65;
  box-shadow: inset 0 0 24px #f5a438;
  opacity: 0;
  transition: opacity 0.3s ease, background 3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tickets-button--night .tickets-button__bg {
  box-shadow: inset 0 0 24px rgba(215, 146, 203, 0.9);
}
.tickets-button--night .tickets-button__bg::after {
  background: #d792cb;
  box-shadow: inset 0 0 24px #b85ba8;
}
.tickets-button:hover .tickets-button__bg::after {
  opacity: 1;
}
.tickets-button__label {
  font-size: 26px;
  line-height: 1;
  padding-bottom: 4px;
}
.tickets-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.tickets-button__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 600px) {
  .tickets-button {
    width: calc(100vw - 60px);
  }
}

.tickets-panel {
  display: none;
  pointer-events: none;
}
.tickets-panel--open {
  display: contents;
  pointer-events: auto;
}
.tickets-panel__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  width: 353px;
  height: 148px;
  padding: 16px;
  border-radius: 12px;
  background: #f6f7e0;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  color: #000;
  opacity: 0;
  pointer-events: auto;
  will-change: transform, opacity;
}
@media (max-width: 600px) {
  .tickets-panel__card {
    width: calc(100vw - 60px);
  }
}
.tickets-panel__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.tickets-panel__card-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.tickets-panel__card-label {
  margin: 0;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.tickets-panel__card-city {
  margin: 0;
  font-family: "Oldschool Grotesk", sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 0.84;
}
.tickets-panel__card-dates {
  margin: 0;
  flex-shrink: 0;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.tickets-panel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px 14px;
  border: 0;
  border-radius: 100px;
  background: #ffbd65;
  box-shadow: none;
  color: #000;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}
.tickets-panel__cta:hover {
  filter: brightness(1.08) saturate(1.2);
}
.tickets-panel--ade .tickets-panel__cta {
  background: #d792cb;
}
.tickets-panel__cta--disabled {
  background: transparent;
  border: 1.5px dashed #ffbd65;
  color: #000;
  cursor: default;
  transition: border-color 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tickets-panel__cta--disabled:hover {
  filter: none;
}
.tickets-panel--ade .tickets-panel__cta--disabled {
  background: transparent;
  border-color: #d792cb;
}

@media (max-width: 767px) {
  :root {
    --program-chrome-transition: opacity 0.4s ease,
        transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    --program-chrome-hidden-y: 12px;
    --program-chrome-detail-offset: calc(100% + 170px);
    --program-toggle-width: 88px;
    --program-toggle-gap: 12px;
    --program-bar-width: 345px;
    --program-bar-left: calc(50% - 172.5px);
  }
}
@media (max-width: 600px) {
  :root {
    --program-bar-width: calc(100vw - 60px);
    --program-bar-left: 30px;
  }
}
.program-filter {
  --filter-padding: 6px;
  --filter-bar-height: 50px;
  --pill-height: calc(var(--filter-bar-height) - 2 * var(--filter-padding));
  --filter-gap: 4px;
  --day-font-size: 14px;
  --stages-font-size: 14px;
  --stages-padding-x: 14px;
  position: fixed;
  bottom: 106px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--filter-gap);
  padding: var(--filter-padding);
  width: 345px;
  height: var(--filter-bar-height);
  border-radius: 100px;
  isolation: isolate;
  opacity: 1;
  z-index: 101;
  transition: opacity 0.4s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-filter--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}
body.artist-detail-open .program-filter {
  transform: translate(-50%, calc(100% + 170px));
  pointer-events: none;
}
.program-filter__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.program-filter__days {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-shrink: 0;
  height: var(--pill-height);
  padding: 0;
  border-radius: 100px;
}
.program-filter__day-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: var(--pill-height);
  border-radius: 100px;
  background: #f6f7e0;
  box-shadow: inset -1px 2px 8px white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.program-filter__day-pill--right {
  transform: translateX(100%);
}
.program-filter__day {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 247, 224, 0.5);
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: var(--day-font-size);
  line-height: 1;
  padding: 0 18px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease;
}
.program-filter__day--active {
  color: #121212;
}
.program-filter--night .program-filter__day--active {
  color: #121212;
}
.program-filter__stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  height: var(--pill-height);
  border: 0;
  background: #f6f7e0;
  color: #121212;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: var(--stages-font-size);
  line-height: 1;
  padding: 0 var(--stages-padding-x);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}
.program-filter__stages-caret {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.program-filter__stages--active .program-filter__stages-caret {
  transform: rotate(180deg);
}
.program-filter--night .program-filter__stages {
  background: #f6f7e0;
  color: #121212;
}
.program-filter__menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 20;
  width: 345px;
  background: #f6f7e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.program-filter__menu--open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.program-filter__menu-inner {
  display: flex;
  flex-direction: column;
}
.program-filter__menu-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Oldschool Grotesk", sans-serif;
  font-size: 26px;
  line-height: 0.84;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}
.program-filter__menu-item:first-child {
  padding-top: 0;
}
.program-filter__menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.program-filter__menu-item:hover {
  color: rgb(0, 0, 0);
}
.program-filter__menu-item--active {
  color: rgb(0, 0, 0);
}
.program-filter--night .program-filter__menu-inner {
  background: #f6f7e0;
}
.program-filter__day-label--short {
  display: none;
}
@media (max-width: 767px) {
  .program-filter {
    --filter-bar-height: 45px;
    --filter-gap: 6px;
    --day-font-size: 12px;
    --stages-font-size: 12px;
    --stages-padding-x: 12px;
    transition: var(--program-chrome-transition);
    left: var(--program-bar-left);
    right: auto;
    transform: translateY(0);
    width: calc(var(--program-bar-width) - var(--program-toggle-width) - var(--program-toggle-gap));
  }
  .program-filter__days {
    width: 108px;
  }
  .program-filter__day {
    padding: 0;
  }
  .program-filter__day-label--full {
    display: none;
  }
  .program-filter__day-label--short {
    display: inline;
  }
  .program-filter__menu {
    width: calc(var(--program-bar-width) - var(--program-toggle-width) - var(--program-toggle-gap));
    left: 0;
    transform: translateY(20px);
  }
  .program-filter__menu--open {
    transform: translateY(0);
  }
  .program-filter--hidden {
    transform: translateY(var(--program-chrome-hidden-y));
  }
  body.artist-detail-open .program-filter {
    opacity: 1;
    transform: translateY(var(--program-chrome-detail-offset));
  }
}

.foreground-circle__inner {
  position: relative;
  width: 90px;
  height: 90px;
  margin-left: 200px;
  margin-top: 200px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.foreground-circle__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #f6f7e0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.foreground-circle__icon {
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.foreground-circle__inner:hover .foreground-circle__bg {
  transform: scale(1.1);
}
.foreground-circle__inner--locked {
  cursor: default;
}
.foreground-circle__inner--locked .foreground-circle__bg {
  background: rgba(246, 247, 224, 0.4);
}
.foreground-circle__icon--lock {
  width: 22px;
  height: 22px;
}
@media (max-width: 767px) {
  .foreground-circle__inner {
    width: 64px;
    height: 64px;
    margin-left: 140px;
    margin-top: 140px;
  }
  .foreground-circle__icon {
    width: 19px;
    height: 19px;
  }
  .foreground-circle__icon--lock {
    width: 16px;
    height: 16px;
  }
  .foreground-circle__label {
    height: 40px;
    padding: 8px 18px 9px;
    font-size: 19px;
  }
}
.foreground-circle__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 50px;
  padding: 10px 28px 11px;
  transform: translate(clamp(-340px, -24vw, -90px), 0) rotate(-2.97deg);
  white-space: nowrap;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  color: #f6f7e0;
  font-family: "Oldschool Grotesk", sans-serif;
  font-size: 26px;
  line-height: 0.84;
  pointer-events: none;
}

.menu-panel {
  position: fixed;
  bottom: 106px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 102;
  width: 345px;
  background: #f6f7e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-panel--open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.menu-panel__nav {
  display: flex;
  flex-direction: column;
}
.menu-panel__item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Oldschool Grotesk", sans-serif;
  font-size: 34px;
  line-height: 0.84;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}
.menu-panel__item:first-child {
  padding-top: 0;
}
.menu-panel__item:last-child {
  border-bottom: none;
}
.menu-panel__item:hover {
  color: rgb(0, 0, 0);
}
.menu-panel__item--active {
  color: rgb(0, 0, 0);
}
.menu-panel__socials {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .menu-panel__socials {
    justify-content: space-between;
    gap: 12px;
  }
}
.menu-panel__social {
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.menu-panel__social:hover {
  opacity: 1;
}
.menu-panel__social--facebook {
  background-image: url("/images/icons/facebook.svg");
}
.menu-panel__social--instagram {
  background-image: url("/images/icons/instagram.svg");
}
.menu-panel__social--tiktok {
  background-image: url("/images/icons/tiktok.svg");
}
.menu-panel__social--spotify {
  background-image: url("/images/icons/spotify.svg");
}
.menu-panel__social--soundcloud {
  width: 21px;
  background-size: auto 9px;
  background-image: url("/images/icons/soundcloud.svg");
}
.menu-panel__legal {
  display: none;
}
@media (max-width: 1024px) {
  .menu-panel__legal {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
}
.menu-panel__legal-link {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.menu-panel__legal-link:hover {
  color: rgb(0, 0, 0);
}
@media (max-width: 600px) {
  .menu-panel {
    width: calc(100vw - 60px);
  }
}

.detail-page {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: #121212;
  transition: background-color 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.detail-page--ade {
  background: #121212;
}
.detail-page--ade.detail-page--program, .detail-page--amersfoort.detail-page--program {
  background: transparent;
}
.detail-page {
  opacity: 0;
  pointer-events: none;
}
.detail-page--visible {
  pointer-events: auto;
}
.detail-page__back {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f6f7e0;
  isolation: isolate;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.detail-page--visible .detail-page__back {
  opacity: 1;
  transform: scale(1);
}
.program-page ~ .detail-page__back {
  display: none;
}
.detail-page__back img {
  width: 18px;
  height: 18px;
}
.detail-page__back-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.detail-page__back:hover .detail-page__back-bg {
  transform: scale(1.25);
}

.program-page {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}
.program-page:active {
  cursor: grabbing;
}
.program-page > canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.program-page__toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  transition: opacity 0.3s ease;
}
.program-page__toggle--hidden {
  opacity: 0;
  pointer-events: none;
}
.program-page__toggle-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f6f7e0;
  isolation: isolate;
}
.program-page__toggle-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.program-page__toggle-btn--active img {
  opacity: 1;
}
.program-page__toggle-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-page__toggle-btn--active .program-page__toggle-bg {
  opacity: 1;
  transform: scale(1);
}
.program-page__toggle-btn:hover:not(.program-page__toggle-btn--active) img {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .program-page__toggle {
    position: fixed;
    top: auto;
    left: calc(var(--program-bar-left) + var(--program-bar-width) - var(--program-toggle-width));
    right: auto;
    bottom: 106px;
    transform: translateY(0);
    z-index: 102;
    transition: var(--program-chrome-transition);
    transition-property: opacity, transform;
  }
  .program-page__toggle--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(var(--program-chrome-hidden-y));
  }
  .program-page__toggle {
    width: 88px;
    height: 43px;
    padding: 7px;
    justify-content: space-between;
    border-radius: 100px;
    background: rgba(246, 247, 224, 0.02);
    box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .program-page__toggle-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .program-page__toggle-btn img {
    opacity: 0.2;
    transition: opacity 0.3s ease;
  }
  .program-page__toggle-btn--active img {
    opacity: 1;
  }
  .program-page__toggle-btn:hover:not(.program-page__toggle-btn--active) img {
    opacity: 0.35;
  }
  .program-page__toggle-bg {
    display: none;
  }
}
.program-page__back {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f6f7e0;
  isolation: isolate;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-page__back img {
  width: 18px;
  height: 18px;
}
.program-page__back-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-page__back:hover .program-page__back-bg {
  transform: scale(1.25);
}
.program-page__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s ease;
}
@media (max-width: 767px) {
  .program-page__fade {
    top: 0;
    height: auto;
  }
}
.program-page__fade-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.program-page__fade-layer--visible {
  opacity: 1;
}
.program-page__fade-layer--amersfoort {
  background-image: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0) 100%);
}
@media (max-width: 767px) {
  .program-page__fade-layer--amersfoort {
    background-image: linear-gradient(to bottom, #121212 0%, #121212 8%, rgba(18, 18, 18, 0) 40%, rgba(18, 18, 18, 0) 75%, #121212 100%);
  }
}
.program-page__fade-layer--ade {
  background-image: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0) 100%);
}
@media (max-width: 767px) {
  .program-page__fade-layer--ade {
    background-image: linear-gradient(to bottom, #121212 0%, #121212 8%, rgba(18, 18, 18, 0) 40%, rgba(18, 18, 18, 0) 75%, #121212 100%);
  }
}
.program-page__pill {
  position: fixed;
  top: 0;
  left: 12px;
  z-index: 20;
  pointer-events: none;
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  will-change: transform;
}
@media (hover: none), (pointer: coarse) {
  .program-page__pill {
    display: none !important;
  }
}
.program-page__pill--visible {
  display: flex;
}
.program-page__front-pill {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .program-page__front-pill {
    display: none !important;
  }
}
.program-page__detail-socials {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 22px;
  pointer-events: auto;
  will-change: transform;
  transition: opacity 0.3s ease;
}
.program-page__detail-socials--exiting {
  opacity: 0;
}
.program-page__detail-social {
  display: block;
  height: 15px;
  background: #f6f7e0;
  opacity: 1;
  transition: opacity 0.2s ease;
  animation: programSocialIn 0.45s 0.1s ease backwards;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.program-page__detail-social:hover {
  opacity: 0.65;
}
.program-page__detail-social--soundcloud {
  width: 30px;
  height: 12px;
  -webkit-mask-image: url("/images/icons/soundcloud.svg");
  mask-image: url("/images/icons/soundcloud.svg");
}
.program-page__detail-social--youtube {
  width: 26px;
  height: 26px;
  -webkit-mask-image: url("/images/icons/youtube.svg");
  mask-image: url("/images/icons/youtube.svg");
}
.program-page__pill-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.program-page__pill-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
}
.program-page__pill-label {
  position: relative;
  padding: 10px 22px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.program-page__pill-item--artist .program-page__pill-bg {
  background: #f6f7e0;
}
.program-page__pill-item--artist .program-page__pill-label {
  color: #000;
}
.program-page__pill-item--stage .program-page__pill-bg {
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.program-page__pill-item--stage .program-page__pill-label {
  color: #f6f7e0;
}
.program-page__name-scroller {
  position: fixed;
  left: 30px;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  z-index: 15;
  pointer-events: none;
  width: 200px;
  height: 252px;
  overflow: hidden;
  transition: opacity 0.5s ease;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.3) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.12) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.3) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.12) 90%, transparent 100%);
}
@media (max-width: 767px) {
  .program-page__name-scroller {
    display: none !important;
  }
}
.program-page__name-item {
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #f6f7e0;
  white-space: nowrap;
  will-change: transform, opacity;
  opacity: 0.32;
}
.program-page--detail-open .program-page__name-scroller, .program-page--detail-open .program-page__fade, .program-page--detail-open .program-page__back, .program-page--detail-open .program-page__toggle {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.program-page__detail-close {
  display: flex;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 100px;
  background: #ffbd65;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #f5a438;
  cursor: pointer;
  padding: 0;
  z-index: 40;
  transition: filter 0.25s ease;
  animation: programCloseIn 0.4s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.program-page__detail-close:hover {
  filter: brightness(1.08) saturate(1.2);
}
.program-page__detail-close--ade {
  background: #d792cb;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #b85ba8;
}
.program-page__detail-close--closing {
  animation: programCloseOut 0.35s cubic-bezier(0.4, 0, 1, 1) both;
}
.program-page__detail-close-icon {
  display: block;
  position: relative;
  width: 11px;
  height: 7px;
}
.program-page__detail-close-icon::before, .program-page__detail-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.program-page__detail-close-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.program-page__detail-close-icon::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

@media (max-width: 767px) {
  body.artist-detail-open .program-page__toggle {
    opacity: 1;
    pointer-events: none;
    transform: translateY(var(--program-chrome-detail-offset));
  }
}

@keyframes programSocialIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes programCloseIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
@keyframes programCloseOut {
  from {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
}
.news-page {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}
.news-page:active {
  cursor: grabbing;
}
.news-page > canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.news-page__canvas-wrap {
  touch-action: none;
}
.news-page--detail-open .news-page__canvas-wrap {
  pointer-events: none;
}
.news-page__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.6s ease;
}
@media (max-width: 767px) {
  .news-page__fade {
    top: 0;
    height: auto;
  }
}
.news-page__fade-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-page__fade-layer--visible {
  opacity: 1;
}
.news-page__fade-layer--amersfoort {
  background-image: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0) 100%);
}
@media (max-width: 767px) {
  .news-page__fade-layer--amersfoort {
    background-image: linear-gradient(to bottom, #121212 0%, #121212 8%, rgba(18, 18, 18, 0) 40%, rgba(18, 18, 18, 0) 75%, #121212 100%);
  }
}
.news-page__fade-layer--ade {
  background-image: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0) 100%);
}
@media (max-width: 767px) {
  .news-page__fade-layer--ade {
    background-image: linear-gradient(to bottom, #121212 0%, #121212 8%, rgba(18, 18, 18, 0) 40%, rgba(18, 18, 18, 0) 75%, #121212 100%);
  }
}
.news-page__back {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f6f7e0;
  isolation: isolate;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-page__back img {
  width: 18px;
  height: 18px;
}
.news-page__back-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.news-page__back:hover .news-page__back-bg {
  transform: scale(1.25);
}
.news-page__article-info {
  position: fixed;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  text-align: center;
  transition: opacity 0.5s ease;
}
@media (max-width: 767px) {
  .news-page__article-info {
    left: 30px;
    right: 30px;
    transform: none;
    max-width: none;
  }
}
.news-page__article-label {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(246, 247, 224, 0.4);
}
.news-page__article-title {
  font-family: "Oldschool Grotesk", sans-serif;
  font-weight: normal;
  font-size: 34px;
  line-height: 0.84;
  color: #f6f7e0;
}
.news-page__pill {
  position: fixed;
  top: 0;
  left: 12px;
  z-index: 20;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
@media (hover: none), (pointer: coarse) {
  .news-page__pill {
    display: none !important;
  }
}
.news-page__pill--visible {
  display: flex;
}
.news-page__pill-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #f6f7e0;
}
.news-page__pill-label {
  position: relative;
  padding: 10px 22px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  color: #000;
}
.news-page__counter {
  position: fixed;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
  width: 224px;
  height: 28px;
  overflow: hidden;
  transition: opacity 0.5s ease;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.3) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.12) 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.12) 10%, rgba(0, 0, 0, 0.3) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.12) 90%, transparent 100%);
}
@media (max-width: 767px) {
  .news-page__counter {
    top: 80px;
  }
}
.news-page__counter-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  margin-left: -16px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #f6f7e0;
  white-space: nowrap;
  text-align: center;
  will-change: transform, opacity;
  opacity: 0.32;
}
.news-page--detail-open .news-page__article-info, .news-page--detail-open .news-page__counter, .news-page--detail-open .news-page__pill, .news-page--detail-open .news-page__fade, .news-page--detail-open .news-page__back {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.news-page__detail {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 30px;
}
.news-page__detail--closing {
  animation: newsDetailOut 0.5s cubic-bezier(0.4, 0, 1, 1) both;
}
@media (max-width: 767px) {
  .news-page__detail {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 30px;
  }
}
.news-page__detail-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.news-page__detail-card {
  position: relative;
  width: 680px;
  max-width: 100%;
  height: 100%;
  background: #f6f7e0;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: newsCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.news-page__detail--closing .news-page__detail-card {
  animation: newsCardOut 0.5s cubic-bezier(0.4, 0, 1, 1) both;
}
@media (max-width: 767px) {
  .news-page__detail-card {
    height: auto;
    flex: 1;
    min-height: 0;
  }
}
.news-page__detail-scroll {
  position: relative;
  flex: 1;
  overflow: hidden;
  touch-action: none;
}
.news-page__detail-scroll-inner {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 100%;
  will-change: transform;
}
@media (max-width: 767px) {
  .news-page__detail-scroll-inner {
    padding: 24px;
    gap: 24px;
  }
}
.news-page__detail-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 215px;
  background: linear-gradient(to bottom, transparent 0%, #f6f7e0 70%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.news-page__detail-title {
  font-family: "Oldschool Grotesk", sans-serif;
  font-weight: normal;
  font-size: 34px;
  line-height: 0.84;
  color: #000;
  margin: 0;
}
@media (max-width: 767px) {
  .news-page__detail-title {
    font-size: 28px;
  }
}
.news-page__detail-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.news-page__detail-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 100px;
  background: #ffbd65;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #f5a438;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: filter 0.25s ease;
  z-index: 1;
  animation: closeButtonIn 0.4s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.news-page__detail-close:hover {
  filter: brightness(1.08) saturate(1.2);
}
.news-page__detail-close--ade {
  background: #d792cb;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #b85ba8;
}
@media (max-width: 767px) {
  .news-page__detail-close {
    display: flex;
  }
}
.news-page__detail-close-icon {
  display: block;
  position: relative;
  width: 11px;
  height: 7px;
}
.news-page__detail-close-icon::before, .news-page__detail-close-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.news-page__detail-close-icon::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.news-page__detail-close-icon::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.news-page__detail-text {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
}
.news-page__detail-text p {
  margin: 0 0 12px;
}
.news-page__detail-text p:last-child {
  margin-bottom: 0;
}
.news-page__detail-text h3 {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: underline;
  margin: 16px 0 4px;
}
.news-page__detail-text ul {
  margin: 4px 0 12px;
  padding: 0;
  list-style: none;
}
.news-page__detail-text li {
  margin: 0;
}
.news-page__detail-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}
.news-page__detail-button {
  display: inline-flex;
  align-items: center;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #f6f7e0;
  background: #000;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.news-page__detail-button:hover {
  opacity: 0.7;
}

@keyframes newsDetailIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes newsDetailOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes newsCardIn {
  from {
    transform: translateY(40px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes newsCardOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes closeButtonIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  will-change: opacity;
}
.preloader__bar {
  width: 200px;
  height: 1px;
  background: rgba(246, 247, 224, 0.15);
  overflow: hidden;
  position: relative;
}
.preloader__fill {
  position: absolute;
  inset: 0;
  background: rgba(246, 247, 224, 0.9);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

.intro-button {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18dvh;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.intro-button--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.intro-button__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 329px;
  max-width: calc(100vw - 32px);
}
.intro-button__logo {
  position: relative;
  height: 64px;
  transform: translateX(28px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-button__logo--ade {
  transform: translateX(0);
}
.intro-button__logo-img {
  display: block;
  height: 64px;
  width: auto;
  transition: opacity 0.6s ease;
}
.intro-button__logo-img--bg {
  opacity: 0;
}
.intro-button__logo-img--fg {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.intro-button__logo--ade .intro-button__logo-img--bg {
  opacity: 1;
}
.intro-button__logo--ade .intro-button__logo-img--fg {
  opacity: 0;
}
.intro-button__info {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}
.intro-button__date {
  margin: 0;
  color: #f6f7e0;
}
.intro-button__location {
  margin: 4px 0 0;
  color: rgba(246, 247, 224, 0.6);
}
.intro-button__btn {
  all: unset;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: auto;
  width: 128px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oldschool Grotesk", sans-serif;
  color: #f6f7e0;
  font-size: 24px;
  line-height: 0.84;
  text-align: center;
  isolation: isolate;
}
.intro-button__btn-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.6s ease, box-shadow 0.6s ease;
}
.intro-button__btn--amersfoort .intro-button__btn-bg {
  background-color: #ffbd65;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #ffdcad;
}
.intro-button__btn--ade .intro-button__btn-bg {
  background-color: #d792cb;
  box-shadow: inset -1.01px 2.019px 12.78px 0 #ffd2f7;
}
.intro-button__btn:hover .intro-button__btn-bg {
  transform: scale(1.06);
}
.intro-button__label {
  display: inline-block;
  padding-bottom: 4px;
}

.intro-edition-switcher {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  color: #f6f7e0;
  z-index: 2;
}
.intro-edition-switcher--indicator {
  --indicator-angle: -22.5deg;
  --indicator-radius: calc(var(--ring-size, 90vh) * 0.49);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--indicator-angle)) translateY(calc(-1 * var(--indicator-radius)));
}
.intro-edition-switcher--indicator .intro-edition-switcher__icon {
  transform: rotate(calc(-1 * var(--indicator-angle) - var(--ring-hint-rot, 0deg)));
  transform-origin: 50% 50%;
}
.intro-edition-switcher--indicator .intro-edition-switcher__arrow--left {
  transform: translateY(2px) rotate(-5deg);
}
.intro-edition-switcher--indicator .intro-edition-switcher__arrow--right {
  transform: scaleX(-1) translateY(2px) rotate(-5deg);
}
.intro-edition-switcher__arrow {
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url("/images/icons/arrow-left.svg");
  mask-image: url("/images/icons/arrow-left.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.intro-edition-switcher__arrow--right {
  transform: scaleX(-1);
}
.intro-edition-switcher__btn {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
}
.intro-edition-switcher__icon {
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url("/images/icons/hand.svg");
  mask-image: url("/images/icons/hand.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.intro-roll-circle[data-hint-zone=left] .intro-edition-switcher__arrow--right {
  opacity: 0.5;
}

.intro-roll-circle[data-hint-zone=right] .intro-edition-switcher__arrow--left {
  opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
  body.intro-zone-pointer,
  body.intro-zone-pointer * {
    cursor: pointer !important;
  }
  body.intro-zone-drag,
  body.intro-zone-drag * {
    cursor: grab !important;
  }
}
.intro-roll-circle {
  --ring-size: min(90vh, 140vw);
  position: fixed;
  left: 50%;
  bottom: calc(var(--ring-size) / -2);
  width: var(--ring-size);
  height: var(--ring-size);
  transform-origin: 50% 50%;
  transform: translateX(-50%) rotate(var(--ring-hint-rot, 0deg)) scale(0.7);
  pointer-events: none;
  z-index: 0;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-roll-circle--visible {
  transform: translateX(-50%) rotate(var(--ring-hint-rot, 0deg)) scale(1);
}
.intro-roll-circle svg {
  --indicator-angle: -22.5deg;
  --indicator-cut-center: calc(360deg + var(--indicator-angle));
  --indicator-cut-size: 18deg;
  -webkit-mask-image: conic-gradient(#000 0deg, #000 calc(var(--indicator-cut-center) - var(--indicator-cut-size) / 2), transparent calc(var(--indicator-cut-center) - var(--indicator-cut-size) / 2), transparent calc(var(--indicator-cut-center) + var(--indicator-cut-size) / 2), #000 calc(var(--indicator-cut-center) + var(--indicator-cut-size) / 2), #000 360deg);
  mask-image: conic-gradient(#000 0deg, #000 calc(var(--indicator-cut-center) - var(--indicator-cut-size) / 2), transparent calc(var(--indicator-cut-center) - var(--indicator-cut-size) / 2), transparent calc(var(--indicator-cut-center) + var(--indicator-cut-size) / 2), #000 calc(var(--indicator-cut-center) + var(--indicator-cut-size) / 2), #000 360deg);
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-roll-circle--visible svg {
  opacity: 0.36;
}
.intro-roll-circle .intro-edition-switcher {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-roll-circle--visible .intro-edition-switcher {
  opacity: 1;
}
.intro-roll-circle circle {
  fill: none;
  stroke: #f6f7e0;
  stroke-width: 0.15;
  stroke-dasharray: 0.8 1.4;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  animation: intro-ring-spin 80s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .intro-roll-circle circle {
    animation: none;
  }
}

@keyframes intro-ring-spin {
  to {
    transform: rotate(360deg);
  }
}
.intro-cloud-band {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.intro-cloud-band, .intro-cloud-band * {
  pointer-events: none !important;
}
.intro-cloud-band--back {
  z-index: 2;
}
.intro-cloud-band--front {
  z-index: 6;
}

.bottom-fade {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 1.125s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}
.bottom-fade--hidden {
  opacity: 0;
  transition: opacity 1.125s cubic-bezier(0.55, 0.085, 0.68, 0.53) 1.125s;
}
.bottom-fade--instant {
  opacity: 0;
  transition: none;
}
.bottom-fade__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bottom-fade__layer--visible {
  opacity: 1;
}
.bottom-fade__layer--amersfoort {
  background-image: linear-gradient(to top, #a4af99 0%, rgba(164, 175, 153, 0) 100%);
}
.bottom-fade__layer--ade {
  background-image: linear-gradient(to top, #150b18 0%, rgba(21, 11, 24, 0) 100%);
}

.faq-page {
  position: absolute;
  inset: 0;
  --faq-bg: #121212;
}
.detail-page--ade .faq-page {
  --faq-bg: #121212;
}
.faq-page__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.faq-page__list {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.faq-page__inner {
  width: min(680px, 100% - 60px);
  max-width: 100%;
  margin: 0 auto;
  padding: 220px 0 75vh;
  will-change: transform;
}
.faq-page__item {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(246, 247, 224, 0.15);
}
.faq-page__category-label {
  position: absolute;
  right: calc(100% + 40px);
  top: 24px;
  width: 140px;
  text-align: left;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  white-space: nowrap;
  pointer-events: none;
}
.faq-page__section-heading {
  display: none;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  padding: 48px 0 24px;
  border-bottom: 1px solid #f6f7e0;
}
.faq-page__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  text-align: left;
  gap: 24px;
}
.faq-page__question-text {
  flex: 1;
  min-width: 0;
}
.faq-page__category {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: rgba(246, 247, 224, 0.64);
}
.faq-page__item--open .faq-page__category {
  opacity: 0;
}
.faq-page__answer-wrap {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-page__answer {
  padding: 0 0 24px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  opacity: 0.64;
  max-width: 577px;
}
.faq-page__answer p {
  margin: 0 0 12px;
}
.faq-page__answer p:last-child {
  margin-bottom: 0;
}
.faq-page__answer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-page__fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 220px;
  pointer-events: none;
  z-index: 2;
  background-color: var(--faq-bg);
  transition: background-color 0.8s ease;
}
.faq-page__fade--top {
  top: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 20%, transparent 100%);
}
.faq-page__fade--bottom {
  bottom: 0;
  -webkit-mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
  mask-image: linear-gradient(to top, black 0%, black 20%, transparent 100%);
}
.faq-page__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  padding: 7px;
  border-radius: 100px;
  overflow: clip;
  z-index: 3;
  pointer-events: auto;
  width: 1086px;
}
.faq-page__nav-fade {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 130px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  background-color: var(--faq-bg);
  transition: background-color 0.8s ease;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
}
.faq-page__nav-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.faq-page__nav-shadow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.faq-page__nav-label {
  position: relative;
  flex-shrink: 0;
  width: 196px;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  white-space: nowrap;
}
.faq-page__nav-buttons {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 100px;
}
.faq-page__nav-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  border-radius: 100px;
  background: #f6f7e0;
  box-shadow: inset -1px 2px 8px white;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-page__nav-btn {
  position: relative;
  border: none;
  background: transparent;
  height: 36px;
  padding: 0 16px;
  border-radius: 100px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-page__nav-btn--active {
  color: #000;
}
.faq-page__back {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #f6f7e0;
  isolation: isolate;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-page__back img {
  width: 18px;
  height: 18px;
}
.faq-page__back-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-page__back:hover .faq-page__back-bg {
  transform: scale(1.25);
}
@media (max-width: 1139px) {
  .faq-page__nav, .faq-page__nav-fade {
    display: none;
  }
  .faq-page__category-label {
    display: none;
  }
  .faq-page__section-heading {
    display: block;
  }
}
@media (max-width: 767px) {
  .faq-page__inner {
    width: 100%;
    padding: 140px 30px 50vh;
  }
  .faq-page__question {
    font-size: 13px;
  }
  .faq-page__answer {
    font-size: 13px;
    max-width: 100%;
  }
  .faq-page__category {
    display: none;
  }
  .faq-page__fade {
    height: 140px;
  }
}
.faq-page__mobile-nav {
  display: none;
  position: fixed;
  bottom: 106px;
  left: 50%;
  transform: translateX(-50%);
  width: 345px;
  height: 44px;
  padding: 7px;
  border-radius: 100px;
  align-items: center;
  z-index: 101;
  pointer-events: auto;
}
.faq-page__mobile-nav-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.faq-page__mobile-nav-shadow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.faq-page__mobile-nav-label {
  position: relative;
  flex-shrink: 0;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #f6f7e0;
  white-space: nowrap;
}
.faq-page__mobile-nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 16px;
  border: none;
  border-radius: 100px;
  background: #f6f7e0;
  color: #000;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.faq-page__mobile-nav-caret {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-page__mobile-nav-pill--open .faq-page__mobile-nav-caret {
  transform: rotate(180deg);
}
.faq-page__mobile-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 20;
  width: 100%;
  background: #f6f7e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-page__mobile-menu--open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.faq-page__mobile-menu-inner {
  display: flex;
  flex-direction: column;
}
.faq-page__mobile-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Oldschool Grotesk", sans-serif;
  font-size: 26px;
  line-height: 0.84;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.2s ease;
}
.faq-page__mobile-menu-item:first-child {
  padding-top: 0;
}
.faq-page__mobile-menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq-page__mobile-menu-item:hover {
  color: rgb(0, 0, 0);
}
.faq-page__mobile-menu-item--active {
  color: rgb(0, 0, 0);
}
@media (max-width: 1139px) {
  .faq-page__mobile-nav {
    display: flex;
  }
}
@media (max-width: 767px) {
  .faq-page__mobile-nav-label {
    font-size: 12px;
  }
  .faq-page__mobile-nav-pill {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .faq-page__mobile-nav {
    width: calc(100% - 60px);
  }
}

.locale-switcher {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 40px;
  color: #f6f7e0;
  isolation: isolate;
  transform: rotate(-22.5deg);
  transform-origin: calc(100% - 20px) 50%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.locale-switcher__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  position: relative;
  isolation: isolate;
}
.locale-switcher__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.locale-switcher__icon {
  width: 22px;
  height: 22px;
  display: block;
}
.locale-switcher__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.locale-switcher__icon svg path,
.locale-switcher__icon svg circle,
.locale-switcher__icon svg ellipse,
.locale-switcher__icon svg line,
.locale-switcher__icon svg polyline,
.locale-switcher__icon svg polygon,
.locale-switcher__icon svg rect {
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.locale-switcher__hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
}
.locale-switcher__hint-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.locale-switcher__hint-label {
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .locale-switcher:has(.locale-switcher__btn:hover) .locale-switcher__hint {
    opacity: 1;
    transform: translateX(0);
  }
  .locale-switcher:has(.locale-switcher__btn:hover) {
    transform: rotate(0deg);
  }
  .locale-switcher .locale-switcher__btn:hover .locale-switcher__bg {
    transform: scale(1.25);
  }
}
.locale-switcher:has(.locale-switcher__btn:focus-visible) .locale-switcher__hint {
  opacity: 1;
  transform: translateX(0);
}
.locale-switcher:has(.locale-switcher__btn:focus-visible) {
  transform: rotate(0deg);
}
.locale-switcher .locale-switcher__btn:focus-visible .locale-switcher__bg {
  transform: scale(1.25);
}
@media (max-width: 767px) {
  .locale-switcher {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), right 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  body.newsletter-open .locale-switcher {
    right: -60px;
    opacity: 0;
    pointer-events: none;
  }
}

.stay-updated {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  interpolate-size: allow-keywords;
  width: fit-content;
  height: 40px;
  border: none;
  background: transparent;
  color: #f6f7e0;
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  cursor: default;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1), height 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stay-updated__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 100px;
  background: rgba(246, 247, 224, 0.02);
  box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stay-updated__btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  opacity: 1;
  transition: none;
}
.stay-updated__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.stay-updated__input::placeholder {
  color: inherit;
}
.stay-updated--visible {
  opacity: 1;
  pointer-events: auto;
}
.stay-updated--editing {
  width: 240px;
  height: 42px;
  transform: translateY(-1px);
}
.stay-updated__submit {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffbd65;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease;
}
.stay-updated__submit:hover:not(:disabled) {
  filter: brightness(1.08) saturate(1.2);
}
.stay-updated__submit:disabled {
  cursor: default;
}
.stay-updated__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.stay-updated__arrow--active {
  opacity: 1;
}
.stay-updated__state {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
}
.stay-updated__state--active {
  opacity: 1;
}
.stay-updated__state--loading {
  background-image: url("/images/icons/loader.svg");
  background-size: 40% 40%;
}
.stay-updated__state--error {
  background-image: url("/images/icons/close.svg");
  background-size: 60% 60%;
}
.stay-updated__state--success {
  background-image: url("/images/icons/check.svg");
  background-size: 40% 40%;
}
.stay-updated--editing .stay-updated__submit {
  transform: translateY(-50%) scale(1);
}
.stay-updated--night .stay-updated__submit {
  background: #d792cb;
}
.stay-updated--editing .stay-updated__btn {
  opacity: 0;
  pointer-events: none;
}
.stay-updated--editing .stay-updated__input {
  opacity: 1;
  pointer-events: auto;
}
.stay-updated:hover .stay-updated__bg {
  transform: scale(1.06);
}
.stay-updated--editing:hover .stay-updated__bg {
  transform: scale(1);
}
@media (max-width: 767px) {
  .stay-updated--editing {
    width: calc(100vw - 110px);
  }
  .stay-updated__submit {
    right: -50px;
  }
}

.footer {
  --footer-progress: 0;
  position: fixed;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  color: rgba(246, 247, 224, 0.7);
  font-family: "PP Right Grotesk Mono", "PP Right Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: var(--footer-progress);
  transition: opacity 0.5s ease;
  will-change: opacity;
}
.footer--hidden {
  opacity: 0;
  visibility: hidden;
}
.footer__link {
  pointer-events: auto;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #f6f7e0;
}
@media (max-width: 1024px) {
  .footer__link {
    display: none;
  }
}
@media (max-width: 1024px) {
  .footer__separator {
    display: none;
  }
}

.altitude-meter {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}
@media (max-width: 1024px) {
  .altitude-meter {
    display: none;
  }
}
.altitude-meter--hidden {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.altitude-meter__viewport {
  position: relative;
  width: 100px;
  height: 160px;
  overflow: hidden;
}
.altitude-meter__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
}
.altitude-meter__indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 1;
}
.altitude-meter__arrow {
  display: block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #f6f7e0;
}
.altitude-meter__label {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 0 10px;
  background: #f6f7e0;
  border-radius: 1000px;
  height: 26px;
}
.altitude-meter__number {
  font-family: "PP Right Grotesk Mono", monospace;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #000;
}
.altitude-meter__digits {
  display: flex;
}
.altitude-meter__digit-wrapper {
  display: inline-block;
  height: 14px;
  overflow: hidden;
  font-size: 14px;
  width: 0.6em;
}
.altitude-meter__digit-reel {
  display: flex;
  flex-direction: column;
}
.altitude-meter__digit-char {
  display: block;
  height: 14px;
  line-height: 14px;
  font-family: "PP Right Grotesk Mono", monospace;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  text-align: center;
}
.altitude-meter__unit {
  font-family: "PP Right Grotesk Mono", monospace;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #000;
}