:root {
  --bg: #080808;
  --bg-soft: #111111;
  --paper: #eeeae1;
  --ink: #101010;
  --white: #f7f5ef;
  --muted: rgba(247, 245, 239, 0.58);
  --line: rgba(247, 245, 239, 0.16);
  --accent: #ff4b2b;
  --accent-soft: #ff8a66;
  --ice: #bfe8ff;
  --max: 1440px;
  --header-height: 88px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.9) 0 .6px, transparent .8px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.7) 0 .45px, transparent .65px);
  background-size: 6px 6px, 8px 8px;
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 80ms linear;
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.2,.7,.1,1), transform .75s cubic-bezier(.2,.7,.1,1);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--pad) 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8,8,8,.84);
  border-color: var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.wordmark {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.wordmark-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.wordmark-copy {
  font-size: 15px;
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.wordmark-copy small {
  display: inline-block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right .22s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.listen-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.listen-button svg,
.primary-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.listen-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: transparent;
  display: none;
  place-items: center;
  cursor: pointer;
}

.menu-button span {
  width: 17px;
  height: 1px;
  background: #fff;
}

.menu-button span + span {
  transform: translateY(-5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 220;
  width: min(88vw, 460px);
  height: 100dvh;
  padding: calc(24px + env(safe-area-inset-top)) 28px calc(30px + env(safe-area-inset-bottom));
  background: var(--paper);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform .34s cubic-bezier(.72,0,.18,1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(16,16,16,.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.mobile-menu-top button {
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  margin-top: auto;
  display: grid;
}

.mobile-menu nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16,16,16,.18);
  display: flex;
  align-items: baseline;
  gap: 20px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(38px, 11vw, 66px);
  line-height: .95;
  letter-spacing: -.055em;
}

.mobile-menu nav a span {
  width: 22px;
  color: rgba(16,16,16,.45);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .08em;
}

.mobile-menu > p {
  max-width: 260px;
  margin: auto 0 0;
  color: rgba(16,16,16,.58);
  font-size: 13px;
  line-height: 1.6;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(4px);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 64px);
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -14%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,43,.2), transparent 66%);
  filter: blur(12px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.09) 18%, rgba(255,255,255,.09) 82%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}

.eyebrow,
.section-heading > p,
.identity-heading > p,
.platform-heading > p {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 8.1vw, 128px);
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 .serif-line {
  margin-left: clamp(22px, 5vw, 86px);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.12em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.08em;
  text-transform: lowercase;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.67);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.8;
  word-break: keep-all;
}

.hero-cta-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-cta {
  min-height: 54px;
  padding: 0 20px 0 24px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  transition: transform .2s ease, background .2s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  background: #ff684c;
}

.text-cta {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  cursor: pointer;
}

.hero-stats {
  margin: 52px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  margin-bottom: 8px;
  color: rgba(255,255,255,.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.hero-art {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.cover-card {
  position: absolute;
  margin: 0;
  background: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,.58);
  will-change: transform;
  transition: transform .18s ease-out;
}

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

.cover-main {
  z-index: 4;
  left: 17%;
  top: 8%;
  width: 64%;
  aspect-ratio: .83;
  padding: 10px;
  background: #e8e4db;
  transform: rotate(3.5deg);
}

.cover-main img {
  height: calc(100% - 90px);
}

.cover-main figcaption {
  height: 80px;
  padding: 12px 5px 0;
  color: #111;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 4px 10px;
}

.cover-main figcaption span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.cover-main figcaption strong {
  grid-column: 1;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.04em;
}

.cover-main figcaption small {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: rgba(17,17,17,.55);
  font-size: 9px;
}

.cover-back-one {
  z-index: 2;
  left: 1%;
  top: 22%;
  width: 45%;
  aspect-ratio: 1;
  transform: rotate(-10deg);
  filter: saturate(.72) brightness(.78);
}

.cover-back-two {
  z-index: 1;
  right: 0;
  bottom: 6%;
  width: 43%;
  aspect-ratio: 1;
  transform: rotate(12deg);
  filter: saturate(.8) brightness(.84);
}

.hero-stamp {
  position: absolute;
  z-index: 6;
  right: 3%;
  top: 3%;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(8deg);
}

.hero-stamp strong {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
}

.hero-stamp span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}

.orbit-one {
  inset: 4% 0 4% 2%;
}

.orbit-two {
  inset: 15% 10% 14% 10%;
}

.soundline {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 20px;
  z-index: 3;
  height: 34px;
  display: flex;
  align-items: center;
  gap: clamp(5px, .8vw, 11px);
  opacity: .42;
}

.soundline span {
  flex: 1;
  min-width: 2px;
  height: 7px;
  background: rgba(255,255,255,.46);
  animation: pulse 1.7s ease-in-out infinite alternate;
}

.soundline span:nth-child(3n) { height: 24px; animation-delay: -.4s; }
.soundline span:nth-child(4n) { height: 14px; animation-delay: -.8s; }
.soundline span:nth-child(5n) { height: 30px; animation-delay: -1.2s; }
.soundline span:nth-child(7n) { height: 18px; animation-delay: -.2s; }

@keyframes pulse {
  to { height: 3px; opacity: .35; }
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: ticker 25s linear infinite;
}

.ticker-track span {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .03em;
}

.ticker-track i {
  color: var(--accent);
  font-style: normal;
}

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

.work {
  padding-top: clamp(90px, 11vw, 168px);
  padding-bottom: clamp(90px, 11vw, 168px);
}

.section-heading,
.identity-heading,
.platform-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(54px, 7vw, 98px);
}

