:root {
  color-scheme: dark;
  --bg: #060609;
  --bg-2: #0d0d12;
  --panel: rgba(18, 18, 24, 0.74);
  --panel-strong: rgba(10, 10, 13, 0.92);
  --text: #f7f7fa;
  --text-soft: #b7b7c4;
  --text-muted: #7f808c;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --red: #ff2448;
  --red-2: #d80f33;
  --purple: #7c36ff;
  --purple-2: #b769ff;
  --white: #ffffff;
  --black: #050506;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --header-height: 76px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f6f8;
  --bg-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --text: #111116;
  --text-soft: #40404a;
  --text-muted: #686873;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.2);
  --shadow: 0 24px 70px rgba(20, 20, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

html.nav-is-open {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255, 36, 72, 0.08), transparent 22rem),
    linear-gradient(120deg, rgba(124, 54, 255, 0.12), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 2px,
      rgba(255, 255, 255, 0.05) 3px,
      transparent 4px
    );
}

@keyframes themeViewIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes themeViewOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes pandaEmberRise {
  from {
    background-position:
      0 0,
      42px 18px,
      84px 54px,
      18px 112px;
  }
  to {
    background-position:
      -34px -220px,
      76px -182px,
      38px -254px,
      62px -146px;
  }
}

@keyframes pandaEmberPulse {
  0%,
  100% {
    filter: blur(0.1px) saturate(1.05);
  }
  50% {
    filter: blur(0.25px) saturate(1.22);
  }
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 420ms;
  animation-timing-function: var(--ease);
}

::view-transition-old(root) {
  animation-name: themeViewOut;
}

::view-transition-new(root) {
  animation-name: themeViewIn;
}

html.theme-is-changing *,
html.theme-is-changing *::before,
html.theme-is-changing *::after {
  transition-property: background, background-color, color, border-color, box-shadow, opacity, filter, fill, stroke !important;
  transition-duration: 420ms !important;
  transition-timing-function: var(--ease) !important;
}

html.theme-is-changing .theme-toggle__dot {
  transition-property: transform, background-color, color, box-shadow !important;
}

html.theme-is-changing .theme-toggle__dot-icon {
  transition-property: opacity, transform !important;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

button,
.button,
.primary-nav a,
.stream-hub a {
  touch-action: manipulation;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-strong);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(1rem, 3vw, 2.2rem);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.24));
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.72);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(6, 6, 9, 0.88);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.theme-logo {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.theme-logo__image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition:
    opacity 180ms var(--ease),
    filter 180ms var(--ease);
}

.theme-logo__image--light {
  opacity: 0;
}

[data-theme="light"] .theme-logo__image--dark {
  opacity: 0;
}

[data-theme="light"] .theme-logo__image--light {
  opacity: 1;
}

.brand-lockup .theme-logo {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 18px rgba(255, 36, 72, 0.26));
}

.brand-lockup__text {
  display: grid;
  gap: 0.05rem;
  text-transform: uppercase;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 0.94rem;
  letter-spacing: 0.16em;
}

.brand-lockup small {
  color: var(--text-soft);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2.2vw, 1.6rem);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 160ms var(--ease);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.6rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.theme-toggle,
.menu-toggle {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 80%, transparent);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle {
  width: 66px;
  height: 34px;
  padding: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.18);
  transition:
    background-color 260ms var(--ease),
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(124, 54, 255, 0.2);
}

