:root {
  --black: #000;
  --logo: #f5f5f1;
  --paper: #d0d0cd;
  --paper-hot: #eeeeea;
  --paper-mid: rgba(208, 208, 205, 0.76);
  --paper-dim: rgba(208, 208, 205, 0.5);
  --paper-faint: rgba(208, 208, 205, 0.22);
  --blue: #001eff;
  --blue-hot: #002bff;
  --pad: clamp(1.4rem, 4.4vw, 4.7rem);
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 5.4rem;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1;
  overflow-x: hidden;
}

::selection {
  color: var(--black);
  background: var(--paper-hot);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 1px solid var(--paper-hot);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.075;
  background-image:
    radial-gradient(circle at 14% 21%, white 0 1px, transparent 1px),
    radial-gradient(circle at 73% 64%, white 0 1px, transparent 1px);
  background-size: 29px 31px, 41px 37px;
}

.mesh-bg {
  position: fixed;
  inset: -8vh -7vw -12vh -7vw;
  z-index: 0;
  width: 114vw;
  height: 126vh;
  pointer-events: none;
  opacity: 0.92;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.mesh-group {
  fill: none;
  stroke: #001eff;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.mesh-bg path,
.mesh-bg circle {
  fill: none !important;
  stroke: #001eff !important;
  visibility: visible;
}

.mesh-bg circle {
  stroke: #002bff !important;
}

.mesh-main {
  animation: mesh-wave-main 13s ease-in-out infinite alternate;
}

.mesh-left {
  animation: mesh-wave-left 15s ease-in-out infinite alternate;
}

.mesh-right {
  animation: mesh-wave-right 17s ease-in-out infinite alternate;
}

.mesh-rail {
  stroke-width: 6.7;
  vector-effect: non-scaling-stroke;
  animation: electric-pulse 5.6s ease-in-out infinite alternate;
}

.mesh-cross {
  stroke-width: 3.2;
  stroke-dasharray: 34 18;
  opacity: 0.76;
  vector-effect: non-scaling-stroke;
  animation: current-flow 6.6s ease-in-out infinite alternate;
}

.mesh-cross.thin {
  stroke-width: 2.1;
  stroke-dasharray: 12 20;
  opacity: 0.45;
  animation-duration: 8.2s;
}

.mesh-scribble {
  stroke-width: 2.5;
  opacity: 0.62;
  vector-effect: non-scaling-stroke;
  animation: scribble-shift 7.8s ease-in-out infinite alternate;
}

.mesh-bg circle {
  fill: transparent;
  stroke: var(--blue-hot);
  stroke-width: 5.6;
  vector-effect: non-scaling-stroke;
  animation: node-breathe 3.4s ease-in-out infinite alternate;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem var(--pad);
  color: var(--paper-hot);
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid rgba(238, 238, 234, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: clamp(0.68rem, 0.92vw, 0.86rem);
  font-weight: 760;
  letter-spacing: 0;
}

.thanks-hero {
  min-height: min(46rem, 100svh);
  display: grid;
  align-items: end;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(8rem, 18vh, 12rem) var(--pad) clamp(4rem, 10vh, 7rem);
  border-bottom: 1px solid var(--paper-faint);
}

.thanks-hero-inner {
  width: min(100%, 58rem);
}

.thanks-hero h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--paper-hot);
  font-size: clamp(3.1rem, 7.4vw, 7.8rem);
  font-weight: 780;
  line-height: 0.92;
}

.thanks-hero p:not(.section-index) {
  max-width: 44rem;
  margin: clamp(1.6rem, 3.6vw, 2.7rem) 0 0;
  color: var(--paper-mid);
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  font-weight: 650;
  line-height: 1.48;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: clamp(1.6rem, 3.6vw, 2.7rem);
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(208, 208, 205, 0.34);
  border-radius: 6px;
  color: var(--paper-hot);
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1;
}

.action-link-primary {
  border-color: var(--blue-hot);
  background: var(--blue-hot);
  color: var(--paper-hot);
}

.feedback-section {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.feedback-form {
  display: grid;
  gap: clamp(1.35rem, 2.6vw, 2rem);
  width: min(100%, 58rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.1rem, 3vw, 2.2rem);
  border: 1px solid var(--paper-faint);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.84);
}

.feedback-form fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.feedback-form legend,
.feedback-textarea > span,
.feedback-email > span {
  display: block;
  margin-bottom: 0.68rem;
  color: var(--paper-hot);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.25;
}

.feedback-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.feedback-options label,
.feedback-check {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 2.35rem;
  color: var(--paper-mid);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.feedback-options label {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(208, 208, 205, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
}

.feedback-options input,
.feedback-check input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--blue-hot);
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(2.65rem, 1fr));
  gap: 0.5rem;
  width: min(100%, 24rem);
}

