:root {
  color-scheme: dark;
  --bg: #080908;
  --fg: #f2f0e8;
  --muted: #a7afa6;
  --line: rgba(242, 240, 232, 0.16);
  --panel: rgba(18, 21, 19, 0.72);
  --accent: #b8ff5c;
  --accent-2: #39d0ff;
  --accent-3: #ff6f91;
  --shadow: rgba(0, 0, 0, 0.35);
}

:root.light {
  color-scheme: light;
  --bg: #f5f2e9;
  --fg: #10120f;
  --muted: #596255;
  --line: rgba(16, 18, 15, 0.14);
  --panel: rgba(255, 252, 242, 0.76);
  --shadow: rgba(51, 44, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(57, 208, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 76%, rgba(184, 255, 92, 0.13), transparent 26rem),
    var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (pointer: fine) {
  body,
  a,
  button,
  input {
    cursor: none;
  }
}

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

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.5) 49% 51%, transparent 52%),
    repeating-radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.cursor {
  position: fixed;
  z-index: 100;
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, background 180ms ease;
}

.cursor.is-hovering {
  width: 46px;
  height: 46px;
  background: rgba(184, 255, 92, 0.13);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
}

.brand,
.theme-toggle,
.button {
  min-height: 44px;
}

.brand {
  display: grid;
  place-items: center;
  width: 46px;
  border: 1px solid var(--line);
  font-weight: 800;
  background: var(--panel);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--fg);
}

.theme-toggle {
  width: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  cursor: pointer;
}

.theme-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 220ms ease;
}

:root.light .theme-toggle span {
  transform: translateX(18px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 7rem clamp(1rem, 5vw, 5rem) 2rem;
  isolation: isolate;
}

#hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.68;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-bottom: min(12vh, 7rem);
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.6rem, 11vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 12px 48px var(--bg);
}