.theme-toggle__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 54px;
  height: 24px;
  padding: 0 6px;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(90deg, #1a1a22, #4f21af 54%, #7c36ff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 4px 12px rgba(0, 0, 0, 0.24);
  transition:
    background 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

[data-theme="light"] .theme-toggle__track {
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(90deg, #ff2448, #e61759 42%, #7c36ff);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    inset 0 4px 12px rgba(0, 0, 0, 0.12);
}

.theme-toggle__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition:
    color 260ms var(--ease),
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.theme-toggle__icon svg,
.theme-toggle__dot-icon {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.theme-toggle__icon--light {
  color: rgba(255, 255, 255, 0.54);
}

[data-theme="light"] .theme-toggle__icon--dark {
  color: rgba(255, 255, 255, 0.58);
}

[data-theme="light"] .theme-toggle__icon--light {
  color: rgba(255, 255, 255, 0.82);
}

.theme-toggle__dot {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.26);
  transition:
    transform 320ms var(--ease),
    background-color 260ms var(--ease),
    color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.theme-toggle__dot-icon {
  grid-area: 1 / 1;
  width: 11px;
  height: 11px;
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.theme-toggle__dot-icon--light {
  opacity: 0;
  transform: scale(0.72) rotate(-35deg);
}

[data-theme="light"] .theme-toggle__dot {
  color: var(--red);
  transform: translateX(30px);
}

[data-theme="light"] .theme-toggle__dot-icon--dark {
  opacity: 0;
  transform: scale(0.72) rotate(35deg);
}

[data-theme="light"] .theme-toggle__dot-icon--light {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms var(--ease),
    opacity 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.84rem 1.05rem;
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-110%) skewX(-16deg);
  background: rgba(255, 255, 255, 0.22);
  content: "";
  transition: transform 420ms var(--ease);
}

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

.button:hover::before {
  transform: translateX(110%) skewX(-16deg);
}

.button-primary {
  border-color: rgba(255, 36, 72, 0.72);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  box-shadow: 0 18px 42px rgba(255, 36, 72, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

[data-theme="light"] .button-secondary {
  background: rgba(0, 0, 0, 0.04);
}

.button-discord {
  border-color: rgba(124, 54, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(124, 54, 255, 0.96), rgba(88, 101, 242, 0.9)),
    var(--purple);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(88, 101, 242, 0.24);
}

.button-discord:hover {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 20px 54px rgba(88, 101, 242, 0.3),
    0 0 26px rgba(124, 54, 255, 0.18);
}

.text-link {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 0.32rem;
}

.hero,
.label-hero,
.panda-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero {
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) clamp(1.2rem, 4vw, 4rem) 4.5rem;
}

.hero__media,
.label-hero__media,
.panda-hero__media {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero__media img,
.label-hero__media img,
.panda-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim,
.label-hero__scrim,
.panda-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, var(--bg) 0, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.62) 100%);
}

[data-theme="light"] .hero__scrim,
[data-theme="light"] .label-hero__scrim,
[data-theme="light"] .panda-hero__scrim {
  background:
    linear-gradient(90deg, rgba(246, 246, 248, 0.94), rgba(246, 246, 248, 0.74) 44%, rgba(246, 246, 248, 0.22)),
    linear-gradient(0deg, var(--bg) 0, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.54) 100%);
}

.wave-canvas {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  width: 100%;
  height: 34%;
  opacity: 0.58;
  mix-blend-mode: screen;
}

[data-theme="light"] .wave-canvas {
  opacity: 0.26;
  mix-blend-mode: multiply;
}

.hero__content {
  width: min(760px, 100%);
}

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

h1,
h2 {
  max-width: 11ch;
  font-family:
    Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: 8.8rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 5.6rem;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero__content p {
  max-width: 680px;
  font-size: 1.24rem;
}

.hero__actions,
.label-hero__actions,
.panda-hero__actions,
.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__rail {
  position: absolute;
  right: clamp(1rem, 3vw, 2.2rem);
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

[data-theme="light"] .hero__rail {
  color: rgba(0, 0, 0, 0.62);
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 4vw, 4rem);
}

.section > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-code {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.section-lift {
  margin-top: -1px;
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2)),
    var(--bg);
}

.section__eyeless-number {
  position: absolute;
  top: 1rem;
  left: clamp(1rem, 4vw, 4rem);
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.04);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 13rem;
  line-height: 1;
  pointer-events: none;
}

[data-theme="light"] .section__eyeless-number {
  color: rgba(0, 0, 0, 0.045);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.split-section__copy,
.capability-matrix {
  position: relative;
  z-index: 1;
}

.split-section__copy p,
.section-heading p,
.project-feature__copy p,
.contact-band__inner p {
  max-width: 680px;
}

.capability-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-matrix article,
.label-principles__rail article {
  background: var(--panel);
  padding: 1.7rem;
  backdrop-filter: blur(14px);
}

.capability-matrix p,
.label-principles__rail p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.matrix-icon {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 36, 72, 0.18), rgba(124, 54, 255, 0.18)),
    rgba(255, 255, 255, 0.04);
  position: relative;
}

.matrix-icon::before,
.matrix-icon::after {
  position: absolute;
  inset: 14px;
  content: "";
}

.matrix-icon--wave::before {
  background:
    linear-gradient(90deg, transparent 0 10%, currentColor 10% 16%, transparent 16% 25%, currentColor 25% 34%, transparent 34% 46%, currentColor 46% 54%, transparent 54% 64%, currentColor 64% 72%, transparent 72%);
  color: var(--red);
}