.rating-options label {
  position: relative;
}

.rating-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-options span {
  display: grid;
  place-items: center;
  min-height: 2.75rem;
  border: 1px solid rgba(208, 208, 205, 0.28);
  border-radius: 6px;
  color: var(--paper-mid);
  font-size: 1rem;
  font-weight: 780;
}

.rating-options input:checked + span {
  border-color: var(--blue-hot);
  color: var(--paper-hot);
  background: rgba(0, 30, 255, 0.24);
}

.rating-options input:focus-visible + span,
.feedback-options input:focus-visible,
.feedback-check input:focus-visible {
  outline: 1px solid var(--paper-hot);
  outline-offset: 3px;
}

.feedback-textarea,
.feedback-email {
  display: block;
}

.feedback-textarea textarea,
.feedback-email input {
  display: block;
  width: 100%;
  border: 1px solid rgba(208, 208, 205, 0.25);
  border-radius: 6px;
  color: var(--paper-hot);
  background: rgba(0, 0, 0, 0.62);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.5;
}

.feedback-textarea textarea {
  resize: vertical;
  min-height: 7rem;
  padding: 0.78rem;
}

.feedback-email input {
  min-height: 2.75rem;
  padding: 0.55rem 0.72rem;
}

.feedback-textarea textarea:focus,
.feedback-email input:focus {
  border-color: var(--blue-hot);
  outline: 0;
}

.feedback-contact {
  display: grid;
  gap: 0.8rem;
  padding-top: 1.1rem !important;
  border-top: 1px solid var(--paper-faint) !important;
}

.feedback-contact p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.78rem;
  font-weight: 620;
  line-height: 1.42;
}

.feedback-required {
  align-items: flex-start;
  min-height: 0;
}

.feedback-required input {
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.feedback-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.feedback-submit-row button {
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--blue-hot);
  border-radius: 6px;
  color: var(--paper-hot);
  background: var(--blue-hot);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 780;
  cursor: pointer;
}

.feedback-submit-row button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.feedback-status {
  flex: 1 1 16rem;
  min-height: 1.25rem;
  margin: 0;
  color: var(--paper-mid);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.feedback-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  gap: clamp(0.7rem, 1.8vw, 1.4rem);
  flex-wrap: nowrap;
  justify-content: flex-end;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.62rem;
  border: 1px solid rgba(208, 208, 205, 0.28);
  border-radius: 6px;
  color: var(--paper-hot);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.26rem 0;
  background: currentColor;
}

.site-header a {
  opacity: 0.76;
  white-space: nowrap;
}

.site-header a:hover {
  opacity: 1;
}

.poster-section {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  border-bottom: 1px solid var(--paper-faint);
}

.poster-shell {
  --artist-size: clamp(2.55rem, 4.1vw, 4.45rem);
  --headline-size: calc(var(--artist-size) * 1.3);
  width: min(100%, 1540px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(4.9rem, 7vh, 6.4rem) var(--pad) clamp(2.6rem, 5vh, 4.6rem);
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.logo-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(2.25rem, 4.7vh, 4rem);
}

.fff-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 4.55 / 1.95;
  color: var(--logo);
}

.fff-logo i {
  position: absolute;
  display: block;
  background-color: currentColor;
}

.fff-logo i:nth-child(1) { left: 31%; top: 0; width: 15%; height: 34%; }
.fff-logo i:nth-child(2) { left: 14%; top: 30%; width: 76%; height: 32%; }
.fff-logo i:nth-child(3) { left: 0; top: 46%; width: 18%; height: 32%; }
.fff-logo i:nth-child(4) { left: 0; top: 70%; width: 31%; height: 30%; }
.fff-logo i:nth-child(5) { left: 16%; top: 55%; width: 31%; height: 24%; }

