
:root {
  --bg: #04100d;
  --text: #f5f7ee;
  --muted: #9ba9a3;
  --line: rgba(225, 255, 238, .13);
  --lime: #b8ff00;
  --lime-soft: #ccff55;
  --mint: #a5f0d2;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 7%, rgba(25, 153, 127, .25), transparent 30%),
    radial-gradient(circle at 7% 44%, rgba(51, 208, 165, .12), transparent 28%),
    linear-gradient(180deg, #071713 0%, #030806 72%, #020403 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.glass {
  background: linear-gradient(145deg, rgba(21, 49, 42, .64), rgba(5, 15, 13, .66));
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.marble {
  position: fixed;
  pointer-events: none;
  z-index: -4;
  filter: blur(1px);
  opacity: .58;
}

.marble-one {
  width: 52vw;
  height: 125vh;
  min-width: 520px;
  top: -27vh;
  right: -18vw;
  border-radius: 45% 55% 38% 62%;
  transform: rotate(13deg);
  background:
    repeating-radial-gradient(
      ellipse at 28% 47%,
      rgba(110, 232, 191, .21) 0 13px,
      rgba(6, 99, 82, .17) 23px 44px,
      rgba(4, 46, 39, .08) 51px 70px,
      transparent 75px 99px
    ),
    linear-gradient(150deg, rgba(19, 148, 124, .65), rgba(0, 0, 0, 0));
}

.marble-two {
  width: 60vw;
  height: 105vh;
  min-width: 580px;
  bottom: -39vh;
  left: -22vw;
  border-radius: 59% 41% 46% 54%;
  transform: rotate(-27deg);
  background:
    repeating-radial-gradient(
      ellipse at 62% 44%,
      rgba(96, 226, 185, .16) 0 16px,
      rgba(4, 95, 78, .14) 26px 52px,
      rgba(5, 44, 37, .10) 58px 80px,
      transparent 84px 110px
    ),
    linear-gradient(35deg, rgba(10, 112, 94, .54), rgba(0, 0, 0, 0));
}

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

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.04em;
}

nav {
  display: flex;
  gap: 27px;
  color: #c0cbc6;
  font-size: 12px;
  font-weight: 750;
}

nav a:hover { color: var(--lime); }

.nav-contact {
  padding: 9px 13px;
  border: 1px solid rgba(184, 255, 0, .28);
  border-radius: 999px;
  color: #dff8d6;
  background: rgba(184, 255, 0, .05);
}

.nav-contact:hover {
  color: #071007;
  background: var(--lime);
  border-color: var(--lime);
}

.hero {
  min-height: calc(100vh - 80px);
  padding: 68px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .56fr);
  align-items: center;
  gap: 62px;
}

.eyebrow,
.panel-label,
.social-label {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 15px 0 0;
  font-size: clamp(68px, 11.8vw, 150px);
  line-height: .82;
  letter-spacing: -.085em;
  font-weight: 950;
}

.alias-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.alias-row span {
  padding: 8px 11px;
  border: 1px solid rgba(184, 255, 0, .24);
  border-radius: 999px;
  background: rgba(184, 255, 0, .06);
  color: #d9f5cc;
  font-size: 11px;
  font-weight: 760;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 670px;
  color: #bac7c1;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 27, 23, .65);
  transition: transform .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 0, .52);
}

.button strong { font-size: 14px; }
.button-copy { color: #52625a; font-size: 11px; }
.button-kicker { display: none; }

.button.tiktok {
  background: var(--lime);
  color: #071007;
  border-color: var(--lime);
  min-width: 300px;
}

.button.tiktok .button-copy { color: #3a4a2d; }

.button.tiktok .button-kicker {
  display: inline;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .65;
}

.arrow {
  margin-left: auto;
  font-size: 20px;
}

.profile-card {
  width: min(100%, 340px);
  justify-self: end;
  border-radius: 32px;
  padding: 25px;
}

.avatar-shell {
  width: 116px;
  height: 116px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), rgba(184,255,0,.08), var(--mint));
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid #0a1713;
}