.matrix-icon--frame::before {
  border: 2px solid var(--purple-2);
}

.matrix-icon--frame::after {
  inset: 19px 16px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--red);
}

.matrix-icon--bolt::before {
  clip-path: polygon(54% 0, 100% 0, 58% 43%, 85% 43%, 36% 100%, 46% 55%, 14% 55%);
  background: var(--red);
}

.matrix-icon--star::before {
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 35%, 39% 34%);
  background: var(--purple-2);
}

.project-feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--bg);
}

.project-feature__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-feature__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.project-feature__media:hover img {
  transform: scale(1.035);
}

.project-feature__copy h2,
.contact-band__inner h2,
.section-heading h2 {
  max-width: 12ch;
}

.founders-preview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 40%),
    var(--bg-2);
}

.founder-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.35rem;
}

.founder-preview-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 0 0 rgba(255, 36, 72, 0);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms var(--ease);
}

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

.founder-preview-card::before {
  z-index: 3;
  padding: 1px;
  background:
    linear-gradient(
      120deg,
      rgba(255, 36, 72, 0.95),
      rgba(183, 105, 255, 0.82),
      rgba(255, 255, 255, 0.44),
      rgba(255, 36, 72, 0.95)
    );
  background-size: 220% 220%;
  opacity: 0.72;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: founderBorderFlow 6.5s linear infinite;
}

.founder-preview-card::after {
  z-index: -1;
  inset: -1px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 36, 72, 0.28), transparent 36%),
    radial-gradient(circle at 84% 4%, rgba(124, 54, 255, 0.3), transparent 34%);
  opacity: 0.72;
  filter: blur(18px);
  animation: founderGlowPulse 3.8s ease-in-out infinite;
}

.founder-preview-card:nth-child(2)::before {
  animation-delay: -2.2s;
}

.founder-preview-card:nth-child(2)::after {
  animation-delay: -1.4s;
}

.founder-preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 36, 72, 0.48);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(255, 36, 72, 0.18),
    0 0 58px rgba(124, 54, 255, 0.14);
}

.founder-preview-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) contrast(1.05);
  transition:
    filter 260ms var(--ease),
    transform 620ms var(--ease);
}

.founder-preview-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0.04) contrast(1.08) saturate(1.08);
}

.founder-preview-card:first-child img {
  object-position: center 38%;
}

.founder-preview-card > div {
  display: grid;
  gap: 0.75rem;
  padding: 1.45rem;
}

.founder-preview-card h3 {
  margin-bottom: 0;
  color: var(--text);
}

.founder-preview-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

@keyframes founderBorderFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes founderGlowPulse {
  0%,
  100% {
    opacity: 0.44;
  }

  50% {
    opacity: 0.9;
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.label-principles__rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-band {
  padding-bottom: 7rem;
  background:
    linear-gradient(90deg, rgba(255, 36, 72, 0.14), rgba(124, 54, 255, 0.12)),
    var(--bg-2);
}

.contact-band__inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.label-hero {
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 2rem) clamp(1.2rem, 4vw, 4rem) 4rem;
  text-align: center;
}

.label-hero__scrim {
  background:
    linear-gradient(0deg, var(--bg) 0, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.62) 100%),
    rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .label-hero__scrim {
  background:
    linear-gradient(0deg, var(--bg) 0, rgba(255, 255, 255, 0.52) 42%, rgba(255, 255, 255, 0.76) 100%),
    rgba(255, 255, 255, 0.25);
}

.label-hero__content {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
}

.label-hero__mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(255, 36, 72, 0.5));
}

.label-hero h1 {
  max-width: 10ch;
  margin-bottom: 0.7rem;
  color: white;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.86);
}

[data-theme="light"] .label-hero h1 {
  color: #111116;
  text-shadow: none;
}

.label-hero__soon {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 4.8rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

[data-theme="light"] .label-hero__soon {
  color: #111116;
}

.label-hero__content > p:last-of-type {
  max-width: 620px;
}

.label-principles {
  background: var(--bg);
}

.panda-hero {
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) clamp(1.2rem, 4vw, 4rem) 4.5rem;
}

.panda-hero__scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, var(--bg) 0, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.72) 100%);
}