.event-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.4rem, 3.2vw, 3rem);
  align-items: start;
  color: var(--paper);
  margin-bottom: clamp(3.2rem, 7vh, 7rem);
}

.meta-title {
  display: grid;
  grid-template-columns: 1.28fr 2.5fr 1.8fr;
  gap: clamp(1.2rem, 3vw, 3.2rem);
  align-items: start;
}

.meta-title span {
  display: block;
  min-width: 0;
  font-weight: 760;
  font-size: var(--headline-size);
  line-height: 0.98;
  letter-spacing: 0;
}

.meta-details {
  display: grid;
  gap: clamp(0.52rem, 1.25vw, 0.95rem);
  max-width: min(100%, 1120px);
}

.meta-details p {
  margin: 0;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.meta-date {
  color: var(--paper);
  font-size: clamp(2.2rem, 3.4vw, 3.85rem);
  white-space: nowrap;
}

.meta-venue {
  color: var(--paper-hot);
  font-size: clamp(1.55rem, 2.25vw, 2.55rem);
  white-space: nowrap;
}

.meta-time {
  color: var(--paper);
  font-size: clamp(1.28rem, 1.75vw, 2rem);
  white-space: nowrap;
}

.meta-venue small {
  display: inline-block;
  margin-left: 0.42rem;
  color: var(--paper-mid);
  font-size: 0.52em;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: baseline;
  white-space: nowrap;
}

.lineup-poster {
  position: relative;
  display: grid;
  align-content: end;
  gap: clamp(2rem, 3.7vh, 4.1rem);
}

.lineup-group {
  position: relative;
  display: grid;
  grid-template-columns: minmax(6.6rem, 0.16fr) minmax(0, 1fr);
  column-gap: clamp(1.3rem, 2.8vw, 3.4rem);
  align-items: start;
}

.lineup-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(0.2rem, 0.55vw, 0.64rem);
}

.lineup-group li {
  margin: 0;
  color: var(--paper);
  font-size: var(--artist-size);
  font-weight: 780;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
  text-shadow: 0 0 0.03em rgba(0, 0, 0, 0.76);
}

.lineup-group li.artist-headline {
  font-size: var(--headline-size);
}

.lineup-group li.artist-long {
  font-size: var(--artist-size);
}

.lineup-group li.artist-compact {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  align-items: end;
  column-gap: 0.34em;
  max-width: 100%;
  font-size: clamp(1.72rem, 2.84vw, 3.18rem);
  line-height: 0.97;
  overflow-wrap: normal;
  text-wrap: initial;
}

.artist-main {
  display: grid;
  gap: 0.03em;
}

.artist-main span {
  display: block;
  white-space: nowrap;
}

.artist-with-note small {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--paper-mid);
  font-size: 0.32em;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: baseline;
}

.artist-long small {
  font-size: 0.34em;
  transform: translateY(-0.05em);
}

.artist-compact small {
  display: block;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0.12em;
  font-size: clamp(0.6rem, 0.76vw, 0.84rem);
  line-height: 1;
  white-space: nowrap;
  transform: none;
}

.lineup-group .more {
  margin-top: 0.22em;
  color: var(--paper-hot);
  font-size: clamp(1.35rem, 2.25vw, 2.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.day-label {
  display: flex;
  align-items: center;
  gap: 0.42em;
  margin: 0;
  padding-top: 0.14em;
  color: var(--paper-hot);
  font-size: clamp(1.06rem, 1.7vw, 1.88rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.day-label small {
  color: var(--paper-dim);
  font-size: 0.58em;
  font-weight: 760;
  text-transform: uppercase;
}

.day-label::before {
  content: "";
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--logo);
}

.content-section {
  position: relative;
  z-index: 2;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  border-top: 1px solid var(--paper-faint);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(16rem, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.4rem, 5vw, 5rem);
}

.section-index {
  grid-column: 1 / -1;
  color: var(--blue-hot);
  font-size: clamp(0.75rem, 0.95vw, 0.95rem);
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(3rem, 6.4vw, 7.4rem);
  font-weight: 780;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.section-index) {
  max-width: 55rem;
  margin: 0;
  color: var(--paper-mid);
  font-size: clamp(1rem, 1.65vw, 1.6rem);
  font-weight: 680;
  line-height: 1.25;
}


.statement-copy {
  max-width: 920px;
  margin-left: auto;
  color: var(--paper);
}

.statement-copy p {
  margin: 0;
  color: var(--paper-mid);
  font-size: clamp(1.08rem, 1.75vw, 1.58rem);
  font-weight: 620;
  line-height: 1.72;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.94), 0 0 2px rgba(0, 0, 0, 0.88);
}

.statement-copy p + p {
  margin-top: clamp(1.1rem, 2.2vw, 1.9rem);
}

.statement-copy .statement-signature {
  color: var(--paper-hot);
  font-weight: 760;
  text-align: right;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.artist-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--paper-faint);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.66);
  box-shadow: 0 0 0 1px rgba(0, 30, 255, 0.06);
}

