@font-face {
  font-family: "Pretendard";
  src: url("assets/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050b18;
  --bg-soft: #081120;
  --surface: #0b1425;
  --surface-2: #101c30;
  --line: rgba(167, 181, 198, 0.18);
  --line-strong: rgba(167, 181, 198, 0.34);
  --text: #f4f8fb;
  --muted: #a7b5c6;
  --dim: #6f829a;
  --cyan: #16dff2;
  --cyan-soft: rgba(22, 223, 242, 0.12);
  --gold: #d7b56d;
  --gold-soft: rgba(215, 181, 109, 0.14);
  --container: min(1440px, calc(100vw - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin: 0;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

::selection {
  background: var(--cyan);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 74px;
  border-color: var(--line);
  background: rgba(5, 11, 24, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.brand-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(22, 223, 242, 0.48);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.site-nav > a:not(.nav-vote) {
  position: relative;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav > a:not(.nav-vote)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--cyan);
  content: "";
  transition: transform 0.3s var(--ease);
}

.site-nav > a:hover {
  color: var(--text);
}

.site-nav > a:not(.nav-vote):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-shop {
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
}

.nav-vote {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(22, 223, 242, 0.54);
  background: rgba(22, 223, 242, 0.05);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-vote:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--bg);
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  position: absolute;
  right: 5px;
  width: 28px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-button > span:nth-child(2) { top: 16px; }
.menu-button > span:nth-child(3) { top: 27px; }
.menu-button[aria-expanded="true"] > span:nth-child(2) { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 46px 70px;
  min-height: 100svh;
  padding: clamp(150px, 15vh, 210px) max(48px, calc((100vw - 1440px) / 2)) 64px;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.1) 0%, rgba(5, 11, 24, 0.26) 51%, rgba(5, 11, 24, 0.78) 100%),
    radial-gradient(circle at 78% 40%, #142b42 0%, #091422 34%, var(--bg) 69%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(167, 181, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 181, 198, 0.08) 1px, transparent 1px);
  background-size: 9.1vw 9.1vw;
  mask-image: linear-gradient(90deg, #000 0%, transparent 65%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow--cyan {
  top: 8%;
  left: -250px;
  background: rgba(22, 223, 242, 0.16);
}

.hero-glow--gold {
  right: -260px;
  bottom: -100px;
  background: rgba(215, 181, 109, 0.14);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 830px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.eyebrow span + span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.eyebrow span + span::before {
  width: 42px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(52px, 5.55vw, 92px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.hero h1 em {
  position: relative;
  color: var(--text);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), rgba(22, 223, 242, 0.12));
  box-shadow: 0 0 22px rgba(22, 223, 242, 0.38);
  content: "";
}

.hero-lead {
  max-width: 620px;
  margin-top: 38px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 420;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

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

.button--primary {
  background: var(--cyan);
  color: #021117;
}

.button--primary:hover {
  background: #77f4ff;
  box-shadow: 0 12px 40px rgba(22, 223, 242, 0.18);
}

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

.button--ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(31vw, 510px);
  min-width: 420px;
  aspect-ratio: 0.82;
  perspective: 1400px;
}

.beam {
  position: absolute;
  z-index: -1;
  top: -17%;
  right: -2%;
  width: 82%;
  height: 140%;
  transform: rotate(13deg);
  background: linear-gradient(180deg, rgba(22, 223, 242, 0), rgba(22, 223, 242, 0.11) 24%, rgba(22, 223, 242, 0.02) 78%, rgba(22, 223, 242, 0));
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  filter: blur(2px);
}

.hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 248, 251, 0.21);
  background: var(--surface);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 11, 24, 0.98) 100%);
  content: "";
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  z-index: 3;
  top: 0;
  right: 5%;
  width: 68%;
  height: 87%;
  transform: rotateY(-8deg) rotateZ(1deg);
}

.hero-card--main img {
  object-position: 50% 32%;
}

.hero-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 14px;
}

.hero-card figcaption span {
  grid-row: span 2;
  align-self: stretch;
  padding-right: 14px;
  border-right: 1px solid var(--line-strong);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.hero-card figcaption strong {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-card figcaption small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.hero-card--back {
  width: 52%;
  height: 71%;
  opacity: 0.55;
  filter: saturate(0.68) brightness(0.7);
}

.hero-card--back-a {
  z-index: 1;
  top: 8%;
  left: 0;
  transform: rotateY(13deg) rotateZ(-5deg) translateZ(-80px);
}

.hero-card--back-a img {
  object-position: 52% 34%;
}

.hero-card--back-b {
  z-index: 2;
  right: -5%;
  bottom: 1%;
  width: 45%;
  height: 63%;
  transform: rotateY(-14deg) rotateZ(6deg) translateZ(-30px);
}

.hero-card--back-b img {
  object-position: 50% 30%;
}

.hero-caption {
  position: absolute;
  right: 8%;
  bottom: 3%;
  left: 8%;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-meta {
  z-index: 2;
  display: grid;
  grid-column: 1 / span 2;
  grid-template-columns: repeat(3, minmax(0, 210px));
  gap: 0;
  width: fit-content;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  min-width: 210px;
  padding: 22px 26px 0 0;
}

.hero-meta > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.hero-meta span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.hero-meta p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
  color: var(--dim);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--cyan);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 15% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(110px, 10vw, 170px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.section-head h2,
.experience h2,
.statement h2 {
  font-size: clamp(42px, 4.4vw, 70px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.14;
}

.section-intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-intro span {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.lineup {
  position: relative;
}

.lineup::before {
  position: absolute;
  z-index: -1;
  top: 28%;
  left: 50%;
  width: 100vw;
  height: 42%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(11, 20, 37, 0.72), transparent);
  content: "";
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 68px;
}

.profile-card:nth-child(even) {
  padding-top: 54px;
}

.profile-image {
  position: relative;
  display: block;
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.profile-image::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.profile-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 11, 24, 0.82) 100%);
  content: "";
  opacity: 0.46;
  transition: opacity 0.35s ease;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}

.profile-card:nth-child(1) img { object-position: 50% 28%; }
.profile-card:nth-child(2) img { object-position: 50% 25%; }
.profile-card:nth-child(3) img { object-position: 50% 35%; }
.profile-card:nth-child(4) img { object-position: 50% 30%; }

.profile-action {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 36px);
  padding-top: 13px;
  transform: translateY(12px);
  border-top: 1px solid rgba(244, 248, 251, 0.36);
  color: var(--text);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.15em;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.profile-image:hover::before {
  border-color: rgba(22, 223, 242, 0.8);
  box-shadow: inset 0 0 54px rgba(22, 223, 242, 0.07);
}

.profile-image:hover::after {
  opacity: 0.82;
}

.profile-image:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

.profile-image:hover .profile-action {
  transform: translateY(0);
  opacity: 1;
}

.profile-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 14px;
  padding: 22px 4px 0;
}

.profile-info > span {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.profile-info h3 {
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.profile-info a {
  align-self: end;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  transition: color 0.25s ease;
}

.profile-info a:hover {
  color: var(--cyan);
}

.link-note {
  max-width: 600px;
  margin: 64px 0 0 auto;
  padding: 18px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  color: var(--dim);
  font-size: 12px;
  line-height: 1.75;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.72fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(48px, calc((100vw - 1440px) / 2));
  padding-left: max(48px, calc((100vw - 1440px) / 2));
  background:
    linear-gradient(90deg, rgba(11, 20, 37, 0.95), rgba(5, 11, 24, 0.58)),
    radial-gradient(circle at 80% 50%, rgba(22, 223, 242, 0.1), transparent 38%);
}

.experience-copy > p:not(.section-label) {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.journey {
  margin-top: 50px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.journey li > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.journey strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.journey li p {
  margin-top: 7px;
  color: var(--dim);
  font-size: 14px;
}

.city-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(5, 11, 24, 0.22), rgba(5, 11, 24, 0.94)),
    radial-gradient(circle at 50% 34%, #17304b 0%, #0d1a2b 36%, #060c17 75%);
}

.city-stage::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(167, 181, 198, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 181, 198, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(#000, transparent 85%);
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(22, 223, 242, 0.13);
  border-radius: 50%;
}

.stage-orbit--one { transform: rotateX(70deg); }
.stage-orbit--two { transform: rotateX(70deg) scale(0.72); border-color: rgba(215, 181, 109, 0.14); }

.media-totem {
  position: relative;
  width: 270px;
  height: 530px;
  transform: translateY(-18px) rotateY(-7deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.54));
}

.totem-face {
  position: absolute;
  overflow: hidden;
  border: 4px solid #0b1626;
  background: #07101c;
}

.totem-face--front {
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(244, 248, 251, 0.18), 0 0 44px rgba(22, 223, 242, 0.11);
}

.totem-face--front::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 11, 24, 0.97) 100%);
  content: "";
}

.totem-face--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.totem-face--front > div {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 24px;
  left: 20px;
}

.totem-face--front span,
.totem-face--front small {
  display: block;
  color: var(--cyan);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.totem-face--front strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.totem-face--front small { color: var(--muted); }

.totem-face--side {
  top: 0;
  right: -72px;
  bottom: 0;
  width: 72px;
  transform: rotateY(90deg);
  transform-origin: left center;
  background:
    radial-gradient(circle at 60% 30%, rgba(215, 181, 109, 0.38), transparent 34%),
    linear-gradient(160deg, #06172a, #0b1425 46%, #09293c);
}

.totem-face--side span {
  position: absolute;
  top: 30px;
  left: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  writing-mode: vertical-rl;
}

.stage-floor {
  position: absolute;
  z-index: -2;
  right: 10%;
  bottom: -12%;
  left: 10%;
  height: 40%;
  transform: perspective(420px) rotateX(60deg);
  border-top: 1px solid rgba(22, 223, 242, 0.24);
  background: radial-gradient(ellipse, rgba(22, 223, 242, 0.12), transparent 62%);
  filter: blur(2px);
}

.stage-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.statement {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(22, 223, 242, 0.08), transparent 42%),
    var(--bg);
}

.statement::after {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 -12px 70px 10px rgba(22, 223, 242, 0.16);
  content: "";
}

.statement-track {
  position: absolute;
  top: 84px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  color: rgba(167, 181, 198, 0.15);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
}

.statement-track i {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border: 2px solid rgba(22, 223, 242, 0.25);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.statement-inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 96px));
  padding-top: 100px;
  text-align: center;
}

.statement-inner > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.statement h2 em {
  color: var(--gold);
  font-style: normal;
}

.statement-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--text);
}