.profile-name {
  margin-top: 18px;
  font-size: 25px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.profile-role {
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
}

.profile-rule {
  height: 1px;
  margin: 24px 0;
  background: var(--line);
}

.mini-heading {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 9px;
  font-weight: 850;
}

.tag-copy {
  margin: 7px 0 0;
  font-size: 34px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.05em;
}

.social-mini {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.social-mini a,
.inline-link {
  color: var(--lime-soft);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 105px 0;
  border-top: 1px solid rgba(255,255,255,.055);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}

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

.section-heading h2,
.about-title h2 {
  margin: 9px 0 0;
  font-size: clamp(40px, 6.3vw, 76px);
  line-height: .95;
  letter-spacing: -.065em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  justify-self: end;
  max-width: 430px;
  font-size: 14px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.track-card {
  position: relative;
  grid-column: span 4;
  min-height: 315px;
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .18s ease, border-color .18s ease;
}

.track-card.art {
  background: #09110f;
  isolation: isolate;
}

.track-card.art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: inherit;
}

.track-card.art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 9, .10) 0%,
    rgba(4, 10, 9, .18) 42%,
    rgba(3, 7, 6, .88) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

.track-card.feature {
  grid-column: span 8;
  min-height: 360px;
}


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

.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,255,0,.50);
}

.track-number {
  color: rgba(231, 255, 240, .50);
  font-size: 11px;
  letter-spacing: .13em;
  font-weight: 850;
}

.artist {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.track-card h3 {
  margin: 7px 0 5px;
  max-width: 90%;
  font-size: clamp(29px, 4.2vw, 52px);
  line-height: .95;
  letter-spacing: -.055em;
}

.credit {
  color: rgba(245, 247, 238, .78);
  font-size: 11px;
}

.track-card .open {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #dbe6e0;
  font-size: 10px;
  font-weight: 800;
}

.credit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credit-panel {
  border-radius: 28px;
  padding: 27px;
}

.credit-panel.archived {
  background: linear-gradient(145deg, rgba(27, 37, 34, .54), rgba(7, 13, 11, .72));
}

.credit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.credit-tags span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-weight: 800;
  font-size: 13px;
}

.credit-tags small {
  color: var(--muted);
  font-weight: 600;
}

.about-inline { margin-top: 16px; }

.about-card {
  border-radius: 32px;
  padding: clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.about-copy p {
  color: #bdc9c3;
  font-size: 16px;
  line-height: 1.65;
}

.about-copy strong { color: var(--text); }

.about-aliases {
  margin-top: 0;
  margin-bottom: 20px;
}

.note {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #79877f !important;
  font-size: 11px !important;
}

.worked-with {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
}

.name-cloud {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.name-cloud span {
  font-size: clamp(30px, 5vw, 63px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
}

.name-cloud.producers span:nth-child(even),
.name-cloud:not(.producers) span:nth-child(2),
.name-cloud:not(.producers) span:nth-child(4) {
  color: var(--lime);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  min-height: 155px;
  border-radius: 26px;
  padding: 23px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: transform .18s ease, border-color .18s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184,255,0,.48);
}

.social-tiktok {
  grid-column: 1 / -1;
  min-height: 190px;
  color: #071007;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(115deg, #b8ff00, #8eea28);
  border-color: rgba(213,255,121,.75);
}

.social-tiktok .social-label,
.social-tiktok p {
  color: rgba(7,16,7,.60);
}

.social-card h3 {
  margin: 7px 0 4px;
  font-size: 29px;
  letter-spacing: -.045em;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.social-arrow { font-size: 25px; }


.contact-strip {
  margin-top: 0;
  margin-bottom: 90px;
  border: 1px solid rgba(184, 255, 0, .16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 40, 34, .74), rgba(5, 14, 12, .80));
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.contact-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.06em;
}

.contact-strip p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.email-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 19px;
  border-radius: 999px;
  background: var(--lime);
  color: #071007;
  font-weight: 900;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease;
}

.email-pill:hover {
  transform: translateY(-2px);
  background: #c8ff35;
}

.email-pill span:last-child {
  font-size: 19px;
}

footer {
  min-height: 105px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #67756e;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 26px, 1140px);
  }

  .site-header { height: 70px; }

  nav {
    gap: 10px;
    font-size: 10px;
  }

  .nav-contact {
    padding: 7px 10px;
  }

  nav a:nth-child(2),
  nav a:nth-child(3) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 0 82px;
  }

  h1 {
    font-size: clamp(61px, 19vw, 100px);
  }

  .profile-card {
    justify-self: stretch;
    width: 100%;
  }

  .button.tiktok {
    min-width: min(100%, 340px);
  }

  .section { padding: 78px 0; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .track-card,
  .track-card.feature {
    grid-column: 1 / -1;
    min-height: 255px;
  }

  .credit-layout,
  .about-card,
  .worked-with,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .worked-with { gap: 48px; }
  .about-card { gap: 32px; }
  .social-tiktok { grid-column: 1; }


  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
  }

  .email-pill {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
