:root {
  --bg: #03050d;
  --bg-soft: rgba(10, 16, 31, 0.76);
  --panel: rgba(8, 13, 27, 0.72);
  --panel-strong: rgba(11, 19, 37, 0.92);
  --text: #f6f7fb;
  --muted: #adc2dd;
  --line: rgba(158, 201, 255, 0.18);
  --cyan: #6ce4ff;
  --gold: #ffc96b;
  --coral: #d85f67;
  --lime: #b3ff8a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Sora", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --map-x: 0px;
  --map-y: 0px;
  --map-rotate-x: 0deg;
  --map-rotate-y: 0deg;
  --scene-x: 0px;
  --scene-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(30, 65, 130, 0.35), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(59, 91, 148, 0.14), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(255, 145, 77, 0.15), transparent 18%),
    var(--bg);
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.space-scene {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  transform: translate3d(var(--scene-x, 0px), var(--scene-y, 0px), 0);
  transition: transform 500ms ease-out;
}

.nebula,
#space-canvas {
  position: absolute;
}

#space-canvas {
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.nebula {
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}

.nebula-one {
  width: 460px;
  height: 260px;
  top: 28%;
  left: 8%;
  background: rgba(108, 228, 255, 0.2);
}

.nebula-two {
  width: 340px;
  height: 340px;
  right: 12%;
  bottom: 16%;
  background: rgba(255, 139, 118, 0.17);
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5vw;
  background: linear-gradient(to bottom, rgba(3, 5, 13, 0.92), rgba(3, 5, 13, 0.35));
  backdrop-filter: blur(16px);
  z-index: 20;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
}

main {
  padding: 1.25rem 5vw 4rem;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(640px, 1.52fr);
  gap: 1rem;
  align-items: center;
  perspective: 1200px;
}

.hero-copy {
  max-width: 320px;
  position: relative;
  z-index: 3;
}

.eyebrow,
.project-kicker,
.spotlight-label {
  margin: 0 0 0.75rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.77rem;
}

.hero h1,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  line-height: 1.05;
  max-width: 12ch;
}

.hero-text,
.contact-copy p,
.project-card p,
.spotlight-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.84rem;
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), #2f7dff);
  color: #00111a;
  font-weight: 700;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.universe-map {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 860px);
  margin-inline: auto;
  justify-self: center;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--map-x, 0px), var(--map-y, 0px), 0)
    rotateX(var(--map-rotate-x, 0deg))
    rotateY(var(--map-rotate-y, 0deg));
  transition: transform 320ms ease-out;
}

.map-core-glow {
  position: absolute;
  inset: 24% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 66, 94, 0.3), rgba(255, 110, 86, 0.1), transparent 72%);
  filter: blur(34px);
  transform: translateZ(-20px);
  animation: coreGlow 14s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px dashed rgba(173, 208, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitBreath 10s ease-in-out infinite;
  transform-style: preserve-3d;
}

.orbit-one {
  width: 32%;
  height: 32%;
}

.orbit-two {
  width: 58%;
  height: 58%;
}

.orbit-three {
  width: 84%;
  height: 84%;
}

.constellation-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 210, 120, 0.28), rgba(255, 255, 255, 0.04));
  opacity: 0.18;
  transform-style: preserve-3d;
}

.line-worldisc {
  width: 150px;
  transform: translate(0, -62px) rotate(-30deg);
}

.line-dj66 {
  width: 205px;
  transform: translate(20px, 44px) rotate(14deg);
}

.line-mockle {
  width: 145px;
  transform: translate(-8px, 92px) rotate(92deg);
}

.line-social {
  width: 178px;
  transform: translate(-12px, -4px) rotate(188deg);
}

.node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 188px;
  min-height: 188px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  cursor: pointer;
  text-align: center;
  transform-style: preserve-3d;
  transform:
    translate3d(
      calc(-50% + var(--orbit-x, 0px)),
      calc(-50% + var(--orbit-y, 0px)),
      var(--orbit-z, 0px)
    )
    rotateZ(var(--orbit-rotate, 0deg))
    scale(var(--node-scale, 1));
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform;
  opacity: 0.96;
  z-index: 5;
}