[data-theme="light"] .panda-hero__scrim {
  background:
    linear-gradient(90deg, rgba(246, 246, 248, 0.96), rgba(246, 246, 248, 0.7) 48%, rgba(246, 246, 248, 0.04)),
    linear-gradient(0deg, var(--bg) 0, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.62) 100%);
}

.panda-hero__content {
  width: min(720px, 100%);
}

.panda-hero h1 {
  max-width: 9ch;
  color: var(--white);
  text-shadow:
    0 0 0.06em rgba(255, 255, 255, 0.2),
    0.04em 0.04em 0 var(--red);
}

[data-theme="light"] .panda-hero h1 {
  color: #111116;
  text-shadow: 0.035em 0.035em 0 rgba(255, 36, 72, 0.6);
}

.live-section {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.live-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.live-section__heading h2 {
  margin-bottom: 0;
  font-size: 4.2rem;
}

.stream-hub {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 36, 72, 0.08), rgba(124, 54, 255, 0.08)),
    var(--panel);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
}

.stream-hub a {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  transition:
    background-color 180ms var(--ease),
    color 180ms var(--ease);
}

.stream-hub a:last-child {
  border-right: 0;
}

.stream-hub a:hover {
  background: color-mix(in srgb, var(--panel-strong) 74%, transparent);
}

.stream-hub span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.stream-hub strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.twitch-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 1px;
  width: min(var(--max), 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.twitch-stage__player,
.twitch-stage__chat {
  position: relative;
  min-width: 0;
  min-height: 620px;
  background: #050506;
}

.twitch-stage__player {
  aspect-ratio: 16 / 9;
  min-height: 560px;
}

.twitch-stage__chat {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.twitch-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050506;
}

.twitch-stage__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  padding: 1.4rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 36, 72, 0.16), rgba(124, 54, 255, 0.12)),
    #050506;
  transition:
    opacity 180ms var(--ease),
    visibility 180ms var(--ease);
}

.twitch-stage.is-loaded .twitch-stage__fallback {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.twitch-stage__fallback strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.twitch-stage__fallback span {
  max-width: 340px;
  color: #c8c8d2;
  line-height: 1.55;
}

.twitch-stage__fallback .button {
  width: min(100%, 280px);
}

.panda-community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(124, 54, 255, 0.16), rgba(255, 36, 72, 0.08)),
    var(--bg-2);
}

.panda-community__copy,
.panda-community__panel {
  width: auto;
  margin: 0;
}

.panda-community__copy h2 {
  max-width: 9ch;
}

.panda-community__copy p {
  max-width: 720px;
}

.panda-community__panel {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  border: 1px solid rgba(124, 54, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(124, 54, 255, 0.18), rgba(255, 255, 255, 0.04)),
    var(--panel-strong);
  box-shadow:
    var(--shadow),
    0 0 48px rgba(124, 54, 255, 0.14);
}

