:root {
  --black: #050505;
  --ink: #101114;
  --muted: #666b73;
  --muted-light: #a4a8b0;
  --line: rgba(18, 20, 24, .11);
  --white: #fff;
  --paper: #f5f5f7;
  --blue: #568cff;
  --violet: #9e72ff;
  --cyan: #5fe4ff;
  --accent: #ff8b7b;
  --container: 1280px;
  --gutter: clamp(22px, 4vw, 64px);
  --radius-lg: 36px;
  --radius-md: 24px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: #7559e8; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #111;
  background: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--accent));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: #fff;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.scrolled {
  color: #16171a;
  background: rgba(250, 250, 252, .76);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}
.site-header.header-hidden { transform: translateY(-100%); }
.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  height: 76px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  width: max-content;
}
.brand-mark { width: 34px; height: 34px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 15px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; font-size: 7px; letter-spacing: .21em; opacity: .6; }
.desktop-nav { display: flex; gap: 38px; align-items: center; }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .72;
  transition: opacity .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { opacity: 1; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  background: rgba(255, 255, 255, .08);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.site-header.scrolled .nav-cta { border-color: rgba(0, 0, 0, .12); background: rgba(0, 0, 0, .045); }
.nav-cta:hover { transform: translateY(-1px); background: rgba(255, 255, 255, .16); }
.site-header.scrolled .nav-cta:hover { background: rgba(0, 0, 0, .08); }
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 880px;
  height: max(100svh, 880px);
  overflow: hidden;
  color: #fff;
  background: var(--black);
}
.hero-ambient, .grain, .hero-grid, .release-ambient, .contact-ambient { position: absolute; inset: 0; pointer-events: none; }
.hero-ambient { overflow: hidden; }
.aurora {
  position: absolute;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  will-change: transform;
}
.aurora-one {
  top: -28vw;
  left: 15vw;
  background: radial-gradient(circle, #855cff 0%, #295eff 38%, transparent 68%);
  animation: floatAurora 13s ease-in-out infinite alternate;
}
.aurora-two {
  right: -24vw;
  bottom: -33vw;
  background: radial-gradient(circle, #62e3ff 0%, #7a55ff 38%, transparent 67%);
  animation: floatAurora 16s ease-in-out infinite alternate-reverse;
}
@keyframes floatAurora { to { transform: translate3d(4vw, 3vw, 0) scale(1.07); } }
.grain {
  opacity: .055;
  mix-blend-mode: screen;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero-grid {
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 72% 45%, #000 0%, transparent 58%);
  -webkit-mask-image: radial-gradient(circle at 72% 45%, #000 0%, transparent 58%);
}
.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 50px;
  align-items: center;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 130px var(--gutter) 110px;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-index, .release-tag, .service-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 28px; color: rgba(255, 255, 255, .55); }
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 100px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 680;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #fff 2%, #cfd7ff 28%, #88c6ff 55%, #d8b9ff 80%, #fff 100%);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textGlow 8s ease-in-out infinite alternate;
}
@keyframes textGlow { to { background-position: 100% center; } }
.hero-intro {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
  letter-spacing: -.01em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  display: inline-flex;
  justify-content: center;
  gap: 13px;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .015em;
  transition: transform .28s var(--ease), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #08090b; background: #fff; box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.button-ghost { color: #fff; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .065); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .36); background: rgba(255, 255, 255, .11); }

.hero-art {
  position: relative;
  justify-self: end;
  width: min(42vw, 570px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}
.orb-shadow {
  position: absolute;
  right: 7%;
  bottom: 4%;
  width: 72%;
  height: 17%;
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  filter: blur(30px);
  transform: rotate(-8deg);
}
.record-orb {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  transform: rotate(-11deg) translateZ(40px);
  animation: orbHover 7s ease-in-out infinite;
}
@keyframes orbHover { 50% { transform: rotate(-8deg) translate3d(0,-12px,40px); } }
.record-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #101116 0 9%, transparent 9.5%),
    conic-gradient(from 225deg, #08090c, #292c35, #08090c, #3b3749, #07080a, #222937, #07080a);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), inset 0 0 90px rgba(255,255,255,.08), 0 50px 90px rgba(0,0,0,.54);
}
.record-lines {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  opacity: .53;
  background: repeating-radial-gradient(circle at center, transparent 0 4px, rgba(255,255,255,.12) 4.5px 5px);
  mask-image: radial-gradient(circle, transparent 0 10%, #000 12% 100%);
  -webkit-mask-image: radial-gradient(circle, transparent 0 10%, #000 12% 100%);
}
.record-label {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #0d0d10;
  background: radial-gradient(circle at 35% 28%, #fff 0%, #d9d4e9 42%, #8a8fa5 100%);
  box-shadow: 0 0 30px rgba(255,255,255,.15);
  transform: translate(-50%, -50%);
}
.record-label span { font-family: serif; font-size: clamp(28px, 4vw, 58px); line-height: 1; }
.record-label small { margin-top: 7px; font-size: 7px; letter-spacing: .16em; opacity: .54; }
.record-shine {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 0 38%, rgba(132,172,255,.2) 45%, transparent 52% 71%, rgba(225,155,255,.18) 78%, transparent 86%);
  animation: spin 16s linear infinite;
}
.orbit { position: absolute; z-index: 2; inset: -8%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; top: 14%; left: 9%; width: 7px; height: 7px; border-radius: 50%; background: #b9eaff; box-shadow: 0 0 18px #7ae0ff; }
.orbit-a { transform: rotate3d(1, .4, 0, 63deg) rotate(24deg); animation: orbitA 12s linear infinite; }
.orbit-b { inset: -16%; opacity: .5; transform: rotate3d(.2, 1, 0, 72deg) rotate(-10deg); animation: orbitB 18s linear infinite reverse; }
@keyframes orbitA { to { transform: rotate3d(1,.4,0,63deg) rotate(384deg); } }
@keyframes orbitB { to { transform: rotate3d(.2,1,0,72deg) rotate(350deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
.floating-note {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  color: rgba(255,255,255,.64);
  background: rgba(255,255,255,.055);
  box-shadow: 0 14px 35px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
  font-size: 8px;
  letter-spacing: .18em;
}
.note-a { top: 14%; right: 3%; animation: noteFloat 6s ease-in-out infinite; }
.note-b { right: 6%; bottom: 17%; animation: noteFloat 7.5s ease-in-out infinite reverse; }
.note-c { bottom: 11%; left: 2%; animation: noteFloat 8.5s ease-in-out infinite; }
@keyframes noteFloat { 50% { transform: translateY(-10px); } }
.hero-bottom {
  position: absolute;
  right: var(--gutter);
  bottom: 38px;
  left: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.8vw, 42px);
  align-items: center;
  color: rgba(255,255,255,.33);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .18em;
}
.hero-bottom i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.section-light { background: var(--paper); }
.section-dark { color: #fff; background: var(--black); }
.section-shell { width: min(100%, calc(var(--container) + var(--gutter) * 2)); margin: 0 auto; padding-inline: var(--gutter); }
.section-index { color: #979ba4; }
.section-index-dark { color: rgba(255,255,255,.38); }
.display-copy {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: -.058em;
  font-weight: 670;
}
.manifesto { padding: clamp(105px, 14vw, 190px) 0 80px; }
.manifesto-grid { display: grid; grid-template-columns: minmax(160px, .4fr) minmax(0, 1.6fr); gap: 60px; }
.manifesto-lead {
  max-width: 920px;
  margin: 38px 0 0;
  color: #656a72;
  font-size: clamp(22px, 2.8vw, 37px);
  line-height: 1.46;
  letter-spacing: -.035em;
}

.services { padding: 100px 0 clamp(120px, 15vw, 210px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 80px; align-items: end; }
.section-heading .section-index { margin-bottom: 25px; }
.section-sidecopy { margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 72px; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.075);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.68);
  box-shadow: 0 20px 70px rgba(18,22,30,.04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s ease;
}
.service-card:hover { transform: translateY(-9px); background: #fff; box-shadow: 0 34px 90px rgba(18,22,30,.11); }
.service-card-featured { color: #fff; border-color: transparent; background: #111216; }
.service-card-featured::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,100,255,.66), transparent 68%);
  filter: blur(18px);
  opacity: .8;
}
.service-card-featured:hover { background: #111216; box-shadow: 0 34px 90px rgba(18,22,30,.2); }
.service-topline { position: relative; z-index: 2; display: flex; justify-content: space-between; color: #a0a4ac; font-size: 10px; letter-spacing: .15em; }
.service-card-featured .service-topline { color: rgba(255,255,255,.5); }
.service-dot { width: 6px; height: 6px; margin-top: 5px; border-radius: 50%; background: currentColor; }
.service-icon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  margin: 25px 0 22px;
  border-radius: 26px;
  background: #f1f1f4;
}
.service-card-featured .service-icon { background: rgba(255,255,255,.075); }
.icon-story span { position: absolute; width: 84px; height: 112px; border: 1px solid rgba(255,255,255,.2); border-radius: 42px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.icon-story span:nth-child(1) { transform: translateX(-45px) rotate(-14deg); }
.icon-story span:nth-child(2) { z-index: 2; background: linear-gradient(155deg, rgba(255,255,255,.3), rgba(151,125,255,.22)); box-shadow: 0 22px 40px rgba(0,0,0,.22); }
.icon-story span:nth-child(3) { transform: translateX(45px) rotate(14deg); }
.icon-audio { gap: 7px; }
.icon-audio span { width: 6px; border-radius: 999px; background: linear-gradient(180deg, #272a31, #8e93a0); animation: audioPulse 1.5s ease-in-out infinite alternate; }
.icon-audio span:nth-child(1) { height: 34px; animation-delay: -.4s; }
.icon-audio span:nth-child(2) { height: 76px; animation-delay: -.8s; }
.icon-audio span:nth-child(3) { height: 118px; animation-delay: -1.1s; }
.icon-audio span:nth-child(4) { height: 68px; animation-delay: -.55s; }
.icon-audio span:nth-child(5) { height: 42px; animation-delay: -.9s; }
@keyframes audioPulse { to { transform: scaleY(.68); opacity: .65; } }
.icon-rights { overflow: hidden; }
.icon-rights::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: conic-gradient(from 90deg, #a57cff, #68ccff, #ffb78a, #a57cff); filter: blur(35px); opacity: .32; }
.rights-ring { position: absolute; width: 112px; height: 112px; border: 1px solid rgba(20,22,27,.16); border-radius: 50%; box-shadow: 0 0 0 18px rgba(20,22,27,.03), 0 0 0 38px rgba(20,22,27,.022); }
.rights-core { position: relative; font-family: Georgia, serif; font-size: 54px; font-style: italic; }
.service-kicker { position: relative; z-index: 2; margin-bottom: 12px; color: #9a9ea7; font-size: 9px; }
.service-card-featured .service-kicker { color: rgba(255,255,255,.43); }
.service-card h3 { position: relative; z-index: 2; margin: 0; font-size: 30px; line-height: 1.2; letter-spacing: -.04em; }
.service-card p:not(.service-kicker) { position: relative; z-index: 2; margin: 15px 0 0; color: #747981; font-size: 14px; line-height: 1.75; }
.service-card-featured p:not(.service-kicker) { color: rgba(255,255,255,.55); }
.service-card ul { position: relative; z-index: 2; display: grid; gap: 9px; margin: auto 0 0; padding: 25px 0 0; border-top: 1px solid rgba(0,0,0,.08); list-style: none; color: #5f646c; font-size: 12px; }
.service-card-featured ul { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.58); }
.service-card li { display: flex; gap: 9px; align-items: center; }
.service-card li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .6; }

.release { position: relative; min-height: 900px; overflow: hidden; }
.release-ambient {
  opacity: .75;
  background: radial-gradient(circle at 70% 45%, rgba(98,94,255,.3), transparent 27%), radial-gradient(circle at 76% 58%, rgba(70,194,255,.17), transparent 23%);
}
.release-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, #000);
  -webkit-mask-image: linear-gradient(to right, transparent, #000);
}
.release-shell { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 8vw, 120px); align-items: center; min-height: 900px; padding-top: 120px; padding-bottom: 120px; }
.release-tag { display: flex; gap: 10px; align-items: center; margin: 64px 0 28px; color: rgba(255,255,255,.48); font-size: 9px; }
.release-tag span { width: 6px; height: 6px; border-radius: 50%; background: #81ddff; box-shadow: 0 0 14px #81ddff; }
.release .display-copy { font-size: clamp(54px, 5vw, 76px); white-space: nowrap; }
.release-meta { margin: 15px 0 0; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.release-description { max-width: 550px; margin: 30px 0 0; color: rgba(255,255,255,.6); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.8; }
.platform-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }
.platform-links a { display: inline-flex; gap: 8px; align-items: center; padding: 10px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.045); font-size: 11px; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.platform-links a:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.27); background: rgba(255,255,255,.09); }
.album-stage { position: relative; justify-self: center; width: min(52vw, 650px); aspect-ratio: 1.12; perspective: 1200px; transform-style: preserve-3d; }
.album-glow { position: absolute; inset: 8% 3% 0 8%; border-radius: 44%; background: radial-gradient(circle, rgba(116,105,255,.5), rgba(89,184,255,.15) 42%, transparent 70%); filter: blur(50px); }
.album-cover {
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 3;
  width: 74%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: #18283c;
  box-shadow: 0 60px 100px rgba(0,0,0,.58), 0 0 0 1px rgba(0,0,0,.2);
  transform: rotateY(8deg) rotateZ(-4deg) translateZ(50px);
  transition: transform .25s ease-out;
}
.album-sky { position: absolute; inset: 0; background: linear-gradient(180deg, #b2d6e9 0%, #d6c7ba 38%, #806c77 66%, #151922 100%); }
.album-sky::after { content: ""; position: absolute; top: 0; left: 50%; width: 44%; height: 70%; background: radial-gradient(ellipse at top, rgba(255,255,255,.82), transparent 69%); filter: blur(12px); transform: translateX(-50%); }
.album-horizon { position: absolute; right: -8%; bottom: 22%; left: -8%; height: 31%; opacity: .95; background: linear-gradient(10deg, #13151b 0 53%, transparent 54%), linear-gradient(-12deg, transparent 0 46%, #21242b 47% 100%); clip-path: polygon(0 47%, 15% 40%, 25% 53%, 39% 31%, 53% 54%, 67% 35%, 77% 47%, 91% 29%, 100% 44%, 100% 100%, 0 100%); }
.album-sun { position: absolute; top: 30%; right: 18%; width: 12%; aspect-ratio: 1; border-radius: 50%; background: rgba(255,229,204,.82); box-shadow: 0 0 55px rgba(255,211,187,.9); }
.album-figure { position: absolute; right: 30%; bottom: 18%; width: 3%; height: 12%; border-radius: 50% 50% 12% 12%; background: #090a0d; box-shadow: 0 -8px 0 -2px #090a0d; }
.album-title-vertical { position: absolute; top: 8%; left: 7%; z-index: 3; display: grid; width: 1em; color: rgba(255,255,255,.9); font-family: serif; font-size: clamp(26px, 4vw, 50px); line-height: 1.05; text-shadow: 0 2px 18px rgba(0,0,0,.2); }
.album-caption { position: absolute; right: 6%; bottom: 5%; left: 6%; z-index: 3; display: flex; justify-content: space-between; color: rgba(255,255,255,.68); font-size: 7px; letter-spacing: .18em; }
.album-noise { position: absolute; inset: 0; opacity: .13; mix-blend-mode: soft-light; 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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.album-disc { position: absolute; top: 14%; right: 0; width: 67%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 225deg, #08090c, #28242f, #090a0c, #272d36, #07080a, #33263d, #08090c); box-shadow: 0 50px 80px rgba(0,0,0,.5); animation: discFloat 8s ease-in-out infinite; }
@keyframes discFloat { 50% { transform: translateY(-8px) rotate(3deg); } }
.disc-grooves { position: absolute; inset: 3%; border-radius: 50%; opacity: .62; background: repeating-radial-gradient(circle, transparent 0 4px, rgba(255,255,255,.1) 4.5px 5px); }
.disc-label { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 28%; aspect-ratio: 1; border-radius: 50%; color: #17171b; background: linear-gradient(135deg, #ece9ef, #8fa2c0); font-family: serif; font-size: clamp(24px,4vw,48px); transform: translate(-50%,-50%); }

.about { padding: clamp(120px, 15vw, 210px) 0; }
.about-hero { padding-bottom: 90px; border-bottom: 1px solid var(--line); }
.about-statement { max-width: 1120px; margin: 48px 0 0; font-size: clamp(46px, 7.3vw, 100px); line-height: 1.08; letter-spacing: -.065em; font-weight: 660; }
.about-statement span { color: #a5a8ae; }
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr); gap: clamp(60px, 10vw, 150px); padding-top: 84px; }
.about-copy p { max-width: 570px; margin: 0 0 28px; color: #5f646c; font-size: clamp(17px,1.65vw,22px); line-height: 1.75; letter-spacing: -.016em; }
.principles { display: grid; }
.principle { display: grid; grid-template-columns: 45px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle > span { padding-top: 5px; color: #a1a5ad; font-size: 10px; letter-spacing: .12em; }
.principle h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.principle p { margin: 7px 0 0; color: #777c84; font-size: 14px; }

.contact { padding: 0 0 clamp(90px, 11vw, 150px); }
.contact-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 60px; align-items: end; min-height: 590px; padding: clamp(50px, 7vw, 92px); overflow: hidden; border-radius: 44px; color: #fff; background: #0d0e12; box-shadow: 0 40px 100px rgba(25,30,45,.15); }
.contact-ambient { overflow: hidden; }
.contact-ambient::before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at 80% 20%, #000, transparent 65%); -webkit-mask-image: radial-gradient(circle at 80% 20%, #000, transparent 65%); }
.contact-ambient span { position: absolute; border-radius: 50%; filter: blur(20px); }
.contact-ambient span:first-child { top: -55%; right: -15%; width: 630px; height: 630px; background: radial-gradient(circle, rgba(95,101,255,.67), transparent 67%); }
.contact-ambient span:last-child { right: 10%; bottom: -65%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(70,208,255,.35), transparent 67%); }
.contact-copy, .contact-actions { position: relative; z-index: 2; }
.contact-copy .section-index { color: rgba(255,255,255,.37); }
.contact-copy h2 { margin: 42px 0 0; font-size: clamp(50px, 7vw, 96px); line-height: 1.03; letter-spacing: -.065em; font-weight: 660; }
.contact-copy > p:last-child { max-width: 640px; margin: 32px 0 0; color: rgba(255,255,255,.56); font-size: 16px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.button-light { color: #111; background: #fff; }
.button-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.055); }
.contact-pending { display: flex; gap: 13px; align-items: flex-start; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(14px); }
.status-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: #ffce73; box-shadow: 0 0 16px rgba(255,206,115,.7); }
.contact-pending strong { display: block; font-size: 13px; }
.contact-pending small { display: block; margin-top: 4px; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.55; }

.site-footer { padding: 76px var(--gutter) 24px; color: rgba(255,255,255,.62); background: var(--black); }
.footer-main, .footer-legal { width: min(100%, var(--container)); margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; padding-bottom: 66px; }
.footer-brand { display: inline-flex; gap: 11px; align-items: center; width: max-content; color: #fff; }
.footer-brand svg { width: 34px; height: 34px; }
.footer-brand span { display: flex; flex-direction: column; line-height: 1.05; }
.footer-brand strong { font-size: 15px; letter-spacing: .08em; }
.footer-brand small { margin-top: 5px; font-size: 7px; letter-spacing: .21em; opacity: .48; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.38); font-size: 13px; }
.footer-main nav { display: flex; gap: 26px; font-size: 12px; }
.footer-main nav a, .footer-legal a { transition: color .2s ease; }
.footer-main nav a:hover, .footer-legal a:hover { color: #fff; }
.footer-legal { display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.32); font-size: 10px; letter-spacing: .02em; }
.footer-legal a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.2); text-underline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .25s; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 26px; }
  .hero-shell { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 500px; }
  .service-card:last-child .service-icon { height: 165px; }
  .release-shell { grid-template-columns: .8fr 1.2fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
}

@media (max-width: 820px) {
  :root { --radius-lg: 28px; }
  .nav-shell { grid-template-columns: 1fr auto; height: 66px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-button {
    position: relative;
    display: grid;
    gap: 5px;
    place-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    cursor: pointer;
  }
  .site-header.scrolled .menu-button { background: rgba(0,0,0,.05); }
  .menu-button span { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px var(--gutter) 55px;
    color: #fff;
    background: rgba(5,5,5,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu nav { display: grid; gap: 15px; }
  .mobile-menu nav a { padding: 10px 0; font-size: clamp(38px, 12vw, 62px); line-height: 1; letter-spacing: -.055em; }
  .mobile-menu p { margin: auto 0 0; color: rgba(255,255,255,.42); font-size: 13px; }

  .hero { height: auto; min-height: 820px; }
  .hero-shell { grid-template-columns: 1fr; align-content: center; min-height: 820px; padding-top: 120px; padding-bottom: 115px; }
  .hero h1 { font-size: clamp(50px, 13vw, 78px); }
  .hero-intro { font-size: 16px; }
  .desktop-break { display: none; }
  .hero-art { position: absolute; right: -15vw; bottom: 4%; width: 62vw; opacity: .55; }
  .hero-copy { align-self: center; }
  .hero-bottom { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .hero-bottom span:nth-of-type(n+4), .hero-bottom i:nth-of-type(n+3) { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-sidecopy { max-width: 570px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 530px; }
  .release-shell { grid-template-columns: 1fr; min-height: auto; padding-top: 110px; padding-bottom: 110px; }
  .album-stage { order: -1; width: min(90vw, 580px); margin-bottom: 30px; }
  .release-tag { margin-top: 45px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-card { grid-template-columns: 1fr; min-height: 620px; }
  .contact-actions { align-self: end; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .footer-main nav { margin-top: 10px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: 760px; }
  .hero-shell { min-height: 760px; padding-top: 110px; }
  .eyebrow { margin-bottom: 22px; }
  .hero h1 { font-size: clamp(46px, 14.5vw, 66px); line-height: 1.07; }
  .hero-intro { margin-top: 24px; line-height: 1.68; }
  .hero-actions { margin-top: 30px; }
  .button { min-height: 47px; padding-inline: 18px; font-size: 12px; }
  .hero-art { right: -25vw; bottom: 9%; width: 78vw; opacity: .42; }
  .floating-note { display: none; }
  .hero-bottom { bottom: 25px; gap: 12px; font-size: 8px; }
  .display-copy { font-size: 43px; }
  .manifesto { padding-top: 95px; }
  .manifesto-lead { font-size: 21px; }
  .services { padding-top: 70px; }
  .service-grid { margin-top: 50px; }
  .service-card { min-height: 520px; padding: 22px; }
  .service-icon { height: 170px; }
  .release .display-copy { font-size: 54px; }
  .album-stage { width: 100%; aspect-ratio: 1.02; }
  .album-cover { top: 2%; width: 77%; }
  .album-disc { top: 14%; width: 70%; }
  .about { padding-top: 110px; padding-bottom: 110px; }
  .about-hero { padding-bottom: 65px; }
  .about-statement { margin-top: 36px; font-size: 43px; }
  .about-grid { padding-top: 55px; }
  .contact-card { min-height: 610px; padding: 35px 26px; border-radius: 30px; }
  .contact-copy h2 { margin-top: 34px; font-size: 48px; }
  .site-footer { padding-top: 60px; }
  .footer-main { padding-bottom: 45px; }
  .footer-main nav { justify-content: space-between; gap: 12px; }
  .footer-legal { flex-direction: column; gap: 12px; }
}

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

/* Author styles can otherwise override the browser's native hidden rule. */
[hidden] { display: none !important; }
