:root {
  --ink: #05070c;
  --ink-soft: #0a0e17;
  --paper: #eff3f8;
  --muted: #8d97a8;
  --line: rgba(205, 220, 239, 0.14);
  --blue: #168cff;
  --blue-soft: #8ccaff;
  --gold: #d0a34d;
  --gold-soft: #ffe7a4;
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(10, 79, 150, 0.14), transparent 35rem),
    var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, padding 300ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.8rem;
  border-color: var(--line);
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(7.4rem, 9vw, 9rem);
  height: auto;
  filter: drop-shadow(0 0 1rem rgba(35, 137, 229, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: #b8c0ce;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: white;
}

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

.nav-cta {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.36rem auto;
  background: white;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 8rem var(--pad) 5rem;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.83), rgba(5, 7, 12, 0.3) 50%, rgba(5, 7, 12, 0.82)),
    linear-gradient(180deg, rgba(5, 7, 12, 0.06), var(--ink));
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 11vw 11vw;
  content: "";
  mask-image: radial-gradient(circle at center, black 0, transparent 70%);
  opacity: 0.28;
}

#pulse-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.74;
}

.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vw, 58rem);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.hero-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(146, 202, 255, 0.11);
  border-radius: 50%;
  animation: breathe 7s ease-in-out infinite;
}

.hero-rings span:nth-child(2) {
  inset: 15%;
  border-color: rgba(207, 162, 75, 0.12);
  animation-delay: -2.2s;
}

.hero-rings span:nth-child(3) {
  inset: 31%;
  animation-delay: -4.4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 76rem);
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: #9ca8ba;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-lockup {
  width: clamp(17rem, 34vw, 30rem);
  margin: clamp(0.5rem, 2.5vh, 1.5rem) 0;
  filter: drop-shadow(0 0 2.5rem rgba(24, 130, 230, 0.18));
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.7rem, 9vw, 8.6rem);
  text-transform: uppercase;
}

h1::first-line {
  background: linear-gradient(95deg, #eef6ff 15%, #b8dcff 54%, #ecdca8 92%);
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 39rem;
  margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
  color: #aab4c4;
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
}

.hero-actions {
  display: flex;
  margin-top: clamp(2rem, 5vh, 3.5rem);
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #07101c;
  background: linear-gradient(100deg, #77c2ff, #f2da9a);
  box-shadow: 0 16px 50px rgba(32, 137, 238, 0.13);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.21);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.045);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #d6dce6;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.hero-footer {
  position: absolute;
  right: var(--pad);
  bottom: 1.5rem;
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #657083;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(22, 140, 255, 0.8);
  animation: ping 2.5s infinite;
}

.section {
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
}

.section-index {
  display: grid;
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
  grid-template-columns: 4rem 1fr;
  align-items: center;
  color: #687386;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 1rem;
}

.section-index p::before {
  width: min(9vw, 7rem);
  height: 1px;
  background: var(--line);
  content: "";
}

.concept {
  display: grid;
  min-height: 90vh;
  grid-template-columns: minmax(11rem, 0.55fr) 1.45fr;
}

.concept .section-index {
  align-self: start;
}

.concept h2,
.residency h2,
.music h2,
.connect h2 {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.concept h2 {
  max-width: 14ch;
}

.concept-grid {
  display: grid;
  max-width: 60rem;
  margin-top: clamp(2.8rem, 6vw, 5.5rem);
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  color: #939eae;
}

.concept-grid p {
  margin: 0;
}

.founder {
  display: grid;
  min-height: 48rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  align-items: stretch;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(15, 113, 208, 0.1), transparent 31rem),
    #070a10;
}

.founder-portrait {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #06101a;
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 58%, rgba(5, 7, 12, 0.5)),
    linear-gradient(180deg, rgba(5, 7, 12, 0.07), transparent 55%, rgba(5, 7, 12, 0.76));
  content: "";
  pointer-events: none;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 48rem;
  object-fit: cover;
  object-position: center 42%;
}

.founder-portrait figcaption {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-portrait figcaption span {
  color: #7f8b9e;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.founder-copy {
  display: flex;
  padding: clamp(3.5rem, 7vw, 8rem) var(--pad);
  justify-content: center;
  flex-direction: column;
}

.founder-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2.2rem 0 2rem;
  color: #97a2b2;
  font-size: 1rem;
}

.signal-band {
  overflow: hidden;
  padding: 1.15rem 0;
  border-block: 1px solid var(--line);
}

.signal-band > div {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 26s linear infinite;
}

