:root {
  --black: #050505;
  --ink: #121212;
  --white: #f8f6ef;
  --muted: #c8c1b0;
  --acid: #d7ff34;
  --hot: #ff4d2e;
  --cyan: #28d4ff;
  --line: rgba(248, 246, 239, 0.16);
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header-height: 73px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: inherit;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--acid);
  font-weight: 900;
}

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

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

.anchor-alias {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  aspect-ratio: 1;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active,
footer a:hover {
  color: var(--acid);
  border-bottom-color: currentColor;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-bar {
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

.nav-open .nav-toggle-bar {
  background: transparent;
}

.nav-open .nav-toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

.section,
.section-dark {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 56px);
}

.section {
  color: var(--ink);
  background: var(--white);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(215, 255, 52, 0.07), transparent 42%),
    linear-gradient(315deg, rgba(255, 77, 46, 0.14), transparent 38%),
    var(--black);
}

.hero-carousel {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}

.carousel-slide {
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 78px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.03) 44%, rgba(0, 0, 0, 0.36));
  content: "";
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 900ms ease;
}

.carousel-slide.is-active img {
  transform: scale(1);
}

.carousel-slide:nth-child(1) img {
  object-position: 72% center;
}

.carousel-slide:nth-child(2) img {
  object-position: 58% center;
}

.carousel-slide:nth-child(3) img {
  object-position: 50% 38%;
}

.carousel-copy,
.section-heading,
.video-section > div,
.bio > div,
.join > div,
.socials-copy {
  max-width: 780px;
}

.carousel-copy {
  position: relative;
  z-index: 1;
}

.carousel-slide:first-child {
  justify-items: end;
}

.carousel-slide:first-child .carousel-copy {
  text-align: right;
}

.carousel-slide:first-child .button-row {
  justify-content: flex-end;
}

.carousel-slide:first-child h1 {
  font-size: clamp(2.5rem, 6.3vw, 6.2rem);
}

.carousel-slide:first-child .lede {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.carousel-slide:first-child .eyebrow {
  font-size: 0.68rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.6rem, 9vw, 8.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5.2vw, 5.6rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.lede,
.hero-carousel p:not(.eyebrow),
.video-section p,
.join p,
.bio p,
.socials-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.button-row,
.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid currentColor;
  border-radius: 0;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary,
button {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  color: var(--black);
  background: var(--cyan);
  border-color: var(--cyan);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  min-height: 0;
  padding: 0;
  color: var(--white);
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.carousel-control::before {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.carousel-prev {
  left: clamp(12px, 2vw, 24px);
}

.carousel-prev::before {
  transform: rotate(-135deg);
}

.carousel-next {
  right: clamp(12px, 2vw, 24px);
}

.carousel-next::before {
  transform: rotate(45deg);
}

.carousel-dots {
  position: absolute;
  left: clamp(20px, 6vw, 78px);
  bottom: clamp(24px, 5vw, 52px);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 42px;
  height: 4px;
  min-height: 0;
  padding: 0;
  background: rgba(248, 246, 239, 0.44);
  border: 0;
}

.carousel-dots button.is-active {
  background: var(--acid);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
}

.release-grid,
.product-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.release-card,
.product-card {
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.music-player {
  width: min(100%, var(--max));
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 255, 52, 0.14), transparent 36%),
    var(--black);
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.music-player img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.music-player h3 {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

.music-player p:not(.eyebrow) {
  margin: 10px 0 18px;
  color: var(--muted);
}

.music-player audio {
  width: 100%;
  max-width: 720px;
  accent-color: var(--acid);
}

.music-experience-choices {
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(110px, 220px);
  align-items: stretch;
  gap: 60px;
  margin: 0 auto 34px !important;
  padding: 8px 0;
}

.music-experience-choice {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.music-experience-choice > :last-child {
  align-self: start;
}

.music-experience-choice .eyebrow {
  margin: 0;
}

.longplay-entry-area {
  padding-right: 0;
  border-right: 0;
}

.longplay-entry {
  width: min(100%, 220px);
  min-height: 0;
  padding: 0;
  color: var(--acid);
  background: transparent;
  border: 0;
  box-shadow: 6px 6px 0 rgba(40, 212, 255, 0.42);
}

.longplay-entry img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.longplay-entry:hover {
  background: transparent;
  box-shadow: 8px 8px 0 rgba(215, 255, 52, 0.52);
}

.release-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  padding: 0 0 18px;
  text-align: left;
}

.release-card h3,
.product-card h3,
.product-card p {
  padding: 18px 18px 0;
}

.release-card h3 {
  padding-bottom: 8px;
}

.release-card span {
  padding: 0 18px;
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-card.is-active {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}

.release-card:hover img,
.product-card:hover img,
.gallery-grid img:hover {
  transform: scale(1.04);
}

.release-card img,
.product-card img,
.gallery-grid img {
  transition: transform 240ms ease;
}

.video-section,
.bio,
.join {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px var(--shadow);
  background: var(--black);
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-playlist-link {
  width: fit-content;
  margin-top: 20px;
}

.merch-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(215, 255, 52, 0.18), transparent 18%),
    radial-gradient(circle at 82% 32%, rgba(130, 35, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 0, 38, 0.9) 48%, rgba(0, 0, 0, 0.95)),
    var(--black);
  border-block: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.merch-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(215, 255, 52, 0.08) 0 1px, transparent 1px 120px);
  opacity: 0.32;
  content: "";
  pointer-events: none;
}

.merch-section::after {
  position: absolute;
  inset: auto -10% -45% 20%;
  z-index: -1;
  height: 70%;
  background: radial-gradient(ellipse, rgba(215, 255, 52, 0.17), transparent 64%);
  content: "";
  animation: merchPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.merch-intro {
  max-width: 720px;
}

.merch-intro h2 {
  max-width: 860px;
  text-shadow: 0 0 24px rgba(215, 255, 52, 0.22), 0 0 44px rgba(130, 35, 255, 0.3);
}

.merch-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.merch-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(215, 255, 52, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.merch-card:hover,
.merch-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--acid);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.46), 0 0 28px rgba(215, 255, 52, 0.16);
}

.merch-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}

.merch-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.merch-card h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
}

.merch-card p {
  margin: 0;
  color: var(--muted);
}

.merch-card .button {
  width: 100%;
  margin-top: 8px;
}

@keyframes merchPulse {
  from {
    opacity: 0.45;
    transform: translate3d(-4%, 0, 0);
  }

  to {
    opacity: 0.9;
    transform: translate3d(4%, -4%, 0);
  }
}

.socials-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(40, 212, 255, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(215, 255, 52, 0.16), transparent 44%),
    var(--black);
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.social-card {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-card::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/logos/nugatron-mark.png");
  background-repeat: no-repeat;
  background-size: 210%;
  opacity: 0.42;
  mix-blend-mode: screen;
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.02));
  content: "";
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--acid);
  background: rgba(255, 255, 255, 0.13);
}

