:root {
  --bg-top: #16010d;
  --bg-mid: #290712;
  --bg-bottom: #09020c;
  --panel: rgba(28, 9, 20, 0.64);
  --panel-strong: rgba(37, 11, 25, 0.86);
  --line: rgba(255, 205, 92, 0.2);
  --line-strong: rgba(255, 224, 130, 0.42);
  --text: #fff6e8;
  --muted: rgba(255, 246, 232, 0.72);
  --gold: #ffd24d;
  --amber: #ff9600;
  --hot: #ff5a25;
  --pink: #ff3b8d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --headline-font: "Avenir Next Condensed", "Futura Condensed Extra Bold", "Franklin Gothic Heavy", "Arial Narrow", sans-serif;
  --body-font: "Trebuchet MS", "Gill Sans", "Verdana", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 138, 0, 0.28), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255, 51, 140, 0.22), transparent 24%),
    radial-gradient(circle at 50% 54%, rgba(255, 187, 0, 0.14), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 46%, var(--bg-bottom) 100%);
  font-family: var(--body-font);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 214, 107, 0.11), transparent 22%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 22px
    );
  pointer-events: none;
  z-index: -2;
  transform: translateY(calc(var(--page-shift, 0px) * -0.22));
}

.backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.backdrop__beam,
.backdrop__orb {
  position: absolute;
  filter: blur(12px);
  opacity: 0.7;
}

.backdrop__beam {
  top: -18vh;
  width: 34vw;
  height: 120vh;
  background: linear-gradient(180deg, rgba(255, 193, 71, 0.34), rgba(255, 59, 141, 0));
}

.backdrop__beam--left {
  left: -4vw;
  transform: rotate(18deg);
}

.backdrop__beam--right {
  right: -8vw;
  transform: rotate(-24deg);
}

.backdrop__orb {
  border-radius: 50%;
}

.backdrop__orb--gold {
  left: 44%;
  top: 18%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 205, 92, 0.42), rgba(255, 205, 92, 0));
}

.backdrop__orb--pink {
  right: 10%;
  top: 34%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 59, 141, 0.28), rgba(255, 59, 141, 0));
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.4rem;
}

.section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: auto;
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero__stage-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #050107;
}

.hero__stage-banner {
  display: block;
  width: 100%;
  height: auto;
}

.hero__stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 1, 7, 0.04), rgba(5, 1, 7, 0.02) 22%, rgba(5, 1, 7, 0.22) 100%),
    radial-gradient(circle at 54% 46%, rgba(255, 166, 37, 0.08), transparent 28%);
  pointer-events: none;
}

.hero__stage-inner {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 2.8rem));
  margin: 0 auto;
  pointer-events: none;
}

.hero__brand-stack {
  position: absolute;
  top: clamp(1.2rem, 3vw, 2.4rem);
  left: 0;
  width: min(44rem, 62vw);
  z-index: 2;
  display: grid;
  gap: 0.5rem;
  pointer-events: none;
}

.hero__title-overlay {
  width: 100%;
}

.hero__title-art {
  display: block;
  width: 100%;
  height: auto;
}

.hero__title-art--raster {
  width: 100%;
  aspect-ratio: var(--title-ratio, 888 / 235);
  background-image: var(--title-image);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  -webkit-mask-image: var(--title-image);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: left top;
  mask-image: var(--title-image);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: left top;
  mask-mode: luminance;
  -webkit-mask-mode: luminance;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1rem;
  margin-top: clamp(-4.8rem, -5vw, -2.2rem);
  text-align: left;
}

