:root {
  --bg: #050508;
  --bg-soft: #0c0c12;
  --panel: rgba(255, 255, 255, .045);
  --line: rgba(255, 255, 255, .11);
  --text: #f5f5f7;
  --muted: #a5a5b2;
  --cyan: #00f5ff;
  --magenta: #ff2bd6;
  --violet: #8d45ff;
  --max: 1180px;
  --radius: 24px;
  --shadow-cyan: 0 0 28px rgba(0, 245, 255, .24);
  --shadow-magenta: 0 0 28px rgba(255, 43, 214, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(141, 69, 255, .12), transparent 27rem),
    radial-gradient(circle at 85% 20%, rgba(0, 245, 255, .08), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 1rem;
  z-index: 999;
  background: white;
  color: black;
  padding: .7rem 1rem;
  border-radius: 10px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 8, .72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, .35));
}

.nav-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  border-radius: 12px;
  padding: .55rem .75rem;
}

.nav {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 78px;
  padding: .6rem;
  border: 1px solid var(--line);
  background: #0a0a10;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}

.nav.open {
  display: grid;
}

.nav a {
  padding: .8rem 1rem;
  color: var(--muted);
  border-radius: 10px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, .06);
}

.hero {
  min-height: min(850px, 88vh);
  display: grid;
  align-content: start;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero.compact {
  min-height: 560px;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 12vw, 7.8rem);
  line-height: .88;
  margin: .5rem 0 1.25rem;
  letter-spacing: -.065em;
}

h2 {
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: -.045em;
}

h3 {
  font-size: 1.35rem;
  margin-top: 0;
}

.lead {
  max-width: 670px;
  color: #c8c8d0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 750;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(110deg, var(--cyan), var(--violet) 48%, var(--magenta));
  color: #07070b;
  border: 0;
  box-shadow: var(--shadow-cyan);
}

.btn-secondary {
  background: rgba(255, 255, 255, .035);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.logo-stage {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
}

.logo-stage::before {
  content: "";
  width: 68%;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 69, 255, .28), transparent 66%);
  filter: blur(18px);
}

.hero-logo {
  width: min(86vw, 520px);
  position: relative;
  filter: drop-shadow(0 0 14px rgba(0, 245, 255, .36)) drop-shadow(0 0 30px rgba(255, 43, 214, .2));
}

.section {
  padding: 5.5rem 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.7;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022));
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  overflow: hidden;
}

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

.glow-cyan {
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), var(--shadow-cyan);
}

.glow-magenta {
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), var(--shadow-magenta);
}

.artwork {
  min-height: 340px;
  border-radius: 20px;
  display: grid;
  place-items: end start;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  background: #111;
}

.artwork::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 62%);
}

.artwork>* {
  position: relative;
  z-index: 1;
}

.artwork.music {
  background: radial-gradient(circle at 40% 38%, rgba(255, 43, 214, .72), transparent 18%), radial-gradient(circle at 65% 46%, rgba(0, 245, 255, .7), transparent 20%), linear-gradient(145deg, #11031d, #02171c 56%, #09030f);
}

.artwork.photo {
  background: linear-gradient(110deg, rgba(0, 245, 255, .2), transparent 35%), linear-gradient(320deg, rgba(255, 43, 214, .28), transparent 40%), repeating-linear-gradient(90deg, #07080a 0 10%, #0d1115 10% 20%);
}

.meta {
  color: var(--cyan);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: .4rem;
  color: white;
  font-weight: 750;
}

.text-link::after {
  content: "↗";
  color: var(--cyan);
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery figure {
  margin: 0;
  min-height: 240px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
}

.gallery figure:nth-child(3n+1) {
  background: linear-gradient(145deg, #0b0e10, #1a0730);
}

.gallery figure:nth-child(3n+2) {
  background: linear-gradient(145deg, #031719, #24051f);
}

.gallery figure:nth-child(3n+3) {
  background: linear-gradient(145deg, #17051c, #021b20);
}

.gallery .visual {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, .2);
  transform: rotate(-7deg);
  box-shadow: 0 0 35px rgba(0, 245, 255, .15);
}

.gallery figure:nth-child(even) .visual {
  transform: rotate(7deg);
  box-shadow: 0 0 35px rgba(255, 43, 214, .15);
}

.gallery figcaption {
  position: absolute;
  inset: auto 1rem 1rem;
  color: #d6d6dd;
  font-size: .9rem;
}

.quote {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.2;
  max-width: 900px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.4rem 0;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: white;
}

.legal {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.legal h2 {
  font-size: 1.6rem;
  margin-top: 2.8rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.notice {
  border-left: 3px solid var(--magenta);
  padding: 1rem 1.2rem;
  background: rgba(255, 43, 214, .06);
  border-radius: 0 14px 14px 0;
  color: #d8d8df;
}

.e {
  background: linear-gradient(45deg,
      #00F7FF,
      #A000FF,
      #FF00AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 0 8px #00F7FF);
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-grid {
    grid-template-columns: 1.08fr .92fr;
  }

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

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

  .section-header {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 5rem;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .gallery {
    grid-template-columns: repeat(12, 1fr);
  }

  .gallery figure:nth-child(1),
  .gallery figure:nth-child(4) {
    grid-column: span 7;
    min-height: 430px;
  }

  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3) {
    grid-column: span 5;
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-logo {
    animation: float 7s ease-in-out infinite;
  }

  @keyframes float {
    50% {
      transform: translateY(-12px) rotate(.5deg);
    }
  }
}