.social-card:hover::before {
  opacity: 0.54;
  transform: scale(1.04);
}

.social-card span {
  position: relative;
  z-index: 1;
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  position: relative;
  z-index: 1;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.instagram {
  background: linear-gradient(135deg, rgba(255, 77, 46, 0.45), rgba(40, 212, 255, 0.12)), rgba(255, 255, 255, 0.08);
}

.instagram::before {
  background-position: 18% 42%;
}

.tiktok {
  background: linear-gradient(135deg, rgba(40, 212, 255, 0.38), rgba(255, 77, 46, 0.16)), rgba(255, 255, 255, 0.08);
}

.tiktok::before {
  background-position: 52% 24%;
}

.facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.48), rgba(215, 255, 52, 0.1)), rgba(255, 255, 255, 0.08);
}

.facebook::before {
  background-position: 82% 58%;
}

.youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.48), rgba(40, 212, 255, 0.12)), rgba(255, 255, 255, 0.08);
}

.youtube::before {
  background-position: 34% 72%;
}

.gallery-grid {
  width: min(100%, 1360px);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 12px;
  scrollbar-color: var(--hot) rgba(0, 0, 0, 0.12);
}

.gallery-item,
.novel-page {
  flex: 0 0 clamp(150px, 16vw, 230px);
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  background: #111;
  border: 0;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111;
}

.spotify-playlist {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.spotify-playlist .section-heading {
  margin-bottom: 22px;
  text-align: left;
}

.spotify-playlist iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  background: var(--black);
}

.image-browser {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(0, 0, 0, 0.9);
}

.image-browser[hidden] {
  display: none;
}