.section-heading > p,
.identity-heading > p,
.platform-heading > p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.identity-heading h2,
.platform-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: .92;
  letter-spacing: -.065em;
}

.section-heading h2 em,
.identity-heading h2 em,
.platform-heading h2 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
  text-transform: lowercase;
}

.section-heading > span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.featured-release {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-cover {
  position: relative;
  min-height: 600px;
  padding: clamp(24px, 4vw, 58px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(191,232,255,.12), transparent 45%),
    #0e0e0e;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.featured-cover::before {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255,255,255,.08);
  transform: rotate(8deg);
}

.featured-cover img {
  position: relative;
  z-index: 1;
  width: min(78%, 480px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 34px 70px rgba(0,0,0,.42);
  transform: rotate(-2.5deg);
}

.release-number {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.featured-info {
  min-height: 600px;
  padding: clamp(38px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.release-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.featured-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 112px);
  line-height: .85;
  letter-spacing: -.07em;
}

.release-description {
  max-width: 560px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.release-meta {
  margin: 54px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, auto 1fr);
  gap: 10px 16px;
  align-items: center;
}

.release-meta span {
  color: rgba(255,255,255,.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.release-meta strong {
  font-size: 11px;
  font-weight: 750;
}

.release-actions {
  display: flex;
  gap: 12px;
}

.release-actions a {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  transition: background .2s ease, color .2s ease;
}

.release-actions a:hover {
  background: var(--white);
  color: var(--ink);
}

.release-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.release-card {
  min-width: 0;
}

.release-card > a {
  color: var(--white);
  text-decoration: none;
}

.release-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #151515;
}

.release-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.1,1), filter .5s ease;
}

.release-image > span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  opacity: 0;
  transform: translate(-50%, -42%) scale(.82);
  transition: opacity .25s ease, transform .25s ease;
}

.release-card a:hover .release-image img {
  transform: scale(1.04);
  filter: brightness(.68);
}

.release-card a:hover .release-image > span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.release-card-copy {
  padding: 18px 2px 0;
}

.release-card-copy p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.release-card-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -.055em;
}

.release-card-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
}

.identity {
  padding: clamp(94px, 11vw, 170px) 0;
  background: var(--paper);
  color: var(--ink);
}

.identity-heading > p {
  color: rgba(16,16,16,.45);
}

.identity-heading h2 em {
  color: var(--accent);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(16,16,16,.18);
  border-bottom: 1px solid rgba(16,16,16,.18);
}

.identity-card {
  min-height: 360px;
  padding: 28px 28px 34px;
  display: flex;
  flex-direction: column;
}

.identity-card + .identity-card {
  border-left: 1px solid rgba(16,16,16,.18);
}

.identity-card > span {
  color: rgba(16,16,16,.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.identity-card h3 {
  margin: auto 0 18px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: .9;
  letter-spacing: -.06em;
}

.identity-card p {
  margin: 0;
  color: rgba(16,16,16,.6);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}

.manifesto {
  position: relative;
  margin: clamp(80px, 9vw, 130px) 0 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.manifesto > span {
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
}

.manifesto p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 58px);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.platforms {
  padding-top: clamp(90px, 11vw, 168px);
  padding-bottom: clamp(90px, 11vw, 168px);
}

.platform-heading {
  grid-template-columns: 1fr;
}

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

.platform-list a {
  min-height: 104px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 200px 42px;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  transition: background .22s ease, color .22s ease, padding .22s ease;
}

.platform-list a:hover {
  padding-left: 30px;
  background: var(--white);
  color: var(--ink);
}

.platform-list a > span {
  color: rgba(255,255,255,.32);
  font-size: 9px;
  font-weight: 800;
}

.platform-list a:hover > span {
  color: rgba(16,16,16,.42);
}

.platform-list strong {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 58px);
  letter-spacing: -.055em;
}

.platform-list small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.platform-list a:hover small {
  color: rgba(16,16,16,.52);
}

.platform-list b {
  font-size: 24px;
  font-weight: 400;
}

.contact {
  position: relative;
  padding: clamp(90px, 11vw, 170px) 0;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background:
    repeating-linear-gradient(90deg, transparent 0 12.4%, rgba(255,255,255,.22) 12.5%, transparent 12.6%),
    repeating-linear-gradient(0deg, transparent 0 19.8%, rgba(255,255,255,.14) 20%, transparent 20.2%);
}

.contact-glow {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: min(62vw, 840px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.04), 0 0 0 160px rgba(255,255,255,.025);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  margin: 0 0 34px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .17em;
}

.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 154px);
  line-height: .76;
  letter-spacing: -.075em;
}