.node:hover,
.node.is-active {
  --node-scale: 1.06;
  opacity: 1;
}

.node::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(210, 236, 255, 0.14);
  background:
    radial-gradient(circle, rgba(164, 224, 255, 0.08), transparent 58%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.node::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: transparent;
}

.node:hover::before,
.node.is-active::before {
  opacity: 1;
  transform: scale(1.03);
}

.node-icon {
  display: none;
}

.node-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.88rem;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.node-subtitle {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.node-core {
  width: 234px;
  min-height: 234px;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: transparent;
  color: #fff8f1;
  text-shadow: 0 2px 18px rgba(61, 10, 23, 0.55);
  z-index: 2;
}

.node-core::before {
  inset: 18px;
  border-radius: 50%;
  border-color: rgba(255, 226, 226, 0.16);
  background:
    radial-gradient(circle, rgba(180, 34, 56, 0.12), transparent 58%);
}

.node-core:hover,
.node-core.is-active {
  --node-scale: 1.04;
}

.node-worldisc {
  --orbit-x: 180px;
  --orbit-y: -138px;
  --orbit-z: 30px;
  --orbit-rotate: 4deg;
  color: #eaf7ff;
}

.node-worldisc::before {
  border-color: rgba(164, 218, 255, 0.22);
  background: radial-gradient(circle, rgba(76, 165, 255, 0.14), transparent 58%);
}

.node-worldisc .node-title {
  color: #eaf7ff;
  font-size: 0.92rem;
}

.node-worldisc .node-subtitle {
  color: rgba(215, 237, 255, 0.76);
}

.node-dj66 {
  --orbit-x: 252px;
  --orbit-y: 126px;
  --orbit-z: 20px;
  --orbit-rotate: -5deg;
}

.node-mockle {
  --orbit-x: 36px;
  --orbit-y: 228px;
  --orbit-z: 18px;
  --orbit-rotate: 3deg;
}

.node-social {
  --orbit-x: -258px;
  --orbit-y: -24px;
  --orbit-z: 14px;
  --orbit-rotate: -4deg;
}

.node-dj66 {
  color: #f0edff;
}

.node-dj66::before {
  border-color: rgba(182, 171, 255, 0.22);
  background: radial-gradient(circle, rgba(126, 103, 255, 0.14), transparent 58%);
}

.node-dj66 .node-title {
  color: #f0edff;
  font-size: 1.06rem;
}

.node-dj66 .node-subtitle {
  color: rgba(222, 217, 255, 0.74);
}

.node-mockle {
  color: #e9fffb;
}

.node-mockle::before {
  border-color: rgba(135, 229, 214, 0.22);
  background: radial-gradient(circle, rgba(111, 238, 209, 0.12), transparent 58%);
}

.node-mockle .node-title {
  color: #e9fffb;
}

.node-mockle .node-subtitle {
  color: rgba(213, 255, 248, 0.72);
}

.node-social {
  color: #edf8ff;
}

.node-social::before {
  border-color: rgba(142, 208, 255, 0.22);
  background: radial-gradient(circle, rgba(122, 194, 255, 0.12), transparent 58%);
}

.node-social .node-title {
  color: #edf8ff;
}

.node-social .node-subtitle {
  color: rgba(219, 240, 255, 0.72);
}

.spotlight,
.projects,
.contact-section {
  margin-top: 4rem;
}

.spotlight {
  display: grid;
  justify-items: center;
}

.spotlight-card {
  display: none;
  max-width: 620px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.spotlight-card.is-visible {
  display: block;
}

.spotlight-card a {
  color: var(--gold);
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.project-card,
.contact-form {
  padding: 1.6rem;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.project-card h3 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel-strong);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.spoke-page {
  min-height: 100vh;
}

.spoke-shell {
  padding: 1.1rem 5vw 3rem;
}

.spoke-topbar {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 0.95rem 0.2rem 0.95rem 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 18, 34, 0.92), rgba(7, 11, 22, 0.82));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.spoke-brand {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.spoke-topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  padding-right: 0.95rem;
}

.spoke-topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.spoke-topnav a:hover,
.spoke-topnav a.is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.spoke-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.spoke-nav {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: grid;
  gap: 1rem;
  max-height: calc(100vh - 8rem);
  padding: 1rem 0.9rem 1rem 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) transparent;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.spoke-planets {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0.95rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 13, 27, 0.46);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.spoke-planet {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  border: 3px solid transparent;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.16);
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.spoke-planet::before,
.spoke-planet::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.spoke-planet::before {
  display: none;
}

.spoke-planet > * {
  position: relative;
  z-index: 1;
}

.spoke-planet:hover,
.spoke-planet.is-active {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.2);
}

.spoke-planet.worldisc {
  border-color: #4c91bf;
  background:
    linear-gradient(180deg, #2b6d98, #0e2137 76%);
}

.spoke-planet.about {
  border-color: #b45b72;
  background:
    linear-gradient(180deg, #9f4258, #32111d 76%);
}

.spoke-planet.social {
  border-color: #7a69bc;
  background:
    linear-gradient(180deg, #6452a1, #1f183b 76%);
}

.spoke-planet.dj66 {
  border-color: #5a5b63;
  background:
    linear-gradient(180deg, #3a3b41, #0b0b0e 76%);
}

.spoke-planet.mockle {
  border-color: #4b9b8d;
  background:
    linear-gradient(180deg, #2f7d71, #0f2c29 76%);
}

.spoke-planet.contact {
  border-color: #be8246;
  background:
    linear-gradient(180deg, #a46a33, #321b0a 76%);
}

.spoke-content {
  max-width: 900px;
  padding-top: 2rem;
}

.spoke-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.spoke-lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.social-content {
  max-width: 1080px;
}

.social-lead {
  max-width: none;
}

.social-story {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1.8rem 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(118, 193, 255, 0.08), rgba(255, 201, 107, 0.06)),
    rgba(8, 13, 27, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.social-story p {
  margin: 0;
  max-width: none;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.85;
}

.social-story em {
  font-style: normal;
  color: var(--gold);
}

.project-page {
  max-width: 1120px;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.75rem;
  align-items: stretch;
}

.project-lead {
  max-width: none;
}

.project-hero-copy {
  display: grid;
  align-content: start;
  gap: 1.35rem;
}

.project-actions,
.source-links,
.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.project-metrics {
  margin-top: 0.25rem;
}

.project-metric,
.project-quote,
.project-cta-panel,
.project-image-card,
.project-sources {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 13, 27, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.project-metric {
  min-width: 148px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.project-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.project-metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.86rem;
}

.project-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
}

.worldisc-page .project-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.worldisc-page .project-hero-media {
  grid-template-columns: 1fr;
}

.worldisc-page .project-image-tall {
  min-height: 500px;
}

.mockle-page .project-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.mockle-page .project-hero-media {
  grid-template-columns: 1fr;
}

.mockle-page .project-image-tall {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
  align-self: start;
}

.mockle-page .project-image-tall img {
  width: 72%;
  height: auto;
  object-fit: contain;
}

.mockle-page .project-hero-media,
.mockle-page .project-image-card {
  align-self: start;
}

.mockle-page .project-hero-copy h1 {
  font-size: clamp(1.65rem, 3vw, 3.35rem);
}

.project-image-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.project-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-image-tall {
  min-height: 520px;
}

.project-image-logo,
.project-image-wide {
  min-height: 250px;
}

.project-image-logo {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(108, 228, 255, 0.1), transparent 45%),
    rgba(8, 13, 27, 0.84);
}

.project-image-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.project-story {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(108, 228, 255, 0.08), rgba(255, 201, 107, 0.06)),
    rgba(8, 13, 27, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.project-story p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
}

.project-grid,
.project-sources,
.project-quote,
.project-cta-panel {
  margin-top: 2rem;
}

.project-quote {
  padding: 1.7rem 1.9rem;
  border-radius: 28px;
}

.project-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.project-quote span {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.project-sources {
  padding: 1.5rem 1.65rem;
  border-radius: 28px;
}

.project-sources h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.project-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.65rem 1.8rem;
  border-radius: 30px;
}

.project-cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.15;
  max-width: 20ch;
}

.dj66-lead {
  max-width: none;
}

.dj66-portrait {
  margin: 2rem 0 0;
  max-width: 520px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 13, 27, 0.7);
  box-shadow: var(--shadow);
}

.dj66-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.about-lead {
  max-width: none;
}

.visible-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.spoke-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.spoke-card {
  padding: 1.6rem;
  border-radius: 26px;
  background: rgba(8, 13, 27, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.spoke-card h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

.spoke-card p {
  color: var(--muted);
  line-height: 1.7;
}

.spoke-card a {
  color: #6cbcff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.branded-card {
  display: grid;
  grid-template-rows: 148px auto 1fr;
  gap: 1rem;
  align-content: start;
}

.branded-card h2,
.branded-card p {
  margin: 0;
}

.brand-badge {
  margin: 0;
  height: 148px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  background: #ffffff;
}

.brand-badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-badge-worldisc {
  display: grid;
  place-items: center;
}

.brand-badge-worldisc img {
  height: auto;
  max-height: 102px;
  object-fit: contain;
}

.brand-badge-mockle {
  display: grid;
  place-items: center;
}

.brand-badge-mockle img {
  height: auto;
  max-height: 108px;
  object-fit: contain;
}

.spoke-form {
  max-width: 720px;
  margin-top: 2rem;
}

.form-hidden {
  display: none;
}

.form-success {
  max-width: 720px;
  margin-top: 1.5rem;
  padding: 1.5rem 1.6rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 13, 27, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.form-success p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-success-static p {
  color: var(--muted);
  line-height: 1.7;
}

.form-success-static p:last-child {
  margin-top: 1.2rem;
}

@keyframes drift {
  from {
    transform: scale(1.2) translateY(0);
  }

  to {
    transform: scale(1.2) translateY(24px);
  }
}

@keyframes coreGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateZ(-20px) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateZ(-10px) scale(1.06);
  }
}

@keyframes orbitBreath {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.012);
  }
}

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

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .universe-map {
    min-height: 680px;
    width: min(100%, 760px);
  }

  .spoke-shell {
    padding-top: 0.9rem;
  }

  .spoke-topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 1rem 0;
  }

  .spoke-topnav {
    justify-content: flex-start;
    padding-right: 0;
  }

  .spoke-layout,
  .spoke-grid {
    grid-template-columns: 1fr;
  }

  .project-hero,
  .project-hero-media,
  .project-cta-panel {
    grid-template-columns: 1fr;
  }

  .project-cta-panel {
    display: grid;
  }

  .spoke-nav {
    position: static;
    max-height: none;
    padding: 0;
    overflow: visible;
  }

  .dj66-portrait {
    max-width: 100%;
  }

  .spoke-planets {
    grid-template-columns: repeat(3, minmax(0, 96px));
  }

  .social-story {
    padding: 1.4rem 1.2rem;
  }

  .project-story,
  .project-sources,
  .project-quote,
  .project-cta-panel {
    padding: 1.35rem 1.2rem;
  }

  .project-image-tall,
  .project-image-logo,
  .project-image-wide {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 0.8rem;
  }

  .header-controls {
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1,
  .contact-copy h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .spoke-topnav a {
    min-height: 38px;
    padding: 0.55rem 0.8rem;
  }

  .universe-map {
    min-height: 780px;
  }

  .node {
    width: 138px;
    padding: 0.9rem 0.75rem;
  }

  .node-core {
    width: 180px;
    min-height: 180px;
  }

  .constellation-line {
    opacity: 0.28;
  }
}