.hero-text {
  max-width: 660px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
  text-shadow: 0 10px 36px var(--bg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-grid;
  place-items: center;
  padding: 0 1.1rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #0c1208;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 60px var(--shadow);
}

.button-ghost {
  border-color: var(--line);
  background: var(--panel);
  color: var(--fg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-meta span {
  border: 1px solid var(--line);
  padding: 0.6rem 0.75rem;
  background: var(--panel);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 80%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 1rem 0;
  color: var(--muted);
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  scroll-margin-top: 7.5rem;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 2rem;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 0.85rem;
  background: var(--panel);
  color: var(--muted);
  cursor: pointer;
}

.filter.active {
  color: #0c1208;
  background: var(--accent);
  border-color: var(--accent);
}

.project-grid,
.credit-grid,
.creator-grid,
.creator-roster,
.social-grid,
.stat-grid {
  display: grid;
  gap: 1rem;
}

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

.credit-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 24px 80px var(--shadow);
}

.credit-brand {
  display: grid;
  place-items: center;
  gap: 1.4rem;
  min-height: 310px;
  padding: 2rem;
  background:
    radial-gradient(circle at 26% 24%, rgba(248, 192, 36, 0.32), transparent 18rem),
    linear-gradient(140deg, rgba(57, 208, 255, 0.16), transparent 58%),
    #111311;
}

.credit-brand img {
  display: block;
  width: min(46%, 190px);
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 70px var(--shadow);
}

.wcs-brand img {
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  max-width: min(78%, 360px);
  max-height: 190px;
  object-fit: contain;
}

.credit-brand img + img {
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  max-height: 42px;
  opacity: 0.82;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 255, 255, 0.88);
}

.wcs-brand {
  background:
    radial-gradient(circle at 70% 22%, rgba(184, 255, 92, 0.22), transparent 18rem),
    linear-gradient(140deg, rgba(57, 208, 255, 0.12), transparent 54%),
    #10120f;
}

.credit-copy {
  padding: 1.2rem;
}

.credit-copy span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credit-copy h3 {
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.credit-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 24px 80px var(--shadow);
}

.project-card.is-hidden {
  display: none;
}

.project-visual {
  min-height: 260px;
  background-size: 140% 140%;
  animation: drift 9s ease-in-out infinite alternate;
}

.visual-one {
  background-image:
    linear-gradient(135deg, rgba(184, 255, 92, 0.88), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    linear-gradient(45deg, #10120f, #39d0ff);
}

.visual-two {
  background-image:
    radial-gradient(circle at 30% 28%, #ff6f91, transparent 18rem),
    conic-gradient(from 120deg, #39d0ff, #10120f, #b8ff5c, #39d0ff);
}

.visual-three {
  background-image:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.24) 49% 51%, transparent 52%),
    linear-gradient(140deg, #f5f2e9, #ff6f91 40%, #10120f);
}

.visual-four {
  background-image:
    radial-gradient(circle at 75% 20%, #b8ff5c, transparent 10rem),
    repeating-radial-gradient(circle at 50% 50%, rgba(57, 208, 255, 0.35) 0 2px, transparent 2px 22px),
    linear-gradient(150deg, #10120f, #39d0ff);
}

@keyframes drift {
  to {
    background-position: 100% 100%;
  }
}

.project-info {
  padding: 1rem;
}

.project-info span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0.35rem 0;
  font-size: 1.45rem;
}

.project-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.creator-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creator-roster {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.creator-wall {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.creator-feature {
  min-height: 260px;
  display: grid;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(184, 255, 92, 0.2), transparent 50%),
    var(--panel);
}

.creator-feature p {
  margin: 0;
  max-width: 660px;
  color: var(--fg);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.35;
}

.creator-chips {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.creator-chips span {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.creator-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 0.9rem;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.creator-filter.active {
  color: #0c1208;
  border-color: var(--accent);
  background: var(--accent);
}

.creator-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 42%),
    var(--panel);
  box-shadow: 0 24px 80px var(--shadow);
  transform-style: preserve-3d;
}

.creator-profile {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: end;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 12%, rgba(57, 208, 255, 0.17), transparent 8rem),
    var(--panel);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 24px 80px var(--shadow);
}

.creator-profile::before {
  content: attr(data-initials);
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #0c1208;
  background: var(--accent);
  font-weight: 900;
}

.creator-profile img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
  background: var(--panel);
}

.creator-profile img.is-missing {
  opacity: 0;
}

.creator-profile h3 {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1;
}

.creator-profile p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.creator-profile > a {
  position: relative;
  z-index: 1;
  width: max-content;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  padding: 0 0.72rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-profile > a:hover {
  color: #0c1208;
  border-color: var(--accent);
  background: var(--accent);
}

.creator-profile.is-hidden {
  display: none;
}

.creator-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #0c1208;
  background: var(--accent);
  font-weight: 900;
}

.creator-card h3,
.social-card strong {
  margin: 0;
  font-size: 1.45rem;
}

.creator-card p,
.creator-card strong,
.social-card p,
.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.creator-card strong {
  color: var(--fg);
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 80px var(--shadow);
}

.social-logo {
  width: 58px;
  height: 58px;
  fill: #fff;
}

.social-card span {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card:hover {
  border-color: var(--accent);
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.wcs-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(184, 255, 92, 0.16), transparent 48%),
    var(--panel);
}

.wcs-intro img {
  width: min(170px, 70%);
  justify-self: center;
}

.wcs-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.5;
}

.stat-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%),
    var(--panel);
}

.stat-value {
  color: var(--fg);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.lab-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.lab-canvas {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: crosshair;
}

.lab-canvas span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px currentColor;
  color: var(--accent);
}

.lab-panel {
  display: grid;
  align-content: center;
  gap: 1.2rem;
  padding: 1rem;
  border-left: 1px solid var(--line);
}

.lab-panel label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 700;
}

input[type="range"] {
  accent-color: var(--accent);
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stack-list span {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem;
  min-height: 60vh;
}

.contact-panel {
  display: grid;
  justify-items: end;
  gap: 1rem;
}

.contact-link {
  font-size: clamp(1.2rem, 4vw, 3.3rem);
  font-weight: 800;
  color: var(--accent);
}

.contact-link.is-highlighted {
  animation: email-glow 1.8s ease-out;
}

@keyframes email-glow {
  0%,
  100% {
    text-shadow: none;
  }

  20%,
  70% {
    text-shadow:
      0 0 12px rgba(184, 255, 92, 0.9),
      0 0 34px rgba(184, 255, 92, 0.58),
      0 0 70px rgba(57, 208, 255, 0.25);
  }
}

.personal-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  max-width: 520px;
}

.personal-socials span,
.personal-socials a {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  padding: 0 0.85rem;
  background: var(--panel);
  color: var(--muted);
  font-weight: 800;
}

.personal-socials span {
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.personal-socials a:hover {
  color: var(--fg);
  border-color: var(--accent);
}

@media (max-width: 1050px) {
  .credit-grid,
  .project-grid,
  .creator-roster,
  .social-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .creator-wall {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: space-between;
    overflow-x: auto;
  }

  .section-heading,
  .wcs-intro,
  .lab-shell,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .personal-socials {
    justify-items: start;
    justify-content: flex-start;
  }

  .project-grid,
  .credit-grid,
  .creator-grid,
  .creator-roster,
  .social-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 360px;
  }

  .lab-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cursor {
    display: none;
  }
}