.signal-band span {
  padding-inline: 1.6rem;
  color: #8993a3;
  font-family: var(--display);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signal-band i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.residency {
  background:
    radial-gradient(circle at 90% 30%, rgba(176, 120, 29, 0.1), transparent 27rem),
    radial-gradient(circle at 15% 70%, rgba(18, 115, 210, 0.11), transparent 32rem),
    var(--ink-soft);
}

.residency-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.residency h2 {
  max-width: 11ch;
}

.residency-lede {
  max-width: 33rem;
  margin: 2rem 0 0;
  color: #929dad;
}

.event-details {
  display: grid;
  margin: 3.5rem 0 2.4rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.event-details div {
  display: flex;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 0.15rem;
}

.event-details div:nth-child(odd) {
  padding-right: 1.2rem;
}

.event-details div:nth-child(even) {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.event-details span {
  color: #687386;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-details strong {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 400;
}

.residency-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #070b13;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.residency-poster {
  display: block;
  width: 100%;
  height: auto;
}

.music {
  padding-bottom: clamp(7rem, 14vw, 12rem);
}

.music-heading {
  display: flex;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.music-heading h2 {
  max-width: 14ch;
}

.release-list {
  border-top: 1px solid var(--line);
}

.release {
  display: grid;
  min-height: 7.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 4rem 2fr 1fr 0.55fr 2rem;
  align-items: center;
  gap: 1rem;
  transition: background 250ms ease, padding 250ms ease;
}

a.release:hover {
  padding-inline: 1rem;
  background: linear-gradient(90deg, rgba(21, 137, 255, 0.07), rgba(201, 149, 53, 0.05));
}

.release-number,
.release-year,
.release-label {
  color: #697486;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.7vw, 2.4rem);
  letter-spacing: -0.03em;
}

.release-arrow {
  color: var(--gold);
  text-align: right;
}

.remix-section {
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.remix-heading {
  display: flex;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.remix-heading .eyebrow {
  margin-bottom: 0.9rem;
}

.remix-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.2vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.remix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.5rem);
}

.remix-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 0.7rem 0.7rem 1.2rem;
  border: 1px solid rgba(205, 220, 239, 0.13);
  background:
    linear-gradient(150deg, rgba(22, 140, 255, 0.055), transparent 45%),
    #080b12;
  flex-direction: column;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.remix-card:hover {
  border-color: rgba(188, 209, 235, 0.3);
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.28);
  transform: translateY(-0.35rem);
}

.remix-art {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #0b0e14;
}

.remix-art svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 300ms ease, transform 450ms ease;
  transform-origin: center;
}

.remix-card:hover .remix-art svg {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.remix-source {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #d7dee8;
  background: rgba(5, 7, 12, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.remix-copy {
  display: flex;
  padding: 1.15rem 0.35rem 0;
  flex-direction: column;
}

.remix-number {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.remix-copy strong {
  min-height: 3.2em;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.remix-copy small {
  margin-top: 0.7rem;
  color: #747f90;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.remix-arrow {
  position: absolute;
  right: 1.05rem;
  bottom: 1.05rem;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(-0.2rem, 0.2rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.remix-card:hover .remix-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.statement {
  position: relative;
  display: grid;
  min-height: min(80vh, 52rem);
  place-items: center;
  overflow: hidden;
  padding: 7rem var(--pad);
  border-block: 1px solid var(--line);
  text-align: center;
}

.statement-aura {
  position: absolute;
  width: min(67vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 45%, rgba(21, 139, 255, 0.18), transparent 27%),
    radial-gradient(circle at 68% 55%, rgba(201, 149, 53, 0.16), transparent 28%);
  filter: blur(0.2px);
  animation: breathe 8s ease-in-out infinite;
}

.statement .eyebrow,
.statement blockquote {
  position: absolute;
  z-index: 2;
}

.statement .eyebrow {
  top: 20%;
}

.statement blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.connect {
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.connect-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.connect h2 {
  max-width: 13ch;
}

.connect-actions {
  border-top: 1px solid var(--line);
}

.connect-actions a {
  display: flex;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: #c5ccd8;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.connect-actions a:hover {
  padding-inline: 0.65rem;
  color: white;
}

.connect-actions span {
  color: var(--gold);
}

.site-footer {
  display: flex;
  padding: 2rem var(--pad);
  border-top: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  background: #030408;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: clamp(10rem, 15vw, 14rem);
  height: auto;
}

.footer-meta {
  display: flex;
  gap: 2rem;
  color: #626d80;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }

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

@keyframes breathe {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes ping {
  70% { box-shadow: 0 0 0 0.5rem rgba(22, 140, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 140, 255, 0); }
}

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

@media (max-width: 820px) {
  .site-header {
    padding-block: 0.9rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(0.215rem) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-0.215rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 7rem var(--pad) 3rem;
    background: rgba(4, 6, 11, 0.97);
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.6rem, 8vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding-top: 7.5rem;
  }

  .hero::after {
    background-size: 24vw 24vw;
  }

  .hero-rings {
    width: 110vw;
  }

  .hero-lockup {
    margin-block: 0.6rem 1.5rem;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5.6rem);
  }

  .hero-intro {
    max-width: 30rem;
  }

  .hero-footer p:first-child {
    display: none;
  }

  .hero-footer {
    justify-content: center;
  }

  .concept,
  .residency-layout,
  .connect-layout,
  .founder {
    grid-template-columns: 1fr;
  }

  .concept {
    min-height: auto;
  }

  .concept .section-index {
    margin-bottom: 3.5rem;
  }

  .concept-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .founder {
    min-height: auto;
  }

  .founder-portrait {
    min-height: auto;
    aspect-ratio: 1;
  }

  .founder-portrait img {
    min-height: 0;
    object-position: center 42%;
  }

  .founder-copy {
    padding-block: 5.5rem;
  }

  .music-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .remix-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .release {
    min-height: 6.5rem;
    grid-template-columns: 2.2rem 1fr auto;
  }

  .release-label,
  .release-year {
    display: none;
  }

  .release-name {
    font-size: clamp(1.15rem, 5vw, 1.65rem);
  }

  .connect-layout {
    align-items: start;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 7.2rem;
  }

  .hero {
    min-height: 48rem;
  }

  .hero-lockup {
    width: min(100%, 22rem);
  }

  .founder-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .remix-grid {
    grid-template-columns: 1fr;
  }

  .remix-copy strong {
    min-height: auto;
    font-size: 1.2rem;
  }

  .event-details div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .event-details div:nth-child(odd) {
    padding-right: 0;
  }

  .statement {
    min-height: 36rem;
  }

  .statement-aura {
    width: 120vw;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.3rem;
  }
}

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