.artist-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: rgba(208, 208, 205, 0.08);
}

.artist-card-body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 1.8vw, 1.4rem);
}

.artist-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
}

.artist-card-meta span,
.ticket-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.52rem;
  border: 1px solid rgba(208, 208, 205, 0.22);
  border-radius: 999px;
  color: var(--paper-hot);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.artist-card h3 {
  margin: 0;
  color: var(--paper-hot);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 780;
  line-height: 1;
  text-wrap: balance;
}

.artist-card h3 small {
  display: block;
  margin-top: 0.32rem;
  color: var(--paper-mid);
  font-size: 0.46em;
  font-weight: 760;
  line-height: 1.1;
}

.artist-card-title-compact {
  font-size: clamp(1.32rem, 1.8vw, 1.92rem);
  line-height: 1.03;
}

.artist-card-title-compact small {
  font-size: 0.58em;
}

.artist-card p:not(.artist-card-meta) {
  margin: 0;
  color: var(--paper-mid);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  font-weight: 560;
  line-height: 1.65;
}

.artist-card a,
.ticket-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(208, 208, 205, 0.3);
  border-radius: 6px;
  color: var(--paper-hot);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.artist-card a:hover,
.ticket-links a:hover {
  border-color: var(--paper-hot);
  background: var(--paper-hot);
  color: var(--black);
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
}

.ticket-card {
  min-width: 0;
  padding: clamp(1rem, 1.9vw, 1.45rem);
  border: 1px solid var(--paper-faint);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 245, 241, 0.08), rgba(0, 30, 255, 0.08));
}

.ticket-type,
.ticket-card h3,
.ticket-price,
.ticket-status {
  margin: 0;
}

.ticket-type {
  color: var(--paper-dim);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.ticket-card h3 {
  margin-top: 0.75rem;
  color: var(--paper-hot);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 780;
  line-height: 1.05;
}

.ticket-card h3 span {
  display: block;
  margin-top: 0.28rem;
  color: var(--paper-mid);
  font-size: 0.56em;
  line-height: 1.15;
}

.ticket-price {
  margin-top: 1.4rem;
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 780;
  line-height: 1;
}

.ticket-price small {
  color: var(--paper-mid);
  font-size: 0.34em;
}

.ticket-status {
  width: fit-content;
  margin-top: 0.85rem;
  color: var(--paper-hot);
}

.is-soldout .ticket-status {
  border-color: rgba(0, 30, 255, 0.82);
  color: var(--paper-hot);
  background: rgba(0, 30, 255, 0.26);
}

.ticket-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 1.2rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--paper-faint);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.66);
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  background: rgba(208, 208, 205, 0.08);
}

.media-card figcaption {
  margin: 0;
  padding: 0.85rem clamp(0.95rem, 1.5vw, 1.3rem);
  border-top: 1px solid var(--paper-faint);
  color: var(--paper-hot);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  margin-top: clamp(1.6rem, 3.4vw, 3rem);
}

.schedule-controls,
.timeline-swipe-hint {
  display: none;
}

.schedule-day {
  min-width: 0;
  padding: clamp(1rem, 1.9vw, 1.45rem);
  border: 1px solid var(--paper-faint);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 245, 241, 0.07), rgba(0, 30, 255, 0.06)),
    #000;
}

.schedule-day h3 {
  margin: 0 0 1rem;
  color: var(--paper-hot);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  font-weight: 780;
  line-height: 1;
}

