:root {
  --bg: #060609;
  --bg-soft: #0d0d13;
  --panel: rgba(18, 18, 28, 0.72);
  --panel-strong: rgba(27, 24, 35, 0.9);
  --text: #f5f0f2;
  --muted: #a7a0ac;
  --red: #ff2a3d;
  --red-dark: #9e1020;
  --red-soft: rgba(255, 42, 61, 0.16);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --digytt-pfp: url("https://cdn.discordapp.com/avatars/1148483807830356110/030f1bd33e099e527a6a6e88d620df0f.webp?size=2048");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 42, 61, 0.18), transparent 24rem),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.06), transparent 18rem),
    linear-gradient(135deg, #030305 0%, #0b0b12 48%, #14050a 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 42, 61, 0.08), transparent 18rem),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.05), transparent 16rem),
    radial-gradient(circle at 42% 78%, rgba(255, 42, 61, 0.06), transparent 20rem);
}

body::after {
  position: fixed;
  inset: auto -20% -35% -20%;
  z-index: -2;
  height: 70vh;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 42, 61, 0.18), transparent 62%);
  filter: blur(8px);
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-glow {
  position: fixed;
  top: var(--mouse-y, 20%);
  left: var(--mouse-x, 70%);
  z-index: -1;
  width: 22rem;
  height: 22rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 42, 61, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  transition: top 0.25s ease, left 0.25s ease;
}

.star-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.star-field span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: var(--size);
  height: var(--size);
  opacity: var(--opacity);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  animation: twinkle 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    opacity: 0.18;
    transform: scale(1.4);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 18px max(16px, calc((100% - 1180px) / 2));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(rgba(255, 42, 61, 0.12), rgba(255, 42, 61, 0.12)),
    var(--digytt-pfp) center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 42, 61, 0.38);
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 7px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--red-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.hero,
.section,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.orbit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 72px 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow),
.page-hero p {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 700;
  border-radius: 999px;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #ff6a50);
  box-shadow: 0 18px 44px rgba(255, 42, 61, 0.34);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.planet-stage {
  position: relative;
  min-height: 620px;
  border-radius: 50%;
  transform: translate(var(--stage-x, 0), var(--stage-y, 0)) scale(var(--stage-scale, 1));
}

.planet-stage::before {
  position: absolute;
  inset: 9%;
  content: "";
  background: radial-gradient(circle, rgba(255, 42, 61, 0.18), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 280px;
  height: 280px;
}

.orbit-two {
  width: 430px;
  height: 430px;
}

.orbit-three {
  width: 570px;
  height: 570px;
}

.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 42, 61, 0.08), rgba(0, 0, 0, 0.36)),
    var(--digytt-pfp) center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset -36px -48px 80px rgba(0, 0, 0, 0.4), 0 0 100px rgba(255, 42, 61, 0.42);
  transform: translate(-50%, -50%);
}

.planet::before,
.planet::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.planet::before {
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.26), transparent 18%),
    radial-gradient(circle at 72% 86%, rgba(0, 0, 0, 0.38), transparent 42%);
}

.planet::after {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(255, 42, 61, 0.18);
}

.satellite {
  position: absolute;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(18, 18, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 0 30px rgba(255, 42, 61, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  animation: float 5s ease-in-out infinite;
}

.satellite svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 10px rgba(255, 42, 61, 0.45));
}

.satellite:hover {
  background: var(--red-soft);
  border-color: rgba(255, 42, 61, 0.65);
  transform: translateY(-6px) scale(1.04);
}

.sat-one {
  top: 9%;
  left: 44%;
}

.sat-two {
  top: 33%;
  right: 4%;
  animation-delay: -1s;
}

.sat-three {
  right: 17%;
  bottom: 11%;
  animation-delay: -2s;
}

.sat-four {
  bottom: 18%;
  left: 4%;
  animation-delay: -3s;
}

.sat-five {
  top: 25%;
  left: 9%;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

.section {
  padding: 88px 0;
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 720px;
}

.card-grid,
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card,
.more-grid article,
.glass-panel,
.timeline article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.project-card,
.more-grid article {
  min-height: 230px;
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.project-card:hover,
.more-grid article:hover {
  background: rgba(255, 42, 61, 0.1);
  border-color: rgba(255, 42, 61, 0.5);
  transform: translateY(-8px);
}

.project-card .tag {
  color: var(--red);
  font-weight: 800;
}

.page-shell {
  padding: 74px 0 96px;
}

.page-hero {
  margin-bottom: 46px;
}

.error-page {
  display: grid;
  min-height: 62vh;
  place-items: center;
  text-align: center;
}

.error-page .page-hero {
  display: grid;
  justify-items: center;
  margin-bottom: 0;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 9vw, 8rem);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.glass-panel {
  padding: 32px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  position: relative;
  padding: 28px 28px 28px 70px;
}

.timeline span {
  position: absolute;
  top: 30px;
  left: 28px;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 42, 61, 0.8);
}

.project-card a {
  color: #fff;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  padding: 8px 12px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  background: var(--red-soft);
  border: 1px solid rgba(255, 42, 61, 0.4);
  border-radius: 999px;
}

.photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 16px;
}