.hero__flyer-subtitle {
  display: grid;
  gap: 0.45rem;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  margin-left: 0.5rem;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section__heading h2,
.story__quote h2,
.contact-panel__copy h2,
.feature-card h3,
.step-card h3 {
  font-family: var(--headline-font);
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__tagline {
  max-width: 18ch;
  margin: 0;
  color: #fff8ec;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.06;
  font-style: italic;
  font-weight: 800;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.32);
}

.hero__genreline {
  margin: 0;
  color: #ffd24d;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero__genreline-main {
  color: #ffd24d;
}

.hero__genreline-accent {
  color: #ff3b8d;
}

.hero__lead,
.section__heading p,
.story__quote p,
.contact-panel__copy p,
.feature-card p,
.step-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__lead {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.08rem, 0.95rem + 0.55vw, 1.34rem);
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #22070f;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 14px 30px rgba(255, 150, 0, 0.3);
}

.button--ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__meta li {
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(255, 224, 130, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 246, 232, 0.82);
}

.hero__showcase {
  position: relative;
  top: clamp(1.4rem, 3vw, 2.4rem);
  right: 0;
  margin-left: auto;
  width: min(18rem, 24vw);
  min-height: 13.5rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  pointer-events: auto;
}

.hero__showcase-head,
.hero__showcase-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.hero__showcase-note,
.hero__showcase-foot span {
  margin: 0;
  color: var(--muted);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12), transparent 35%, rgba(255, 59, 141, 0.08));
  pointer-events: none;
}

.showcase__eq {
  position: relative;
  width: 100%;
  height: 8rem;
  display: flex;
  align-items: end;
  gap: clamp(0.22rem, 0.8vw, 0.52rem);
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  padding-top: 0.5rem;
}

.showcase__eq-bar {
  flex: 1;
  height: var(--bar-height);
  min-height: 18%;
  border-radius: 999px 999px 0 0;
  transform-origin: bottom;
  background: linear-gradient(180deg, #fff4ab 0%, #ffbc2a 28%, #ff7a00 66%, #ff3b8d 100%);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.32);
  animation: wavePulse 3.6s ease-in-out infinite;
  animation-delay: var(--bar-delay);
}

@keyframes wavePulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.78;
  }
  50% {
    transform: scaleY(1.12);
    opacity: 1;
  }
}

.hero__poster,
.hero__stage-image {
  display: none;
}

.separator {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  opacity: 0.95;
}

.separator img {
  display: block;
  width: 100%;
  height: auto;
}

.ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(255, 210, 77, 0.15);
  border-bottom: 1px solid rgba(255, 210, 77, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.95rem 0;
  font-family: var(--headline-font);
  font-size: clamp(1.25rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 210, 77, 0.92);
  animation: marqueeRun 22s linear infinite;
}

.marquee span::after {
  content: "•";
  display: inline-block;
  margin-left: 2rem;
  color: rgba(255, 246, 232, 0.4);
}

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

.section__heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section__heading h2,
.story__quote h2,
.contact-panel__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.96;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.about-card {
  padding: 1.35rem;
}

.about-card--intro {
  max-width: none;
}

.about-card--members {
  overflow: hidden;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-card p + p {
  margin-top: 1rem;
}

.about-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  margin-top: 1rem;
}

.about-member {
  position: relative;
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 210, 77, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 182, 0, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-member::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08), transparent 45%, rgba(255, 59, 141, 0.08));
  pointer-events: none;
}

.about-member h3 {
  margin: 0;
  font-family: var(--headline-font);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.about-member__role {
  margin-top: 0.2rem;
  color: var(--gold) !important;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-member__avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-member__avatar {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 144, 0.3);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 0.45rem rgba(255, 168, 0, 0.08),
    0 16px 30px rgba(0, 0, 0, 0.22);
}

.about-member__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-member__copy p:last-child {
  margin-top: 0.55rem;
}

.feature-card,
.step-card {
  padding: 1.35rem;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1;
}

.section--story {
  padding-top: clamp(1rem, 3vw, 2rem);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.story__quote {
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 150, 0, 0.2), transparent 34%),
    var(--panel-strong);
}

.story__steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem 1rem;
  align-items: start;
}

.step-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.2), rgba(255, 59, 141, 0.22));
  color: var(--gold);
  font-family: var(--headline-font);
  font-size: 1.05rem;
  font-weight: 900;
}