.panda-community__panel span {
  color: var(--purple-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panda-community__panel h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.85rem;
  line-height: 1.05;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.6rem clamp(1.2rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background: #050506;
  background: color-mix(in srgb, var(--bg) 92%, black);
  color: var(--text-soft);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__brand .theme-logo {
  width: 34px;
  height: 34px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  justify-self: end;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: right;
}

.reveal {
  transform: translateY(22px);
  opacity: 0;
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

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

@media (max-width: 1280px) {
  h1 {
    font-size: 7.2rem;
  }

  h2 {
    font-size: 4.8rem;
  }

  .section__eyeless-number {
    font-size: 10.5rem;
  }

  .label-hero__soon {
    font-size: 4.1rem;
  }

  .live-section__heading h2 {
    font-size: 3.8rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 1rem;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 1rem;
    left: 1rem;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-height) - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel-strong);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    padding: 0.6rem;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.9rem 0.95rem;
    white-space: normal;
  }

  .primary-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  h1 {
    font-size: 5.45rem;
  }

  h2 {
    font-size: 3.75rem;
  }

  .section__eyeless-number {
    font-size: 8.25rem;
  }

  .label-hero__soon {
    font-size: 3.35rem;
  }

  .live-section__heading h2 {
    font-size: 3.15rem;
  }

  .split-section,
  .project-feature,
  .section-heading,
  .twitch-stage,
  .panda-community {
    grid-template-columns: 1fr;
  }

  .twitch-stage__player,
  .twitch-stage__chat {
    min-height: auto;
  }

  .twitch-stage__player {
    min-height: 360px;
  }

  .twitch-stage__chat {
    min-height: 540px;
  }

  .label-principles__rail {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 36, 72, 0.08), transparent 18rem),
      linear-gradient(120deg, rgba(124, 54, 255, 0.11), transparent 26rem),
      var(--bg);
  }

  .site-header {
    padding: 0 0.85rem;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-lockup .theme-logo {
    width: 36px;
    height: 36px;
  }

  .brand-lockup small {
    display: none;
  }

  .brand-lockup strong {
    max-width: 8.5rem;
    overflow: hidden;
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .theme-toggle {
    width: 58px;
    height: 32px;
  }

  .theme-toggle__track {
    width: 48px;
    height: 22px;
    padding: 0 5px;
  }

  .theme-toggle__icon {
    width: 13px;
    height: 13px;
  }

  .theme-toggle__dot {
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
  }

  [data-theme="light"] .theme-toggle__dot {
    transform: translateX(26px);
  }

  .theme-toggle__dot-icon {
    width: 10px;
    height: 10px;
  }

  .menu-toggle {
    width: 38px;
    height: 34px;
  }

  .primary-nav {
    right: 0.85rem;
    left: 0.85rem;
    padding: 0.45rem;
  }

  .hero,
  .label-hero,
  .panda-hero {
    min-height: 86svh;
    padding: calc(var(--header-height) + 2rem) 1rem 3.2rem;
  }

  .hero__rail {
    display: none;
  }

  .hero-moffman .hero__media img {
    object-position: 58% center;
  }

  .label-hero__media img {
    object-position: 52% center;
  }

  .page-panda .panda-hero__media img {
    object-position: 63% center;
  }

  .hero__content,
  .panda-hero__content,
  .label-hero__content {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: 3.05rem;
    line-height: 0.91;
  }

  h2 {
    max-width: 100%;
    font-size: 2.5rem;
    line-height: 0.94;
  }

  .panda-hero h1 {
    font-size: 2.55rem;
  }

  .label-hero h1 {
    font-size: 2.85rem;
  }

  .hero__content p,
  p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .section__eyeless-number {
    display: none;
  }

  .section-code {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .capability-matrix {
    grid-template-columns: 1fr;
  }

  .capability-matrix article,
  .label-principles__rail article {
    padding: 1rem;
  }

  .matrix-icon {
    width: 44px;
    height: 44px;
  }

  .matrix-icon::before,
  .matrix-icon::after {
    inset: 12px;
  }

  .project-feature__media img {
    aspect-ratio: 4 / 3;
  }

  .hero__actions,
  .label-hero__actions,
  .panda-hero__actions,
  .contact-band__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0.82rem 0.95rem;
  }

  .live-section__heading {
    display: grid;
    align-items: start;
  }

  .live-section__heading h2 {
    font-size: 2.45rem;
  }

  .stream-hub {
    margin-bottom: 1rem;
  }

  .stream-hub {
    grid-template-columns: 1fr;
  }

  .stream-hub a {
    min-height: 66px;
    padding: 0.9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stream-hub a:last-child {
    border-bottom: 0;
  }

  .twitch-stage__player {
    aspect-ratio: 16 / 10;
    min-height: auto;
  }

  .twitch-stage__chat {
    min-height: 430px;
    max-height: 540px;
    height: 62svh;
    overscroll-behavior: contain;
  }

  .twitch-stage__fallback {
    gap: 0.65rem;
    padding: 1rem;
  }

  .panda-community {
    gap: 1.1rem;
  }

  .panda-community__panel {
    padding: 1.15rem;
  }

  .panda-community__panel h3 {
    font-size: 1.45rem;
  }

  .panda-community__panel .button {
    width: 100%;
  }

  .founder-preview-grid {
    gap: 1rem;
  }

  .founder-preview-card img {
    aspect-ratio: 4 / 3;
  }

  .founder-preview-card > div {
    padding: 1.05rem;
  }

  .founder-preview-card p {
    font-size: 0.96rem;
  }

  .contact-band {
    padding-bottom: 4rem;
  }

  .contact-band__inner {
    padding: 1.35rem;
  }

  .label-hero__mark {
    width: 58px;
    height: 58px;
  }

  .label-hero__soon {
    font-size: 2.1rem;
    letter-spacing: 0.08em;
  }

  .site-footer {
    gap: 0.85rem;
    padding: 1.35rem 1rem;
  }

  .site-footer nav {
    gap: 0.65rem 0.85rem;
  }
}

@media (max-width: 380px) {
  .brand-lockup strong {
    max-width: 6.8rem;
  }

  .theme-toggle {
    width: 54px;
  }

  .theme-toggle__track {
    width: 44px;
  }

  [data-theme="light"] .theme-toggle__dot {
    transform: translateX(22px);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .panda-hero h1 {
    font-size: 2.15rem;
  }

  .label-hero h1 {
    font-size: 2.4rem;
  }

  .button {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .twitch-stage__chat {
    min-height: 420px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero,
  .label-hero,
  .panda-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 2.4rem;
  }

  .hero__rail {
    display: none;
  }

  .panda-hero h1 {
    max-width: 12ch;
  }

  .twitch-stage__player {
    min-height: 300px;
  }

  .twitch-stage__chat {
    height: 78svh;
    min-height: 360px;
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .founder-preview-card:hover {
    transform: none;
  }

  .project-feature__media:hover img,
  .founder-preview-card:hover img {
    transform: none;
  }
}

.page-panda {
  --panda-green: #00f24e;
  --panda-green-2: #74ff8e;
  --panda-red: #ff180f;
  --panda-deep: #050506;
  --panda-purple: #4f1488;
  --red: var(--panda-red);
  --red-2: #b90010;
  --purple: var(--panda-green);
  --purple-2: var(--panda-green-2);
  background:
    radial-gradient(circle at 50% 0, rgba(0, 242, 78, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 24, 15, 0.08), transparent 24rem),
    var(--bg);
}

.page-panda .panda-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.36;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(255, 92, 24, 0.86) 0 1.45px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 182, 68, 0.58) 0 1.25px, transparent 2.6px),
    radial-gradient(circle, rgba(255, 30, 15, 0.46) 0 1.65px, transparent 3.2px),
    radial-gradient(circle, rgba(0, 242, 78, 0.26) 0 1.2px, transparent 2.7px);
  background-size:
    168px 220px,
    230px 260px,
    292px 310px,
    196px 240px;
  mask-image: linear-gradient(to top, transparent 0, black 18%, black 72%, transparent 100%);
  animation:
    pandaEmberRise 18s linear infinite,
    pandaEmberPulse 5.8s ease-in-out infinite;
}

.page-panda .live-section,
.page-panda .panda-community,
.page-panda .site-footer--panda {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-panda .live-section::before,
.page-panda .panda-community::before,
.page-panda .site-footer--panda::before {
  position: absolute;
  inset: -8rem 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(255, 108, 18, 0.72) 0 1.25px, transparent 2.7px),
    radial-gradient(circle, rgba(255, 198, 76, 0.44) 0 1.2px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 24, 15, 0.34) 0 1.45px, transparent 3.1px);
  background-size:
    186px 250px,
    264px 300px,
    336px 380px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  animation:
    pandaEmberRise 26s linear infinite,
    pandaEmberPulse 7s ease-in-out infinite;
}

.page-panda .live-section > *,
.page-panda .panda-community > *,
.page-panda .site-footer--panda > * {
  position: relative;
  z-index: 1;
}

[data-theme="light"] .page-panda .panda-hero::before {
  opacity: 0.24;
}

[data-theme="light"] .page-panda .live-section::before,
[data-theme="light"] .page-panda .panda-community::before,
[data-theme="light"] .page-panda .site-footer--panda::before {
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.page-panda .site-header--panda {
  border-color: rgba(0, 242, 78, 0.18);
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.96), rgba(5, 5, 6, 0.76)),
    var(--panda-deep);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

[data-theme="light"] .page-panda .site-header--panda {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    var(--bg-2);
}

.page-panda .site-header--panda.is-scrolled {
  border-color: rgba(0, 242, 78, 0.34);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}

[data-theme="light"] .page-panda .site-header--panda.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

.panda-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.panda-brand-lockup__mark {
  flex: 0 0 auto;
  width: 46px;
  height: 52px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0, 242, 78, 0.36))
    drop-shadow(0 3px 0 rgba(0, 0, 0, 0.22));
}