.image-browser figure {
  min-width: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.image-browser img {
  max-width: min(100%, calc(100vw - 180px));
  max-height: calc(100svh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.image-browser figcaption {
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.image-browser-close,
.image-browser-control {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line);
  border-radius: 999px;
}

.image-browser-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  min-height: 46px;
  padding: 0;
}

.image-browser-close::before,
.image-browser-close::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.image-browser-close::before {
  transform: rotate(45deg);
}

.image-browser-close::after {
  transform: rotate(-45deg);
}

.image-browser-control {
  width: 54px;
  min-height: 54px;
  padding: 0;
}

.image-browser-control::before {
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.image-browser-prev::before {
  transform: rotate(-135deg);
}

.image-browser-next::before {
  transform: rotate(45deg);
}

.novel {
  text-align: center;
}

.novel .section-heading {
  text-align: center;
}

.novel-cover {
  width: min(100%, 760px);
  margin: 0 auto 26px;
  border: 1px solid var(--line);
}

.novel-pages {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.novel-page {
  flex: initial;
}

.novel-page.browser-only {
  display: none !important;
}

.novel-pages img {
  width: 100%;
  aspect-ratio: 612 / 792;
  object-fit: contain;
  background: var(--black);
  border: 1px solid var(--line);
}

.novel-note {
  width: min(100%, var(--max));
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.bio {
  color: var(--ink);
}

.bio img {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(18px 18px 0 var(--acid));
}

.bio .eyebrow {
  color: var(--hot);
}

.bio p {
  color: #383838;
}

.store .section-heading {
  text-align: center;
}

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

.product-card {
  padding-bottom: 20px;
}

.product-card p {
  margin: 0 0 18px;
  color: var(--acid);
  font-weight: 900;
}

.product-card .button {
  margin-left: 18px;
}

.join form {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.beehiiv-embed {
  min-width: 0;
  min-height: 220px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(215, 255, 52, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.beehiiv-embed iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

input {
  flex: 1 1 220px;
  min-height: 52px;
  min-width: 0;
  padding: 0 16px;
  color: var(--white);
  background: #111;
  border: 2px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  min-height: clamp(360px, 46vw, 620px);
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 140px) 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 50%, rgba(215, 255, 52, 0.18), transparent 9%),
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.42), transparent 10%),
    radial-gradient(circle at 76% 52%, rgba(40, 212, 255, 0.18), transparent 11%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(25, 0, 45, 0.72), rgba(0, 0, 0, 0.9)),
    var(--black);
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: -18% -8%;
  background-image: url("assets/logos/nugatron-name.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 77% auto;
  opacity: 0.76;
  filter: saturate(1.45) contrast(1.1);
  content: "";
}

.site-footer::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.72));
  content: "";
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 720px);
  padding: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.88);
}

.footer-ahip {
  width: clamp(120px, 13vw, 190px);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.82));
}

.footer-content p,
.footer-email {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
}

.footer-email:hover {
  color: var(--acid);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.footer-socials a {
  width: 54px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-socials a:hover {
  color: var(--black);
  background: var(--acid);
  transform: translateY(-4px);
}

.error-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
}

.error-page .brand {
  margin-bottom: 28px;
}

.error-page h1 {
  font-size: clamp(4rem, 12vw, 10rem);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .carousel-slide,
  .carousel-slide img {
    transition: none;
  }

  .merch-section::after {
    animation: none;
  }
}

@media (max-width: 940px) {
  .video-section,
  .bio,
  .join,
  .merch-section,
  .socials-section {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 720px;
  }

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

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

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

@media (max-width: 720px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 26px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  .section,
  .section-dark {
    padding: 56px 18px;
  }

  .hero-carousel {
    min-height: 690px;
  }

  .carousel-slide {
    align-items: center;
    padding: 92px 18px 96px;
  }

  .carousel-slide::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.1)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.04) 54%, rgba(0, 0, 0, 0.2));
  }

  .carousel-slide img {
    height: 74%;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  .carousel-slide.is-active img {
    transform: none;
  }

  .carousel-slide:nth-child(1) img,
  .carousel-slide:nth-child(2) img,
  .carousel-slide:nth-child(3) img {
    object-position: center center;
  }

  .carousel-copy {
    max-width: 100%;
  }

  .carousel-slide:first-child .carousel-copy {
    text-align: right;
  }

  .release-grid,
  .product-grid,
  .merch-grid,
  .novel-pages {
    grid-template-columns: 1fr;
  }

  .music-player {
    grid-template-columns: 1fr;
  }

  .music-experience-choices,
  .music-experience-choice {
    width: 100%;
  }

  .music-experience-choices {
    grid-template-columns: minmax(0, 1.35fr) minmax(100px, 0.65fr);
    gap: 24px;
  }

  .music-experience-choice {
    min-width: 0;
    justify-items: stretch;
    text-align: left;
  }

  .longplay-entry-area {
    padding: 0 12px 0 0;
    border-top: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.18);
    border-left: 0;
  }

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

  .button,
  button {
    width: 100%;
  }

  .carousel-control {
    display: none;
  }

  .carousel-dots {
    right: 18px;
    left: 18px;
  }

  .carousel-dots button {
    flex: 1;
  }

  .image-browser {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
  }

  .image-browser figure {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .image-browser img {
    max-width: calc(100vw - 36px);
    max-height: 78svh;
  }

  .image-browser-control {
    width: 100%;
    border-radius: 0;
  }
}
