:root {
  --bg: #0d1114;
  --bg-soft: #11181e;
  --surface: rgba(17, 25, 31, 0.78);
  --surface-strong: rgba(14, 21, 27, 0.92);
  --line: rgba(138, 170, 194, 0.28);
  --text: #edf3f7;
  --muted: #a7b8c6;
  --accent: #ff9d2e;
  --accent-soft: #ffd27f;
  --teal: #7cd8c2;
  --blue: #6ea3d2;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.3);
  --font-display: "Space Grotesk", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", "Trebuchet MS", sans-serif;
  --content: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(80vw 80vw at 8% -14%, rgba(110, 163, 210, 0.22), transparent 64%),
    radial-gradient(70vw 70vw at 94% 108%, rgba(255, 157, 46, 0.2), transparent 62%),
    linear-gradient(165deg, #0f151a 0%, #0c1115 40%, #0a0e12 100%);
  min-height: 100vh;
  line-height: 1.5;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 16, 0.78);
  backdrop-filter: blur(10px);
}

.site-header-inner {
  width: var(--content);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.3vw, 34px);
  letter-spacing: 0.19em;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  min-height: 42px;
  padding: 8px 12px;
  font-weight: 700;
}

.page {
  width: var(--content);
  margin: 0 auto;
  padding: 26px 0 60px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(19, 28, 35, 0.76), rgba(13, 20, 26, 0.88));
  box-shadow: var(--shadow-lg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 420px;
  height: 320px;
  left: -130px;
  top: -140px;
  background: rgba(110, 163, 210, 0.28);
}

.hero::after {
  width: 380px;
  height: 260px;
  right: -130px;
  bottom: -120px;
  background: rgba(255, 157, 46, 0.22);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr minmax(260px, 0.8fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.kicker {
  margin: 0;
  color: var(--accent-soft);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero-tagline {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 240, 250, 0.72);
}

.hero-gradient {
  background: linear-gradient(110deg, #fff7df 0%, #ffd27f 32%, #7cd8c2 64%, #7fb6e5 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 7.4s ease-in-out infinite;
}

.hero-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: #dceaf5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 11px;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-a {
  width: 16px;
  height: 16px;
  right: 20%;
  top: 20%;
  background: radial-gradient(circle, #ffffff, rgba(255, 255, 255, 0.1) 70%);
}

.orb-b {
  width: 12px;
  height: 12px;
  right: 12%;
  bottom: 34%;
  background: radial-gradient(circle, #ffd27f, rgba(255, 210, 127, 0.12) 70%);
  animation-duration: 8.4s;
}

.orb-c {
  width: 10px;
  height: 10px;
  left: 52%;
  bottom: 20%;
  background: radial-gradient(circle, #7cd8c2, rgba(124, 216, 194, 0.12) 70%);
  animation-duration: 12.2s;
}

.hero p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 20px);
  color: #d5e2ec;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  border: 0;
  border-radius: 12px;
  min-height: 44px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #1a2025;
  background: linear-gradient(145deg, #ffd27f, #ff9d2e);
  box-shadow: 0 14px 30px rgba(255, 157, 46, 0.35);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px;
  background: rgba(6, 9, 12, 0.28);
}

.metric strong {
  font-size: 18px;
  display: block;
}

.metric span {
  font-size: 12px;
  color: var(--muted);
}

.album-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 13, 17, 0.72);
  box-shadow: var(--shadow-md);
  padding: 14px;
}

.album-panel p {
  margin: 0;
}

.album-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
}

.album-track {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}

.mini-eq {
  margin-top: 10px;
  display: flex;
  align-items: end;
  gap: 4px;
  min-height: 24px;
}

.mini-eq span {
  display: block;
  width: 4px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #7cd8c2, #6ea3d2);
  opacity: 0.45;
  transform-origin: bottom center;
  transform: scaleY(0.6);
}

.album-panel.is-playing .mini-eq span {
  opacity: 0.95;
  animation: eqPulse 950ms ease-in-out infinite;
}

.album-panel.is-playing .mini-eq span:nth-child(2) { animation-delay: 80ms; }
.album-panel.is-playing .mini-eq span:nth-child(3) { animation-delay: 130ms; }
.album-panel.is-playing .mini-eq span:nth-child(4) { animation-delay: 210ms; }
.album-panel.is-playing .mini-eq span:nth-child(5) { animation-delay: 320ms; }
.album-panel.is-playing .mini-eq span:nth-child(6) { animation-delay: 260ms; }
.album-panel.is-playing .mini-eq span:nth-child(7) { animation-delay: 170ms; }
.album-panel.is-playing .mini-eq span:nth-child(8) { animation-delay: 90ms; }

.player-controls {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.player-controls .btn {
  flex: 1;
}

.player-time {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.track-pills {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.track-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 7px 11px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 600;
  cursor: pointer;
}

.track-pill.is-active {
  border-color: rgba(255, 157, 46, 0.65);
  color: #1c2530;
  background: linear-gradient(145deg, #ffd27f, #ff9d2e);
}

.helper-text {
  color: var(--muted);
  margin-top: 10px;
  font-size: 12px;
}

.section {
  margin-top: clamp(28px, 6vw, 52px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

.section-field {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(12, 18, 24, 0.86), rgba(16, 24, 30, 0.9));
  box-shadow: var(--shadow-md);
}

.section-field-inner {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 3vw, 28px);
}

.fx-field-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  pointer-events: none;
}

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

.constellation-card {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 12, 15, 0.36);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.constellation-card h3 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.05;
}

.constellation-card p {
  margin: 8px 0 0;
  color: #d4e3ef;
}

.constellation-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 210, 127, 0.9);
  font-weight: 700;
}

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