.partners {
  padding-bottom: clamp(90px, 8vw, 130px);
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-list article {
  min-height: 320px;
  padding: 36px 34px;
  transition: background 0.35s ease;
}

.partner-list article + article {
  border-left: 1px solid var(--line);
}

.partner-list article:hover {
  background: var(--surface);
}

.partner-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.partner-list strong {
  display: block;
  min-height: 96px;
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.partner-list p {
  margin-top: 24px;
  color: var(--dim);
  font-size: 13px;
}

.partner-note {
  margin-top: 22px;
  color: var(--dim);
  font-size: 11px;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding: 68px max(48px, calc((100vw - 1440px) / 2)) 42px;
  border-top: 1px solid var(--line);
  background: #030812;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
}

.footer-brand strong {
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.footer-brand p {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: start;
  gap: 28px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--cyan); }

.footer-notice {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  max-width: 980px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(215, 181, 109, 0.05);
  color: var(--dim);
  font-size: 11px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  color: #506176;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.mobile-actions {
  display: none;
}

.reveal {
  transform: translateY(34px);
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  :root { --container: calc(100vw - 64px); }

  .site-header { padding-inline: 32px; }
  .site-nav { gap: 22px; }
  .site-nav > a:not(.nav-vote, .nav-shop) { display: none; }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
    gap: 42px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero-visual {
    width: 390px;
    min-width: 360px;
  }

  .scroll-cue { display: none; }

  .experience {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
    gap: 60px;
    padding-inline: 32px;
  }

  .city-stage { min-height: 620px; }
  .media-totem { width: 230px; height: 450px; }
}

@media (max-width: 900px) {
  :root { --container: calc(100vw - 40px); }

  .site-header { height: 70px; padding-inline: 20px; }
  .site-header.is-scrolled,
  .site-header.is-open { height: 66px; }
  .site-header.is-open {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }
  .menu-button { display: block; }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 104px 24px 54px;
    transform: translateY(-16px);
    visibility: hidden;
    background:
      radial-gradient(circle at 80% 20%, rgba(22, 223, 242, 0.12), transparent 32%),
      rgba(5, 11, 24, 0.98);
    opacity: 0;
    transition: opacity 0.32s ease, transform 0.42s var(--ease), visibility 0.32s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a,
  .site-nav > a:not(.nav-vote, .nav-shop) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 4px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 18px;
  }

  .site-nav > a:not(.nav-vote)::after { display: none; }
  .site-nav .nav-shop { padding-left: 4px; border-left: 0; }
  .nav-vote { margin-top: 28px; padding-inline: 18px !important; border: 1px solid var(--cyan) !important; }

  .hero {
    display: block;
    min-height: auto;
    padding: 136px 20px 70px;
  }

  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(44px, 10.3vw, 72px); }
  .hero-lead { max-width: 560px; }

  .hero-visual {
    width: min(600px, 92vw);
    min-width: 0;
    margin: 80px auto 0;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin-top: 70px;
  }

  .hero-meta > div {
    min-width: 0;
    padding-right: 16px;
  }

  .hero-meta > div + div { padding-left: 16px; }
  .section { padding-block: 100px; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-intro { max-width: 560px; }

  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 18px;
  }

  .profile-card:nth-child(even) { padding-top: 48px; }

  .experience {
    grid-template-columns: 1fr;
    padding: 100px 20px;
  }

  .experience-copy { max-width: 760px; }
  .city-stage { min-height: min(740px, 112vw); }
  .media-totem { width: min(280px, 42vw); height: min(550px, 82vw); }

  .statement { min-height: 680px; }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-list article {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 28px;
    min-height: 0;
    padding: 32px 20px;
  }

  .partner-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .partner-list span { margin: 0; }
  .partner-list strong { min-height: 0; }
  .partner-list p { grid-column: 2; margin-top: 0; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 60px 20px 110px;
  }

  .footer-links { flex-wrap: wrap; }
  .footer-meta { gap: 20px; }
}