.schedule-day h3 span {
  display: block;
  margin-top: 0.32rem;
  color: var(--paper-mid);
  font-size: 0.44em;
  font-weight: 760;
  text-transform: uppercase;
}

.schedule-installations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-bottom: 0.9rem;
}

.schedule-installations div {
  min-width: 0;
  padding: 0.68rem 0.78rem;
  border: 1px solid rgba(208, 208, 205, 0.18);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.28);
}

.schedule-installations span,
.schedule-installations small {
  display: block;
  color: var(--paper-mid);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.1;
}

.schedule-installations strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--paper-hot);
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  font-weight: 780;
  line-height: 1.12;
}

.schedule-installations small {
  margin-top: 0.22rem;
}

.schedule-venue-note {
  display: grid;
  grid-template-columns: minmax(7.7rem, 0.32fr) minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.72rem;
  margin: 0 0 0.9rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(0, 30, 255, 0.42);
  border-left: 3px solid var(--blue-hot);
  border-radius: 7px;
  color: var(--paper-hot);
  background: rgba(0, 30, 255, 0.08);
}

.schedule-venue-note span,
.schedule-venue-note small {
  color: var(--paper-mid);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.1;
}

.schedule-venue-note strong {
  min-width: 0;
  color: var(--paper-hot);
  font-size: clamp(0.9rem, 1vw, 1.04rem);
  font-weight: 780;
  line-height: 1.12;
}

.timeline-scroll {
  overflow-x: auto;
  border: 1px solid rgba(208, 208, 205, 0.18);
  border-radius: 7px;
  background: #000;
}

.timeline-grid {
  --tick: clamp(0.7rem, 0.96vw, 0.94rem);
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.34fr) repeat(3, minmax(14rem, 1fr));
  grid-template-rows: 3.95rem repeat(var(--rows), var(--tick));
  min-width: 920px;
}

.timeline-corner,
.track-label {
  position: sticky;
  top: 0;
  z-index: 3;
  margin: 0;
  padding: 0.82rem 0.82rem 0.7rem;
  border-left: 1px solid rgba(208, 208, 205, 0.12);
  border-bottom: 1px solid var(--paper-faint);
  color: var(--paper-hot);
  background: rgba(0, 0, 0, 0.86);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 780;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.timeline-corner {
  left: 0;
  z-index: 5;
  grid-column: 1;
  grid-row: 1;
  border-left: 0;
  color: var(--blue-hot);
}

.track-label {
  grid-column: var(--col);
  grid-row: 1;
}

.track-label small {
  display: block;
  margin-top: 0.28rem;
  color: var(--paper-mid);
  font-size: 0.72em;
  font-weight: 760;
  line-height: 1;
}

.time-rail {
  position: sticky;
  left: 0;
  z-index: 4;
  grid-column: 1;
  grid-row: 2 / span var(--rows);
  display: grid;
  grid-template-rows: repeat(var(--rows), var(--tick));
  border-right: 1px solid rgba(208, 208, 205, 0.15);
  background: rgba(0, 0, 0, 0.74);
}

.time-rail span {
  grid-row: var(--row);
  align-self: start;
  padding: 0 0.82rem;
  color: var(--blue-hot);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1;
  transform: translateY(-0.12rem);
}

.timeline-track {
  position: relative;
  grid-column: var(--col);
  grid-row: 2 / span var(--rows);
  display: grid;
  grid-template-rows: repeat(var(--rows), var(--tick));
  min-width: 0;
  border-left: 1px solid rgba(208, 208, 205, 0.12);
  background: #000;
}

.timeline-event {
  grid-row: var(--start) / var(--end);
  min-width: 0;
  margin: 1px 0.42rem;
  padding: 0.4rem 0.48rem;
  border: 1px solid rgba(208, 208, 205, 0.24);
  border-top-color: rgba(102, 216, 255, 0.62);
  border-bottom-color: rgba(102, 216, 255, 0.5);
  border-left: 3px solid var(--blue-hot);
  border-radius: 6px;
  color: var(--paper-hot);
  background: rgba(0, 0, 0, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(102, 216, 255, 0.1);
  overflow: hidden;
}

.timeline-event time,
.timeline-event span {
  display: block;
}

.timeline-event time {
  margin-bottom: 0.18rem;
  color: var(--blue-hot);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1;
}

.timeline-event strong {
  display: block;
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 780;
  line-height: 1.1;
}

.timeline-event span {
  margin-top: 0.18rem;
  color: var(--paper-mid);
  font-size: 0.72em;
  font-weight: 680;
  line-height: 1.1;
}

.timeline-event.is-point {
  align-self: start;
  min-height: 2.45rem;
}

.timeline-event.is-short {
  padding: 0.28rem 0.42rem;
}

.timeline-event.is-short time {
  margin-bottom: 0.12rem;
  font-size: 0.62rem;
}

.timeline-event.is-short strong {
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  line-height: 1.02;
}

.timeline-event.is-short span {
  margin-top: 0.1rem;
  font-size: 0.64em;
  line-height: 1.02;
}

.map-card {
  width: min(100%, 880px);
}

.event-info-list {
  margin: 0;
  display: grid;
  align-content: start;
}

.event-info-list div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.05rem, 2vw, 1.55rem) 0;
  border-top: 1px solid var(--paper-faint);
}