.art-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(15, 22, 28, 0.8);
  min-height: 180px;
  box-shadow: var(--shadow-md);
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 11;
  filter: saturate(1.08) contrast(1.04);
}

.art-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #eff6ff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.art-card-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #eff6ff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.js-tilt {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.js-tilt:hover {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.38);
}

.art-card.is-large {
  grid-column: span 7;
}

.art-card.is-medium {
  grid-column: span 5;
}

.art-card.is-half {
  grid-column: span 6;
}

.home-photo-intro {
  margin: 4px 0 18px;
  max-width: 62ch;
  line-height: 1.7;
}

.home-photo-section .discovery-grid {
  margin-top: 2px;
}

.photo-group-title {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em;
}

.photo-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo-medium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.photo-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.photo-card,
.photo-thumb-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(15, 22, 28, 0.8);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.photo-card img,
.photo-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.photo-card-featured img {
  aspect-ratio: 16 / 10;
}

.photo-card-medium img {
  aspect-ratio: 1 / 1;
}

.photo-thumb-card img {
  aspect-ratio: 1 / 1;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 9, 13, 0.92);
}

.photo-lightbox[hidden] {
  display: none !important;
}

.photo-lightbox-inner {
  width: min(94vw, 1600px);
}

.photo-lightbox-image {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 11, 16, 0.92);
}

.photo-lightbox-caption {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
}

.photo-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 122;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.panel h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 28px);
}

.panel p {
  margin: 0;
  color: #d9e4ee;
}

.article-body {
  background: var(--surface-strong);
}

.article-body h2 {
  margin: 22px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.3vw, 30px);
  letter-spacing: -0.01em;
}

.article-body p {
  margin: 0;
  color: #d6e4ef;
}

.article-body p + p {
  margin-top: 12px;
}

.embed-fallback {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(10, 15, 19, 0.74);
  padding: 14px;
  margin: 12px 0;
}

.embed-fallback p {
  margin: 0;
  color: var(--muted);
}

.embed-fallback p + p {
  margin-top: 10px;
}

.stack {
  display: grid;
  gap: 10px;
}

.post-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 14px;
  background: rgba(14, 20, 26, 0.78);
}

.post-card h3 {
  margin: 0;
  font-size: 18px;
}

.post-card h3 a,
.simple-item h3 a,
.release-item h3 a {
  text-decoration: none;
}

.post-card h3 a:hover,
.simple-item h3 a:hover,
.release-item h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 4vw, 32px);
  background: linear-gradient(160deg, rgba(17, 26, 33, 0.84), rgba(11, 17, 22, 0.93));
  box-shadow: var(--shadow-md);
}

.page-hero h1 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 0.95;
}

.page-hero p {
  margin: 12px 0 0;
  max-width: 72ch;
  color: #d6e2ec;
}

.release-list,
.simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.release-item,
.simple-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: rgba(14, 20, 26, 0.78);
}

.release-item h3,
.simple-item h3 {
  margin: 0;
}

.release-item p,
.simple-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.release-item-link,
.simple-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.release-item-link:hover,
.release-item-link:focus-visible,
.simple-item-link:hover,
.simple-item-link:focus-visible {
  border-color: rgba(255, 210, 127, 0.45);
  background: rgba(18, 26, 34, 0.9);
}

.platforms {
  margin-top: 28px;
}

.platforms-showcase {
  margin-top: 34px;
  isolation: isolate;
}

.platforms-showcase::before,
.platforms-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(28px);
}

.platforms-showcase::before {
  width: 280px;
  height: 220px;
  left: -88px;
  top: -80px;
  background: rgba(124, 216, 194, 0.2);
}

.platforms-showcase::after {
  width: 260px;
  height: 210px;
  right: -74px;
  bottom: -92px;
  background: rgba(255, 157, 46, 0.17);
}

.platforms-head {
  align-items: baseline;
}