.contact h2 em {
  color: #171717;
  font-family: var(--serif);
  font-weight: 400;
  text-transform: lowercase;
}

.contact-copy {
  max-width: 560px;
  margin: 42px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.contact-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-actions a,
.contact-actions button {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  text-decoration: none;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.contact-actions a:hover,
.contact-actions button:hover {
  background: #fff;
  color: var(--ink);
}

.site-footer {
  min-height: 150px;
  padding-top: 38px;
  padding-bottom: calc(38px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-footer > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.site-footer strong {
  font-size: 15px;
}

.site-footer span,
.site-footer p,
.back-to-top {
  color: rgba(255,255,255,.43);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  justify-self: end;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 400;
  max-width: min(88vw, 520px);
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(8,8,8,.92);
  color: #fff;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 74px);
  }

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

  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-art {
    width: min(100%, 700px);
    min-height: 650px;
    margin: 26px auto 0;
  }

  .hero h1 {
    font-size: clamp(66px, 13vw, 116px);
  }

  .featured-release {
    grid-template-columns: 1fr;
  }

  .featured-cover {
    min-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-info {
    min-height: 520px;
  }

  .section-heading,
  .identity-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > span {
    max-width: 560px;
  }

  .identity-card {
    min-height: 320px;
  }

  .platform-list a {
    grid-template-columns: 46px minmax(0, 1fr) 150px 34px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --pad: 18px;
  }

  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wordmark-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .wordmark-copy {
    font-size: 13px;
  }

  .listen-button {
    display: none;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 46px;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(53px, 17vw, 83px);
    line-height: .82;
  }

  .hero h1 .serif-line {
    margin-left: 26px;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-cta-row {
    margin-top: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .primary-cta {
    min-height: 52px;
    justify-content: space-between;
  }

  .text-cta {
    width: max-content;
  }

  .hero-stats {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-stats div {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
  }

  .hero-stats dt {
    margin: 0;
  }

  .hero-art {
    min-height: 490px;
    margin-top: 24px;
  }

  .cover-main {
    left: 18%;
    top: 7%;
    width: 66%;
    padding: 7px;
  }

  .cover-main img {
    height: calc(100% - 72px);
  }

  .cover-main figcaption {
    height: 66px;
    padding-top: 9px;
  }

  .cover-main figcaption strong {
    font-size: 16px;
  }

  .cover-back-one {
    top: 27%;
    width: 47%;
  }

  .cover-back-two {
    bottom: 5%;
    width: 44%;
  }

  .hero-stamp {
    width: 88px;
    right: 0;
  }

  .hero-stamp strong {
    font-size: 25px;
  }

  .soundline {
    left: 18px;
    right: 18px;
    bottom: 11px;
  }

  .ticker-track {
    padding: 14px 0;
    gap: 17px;
  }

  .ticker-track span {
    font-size: 12px;
  }

  .section-heading,
  .identity-heading,
  .platform-heading {
    margin-bottom: 48px;
    gap: 20px;
  }

  .section-heading h2,
  .identity-heading h2,
  .platform-heading h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .section-heading > span {
    font-size: 13px;
  }

  .featured-cover {
    min-height: 390px;
    padding: 32px 20px;
  }

  .featured-cover img {
    width: min(82%, 350px);
  }

  .featured-info {
    min-height: 470px;
    padding: 34px 22px;
  }

  .featured-info h3 {
    font-size: clamp(50px, 17vw, 74px);
  }

  .release-description {
    margin-top: 24px;
    font-size: 14px;
  }

  .release-meta {
    margin: 34px 0;
    grid-template-columns: 74px 1fr;
  }

  .release-actions {
    flex-direction: column;
  }

  .release-actions a {
    justify-content: space-between;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .release-card-copy {
    padding-top: 14px;
  }

  .release-card-copy h3 {
    font-size: 36px;
  }

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

  .identity-card {
    min-height: 270px;
  }

  .identity-card + .identity-card {
    border-left: 0;
    border-top: 1px solid rgba(16,16,16,.18);
  }

  .identity-card h3 {
    font-size: 52px;
  }

  .manifesto {
    margin-top: 84px;
  }

  .manifesto p {
    font-size: 30px;
  }

  .platform-list a {
    min-height: 88px;
    padding: 0 4px;
    grid-template-columns: 30px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  .platform-list a:hover {
    padding-left: 10px;
  }

  .platform-list strong {
    font-size: 28px;
  }

  .platform-list small {
    display: none;
  }

  .contact h2 {
    font-size: clamp(50px, 16.5vw, 76px);
    line-height: .8;
  }

  .contact-copy {
    margin-top: 30px;
    font-size: 14px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions a,
  .contact-actions button {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer {
    min-height: 172px;
    grid-template-columns: 1fr auto;
    align-content: center;
  }

  .site-footer > div {
    grid-column: 1 / -1;
  }

  .site-footer p {
    justify-self: start;
  }
}

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