.panda-brand-lockup__wordmark {
  width: clamp(128px, 12vw, 190px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 12px rgba(0, 242, 78, 0.34))
    drop-shadow(0 3px 0 rgba(0, 0, 0, 0.3));
}

.primary-nav--panda a::after {
  background: var(--panda-green);
  box-shadow: 0 0 18px rgba(0, 242, 78, 0.48);
}

.primary-nav--panda .nav-parent-link {
  color: color-mix(in srgb, var(--text-soft) 70%, var(--panda-green));
}

.page-panda .panda-hero__scrim {
  background:
    radial-gradient(circle at 82% 42%, rgba(0, 242, 78, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, var(--bg) 0, rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.76) 100%);
}

[data-theme="light"] .page-panda .panda-hero__scrim {
  background:
    radial-gradient(circle at 80% 42%, rgba(0, 242, 78, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(246, 246, 248, 0.96), rgba(246, 246, 248, 0.76) 48%, rgba(246, 246, 248, 0.16)),
    linear-gradient(0deg, var(--bg) 0, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.66) 100%);
}

.page-panda .panda-hero h1 {
  text-shadow:
    0 0 0.06em rgba(255, 255, 255, 0.16),
    0.04em 0.04em 0 rgba(0, 242, 78, 0.74);
}