.photo-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  margin-top: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.photo-pagination button {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.photo-pagination button:hover:not(:disabled),
.photo-pagination button[aria-current="page"] {
  background: var(--red-soft);
  border-color: rgba(255, 42, 61, 0.58);
  transform: translateY(-2px);
}

.photo-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.photo-tile {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  padding: 20px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(135deg, rgba(255, 42, 61, 0.46), rgba(9, 9, 14, 0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  font: inherit;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile img + figcaption {
  position: relative;
  z-index: 1;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.photo-tile:hover,
.photo-tile:focus-visible {
  border-color: rgba(255, 42, 61, 0.58);
  transform: scale(1.025);
}

.photo-tile:focus-visible {
  outline: 3px solid rgba(255, 42, 61, 0.82);
  outline-offset: 4px;
}

.photo-tile span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox-panel {
  position: relative;
  width: min(100%, 1100px);
  padding: 18px;
  background: rgba(10, 10, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.78);
}

.photo-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 20px;
}

.photo-lightbox p {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.photo-lightbox-counter {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.photo-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.photo-lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 31;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
  background: rgba(10, 10, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.photo-lightbox-arrow:hover {
  background: var(--red-soft);
  border-color: rgba(255, 42, 61, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.photo-lightbox-prev {
  left: 28px;
}

.photo-lightbox-next {
  right: 28px;
}

body.lightbox-open {
  overflow: hidden;
}

.photo-help,
.contact-form,
.availability-note {
  padding: 28px;
  margin-top: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.availability-note p {
  max-width: 900px;
  margin-bottom: 0;
}

.photo-help code {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px 6px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-method {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: #fff;
  font-weight: 800;
  background: var(--red-soft);
  border: 1px solid rgba(255, 42, 61, 0.42);
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.contact-method:hover,
a.contact-method:focus-visible {
  background: rgba(255, 42, 61, 0.24);
  border-color: rgba(255, 42, 61, 0.72);
  outline: none;
  transform: translateY(-2px);
}

.contact-method svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-method svg.brand-icon {
  fill: currentColor;
  stroke: none;
}

.contact-method span {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-method strong {
  color: #fff;
  font-size: 0.94rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 42, 61, 0.72);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 42, 61, 0.14);
}

.contact-form textarea {
  min-height: 260px;
  resize: vertical;
}

.contact-submit {
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.music-hero {
  display: grid;
  justify-items: start;
}

.music-profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  margin-top: 4px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--red-soft);
  border: 1px solid rgba(255, 42, 61, 0.42);
  border-radius: 999px;
}

.apple-music-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.statsfm-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  margin-bottom: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.statsfm-heading {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.statsfm-heading h2 {
  margin-bottom: 0;
}

.statsfm-heading a {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: #fff;
  font-weight: 800;
  background: var(--red-soft);
  border: 1px solid rgba(255, 42, 61, 0.42);
  border-radius: 999px;
}

.statsfm-status {
  color: var(--muted);
}

.statsfm-tracks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.statsfm-track {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 9px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.statsfm-track:hover {
  background: var(--red-soft);
  border-color: rgba(255, 42, 61, 0.5);
  transform: translateY(-4px);
}

.statsfm-track img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.statsfm-track h3 {
  margin-bottom: 4px;
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.statsfm-track p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apple-music-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.apple-music-card-heading {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.apple-music-card-heading img {
  width: 92px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.playlist-number {
  display: block;
  color: var(--red);
  font-weight: 800;
}

.apple-music-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.apple-music-card p {
  margin-bottom: 0;
}

.playlist-meta,
.playlist-status {
  color: var(--muted);
  font-size: 0.86rem;
}

.playlist-actions,
.playlist-track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.playlist-actions {
  margin-top: 14px;
}

.playlist-actions a,
.playlist-track-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.playlist-actions a:first-child,
.playlist-track-actions a:first-child {
  background: var(--red-soft);
  border-color: rgba(255, 42, 61, 0.42);
}

.playlist-tracks {
  display: grid;
  gap: 8px;
  max-height: 460px;
  padding: 0 4px 0 0;
  margin: 0;
  overflow: auto;
  list-style: none;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.playlist-track {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.playlist-track img {
  width: 44px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.playlist-track h3,
.playlist-track p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playlist-track h3 {
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.playlist-track p {
  font-size: 0.76rem;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    background: rgba(8, 8, 12, 0.95);
  }

  .site-nav.is-open {
    display: flex;
  }

  .orbit-hero,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .planet-stage {
    min-height: 520px;
  }

  .card-grid,
  .more-grid,
  .apple-music-grid,
  .statsfm-tracks {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .orbit-hero {
    padding-top: 42px;
  }

  .planet-stage {
    min-height: 420px;
    transform-origin: top center;
    --stage-scale: 0.82;
  }

  .orbit-three {
    width: 460px;
    height: 460px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .orbit-one {
    width: 230px;
    height: 230px;
  }

  .planet {
    width: 210px;
    height: 210px;
  }

  .section-heading,
  .site-footer {
    display: block;
  }

  .card-grid,
  .more-grid,
  .photo-grid,
  .apple-music-grid,
  .statsfm-tracks {
    grid-template-columns: 1fr;
  }

  .statsfm-heading {
    display: grid;
  }

  .photo-tile.wide,
  .photo-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .photo-lightbox-prev {
    left: 10px;
  }

  .photo-lightbox-next {
    right: 10px;
  }
}
