:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #a9b7c7;
  --dim: #6f8195;
  --void: #05070d;
  --panel: rgba(13, 20, 32, 0.78);
  --panel-strong: rgba(18, 31, 48, 0.94);
  --line: rgba(177, 207, 238, 0.22);
  --cyan: #7de2df;
  --amber: #f2b35d;
  --coral: #ff756f;
  --violet: #a68bff;
  --green: #8be28f;
  --steel: #c9d7e3;
  --max: 1180px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(125, 226, 223, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(255, 117, 111, 0.13), transparent 24rem),
    linear-gradient(180deg, #05070d 0%, #10151f 34%, #16110f 58%, #071313 100%);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #05070d;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 46px);
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.88), rgba(5, 7, 13, 0.38));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 215, 227, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(125, 226, 223, 0.55);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 8px;
  border-top: 2px solid var(--amber);
  border-radius: 50%;
  left: -8px;
  top: 7px;
  transform: rotate(-18deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 0.92rem;
}

nav a {
  padding: 8px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding: 96px clamp(18px, 5vw, 64px);
  position: relative;
  isolation: isolate;
}

.hero-copy {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 980px;
}

.hero-lede {
  width: min(760px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(201, 215, 227, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(125, 226, 223, 0.12);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), #b6f2d0);
  color: #061017;
  border-color: transparent;
}

.planet {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.planet-a {
  width: clamp(80px, 10vw, 150px);
  aspect-ratio: 1;
  left: 7vw;
  top: 18vh;
  background: radial-gradient(circle at 30% 25%, #ffe7a8, #f2b35d 38%, #923f58 72%);
  box-shadow: 0 0 70px rgba(242, 179, 93, 0.28);
}

.planet-b {
  width: clamp(54px, 7vw, 100px);
  aspect-ratio: 1;
  right: 11vw;
  top: 28vh;
  background: radial-gradient(circle at 35% 24%, #d8fff8, #7de2df 42%, #255a7a 78%);
  box-shadow: 0 0 60px rgba(125, 226, 223, 0.28);
}

.mission-band {
  width: min(var(--max), calc(100% - 36px));
  margin: -28px auto 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.mission-band div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.mission-band div:last-child {
  border-right: 0;
}

.metric {
  color: var(--amber);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.mission-band span:last-child {
  color: var(--muted);
}

section {
  position: relative;
}

.section-heading {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto 44px;
  text-align: center;
}

.bio-copy > .eyebrow,
.contact-section > div:first-child > .eyebrow {
  text-align: center;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.bio-copy,
.contact-section > div:first-child {
  text-align: center;
}

.section-heading h2,
.bio-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.bio-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.ship-section {
  padding: 40px 0 100px;
}

.ship-frame {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  min-height: 0;
}

.project-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 32px;
  padding: 40px 0;
}

.project-card {
  --card-shape: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --card-motif: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
  --icon-shape: inset(0);
  height: 380px;
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  clip-path: var(--card-shape);
  background:
    var(--card-motif),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(28px);
  opacity: 0;
  transition: transform 600ms ease, opacity 600ms ease, border-color 250ms ease, background 250ms ease, clip-path 250ms ease;
}

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

.project-card::before,
.project-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.project-card::before {
  inset: 12px;
  border: 1px solid rgba(201, 215, 227, 0.1);
  clip-path: var(--card-shape);
  opacity: 0.76;
}

.project-card::after {
  right: 22px;
  bottom: 20px;
  width: 118px;
  height: 118px;
  background: var(--card-accent, var(--cyan));
  clip-path: var(--icon-shape);
  opacity: 0.1;
}

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

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(125, 226, 223, 0.72);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(125, 226, 223, 0.18), transparent 16rem),
    var(--card-motif),
    var(--panel-strong);
}

.project-card--event {
  --card-shape: polygon(8% 0, 92% 0, 100% 14%, 100% 86%, 92% 100%, 8% 100%, 0 86%, 0 14%);
  --card-motif:
    radial-gradient(circle at 82% 17%, transparent 0 32px, rgba(125, 226, 223, 0.28) 33px 35px, transparent 36px),
    linear-gradient(135deg, rgba(125, 226, 223, 0.15), transparent 42%);
  --icon-shape: polygon(18% 0, 82% 0, 100% 18%, 100% 82%, 82% 100%, 18% 100%, 0 82%, 0 18%);
}

.project-card--flow {
  --card-shape: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%, 4% 50%);
  --card-motif:
    repeating-linear-gradient(135deg, rgba(242, 179, 93, 0.13) 0 2px, transparent 2px 22px),
    linear-gradient(110deg, rgba(242, 179, 93, 0.14), transparent 48%);
  --icon-shape: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%, 16% 50%);
}

.project-card--chart {
  --card-shape: polygon(0 0, 38% 0, 38% 5%, 58% 5%, 58% 0, 78% 0, 78% 9%, 100% 9%, 100% 100%, 0 100%);
  --card-motif:
    linear-gradient(90deg, transparent 0 58%, rgba(166, 139, 255, 0.16) 58% 64%, transparent 64%),
    repeating-linear-gradient(90deg, rgba(166, 139, 255, 0.11) 0 2px, transparent 2px 34px);
  --icon-shape: polygon(0 68%, 20% 68%, 20% 48%, 40% 48%, 40% 30%, 60% 30%, 60% 12%, 100% 12%, 100% 100%, 0 100%);
}

.project-card--phoenix {
  --card-shape: polygon(0 0, 42% 0, 50% 11%, 58% 0, 100% 0, 94% 100%, 6% 100%);
  --card-motif:
    radial-gradient(circle at 50% 8%, rgba(255, 117, 111, 0.26), transparent 9rem),
    linear-gradient(155deg, rgba(255, 117, 111, 0.16), transparent 46%);
  --icon-shape: polygon(50% 0, 100% 28%, 72% 34%, 88% 100%, 50% 70%, 12% 100%, 28% 34%, 0 28%);
}

.project-card--pulse {
  --card-shape: polygon(0 0, 100% 0, 100% 37%, 94% 43%, 100% 50%, 100% 100%, 0 100%, 0 63%, 6% 57%, 0 50%);
  --card-motif:
    linear-gradient(110deg, transparent 0 28%, rgba(139, 226, 143, 0.17) 28% 30%, transparent 30% 48%, rgba(139, 226, 143, 0.12) 48% 50%, transparent 50%),
    linear-gradient(135deg, rgba(139, 226, 143, 0.11), transparent 42%);
  --icon-shape: polygon(0 54%, 25% 54%, 34% 28%, 45% 78%, 58% 40%, 68% 54%, 100% 54%, 100% 72%, 62% 72%, 50% 56%, 43% 100%, 31% 50%, 25% 72%, 0 72%);
}

.project-card--conduit {
  --card-shape: polygon(6% 0, 100% 0, 100% 100%, 6% 100%, 0 78%, 4% 50%, 0 22%);
  --card-motif:
    repeating-linear-gradient(0deg, rgba(125, 226, 223, 0.12) 0 2px, transparent 2px 28px),
    linear-gradient(90deg, rgba(125, 226, 223, 0.15), transparent 44%);
  --icon-shape: polygon(18% 0, 100% 0, 82% 50%, 100% 100%, 18% 100%, 0 50%);
}

.project-card--cortex {
  --card-shape: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
  --card-motif:
    radial-gradient(circle at 24% 28%, rgba(242, 179, 93, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 26%, rgba(242, 179, 93, 0.16) 0 4px, transparent 5px),
    radial-gradient(circle at 64% 76%, rgba(242, 179, 93, 0.14) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(242, 179, 93, 0.12), transparent 46%);
  --icon-shape: polygon(20% 0, 80% 0, 100% 50%, 80% 100%, 20% 100%, 0 50%);
}

.project-card--keystone {
  --card-shape: polygon(3% 0, 97% 0, 95% 100%, 5% 100%);
  --card-motif:
    radial-gradient(circle at 82% 18%, rgba(166, 139, 255, 0.2) 0 22px, transparent 23px),
    linear-gradient(160deg, rgba(166, 139, 255, 0.14), transparent 48%);
  --icon-shape: polygon(8% 0, 92% 0, 78% 100%, 22% 100%);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
}

.project-type {
  margin: 8px 0 0;
  color: var(--amber);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.symbol-grid {
  width: 74px;
  height: 74px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 4px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 215, 227, 0.2);
  background: rgba(255, 255, 255, 0.045);
  clip-path: var(--icon-shape);
}

.symbol-grid span {
  border-radius: 50%;
  background: rgba(201, 215, 227, 0.12);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.symbol-grid span.active {
  background: var(--card-accent, var(--cyan));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.project-card:hover .symbol-grid span.active,
.project-card:focus-within .symbol-grid span.active {
  background: var(--card-accent, var(--cyan));
  transform: scale(1.45);
  box-shadow: 0 0 14px var(--card-accent, var(--cyan));
}

.project-card p {
  color: var(--muted);
}

.project-card > p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 18px 0 22px;
  max-height: 70px;
  overflow: hidden;
  list-style: none;
}

.tech-list li {
  border: 1px solid rgba(201, 215, 227, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--steel);
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.04);
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-links a {
  font-weight: 900;
  color: var(--ink);
  border-bottom: 1px solid rgba(125, 226, 223, 0.55);
}

.card-links a:hover,
.card-links a:focus-visible {
  color: var(--card-accent, var(--cyan));
}

.systems-section,
.creative-section,
.music-section,
.bio-section,
.contact-section {
  padding: 96px clamp(18px, 5vw, 64px);
}

.systems-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.systems-grid article {
  min-height: 235px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.systems-grid h3,
.gallery-wrap h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.systems-grid p {
  color: var(--muted);
  margin: 0;
}

.gallery-wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 38px;
}

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

figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.media-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.media-thumb {
  width: 100%;
  aspect-ratio: 16 / 11;
  display: block;
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: rgba(5, 7, 13, 0.72);
  color: inherit;
  cursor: zoom-in;
}

.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-thumb--video {
  cursor: default;
}

.media-thumb--image::after,
.media-thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(5, 7, 13, 0.46));
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.media-thumb--image:hover::after,
.media-thumb--image:focus-visible::after,
.media-thumb--video:hover::after,
.media-thumb--video:focus-within::after {
  opacity: 1;
}

.media-thumb--image:focus-visible,
.media-expand:focus-visible,
.media-modal__close:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.media-expand {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  border: 1px solid rgba(201, 215, 227, 0.28);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(5, 7, 13, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: zoom-in;
  backdrop-filter: blur(12px);
}

.media-expand:hover,
.media-expand:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

body.modal-open {
  overflow: hidden;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
}

.media-modal.is-open {
  display: grid;
}

.media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 9, 0.82);
  backdrop-filter: blur(10px);
}

.media-modal__panel {
  width: min(1120px, 100%);
  max-height: min(86vh, 820px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
}

.media-modal__content {
  min-height: 0;
  display: grid;
  place-items: center;
}

.media-modal__content img,
.media-modal__content video {
  max-width: 100%;
  max-height: calc(86vh - 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #05070d;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.media-modal__title {
  margin: 0;
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.media-modal__close {
  justify-self: end;
  border: 1px solid rgba(201, 215, 227, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(5, 7, 13, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.media-modal__close:hover,
.media-modal__close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.music-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.music-card {
  min-height: 464px;
  position: relative;
  display: grid;
  grid-template-rows: minmax(242px, 1fr) 160px;
  padding-bottom: 40px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(var(--track-accent-rgb), 0.18), transparent 38%),
    repeating-linear-gradient(90deg, rgba(201, 215, 227, 0.06) 0 1px, transparent 1px 24px),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.music-card::before,
.music-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.music-card::before {
  inset: 14px;
  border: 1px solid rgba(201, 215, 227, 0.1);
  border-radius: calc(var(--radius) - 2px);
}

.music-card::after {
  left: 22px;
  right: 22px;
  bottom: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--track-accent), transparent);
  opacity: 0.45;
}

.music-card:hover,
.music-card:focus-within,
.music-card:focus-visible,
.music-card.is-playing {
  border-color: var(--track-accent);
  background:
    linear-gradient(135deg, rgba(var(--track-accent-rgb), 0.24), transparent 42%),
    repeating-linear-gradient(90deg, rgba(201, 215, 227, 0.08) 0 1px, transparent 1px 24px),
    var(--panel-strong);
  transform: translateY(-3px);
}

.music-card__body {
  display: grid;
  grid-template-rows: auto minmax(112px, 1fr);
  gap: 20px;
  padding: clamp(20px, 3vw, 26px);
}

.music-card:focus-visible {
  outline: 2px solid var(--track-accent);
  outline-offset: 3px;
}

.music-card__meta {
  display: grid;
  gap: 9px;
}

.music-card__label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(var(--track-accent-rgb), 0.54);
  border-radius: 999px;
  color: var(--track-accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.music-card__title {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 0.96;
}

.music-card__artist {
  display: block;
  color: var(--muted);
}

.music-card__artist {
  margin-top: 8px;
}

.music-wave {
  height: 122px;
  align-self: center;
  display: grid;
  grid-template-columns: repeat(18, minmax(4px, 1fr));
  align-items: end;
  gap: clamp(4px, 0.8vw, 7px);
}

.music-wave span {
  min-height: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--track-accent), rgba(201, 215, 227, 0.24));
  opacity: 0.64;
  transform-origin: bottom;
  height: var(--bar-height);
}

.music-card.is-playing .music-wave span {
  animation: musicPulse 760ms ease-in-out infinite alternate;
  animation-delay: calc(var(--bar-index) * -46ms);
  opacity: 0.92;
}

.soundcloud-frame {
  width: calc(100% - 44px);
  height: 160px;
  display: block;
  justify-self: center;
  border: 1px solid rgba(201, 215, 227, 0.14);
  border-radius: var(--radius);
  background: #05070d;
  opacity: 0.78;
  pointer-events: none;
}

@keyframes musicPulse {
  from {
    transform: scaleY(0.56);
  }

  to {
    transform: scaleY(1.08);
  }
}

.bio-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.bio-orbit {
  aspect-ratio: 1;
  border: 1px solid rgba(201, 215, 227, 0.22);
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle, rgba(125, 226, 223, 0.14), transparent 36%),
    repeating-radial-gradient(circle, transparent 0 44px, rgba(201, 215, 227, 0.12) 45px 46px);
}

.bio-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.bio-orbit span:nth-child(1) { top: 14%; left: 50%; }
.bio-orbit span:nth-child(2) { top: 46%; left: 82%; background: var(--amber); box-shadow: 0 0 20px var(--amber); }
.bio-orbit span:nth-child(3) { top: 76%; left: 33%; background: var(--coral); box-shadow: 0 0 20px var(--coral); }
.bio-orbit span:nth-child(4) { top: 36%; left: 18%; background: var(--green); box-shadow: 0 0 20px var(--green); }

.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(242, 179, 93, 0.14), transparent 18rem),
    rgba(5, 7, 13, 0.72);
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel a {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

@media (max-width: 920px) {
  .mission-band,
  .systems-grid,
  .gallery-grid,
  .music-grid,
  .bio-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .mission-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission-band div:last-child {
    border-bottom: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 90vh;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.8rem);
  }

  .systems-section,
  .creative-section,
  .music-section,
  .bio-section,
  .contact-section {
    padding: 72px 18px;
  }

  .music-card {
    min-height: 434px;
    grid-template-rows: minmax(226px, 1fr) 140px;
    padding-bottom: 36px;
  }

  .soundcloud-frame {
    height: 140px;
  }

  .card-top {
    align-items: center;
  }

  .symbol-grid {
    width: 58px;
    height: 58px;
    gap: 3px;
  }
}

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