@media (max-width: 600px) {
  :root { --container: calc(100vw - 32px); }

  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .brand { gap: 10px; font-size: 15px; }
  .brand-mark { width: 8px; height: 8px; }

  .hero { padding: 118px 16px 60px; }
  .eyebrow { gap: 10px; margin-bottom: 26px; font-size: 9px; }
  .eyebrow span + span::before { width: 22px; }
  .hero h1 { font-size: clamp(42px, 13.7vw, 62px); line-height: 1.06; }
  .hero h1 em { white-space: normal; }
  .hero h1 em::after { height: 3px; }
  .hero-lead { margin-top: 30px; font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 34px; }
  .button { width: 100%; }

  .hero-visual {
    width: 100%;
    aspect-ratio: 0.82;
    margin-top: 64px;
  }

  .hero-card--main { right: 7%; width: 69%; }
  .hero-card figcaption { right: 15px; bottom: 16px; left: 15px; gap: 0 9px; }
  .hero-card figcaption span { padding-right: 9px; }
  .hero-card figcaption strong { font-size: 22px; }

  .hero-meta {
    display: block;
    margin-top: 52px;
  }

  .hero-meta > div,
  .hero-meta > div + div {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 72px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .hero-meta p br { display: none; }
  .section { padding-block: 86px; }
  .section-head { padding-bottom: 34px; }
  .section-head h2,
  .experience h2,
  .statement h2 { font-size: clamp(38px, 11.7vw, 52px); }

  .lineup-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    margin-top: 46px;
  }

  .profile-card:nth-child(even) { padding-top: 0; }
  .profile-image { aspect-ratio: 0.78; }
  .profile-action { transform: translateY(0); opacity: 1; }
  .profile-info h3 { font-size: 30px; }
  .link-note { margin-top: 52px; padding-left: 18px; }

  .experience { gap: 68px; padding: 86px 16px; }
  .experience-copy > p:not(.section-label) { font-size: 15px; }
  .journey li { grid-template-columns: 38px 1fr; gap: 10px; }

  .city-stage { min-height: 610px; }
  .media-totem { width: 210px; height: 410px; }
  .totem-face--side { right: -52px; width: 52px; }
  .stage-orbit { width: 410px; height: 410px; }
  .stage-note { right: 14px; bottom: 14px; left: 14px; }

  .statement { min-height: 620px; }
  .statement-track { top: 64px; font-size: 62px; }
  .statement-inner { width: calc(100vw - 32px); padding-top: 74px; }
  .statement-inner > p { font-size: 13px; }
  .statement-actions { flex-direction: column; gap: 22px; margin-top: 38px; }

  .partner-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-list strong { font-size: 30px; }
  .partner-list p { grid-column: 1; }
  .partner-note { text-align: left; }

  .footer-links { display: grid; gap: 18px; }
  .footer-meta { flex-direction: column; padding-top: 28px; }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    min-height: calc(62px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line-strong);
    background: rgba(5, 11, 24, 0.94);
    backdrop-filter: blur(16px);
    transition: transform 0.32s var(--ease), visibility 0.32s ease;
  }

  .menu-open .mobile-actions {
    transform: translateY(110%);
    visibility: hidden;
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-actions a + a {
    background: var(--cyan);
    color: var(--bg);
  }
}

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

@media (forced-colors: active) {
  .brand-mark,
  .statement-track i { border-color: currentColor; }
  .hero h1 em::after,
  .button--primary { background: ButtonText; }
}