.platforms-caption {
  margin: 0;
  color: rgba(215, 228, 240, 0.82);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.platforms-intro {
  max-width: 50ch;
  margin: 2px 0 16px;
  color: #cfdce8;
}

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

.platform-card {
  --platform-glow: rgba(127, 182, 229, 0.28);
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 178px;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(165deg, rgba(20, 30, 37, 0.9), rgba(12, 19, 25, 0.95));
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  transform: translateZ(0);
}

.platform-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  left: -62px;
  top: -76px;
  background: radial-gradient(circle, var(--platform-glow) 0%, rgba(0, 0, 0, 0) 72%);
  opacity: 0.88;
  transition: transform 280ms ease, opacity 280ms ease;
  pointer-events: none;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  opacity: 0.4;
  pointer-events: none;
}

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

.platform-card:hover,
.platform-card:focus-visible {
  border-color: rgba(255, 210, 127, 0.52);
  background:
    linear-gradient(165deg, rgba(26, 38, 47, 0.96), rgba(15, 24, 31, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.platform-card:hover::before,
.platform-card:focus-visible::before {
  transform: translate3d(14px, 8px, 0) scale(1.06);
  opacity: 1;
}

.platform-card:focus-visible {
  outline: 2px solid rgba(255, 210, 127, 0.62);
  outline-offset: 2px;
}

.platform-card-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 210, 127, 0.9);
}

.platform-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.015em;
}

.platform-card-note {
  color: #d0dfeb;
  font-size: 14px;
  line-height: 1.46;
  max-width: 30ch;
}

.platform-card-cta {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(248, 239, 220, 0.9);
}

.platform-card-cta::after {
  content: " ->";
}

.platform-spotify {
  --platform-glow: rgba(29, 185, 84, 0.36);
}

.platform-apple {
  --platform-glow: rgba(255, 120, 116, 0.3);
}

.platform-youtube {
  --platform-glow: rgba(255, 73, 73, 0.34);
}

.platform-soundcloud {
  --platform-glow: rgba(255, 150, 66, 0.36);
}

.platform-bandcamp {
  --platform-glow: rgba(104, 192, 220, 0.34);
}

.platform-deezer {
  --platform-glow: rgba(176, 133, 255, 0.32);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-pill {
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 17, 22, 0.8);
  color: #d9e8f5;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.platform-pill:hover {
  border-color: rgba(255, 210, 127, 0.65);
  color: #fff6e6;
}

.support-section {
  margin-top: 34px;
}

.support-card {
  border-color: rgba(255, 157, 46, 0.28);
  background:
    linear-gradient(160deg, rgba(24, 34, 43, 0.92), rgba(14, 22, 28, 0.96));
}

.support-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 4vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.support-card p {
  margin-top: 10px;
  max-width: 62ch;
  color: #d8e6f1;
}

.support-kicker {
  margin: 0;
  color: rgba(255, 210, 127, 0.96);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.patreon-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.patreon-tier {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(22, 32, 40, 0.9), rgba(13, 20, 26, 0.95));
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.patreon-tier:hover,
.patreon-tier:focus-visible {
  border-color: rgba(255, 210, 127, 0.54);
  background: linear-gradient(165deg, rgba(25, 36, 45, 0.95), rgba(16, 24, 31, 0.98));
}

.patreon-tier h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.patreon-tier-price {
  margin: 0;
  color: #ffe3ad;
  font-size: 18px;
  font-weight: 700;
}

.patreon-tier-copy {
  margin: 0;
  color: #d7e4ef;
  line-height: 1.48;
}

.patreon-tier-list {
  margin: 0;
  padding-left: 18px;
  color: #d9e5f0;
  line-height: 1.44;
}

.patreon-tier-cta {
  margin-top: auto;
  color: rgba(255, 235, 197, 0.96);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.patreon-tier-cta::after {
  content: " ->";
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 46px;
}

.site-footer-inner {
  width: var(--content);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  padding: 4px 0;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes eqPulse {
  0% { transform: scaleY(0.45); }
  35% { transform: scaleY(1.6); }
  72% { transform: scaleY(0.78); }
  100% { transform: scaleY(0.5); }
}

@keyframes orbFloat {
  0% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-14px); opacity: 0.8; }
  100% { transform: translateY(0); opacity: 0.4; }
}

@keyframes gradientShift {
  0% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
  100% { background-position: 0% 40%; }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .platform-card {
    grid-column: span 6;
  }

  .patreon-tier-grid {
    grid-template-columns: 1fr 1fr;
  }

  .art-card.is-large,
  .art-card.is-medium,
  .art-card.is-half {
    grid-column: span 12;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 12px;
    background: rgba(10, 14, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
  }

  body.nav-open .nav {
    display: flex;
  }

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

  .platform-row {
    gap: 8px;
  }

  .platforms-head {
    flex-direction: column;
    align-items: start;
    gap: 6px;
  }

  .platforms-caption {
    font-size: 13px;
  }

  .platform-card {
    grid-column: span 12;
    min-height: 162px;
  }

  .patreon-tier-grid {
    grid-template-columns: 1fr;
  }

  .platform-card strong {
    font-size: 22px;
  }

  .site-footer-inner {
    padding: 10px 0;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }

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

  .photo-thumb-grid {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  }

  .home-photo-intro {
    margin: 4px 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body.js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