[data-theme="light"] .page-panda .panda-hero h1 {
  text-shadow: 0.035em 0.035em 0 rgba(0, 242, 78, 0.62);
}

.panda-hero__wordmark {
  width: min(620px, 100%);
  height: auto;
  margin-bottom: 1.15rem;
  filter:
    drop-shadow(0 0 22px rgba(0, 242, 78, 0.28))
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.42));
}

.page-panda .panda-hero__content p {
  max-width: 570px;
  color: color-mix(in srgb, var(--text-soft) 88%, var(--panda-green));
}

.page-panda .button-primary {
  border-color: rgba(255, 24, 15, 0.7);
  background: linear-gradient(135deg, #ff180f, #b90010);
  box-shadow: 0 18px 42px rgba(255, 24, 15, 0.2);
}

.page-panda .button-secondary {
  border-color: rgba(0, 242, 78, 0.28);
  background: rgba(0, 242, 78, 0.08);
}

.page-panda .stream-hub {
  border-color: rgba(0, 242, 78, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 24, 15, 0.09), rgba(0, 242, 78, 0.08)),
    var(--panel);
}

.page-panda .stream-hub span,
.page-panda .section-code {
  color: var(--panda-green);
}

.page-panda .twitch-stage,
.page-panda .panda-community__panel {
  border-color: rgba(0, 242, 78, 0.26);
  box-shadow:
    var(--shadow),
    0 0 42px rgba(0, 242, 78, 0.12);
}

.page-panda .panda-community__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.panda-community__mark {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  z-index: 0;
  width: min(280px, 58vw);
  height: auto;
  opacity: 0.22;
  filter: saturate(1.12) drop-shadow(0 0 26px rgba(0, 242, 78, 0.24));
  pointer-events: none;
}

.panda-community__panel > :not(.panda-community__mark) {
  position: relative;
  z-index: 1;
}

.site-footer--panda {
  border-top-color: rgba(0, 242, 78, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 24, 15, 0.08), rgba(0, 242, 78, 0.08)),
    color-mix(in srgb, var(--bg) 94%, black);
}

.panda-footer-brand {
  gap: 0.62rem;
}

.panda-footer-brand__mark {
  width: 42px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 242, 78, 0.42));
}

.panda-footer-brand__wordmark {
  width: 138px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 10px rgba(0, 242, 78, 0.24));
}

@media (max-width: 980px) {
  .panda-brand-lockup {
    gap: 0.48rem;
  }

  .panda-brand-lockup__mark {
    width: 42px;
    height: 48px;
  }

  .panda-brand-lockup__wordmark {
    width: 154px;
    height: 50px;
  }

  .primary-nav--panda {
    border-color: rgba(0, 242, 78, 0.22);
  }
}

@media (max-width: 680px) {
  .panda-brand-lockup__mark {
    width: 40px;
    height: 46px;
  }

  .panda-brand-lockup__wordmark {
    width: 146px;
    height: 46px;
  }

  .panda-hero__wordmark {
    width: min(360px, 100%);
    margin-bottom: 1rem;
  }

  .page-panda .panda-hero__content p {
    max-width: 30rem;
  }
}

@media (max-width: 380px) {
  .panda-brand-lockup {
    gap: 0.4rem;
  }

  .panda-brand-lockup__mark {
    width: 36px;
    height: 42px;
  }

  .panda-brand-lockup__wordmark {
    width: 124px;
    height: 42px;
  }
}

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