.event-info-list div:last-child {
  border-bottom: 1px solid var(--paper-faint);
}

.event-info-list dt,
.event-info-list dd {
  margin: 0;
}

.event-info-list dt {
  color: var(--paper-dim);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.event-info-list dd {
  color: var(--paper-mid);
  font-size: clamp(1.15rem, 2.3vw, 2.4rem);
  font-weight: 760;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 1.4rem var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--paper-faint);
  color: var(--paper-mid);
  font-size: clamp(0.72rem, 0.95vw, 0.9rem);
  font-weight: 760;
  letter-spacing: 0;
}

@keyframes mesh-wave-main {
  from { transform: translate3d(-0.8%, -1.1%, 0) rotate(-1.2deg) scale(0.995); }
  to { transform: translate3d(1.1%, 1%, 0) rotate(1.6deg) scale(1.025); }
}

@keyframes mesh-wave-left {
  from { transform: translate3d(1.1%, 0.8%, 0) rotate(1.4deg) scale(1); }
  to { transform: translate3d(-1.2%, -1.3%, 0) rotate(-1.8deg) scale(1.03); }
}

@keyframes mesh-wave-right {
  from { transform: translate3d(-0.7%, 1.2%, 0) rotate(-1.2deg) scale(1); }
  to { transform: translate3d(1.1%, -1.2%, 0) rotate(1.5deg) scale(1.028); }
}

@keyframes electric-pulse {
  from { opacity: 0.62; }
  to { opacity: 1; }
}

@keyframes current-flow {
  from { opacity: 0.46; stroke-dashoffset: 0; }
  to { opacity: 0.95; stroke-dashoffset: -54; }
}

@keyframes scribble-shift {
  from { opacity: 0.32; stroke-dashoffset: 0; }
  to { opacity: 0.75; stroke-dashoffset: 80; }
}

@keyframes node-breathe {
  from { opacity: 0.45; stroke-width: 4.2; }
  to { opacity: 1; stroke-width: 6.8; }
}