.step-card h3,
.step-card p {
  grid-column: 2;
}

.section--contact {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-panel__copy {
  max-width: 48rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-card {
  display: block;
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 130, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.contact-card--muted {
  opacity: 0.9;
}

.contact-card__label,
.contact-card__note {
  display: block;
}

.contact-card__label {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}

.contact-card__note {
  margin-top: 0.55rem;
  color: var(--muted);
}

.footer {
  padding: 0 1.4rem 2rem;
  text-align: center;
  color: rgba(255, 246, 232, 0.56);
}

[data-reveal],
[data-parallax],
[data-drift] {
  --reveal-y: 0px;
  --parallax-y: 0px;
  --drift-x: 0px;
  --drift-r: 0deg;
  --drift-scale: 1;
  --reveal-delay: 0ms;
}

[data-reveal] {
  opacity: 0;
  --reveal-y: 34px;
  transform: translate3d(var(--drift-x), calc(var(--reveal-y) + var(--parallax-y)), 0) rotate(var(--drift-r)) scale(var(--drift-scale));
  transition:
    opacity 720ms ease,
    transform 960ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
}

[data-reveal].is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

@media (max-width: 1100px) {
  .hero__stage-inner {
    width: min(1180px, calc(100% - 2.2rem));
  }

  .hero__showcase {
    width: min(17rem, 32vw);
  }

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

  .about-members {
    grid-template-columns: 1fr;
  }

  .section__heading h2,
  .story__quote h2,
  .contact-panel__copy h2 {
    font-size: clamp(1.9rem, 4.8vw, 3.6rem);
  }
}

@media (max-width: 900px) {
  .story {
    grid-template-columns: 1fr;
  }

  .hero__stage-inner {
    width: calc(100% - 2rem);
  }

  .hero__brand-stack {
    top: 1rem;
    width: min(30rem, 72vw);
  }

  .hero__showcase {
    top: clamp(7rem, 16vw, 8.5rem);
    width: min(15rem, 38vw);
  }

  .hero__content {
    text-align: center;
  }

  .hero__flyer-subtitle {
    justify-items: center;
    transform: rotate(-1deg);
    transform-origin: center;
    margin-left: 0;
  }

  .hero__tagline {
    max-width: 18ch;
    font-size: clamp(1.3rem, 5.5vw, 2.2rem);
  }

  .hero__lead {
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__meta {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: clamp(3.2rem, 10vw, 5rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .separator {
    width: min(1120px, calc(100% - 1.4rem));
  }
}

@media (max-width: 640px) {
  .section {
    padding-inline: 1rem;
  }

  .hero__content {
    margin-top: clamp(-2.4rem, -7vw, -1rem);
  }

  .hero__stage-inner {
    width: calc(100% - 1rem);
  }

  .hero__brand-stack {
    top: 0.8rem;
    width: min(23rem, 76vw);
  }

  .hero__showcase {
    top: clamp(6.8rem, 22vw, 8.8rem);
    width: min(13rem, 54vw);
    min-height: auto;
    padding: 0.85rem;
  }

  .hero__showcase-head,
  .hero__showcase-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase__eq {
    height: 5.5rem;
    gap: 0.16rem;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card h3,
  .step-card p {
    grid-column: 1;
  }

  .feature-card,
  .step-card,
  .contact-card,
  .contact-panel {
    padding: 1rem;
  }

  .hero__tagline {
    max-width: none;
  }

  .hero__flyer-subtitle {
    gap: 0.3rem;
  }

  .hero__genreline {
    line-height: 1.45;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  .hero__meta li {
    width: 100%;
  }

  .marquee {
    gap: 1.25rem;
    font-size: 1rem;
  }

  .marquee span::after {
    margin-left: 1.25rem;
  }

  .separator {
    width: calc(100% - 1rem);
  }
}

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

  .marquee {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