@media (max-width: 1060px) {
  .poster-shell {
    --artist-size: clamp(1.95rem, 5.25vw, 3.25rem);
    padding-top: 5.2rem;
  }

  .logo-row {
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2rem;
  }

  .event-meta {
    gap: clamp(1.05rem, 2.4vw, 1.8rem);
    margin-bottom: clamp(3rem, 6.5vh, 5.8rem);
  }

  .meta-title {
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .meta-date {
    font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  }

  .meta-venue {
    font-size: clamp(1.65rem, 5.7vw, 2.7rem);
  }

  .lineup-poster {
    gap: clamp(2.2rem, 5.2vw, 4rem);
  }

  .lineup-group {
    grid-template-columns: 1fr;
    row-gap: 0.72rem;
  }

  .lineup-group li {
    line-height: 1.04;
    max-width: min(100%, 13.4em);
    text-wrap: wrap;
  }

  .lineup-group li.artist-long {
    font-size: var(--artist-size);
  }

  .artist-with-note small {
    display: block;
    margin-top: 0.22rem;
    margin-left: 0;
    font-size: 0.36em;
    line-height: 1;
  }

  .day-label {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .artist-grid,
  .ticket-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid {
    min-width: 880px;
  }

  .event-info-list div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 1rem;
  }

  .mesh-bg {
    inset: -8vh -62vw -14vh -45vw;
    width: 196vw;
    height: 126vh;
    opacity: 0.78;
  }

  .mesh-rail { stroke-width: 5.2; }
  .mesh-cross { stroke-width: 2.35; }
  .mesh-cross.thin { opacity: 0.26; }
  .mesh-scribble { opacity: 0.36; }
  .mesh-bg circle { stroke-width: 4.4; }

  .site-header {
    position: fixed;
    align-items: center;
    gap: 0.85rem;
    padding: 0.72rem var(--pad);
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-header nav {
    position: fixed;
    top: 3.7rem;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    max-width: none;
    padding: 0.85rem var(--pad) 1rem;
    overflow: visible;
    border-bottom: 1px solid var(--paper-faint);
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 0.9rem 1.8rem rgba(0, 0, 0, 0.42);
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(208, 208, 205, 0.18);
    border-radius: 6px;
    opacity: 1;
  }

  .poster-shell {
    --artist-size: clamp(1.48rem, 6.55vw, 2.45rem);
    padding-top: 4.8rem;
  }

  .logo-row {
    width: min(66vw, 17.5rem);
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .fff-logo {
    aspect-ratio: 4.55 / 1.95;
  }

  .event-meta {
    gap: 1.15rem;
    margin-bottom: 3.2rem;
  }

  .meta-title {
    gap: 0.28rem;
  }

  .meta-details {
    gap: 0.62rem;
  }

  .meta-date {
    font-size: clamp(1.34rem, 5.95vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: 0;
    white-space: normal;
  }

  .meta-venue {
    font-size: clamp(1.52rem, 7.45vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0;
    white-space: normal;
  }

  .meta-venue small {
    display: block;
    margin-top: 0.28rem;
    margin-left: 0;
    font-size: clamp(0.72rem, 3.1vw, 0.94rem);
  }

  .lineup-poster {
    gap: 2.4rem;
  }

  .lineup-group {
    grid-template-columns: 1fr;
    row-gap: 0.62rem;
  }

  .lineup-group li {
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .lineup-group li.artist-long {
    font-size: var(--artist-size);
  }

  .lineup-group li.artist-compact {
    column-gap: 0.42rem;
    font-size: clamp(1.42rem, 5.5vw, 1.72rem);
  }

  .artist-with-note small {
    display: block;
    margin-left: 0;
    margin-top: 0.32rem;
    margin-bottom: 0.1rem;
    font-size: 0.34em;
  }

  .artist-compact .artist-main span {
    display: block;
    white-space: nowrap;
  }

  .artist-compact small {
    display: block;
    margin: 0 0 0.16rem;
    font-size: clamp(0.54rem, 2.2vw, 0.64rem);
    line-height: 1;
    white-space: nowrap;
  }

  .lineup-group .more {
    font-size: clamp(1.1rem, 5.2vw, 1.6rem);
  }

  .content-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.7rem);
    line-height: 0.98;
  }

  .section-heading p:not(.section-index) {
    font-size: 1rem;
  }

  .artist-grid,
  .ticket-grid,
  .media-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-installations {
    grid-template-columns: 1fr;
  }

  .schedule-controls {
    display: grid;
    gap: 0.66rem;
    margin-top: 1.5rem;
  }

  .schedule-control-group {
    display: flex;
    gap: 0.46rem;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .schedule-control-group::-webkit-scrollbar {
    display: none;
  }

  .schedule-control-group button {
    flex: 0 0 auto;
    min-height: 2.45rem;
    padding: 0.46rem 0.7rem;
    border: 1px solid rgba(208, 208, 205, 0.28);
    border-radius: 6px;
    color: var(--paper-mid);
    background: rgba(0, 0, 0, 0.64);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
  }

  .schedule-control-group button[aria-pressed="true"] {
    border-color: var(--blue-hot);
    color: var(--paper-hot);
    background: rgba(0, 30, 255, 0.2);
  }

  .schedule-venue-note {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .timeline-grid {
    --tick: 0.94rem;
    grid-template-columns: 4.7rem repeat(3, minmax(10.4rem, 1fr));
    min-width: 640px;
  }

  .timeline-swipe-hint {
    display: block;
    margin: 0.62rem 0 0;
    color: var(--paper-dim);
    font-size: 0.72rem;
    font-weight: 760;
    line-height: 1.2;
  }

  .schedule-day[data-schedule-venue="box1000"] .timeline-grid,
  .schedule-day[data-schedule-venue="box300"] .timeline-grid,
  .schedule-day[data-schedule-venue="tatami"] .timeline-grid {
    grid-template-columns: 4.7rem minmax(0, 1fr);
    min-width: 0;
  }

  .schedule-day[data-schedule-venue="box1000"] .venue-box300,
  .schedule-day[data-schedule-venue="box1000"] .venue-tatami,
  .schedule-day[data-schedule-venue="box300"] .venue-box1000,
  .schedule-day[data-schedule-venue="box300"] .venue-tatami,
  .schedule-day[data-schedule-venue="tatami"] .venue-box1000,
  .schedule-day[data-schedule-venue="tatami"] .venue-box300 {
    display: none;
  }

  .schedule-day[data-schedule-venue="box1000"] .venue-box1000,
  .schedule-day[data-schedule-venue="box300"] .venue-box300,
  .schedule-day[data-schedule-venue="tatami"] .venue-tatami {
    grid-column: 2 !important;
  }

  .schedule-day[data-schedule-venue="box1000"] .timeline-swipe-hint,
  .schedule-day[data-schedule-venue="box300"] .timeline-swipe-hint,
  .schedule-day[data-schedule-venue="tatami"] .timeline-swipe-hint {
    display: none;
  }

  .artist-card img {
    aspect-ratio: 1 / 1;
  }

  .timeline-event {
    margin-inline: 0.28rem;
    padding: 0.34rem 0.38rem;
  }

  .artist-card h3 {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .ticket-card h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .ticket-price {
    font-size: clamp(1.8rem, 10vw, 2.85rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .thanks-hero {
    min-height: 82svh;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .thanks-hero h1 {
    font-size: clamp(2.65rem, 11.4vw, 4rem);
  }

  .thanks-hero p:not(.section-index) {
    font-size: 1rem;
  }

  .thanks-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action-link {
    width: 100%;
  }

  .feedback-form {
    margin-top: 1.7rem;
  }

  .feedback-options-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-options-inline label {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .poster-shell {
    --artist-size: clamp(1.28rem, 6.15vw, 1.85rem);
    padding-top: 4.55rem;
    padding-bottom: 2.2rem;
  }

  .logo-row {
    width: min(62vw, 15.5rem);
    margin-bottom: clamp(1.8rem, 6.2vw, 2.45rem);
  }

  .event-meta {
    gap: 1.05rem;
    margin-bottom: 3.45rem;
  }

  .meta-title span {
    line-height: 1.02;
  }

  .meta-date {
    font-size: clamp(1.14rem, 5.55vw, 1.48rem);
    letter-spacing: 0;
  }

  .meta-venue {
    font-size: clamp(1.28rem, 6.65vw, 1.76rem);
    letter-spacing: 0;
  }

  .meta-venue small {
    font-size: clamp(0.64rem, 2.85vw, 0.82rem);
  }

  .lineup-poster {
    gap: 2.05rem;
  }

  .lineup-group li {
    line-height: 1.08;
    letter-spacing: 0;
  }

  .lineup-group li.artist-long {
    font-size: var(--artist-size);
  }

  .lineup-group li.artist-compact {
    column-gap: 0.36rem;
    font-size: clamp(1.2rem, 5.05vw, 1.38rem);
  }

  .artist-compact small {
    margin-bottom: 0.14rem;
    font-size: clamp(0.5rem, 2.12vw, 0.56rem);
  }

  .lineup-group .more {
    font-size: clamp(1.04rem, 4.75vw, 1.42rem);
  }
}

@media (max-width: 350px) {
  :root {
    --pad: 0.85rem;
  }

  .poster-shell {
    --artist-size: clamp(1.18rem, 5.9vw, 1.56rem);
  }

  .meta-date {
    font-size: clamp(1.04rem, 5.15vw, 1.18rem);
  }

  .meta-venue small {
    display: block;
    margin-top: 0.24rem;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
