.studio-site {
  --studio-bg: #05060a;
  --studio-ink: #f3efe4;
  --studio-muted: #b9c6c7;
  --studio-gold: #d8a842;
  --studio-gold-soft: rgba(216, 168, 66, 0.18);
  --studio-teal: #18c6c2;
  --studio-green: #66d488;
  --studio-blue: #1d7dde;
  --studio-panel: rgba(7, 18, 28, 0.88);
  background:
    linear-gradient(180deg, #05060a 0%, #07111a 42%, #05070b 100%);
  color: var(--studio-ink);
}

.studio-site .top-strip,
.studio-site .divider-strip {
  background: linear-gradient(90deg, transparent, var(--studio-gold) 18%, var(--studio-teal) 50%, var(--studio-green) 82%, transparent);
}

.studio-header {
  background: rgba(4, 8, 13, 0.88);
  border-bottom-color: rgba(216, 168, 66, 0.32);
}

.studio-site .site-header__inner {
  max-width: 1240px;
}

.studio-site .site-logo__text {
  white-space: nowrap;
}

.studio-site .site-logo img {
  filter: drop-shadow(0 0 12px rgba(216, 168, 66, 0.45));
}

.studio-site .site-nav {
  align-items: center;
  gap: 0.25rem;
}

.studio-site .site-nav__link {
  white-space: nowrap;
  padding-inline: 0.82rem;
}

.studio-site .site-nav__link:hover,
.studio-site .site-nav__link.active {
  border-color: rgba(216, 168, 66, 0.68);
  box-shadow: inset 0 0 14px rgba(216, 168, 66, 0.22);
}

.studio-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  border-bottom: 1px solid rgba(216, 168, 66, 0.18);
  background: rgba(5, 10, 15, 0.92);
  backdrop-filter: blur(8px);
}

.studio-subnav__inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.studio-subnav a {
  display: inline-block;
  padding: 0.48rem 0.95rem;
  color: var(--studio-muted);
  border-bottom: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.studio-subnav a:hover {
  color: var(--studio-ink);
  border-bottom-color: var(--studio-teal);
}

.studio-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.studio-hero {
  min-height: 0;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  background: #020308;
  border-bottom: 1px solid rgba(216, 168, 66, 0.26);
}

.studio-hero__media {
  position: relative;
}

.studio-hero__picture {
  display: block;
  width: 100%;
}

.studio-hero__image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  filter: saturate(1.08) contrast(1.06);
}

.studio-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 84%, rgba(2, 3, 8, 0.12) 91%, rgba(2, 3, 8, 0.42) 97%, #020308 100%);
}

.studio-hero__inner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(1080px, calc(100% - 2rem));
  margin: -1.35rem auto 0;
  padding: 3.4rem 0 4.4rem;
}

.studio-hero__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 16%, rgba(38, 144, 228, 0.14), transparent 40%),
    radial-gradient(ellipse at 58% 18%, rgba(216, 168, 66, 0.07), transparent 36%),
    radial-gradient(ellipse at 78% 24%, rgba(42, 151, 255, 0.055), transparent 42%),
    linear-gradient(180deg, rgba(4, 17, 28, 0) 0%, rgba(4, 17, 28, 0.18) 14%, rgba(4, 17, 28, 0.76) 34%, rgba(2, 3, 8, 0.98) 58%, #020308 100%);
}

.studio-hero__mark {
  flex: 0 0 clamp(78px, 9vw, 118px);
  width: clamp(78px, 9vw, 118px);
  filter: drop-shadow(0 0 20px rgba(216, 168, 66, 0.48));
}

.studio-hero__title-lockup {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin: 0 0 0.8rem;
}

.studio-hero__title-lockup h1 {
  white-space: nowrap;
}

.studio-eyebrow,
.studio-section-kicker {
  color: var(--studio-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-metal-title {
  display: inline-block;
  max-width: 100%;
  color: var(--studio-gold);
  background:
    linear-gradient(
      105deg,
      #9f6d1f 0%,
      #e2a936 18%,
      #fff1ad 31%,
      #c98923 43%,
      #76ecff 50%,
      #f7d374 60%,
      #a86f1e 100%
    );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 5px rgba(24, 198, 194, 0.32))
    drop-shadow(0 0 9px rgba(216, 168, 66, 0.22));
  animation: studioMetalShine 4.8s ease-in-out infinite;
}

.studio-hover-pop {
  position: relative;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.studio-capability,
.project-card,
.development-grid figure,
.works-hero-visual,
.nl-mechanic-grid article,
.studio-gallery.nl-gallery figure,
.barva-loop__steps div,
.barva-system-grid article,
.barva-screenshot-grid figure,
.dev-project-grid article,
.dev-system-grid article,
.dev-shot-grid figure {
  position: relative;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.studio-hover-pop::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(24, 198, 194, 0);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(216, 168, 66, 0),
    0 0 0 rgba(24, 198, 194, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.studio-capability::before,
.project-card::before,
.development-grid figure::before,
.works-hero-visual::before,
.nl-mechanic-grid article::before,
.studio-gallery.nl-gallery figure::before,
.barva-loop__steps div::before,
.barva-system-grid article::before,
.barva-screenshot-grid figure::before,
.dev-project-grid article::before,
.dev-system-grid article::before,
.dev-shot-grid figure::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(24, 198, 194, 0);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(216, 168, 66, 0),
    0 0 0 rgba(24, 198, 194, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .studio-hover-pop:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 198, 194, 0.72);
    background:
      linear-gradient(160deg, rgba(14, 54, 76, 0.94), rgba(7, 20, 31, 0.96));
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(24, 198, 194, 0.28),
      0 0 24px rgba(24, 198, 194, 0.16),
      0 0 20px rgba(216, 168, 66, 0.12);
  }

  .studio-capability:hover,
  .project-card:hover,
  .development-grid figure:hover,
  .works-hero-visual:hover,
  .nl-mechanic-grid article:hover,
  .studio-gallery.nl-gallery figure:hover,
  .barva-loop__steps div:hover,
  .barva-system-grid article:hover,
  .barva-screenshot-grid figure:hover,
  .dev-project-grid article:hover,
  .dev-system-grid article:hover,
  .dev-shot-grid figure:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 198, 194, 0.72);
    background:
      linear-gradient(160deg, rgba(14, 54, 76, 0.94), rgba(7, 20, 31, 0.96));
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(24, 198, 194, 0.28),
      0 0 24px rgba(24, 198, 194, 0.16),
      0 0 20px rgba(216, 168, 66, 0.12);
  }

  .studio-hover-pop:hover::before {
    opacity: 1;
    border-color: rgba(24, 198, 194, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(216, 168, 66, 0.22),
      0 0 16px rgba(24, 198, 194, 0.18);
  }

  .studio-capability:hover::before,
  .project-card:hover::before,
  .development-grid figure:hover::before,
  .works-hero-visual:hover::before,
  .nl-mechanic-grid article:hover::before,
  .studio-gallery.nl-gallery figure:hover::before,
  .barva-loop__steps div:hover::before,
  .barva-system-grid article:hover::before,
  .barva-screenshot-grid figure:hover::before,
  .dev-project-grid article:hover::before,
  .dev-system-grid article:hover::before,
  .dev-shot-grid figure:hover::before {
    opacity: 1;
    border-color: rgba(24, 198, 194, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(216, 168, 66, 0.22),
      0 0 16px rgba(24, 198, 194, 0.18);
  }
}

@keyframes studioMetalShine {
  0%,
  18% {
    background-position: 100% 50%;
  }

  54%,
  100% {
    background-position: 0% 50%;
  }
}

.studio-hero h1,
.portfolio-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  max-width: 10ch;
  margin: 0;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(24, 198, 194, 0.26);
}

.portfolio-hero h1 {
  font-size: clamp(2.55rem, 4.6vw, 4.2rem);
  max-width: 100%;
  margin: 0.65rem 0 1rem;
}

.studio-hero__copy {
  max-width: 52ch;
  color: var(--studio-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.studio-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn--gold {
  background: linear-gradient(180deg, #f2c970 0%, #be7e1f 100%);
  color: #10100d;
  border-color: rgba(255, 217, 132, 0.7);
  box-shadow: 0 0 18px rgba(216, 168, 66, 0.3);
}

.btn--glass {
  background: rgba(5, 13, 20, 0.58);
  color: var(--studio-ink);
  border-color: rgba(24, 198, 194, 0.42);
}

.studio-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(216, 168, 66, 0.16);
}

.studio-desk {
  padding: 3.25rem 0;
  background:
    linear-gradient(90deg, rgba(216, 168, 66, 0.1), rgba(24, 198, 194, 0.08));
  border-bottom: 1px solid rgba(216, 168, 66, 0.16);
}

.studio-desk__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: center;
}

.studio-desk__grid > *,
.studio-feature__grid > *,
.portfolio-hero__grid > * {
  min-width: 0;
}

.studio-desk h2 {
  max-width: 620px;
  margin: 0.55rem 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.studio-desk p {
  color: var(--studio-muted);
  line-height: 1.72;
  max-width: 62ch;
}

.studio-desk p + p {
  margin-top: 0.85rem;
}

.studio-desk__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.45rem;
}

.studio-desk__cta span {
  color: var(--studio-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-scene--compact {
  width: 100%;
  margin: 0;
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(9, 33, 48, 0.92), rgba(10, 15, 26, 0.96));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.studio-scene--compact .studio-scene__burst {
  opacity: 0.38;
}

.studio-band h2,
.studio-feature h2 {
  max-width: 760px;
  margin: 0.55rem 0 1.1rem;
  font-size: clamp(1.75rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

#studio-home .studio-eyebrow.studio-metal-title {
  font-size: 15px;
}

#workshop .studio-section-kicker.studio-metal-title,
#studio-about .studio-section-kicker.studio-metal-title,
#studio-services .studio-section-kicker.studio-metal-title,
#join-studio .studio-section-kicker.studio-metal-title {
  font-size: 20px;
}

#studio-desk-heading,
#studio-about-heading,
#studio-work-heading,
#join-studio-heading,
#projects-heading,
#qs-heading,
#writingai-heading {
  font-size: 18px;
}

#projects .studio-section-kicker.studio-metal-title,
#quantum-slip .studio-section-kicker.studio-metal-title,
#writingai .studio-section-kicker.studio-metal-title {
  font-size: 28px;
}

#numeraleague .studio-eyebrow.studio-metal-title {
  font-size: 16px;
}

#numeraleague .nl-hero__availability {
  font-size: 15px;
}

#nl-pitch .studio-section-kicker.studio-metal-title,
#play .studio-section-kicker.studio-metal-title,
#how .studio-section-kicker.studio-metal-title,
#snapshots .studio-section-kicker.studio-metal-title,
#thinking .studio-section-kicker.studio-metal-title,
#pitch .studio-section-kicker.studio-metal-title,
#loop .studio-section-kicker.studio-metal-title,
#systems .studio-section-kicker.studio-metal-title,
#screens .studio-section-kicker.studio-metal-title {
  font-size: 20px;
}

#watch .studio-section-kicker.studio-metal-title,
#appeal .studio-section-kicker.studio-metal-title,
.barva-final .studio-section-kicker.studio-metal-title {
  font-size: 24px;
}

#nl-pitch-heading {
  font-size: 28px;
}

#watch-heading,
#play-heading,
#how-heading,
#snapshots-heading {
  font-size: 20px;
}

#loop-heading,
#systems-heading {
  font-size: 24px;
}

.studio-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 2rem;
  color: var(--studio-muted);
  line-height: 1.75;
  text-align: center;
  justify-items: center;
}

.studio-intro .studio-section-kicker,
.studio-intro h2 {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.studio-intro__full {
  grid-column: 1 / -1;
  max-width: 82ch;
}

.studio-intro__full p + p {
  margin-top: 0.95rem;
}

.studio-intro__quote {
  margin: 0;
  padding: 1rem 1.15rem;
  max-width: 46ch;
  border-top: 1px solid rgba(216, 168, 66, 0.5);
  border-bottom: 1px solid rgba(216, 168, 66, 0.22);
  border-radius: 8px;
  background: rgba(3, 14, 21, 0.56);
  color: var(--studio-ink);
}

.studio-intro__quote p {
  margin: 0;
}

.studio-intro__quote cite {
  display: block;
  margin-top: 0.65rem;
  color: var(--studio-gold);
  font-style: normal;
  font-weight: 800;
}

.studio-intro__closing {
  margin: 0;
  align-self: center;
  max-width: 42ch;
  color: var(--studio-ink);
  font-weight: 700;
}

.studio-work {
  background:
    linear-gradient(180deg, rgba(7, 18, 28, 0.62), rgba(5, 7, 11, 0.84));
}

.studio-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.studio-capability {
  position: relative;
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.92));
}

.studio-capability span {
  color: var(--studio-teal);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.studio-capability h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.2rem;
}

.studio-capability p,
.studio-feature p,
.studio-cta p,
.media-section__copy,
.portfolio-hero p {
  color: var(--studio-muted);
  line-height: 1.72;
}

.studio-capability p + p,
.studio-feature p + p {
  margin-top: 0.8rem;
}

.studio-join {
  background:
    linear-gradient(120deg, rgba(216, 168, 66, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(5, 8, 13, 0.88));
}

.studio-join__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.studio-join__copy {
  color: var(--studio-muted);
  line-height: 1.72;
  max-width: 78ch;
}

.studio-join-map {
  position: relative;
  width: min(100%, 360px);
  height: 190px;
  margin-top: 2.2rem;
  overflow: hidden;
}

.studio-join-map::before {
  content: "";
  position: absolute;
  inset: 18% 8% 4% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 42%, rgba(216, 168, 66, 0.2), transparent 34%),
    radial-gradient(circle at 68% 58%, rgba(24, 198, 194, 0.16), transparent 38%);
  filter: blur(18px);
  opacity: 0.72;
}

.studio-join-map__line,
.studio-join-map__node {
  position: absolute;
  display: block;
}

.studio-join-map__line {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(24, 198, 194, 0.04), rgba(24, 198, 194, 0.46), rgba(216, 168, 66, 0.22));
  box-shadow: 0 0 12px rgba(24, 198, 194, 0.18);
}

.studio-join-map__line::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff4bc 0%, #e5b34c 48%, rgba(216, 168, 66, 0) 72%);
  box-shadow:
    0 0 8px rgba(216, 168, 66, 0.82),
    0 0 18px rgba(24, 198, 194, 0.24);
  opacity: 0;
  animation: studioPathTravel 5.6s ease-in-out infinite;
}

.studio-join-map__line--one {
  left: 15%;
  top: 56%;
  width: 34%;
  transform: rotate(-20deg);
}

.studio-join-map__line--two {
  left: 43%;
  top: 44%;
  width: 31%;
  transform: rotate(24deg);
}

.studio-join-map__line--two::after {
  animation-delay: 1.2s;
}

.studio-join-map__line--three {
  left: 30%;
  top: 70%;
  width: 33%;
  transform: rotate(-48deg);
}

.studio-join-map__line--three::after {
  animation-delay: 2.4s;
}

.studio-join-map__line--four {
  left: 58%;
  top: 32%;
  width: 24%;
  transform: rotate(58deg);
}

.studio-join-map__line--four::after {
  animation-delay: 3.6s;
}

.studio-join-map__node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2bd 0%, #e4b44c 42%, #a87418 100%);
  box-shadow:
    0 0 0 1px rgba(255, 225, 148, 0.48),
    0 0 18px rgba(216, 168, 66, 0.5);
  animation: studioNodePulse 4.8s ease-in-out infinite;
}

.studio-join-map__node--one {
  left: 14%;
  top: 52%;
}

.studio-join-map__node--two {
  left: 43%;
  top: 39%;
  animation-delay: 0.8s;
}

.studio-join-map__node--three {
  left: 72%;
  top: 54%;
  animation-delay: 1.5s;
}

.studio-join-map__node--four {
  left: 29%;
  top: 70%;
  width: 8px;
  height: 8px;
  animation-delay: 2.1s;
}

.studio-join-map__node--five {
  left: 58%;
  top: 28%;
  width: 8px;
  height: 8px;
  animation-delay: 2.9s;
}

@keyframes studioNodePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes studioPathTravel {
  0%,
  12% {
    opacity: 0;
    transform: translateX(0) scale(0.72);
  }

  24% {
    opacity: 0.95;
  }

  72% {
    opacity: 0.95;
  }

  88%,
  100% {
    opacity: 0;
    transform: translateX(var(--studio-path-distance, 112px)) scale(1.08);
  }
}

.studio-join-map__line--one {
  --studio-path-distance: 118px;
}

.studio-join-map__line--two {
  --studio-path-distance: 108px;
}

.studio-join-map__line--three {
  --studio-path-distance: 112px;
}

.studio-join-map__line--four {
  --studio-path-distance: 78px;
}

@media (prefers-reduced-motion: reduce) {
  .studio-metal-title,
  .studio-join-map__node,
  .studio-join-map__line::after,
  .contact-signal-desk__glow,
  .contact-signal-desk__pulse,
  .contact-signal-desk__node {
    animation: none;
  }

  .studio-hover-pop,
  .studio-capability,
  .project-card,
  .development-grid figure,
  .works-hero-visual,
  .nl-mechanic-grid article,
  .studio-gallery.nl-gallery figure,
  .barva-loop__steps div,
  .barva-system-grid article,
  .barva-screenshot-grid figure,
  .dev-project-grid article,
  .dev-system-grid article,
  .dev-shot-grid figure {
    transition: none;
  }
}

.studio-join__copy p + p {
  margin-top: 0.9rem;
}

.studio-join__prompt strong,
.studio-join__prompt span {
  display: block;
}

.studio-join__prompt strong {
  color: var(--studio-ink);
}

.studio-contact-hero {
  background:
    linear-gradient(120deg, rgba(216, 168, 66, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(24, 198, 194, 0.1), rgba(5, 8, 13, 0.88));
}

.studio-contact-hero__mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(216, 168, 66, 0.12), transparent 23%),
    radial-gradient(circle at center, rgba(24, 198, 194, 0.14), transparent 46%),
    linear-gradient(160deg, rgba(9, 30, 38, 0.78), rgba(5, 12, 20, 0.92));
}

.contact-signal-desk {
  position: relative;
  width: min(86%, 500px);
  aspect-ratio: 1.58;
}

.contact-signal-desk__glow {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(216, 168, 66, 0.2), transparent 38%),
    radial-gradient(circle, rgba(24, 198, 194, 0.16), transparent 62%);
  filter: blur(24px);
  animation: contactSignalBreathe 5.8s ease-in-out infinite;
}

.contact-signal-desk__panel {
  position: absolute;
  inset: 9% 6%;
  overflow: hidden;
  border: 1px solid rgba(24, 198, 194, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.1) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(0deg, rgba(24, 198, 194, 0.08) 1px, transparent 1px) 0 0 / 54px 54px,
    radial-gradient(circle at 50% 47%, rgba(216, 168, 66, 0.16), transparent 20%),
    linear-gradient(160deg, rgba(5, 18, 30, 0.94), rgba(7, 29, 38, 0.72));
  box-shadow:
    inset 0 0 34px rgba(24, 198, 194, 0.12),
    0 0 38px rgba(24, 198, 194, 0.12);
}

.contact-signal-desk__line,
.contact-signal-desk__pulse,
.contact-signal-desk__node,
.contact-signal-desk__chip {
  position: absolute;
  display: block;
}

.contact-signal-desk__line {
  left: 50%;
  top: 50%;
  width: var(--line-width);
  height: 1px;
  transform-origin: left center;
  transform: rotate(var(--line-angle));
  background: linear-gradient(90deg, rgba(24, 198, 194, 0.7), rgba(24, 198, 194, 0.08));
  box-shadow: 0 0 10px rgba(24, 198, 194, 0.18);
}

.contact-signal-desk__line--one {
  --line-width: 34%;
  --line-angle: -142deg;
}

.contact-signal-desk__line--two {
  --line-width: 27%;
  --line-angle: -68deg;
}

.contact-signal-desk__line--three {
  --line-width: 34%;
  --line-angle: -10deg;
}

.contact-signal-desk__line--four {
  --line-width: 28%;
  --line-angle: 80deg;
}

.contact-signal-desk__line--five {
  --line-width: 32%;
  --line-angle: 148deg;
}

.contact-signal-desk__pulse {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 999px;
  background: #f3c35f;
  box-shadow:
    0 0 8px rgba(216, 168, 66, 0.78),
    0 0 18px rgba(216, 168, 66, 0.42);
  opacity: 0;
  animation: contactSignalTravel 4.6s linear infinite;
}

.contact-signal-desk__pulse--one {
  --travel-x: -130px;
  --travel-y: -82px;
}

.contact-signal-desk__pulse--two {
  --travel-x: 132px;
  --travel-y: -22px;
  animation-delay: 1.15s;
}

.contact-signal-desk__pulse--three {
  --travel-x: 76px;
  --travel-y: 96px;
  animation-delay: 2.3s;
}

.contact-signal-desk__pulse--four {
  --travel-x: -120px;
  --travel-y: 72px;
  animation-delay: 3.45s;
}

.contact-signal-desk__node {
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff0a8, #d79a2e 54%, #774712 100%);
  box-shadow:
    0 0 10px rgba(216, 168, 66, 0.72),
    0 0 22px rgba(216, 168, 66, 0.28);
  animation: contactSignalNode 3.8s ease-in-out infinite;
}

.contact-signal-desk__node--core {
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(5, 16, 24, 0.96) 0 28%, transparent 30%),
    radial-gradient(circle, #fff1a8 0 18%, #e0a33a 42%, #24d8d5 45% 58%, #081620 62%);
  box-shadow:
    0 0 16px rgba(216, 168, 66, 0.7),
    0 0 28px rgba(24, 198, 194, 0.34);
}

.contact-signal-desk__node--one {
  left: 19%;
  top: 27%;
}

.contact-signal-desk__node--two {
  left: 57%;
  top: 16%;
  animation-delay: 0.35s;
}

.contact-signal-desk__node--three {
  left: 81%;
  top: 43%;
  animation-delay: 0.7s;
}

.contact-signal-desk__node--four {
  left: 66%;
  top: 78%;
  animation-delay: 1.05s;
}

.contact-signal-desk__node--five {
  left: 21%;
  top: 71%;
  animation-delay: 1.4s;
}

.contact-signal-desk__chip {
  width: 42px;
  height: 20px;
  border: 1px solid rgba(216, 168, 66, 0.25);
  border-radius: 5px;
  background: rgba(5, 13, 20, 0.72);
  box-shadow: inset 0 0 14px rgba(24, 198, 194, 0.1);
}

.contact-signal-desk__chip--one {
  left: 11%;
  top: 14%;
}

.contact-signal-desk__chip--two {
  right: 11%;
  top: 18%;
}

.contact-signal-desk__chip--three {
  right: 14%;
  bottom: 13%;
}

@keyframes contactSignalTravel {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.68);
  }

  12%,
  72% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translate(var(--travel-x), var(--travel-y)) scale(1);
  }
}

@keyframes contactSignalBreathe {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes contactSignalNode {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

#contact-home .studio-eyebrow.studio-metal-title {
  font-size: 20px;
}

#contact-heading {
  font-size: 28px;
}

#contact-details .studio-section-kicker.studio-metal-title {
  font-size: 20px;
}

#contact-details-heading {
  font-size: 28px;
}

.studio-contact {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

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

.studio-contact__card,
.studio-contact__message {
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  padding: 1.25rem;
}

.studio-contact__message {
  grid-column: 1 / -1;
}

.studio-contact__card h3,
.studio-contact__message h3 {
  margin-bottom: 0.75rem;
  color: var(--studio-ink);
  font-size: 1.2rem;
}

.studio-contact__card p,
.studio-contact__message p {
  color: var(--studio-muted);
  line-height: 1.7;
}

.studio-contact__card p + p,
.studio-contact__message p + p {
  margin-top: 0.75rem;
}

.studio-contact__card a,
.studio-contact__message a:not(.btn) {
  color: var(--studio-ink);
  text-decoration-color: rgba(216, 168, 66, 0.55);
}

.studio-feature {
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, rgba(216, 168, 66, 0.12), transparent 30%),
    linear-gradient(180deg, #06090f, #07131c);
  border-bottom: 1px solid rgba(216, 168, 66, 0.16);
}

.studio-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.studio-feature__media,
.portfolio-hero__media,
.studio-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 8px;
  background: var(--studio-panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  min-width: 0;
}

.studio-feature__media img,
.portfolio-hero__media img,
.studio-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prototype-note {
  color: var(--studio-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.78;
}

.prototype-note strong {
  color: var(--studio-ink);
  font-weight: 800;
}

.prototype-note--media {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(216, 168, 66, 0.18);
  border-radius: 6px;
  background: rgba(3, 7, 11, 0.74);
  color: rgba(243, 239, 228, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.prototype-media {
  aspect-ratio: auto;
  max-height: none;
}

.prototype-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prototype-media .prototype-note--media {
  position: static;
  margin: 0;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-top: 1px solid rgba(216, 168, 66, 0.18);
  border-radius: 0;
  background: rgba(3, 7, 11, 0.78);
  box-shadow: none;
  opacity: 0.82;
}

.prototype-note--section {
  max-width: 72ch;
  margin-top: 0.65rem;
}

.prototype-note--global {
  flex-basis: 100%;
  max-width: 78ch;
  margin: 0.25rem 0 0;
}

.studio-hero__prototype-note {
  position: absolute;
  right: max(1.2rem, calc((100vw - 1080px) / 2));
  bottom: clamp(0.5rem, 1.4vw, 0.95rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0;
  color: rgba(243, 239, 228, 0.58);
  font-size: 9px;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.studio-hero__credit-link {
  color: inherit;
  text-decoration: none;
}

.studio-hero__credit-link:hover,
.studio-hero__credit-link:focus-visible {
  color: rgba(243, 239, 228, 0.82);
}

.studio-hero__credit-hint {
  width: 1rem;
  height: 1rem;
  margin-left: 0;
  font-size: 0.58rem;
  cursor: help;
}

.studio-hero__credit-hint::after {
  left: auto;
  right: 0;
  width: min(72vw, 300px);
  transform: translate(0, 0.35rem);
}

.studio-hero__credit-hint:hover::after,
.studio-hero__credit-hint:focus-visible::after {
  transform: translate(0, 0);
}

.studio-feature__media {
  aspect-ratio: 16 / 9;
  max-height: 360px;
}

.studio-cta {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(102, 212, 136, 0.08));
}

.studio-cta h2,
.studio-cta p {
  margin-left: auto;
  margin-right: auto;
}

.studio-cta .studio-actions,
.studio-cta .btn {
  justify-content: center;
}

.studio-footer {
  margin-top: 0;
  background: rgba(4, 8, 13, 0.96);
  border-top-color: rgba(216, 168, 66, 0.26);
}

.portfolio-hero {
  padding: 3.75rem 0 3.5rem;
  background:
    linear-gradient(120deg, rgba(216, 168, 66, 0.12), transparent 30%),
    linear-gradient(180deg, #06090f, #071722 100%);
  border-bottom: 1px solid rgba(216, 168, 66, 0.18);
}

.portfolio-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 3rem;
  align-items: center;
}

.works-hero__actions {
  gap: 0.6rem;
}

.works-hero__actions .btn {
  padding-inline: 1rem;
}

.works-hero__actions .btn--gold {
  min-width: 10.7rem;
  text-align: center;
}

#featured-projects .studio-section-kicker.studio-metal-title,
#playable-builds .studio-section-kicker.studio-metal-title,
#in-development .studio-section-kicker.studio-metal-title,
#media .studio-section-kicker.studio-metal-title {
  font-size: 38px;
  line-height: 1.05;
}

#featured-projects-heading,
#playable-builds-heading,
#in-development #development-heading {
  font-size: 20px;
}

.portfolio-logo {
  width: 92px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 16px rgba(24, 198, 194, 0.36));
}

.portfolio-hero__media {
  aspect-ratio: 16 / 9;
  max-height: 430px;
}

.works-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.45);
  border-radius: 8px;
  background: var(--studio-panel);
  box-shadow:
    0 0 28px rgba(0, 180, 255, 0.12),
    0 0 34px rgba(216, 168, 66, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.3);
  min-width: 0;
}

.works-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  animation: worksHeroBreath 8s ease-in-out infinite;
}

.works-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(0, 190, 255, 0.18), transparent 26%),
    radial-gradient(circle at 32% 72%, rgba(216, 168, 66, 0.14), transparent 24%);
  opacity: 0.75;
  animation: worksHeroPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.prototype-note--image-credit {
  position: absolute;
  right: 0.6rem;
  bottom: 0.5rem;
  z-index: 3;
  padding: 0.18rem 0.36rem;
  border-radius: 4px;
  background: rgba(3, 7, 11, 0.62);
  color: rgba(243, 239, 228, 0.68);
  font-size: 0.62rem;
  line-height: 1.25;
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 220, 120, 0.12) 48%,
    transparent 56%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: worksHeroSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 210, 95, 0.75);
  box-shadow: 0 0 10px rgba(255, 210, 95, 0.8);
  opacity: 0;
  pointer-events: none;
}

.particle-a {
  top: 24%;
  left: 68%;
  animation: worksParticleBlink 4s ease-in-out infinite;
}

.particle-b {
  top: 58%;
  left: 42%;
  animation: worksParticleBlink 5.5s ease-in-out infinite 1.2s;
}

.particle-c {
  top: 36%;
  left: 82%;
  animation: worksParticleBlink 6s ease-in-out infinite 2s;
}

.works-hero {
  position: relative;
  min-height: clamp(38rem, 82vh, 58rem);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #03070d;
}

.works-hero::before,
.works-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.works-hero::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 198, 194, 0.14), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(216, 168, 66, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(2, 5, 10, 0.5) 0%, rgba(2, 5, 10, 0.28) 42%, rgba(2, 5, 10, 0.08) 72%),
    linear-gradient(180deg, rgba(2, 5, 10, 0.03) 0%, rgba(2, 5, 10, 0.18) 58%, rgba(2, 5, 10, 0.54) 100%);
}

.works-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.09), transparent 24%, transparent 70%, rgba(3, 7, 11, 0.46)),
    radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.2) 100%);
  mix-blend-mode: multiply;
}

.works-hero .portfolio-hero__grid {
  position: relative;
  z-index: 2;
  min-height: clamp(38rem, 82vh, 58rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.6rem;
  padding-block: clamp(5.5rem, 12vh, 8rem) clamp(2rem, 6vh, 4.5rem);
}

.works-hero__content {
  max-width: min(720px, 100%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.works-hero .portfolio-hero__lead {
  max-width: 46rem;
  color: rgba(243, 239, 228, 0.88);
}

.works-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: 0;
  min-width: 0;
  min-height: 100%;
  box-shadow: none;
  background: #03070d;
}

.works-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.03), transparent 42%, rgba(3, 7, 11, 0.32)),
    radial-gradient(circle at 50% 48%, transparent 44%, rgba(0, 0, 0, 0.17) 100%);
  pointer-events: none;
}

.works-hero-visual::after {
  z-index: 4;
  opacity: 0.28;
  background:
    radial-gradient(circle at 76% 34%, rgba(0, 190, 255, 0.16), transparent 27%),
    radial-gradient(circle at 30% 76%, rgba(216, 168, 66, 0.16), transparent 25%);
}

.works-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.016);
  transition:
    opacity 1.35s ease,
    transform 7s ease;
  animation: none;
  pointer-events: none;
}

.works-hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.works-hero__credit {
  position: absolute;
  right: clamp(0.45rem, 1.4vw, 1rem);
  bottom: clamp(0.38rem, 1.1vw, 0.82rem);
  z-index: 5;
  color: rgba(243, 239, 228, 0.62);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.84;
  pointer-events: auto;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.82);
  white-space: nowrap;
}

.works-hero__credit:hover,
.works-hero__credit:focus-visible {
  color: rgba(243, 239, 228, 0.86);
  opacity: 1;
}

.works-hero__controls {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.42rem 0.5rem;
  border: 1px solid rgba(216, 168, 66, 0.2);
  border-radius: 999px;
  background: rgba(3, 7, 11, 0.56);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.works-hero__dot {
  width: 0.64rem;
  height: 0.64rem;
  padding: 0;
  border: 1px solid rgba(243, 239, 228, 0.58);
  border-radius: 999px;
  background: rgba(243, 239, 228, 0.18);
  cursor: pointer;
  transition:
    width 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.works-hero__dot:hover,
.works-hero__dot:focus-visible,
.works-hero__dot.is-active {
  border-color: rgba(216, 168, 66, 0.92);
  background: rgba(216, 168, 66, 0.92);
  box-shadow: 0 0 18px rgba(216, 168, 66, 0.38);
}

.works-hero__dot.is-active {
  width: 1.72rem;
}

.works-hero .hero-scanline {
  z-index: 5;
  opacity: 0.62;
}

.works-hero .hero-particle {
  z-index: 5;
}

.works-hero--index-light-test {
  min-height: clamp(560px, 72vh, 760px);
}

.works-hero--index-light-test::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.5) 0%, rgba(2, 5, 10, 0.25) 38%, transparent 68%),
    linear-gradient(180deg, rgba(2, 5, 10, 0.08) 0%, rgba(2, 5, 10, 0.16) 54%, rgba(2, 5, 10, 0.52) 100%);
}

.works-hero--index-light-test::after {
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.08), transparent 28%, transparent 76%, rgba(3, 7, 11, 0.46)),
    radial-gradient(ellipse at center, transparent 52%, rgba(0, 0, 0, 0.18) 100%);
}

.works-hero--index-light-test .portfolio-hero__grid {
  min-height: clamp(560px, 72vh, 760px);
  padding-block: clamp(5.25rem, 11vh, 7.4rem) clamp(1.6rem, 4.8vh, 3.2rem);
}

.works-hero--index-light-test .works-hero-visual::before {
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.02), transparent 46%, rgba(3, 7, 11, 0.28)),
    radial-gradient(circle at 50% 48%, transparent 50%, rgba(0, 0, 0, 0.14) 100%);
}

.works-hero--index-light-test .works-hero-visual::after {
  opacity: 0.22;
}

@keyframes worksHeroBreath {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@keyframes worksHeroPulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.85;
  }
}

@keyframes worksHeroSweep {
  0%,
  65% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes worksParticleBlink {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  45%,
  55% {
    opacity: 1;
    transform: scale(1);
  }
}

.portfolio-hero__lead,
.nl-hero__line {
  color: var(--studio-ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.nl-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 4rem));
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24, 198, 194, 0.2), transparent 32%),
    linear-gradient(180deg, #06090f, #071722 100%);
}

.nl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/numeraleague/nl-cover-art.png");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04);
}

.nl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.94) 0%, rgba(5, 10, 15, 0.78) 44%, rgba(5, 10, 15, 0.32) 74%, rgba(5, 6, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.2) 46%, transparent 82%);
}

.nl-hero .portfolio-hero__grid {
  position: relative;
  z-index: 1;
}

.nl-hero .portfolio-hero__media {
  position: relative;
  border-color: rgba(24, 198, 194, 0.52);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(24, 198, 194, 0.18);
}

.nl-hero .portfolio-logo {
  filter:
    drop-shadow(0 0 18px rgba(24, 198, 194, 0.4))
    drop-shadow(0 0 18px rgba(216, 168, 66, 0.18));
}

.nl-system {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.08), rgba(216, 168, 66, 0.08));
}

.nl-system__grid,
.nl-mechanic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.nl-system__grid p,
.nl-mechanic-grid article {
  padding: 1.25rem;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.88), rgba(5, 12, 20, 0.92));
  color: var(--studio-muted);
  line-height: 1.7;
}

.nl-mechanic-grid span {
  color: var(--studio-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.nl-mechanic-grid h3 {
  margin: 1.1rem 0 0.65rem;
  color: var(--studio-ink);
  font-size: 1.12rem;
}

.nl-system__full {
  grid-column: 1 / -1;
}

.nl-pitch {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.1), rgba(216, 168, 66, 0.07));
}

.nl-pitch__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.nl-copy-stack {
  color: var(--studio-muted);
  line-height: 1.75;
}

.nl-copy-stack p + p {
  margin-top: 0.85rem;
}

.barva-hero {
  position: relative;
  overflow: hidden;
  min-height: min(680px, calc(100vh - 4rem));
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(216, 168, 66, 0.2), transparent 34%),
    linear-gradient(180deg, #06090f, #071722 100%);
}

.barva-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/Barva/NewDuskFinalTitleweb.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.04);
}

.barva-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 10, 15, 0.82) 42%, rgba(5, 10, 15, 0.36) 72%, rgba(5, 6, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.24) 48%, transparent 82%);
}

.barva-hero .portfolio-hero__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.barva-hero .portfolio-hero__grid > div:first-child {
  display: flex;
  flex-direction: column;
  min-height: clamp(380px, 54vh, 420px);
}

.barva-hero .studio-eyebrow {
  font-size: 15px;
  text-shadow: 0 0 18px rgba(24, 198, 194, 0.34);
}

.barva-hero__line {
  color: var(--studio-ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.barva-signal-row,
.nl-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.barva-signal-row span,
.nl-signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(24, 198, 194, 0.44);
  border-radius: 8px;
  background: rgba(3, 14, 21, 0.7);
  color: var(--studio-ink);
  box-shadow:
    inset 0 0 16px rgba(24, 198, 194, 0.1),
    0 10px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nl-signal-row span {
  border-color: rgba(216, 168, 66, 0.44);
  box-shadow:
    inset 0 0 16px rgba(216, 168, 66, 0.1),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.barva-hero__media {
  position: relative;
  align-self: start;
  border-color: rgba(216, 168, 66, 0.52);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(216, 168, 66, 0.18);
}

.barva-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.18), transparent 24%, transparent 76%, rgba(5, 6, 10, 0.2)),
    linear-gradient(0deg, rgba(5, 6, 10, 0.34), transparent 34%, rgba(5, 6, 10, 0.16));
  pointer-events: none;
}

.barva-hero__media img,
.barva-hero__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.barva-hero__media .barva-hero__credit {
  position: absolute;
  right: 0.35rem;
  bottom: 0.3rem;
  left: auto;
  z-index: 4;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(243, 239, 228, 0.58);
  font-size: 8px;
  line-height: 1;
  opacity: 0.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.barva-hero__sound {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 4;
  min-width: 0;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(216, 168, 66, 0.34);
  border-radius: 4px;
  background: rgba(3, 7, 11, 0.58);
  color: rgba(243, 239, 228, 0.72);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.barva-hero__sound:hover,
.barva-hero__sound:focus-visible,
.barva-hero__sound.is-on {
  border-color: rgba(216, 168, 66, 0.7);
  background: rgba(216, 168, 66, 0.82);
  color: #080b10;
}

.barva-hero__sound.is-unavailable {
  display: none;
}

.portfolio-hero__media.prototype-media {
  aspect-ratio: auto;
  max-height: none;
}

.portfolio-hero__media.prototype-media img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.barva-hero__actions {
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
  padding-top: 0.95rem;
}

.barva-hero__actions .btn {
  padding-inline: 1.05rem;
  white-space: nowrap;
}

.media-section__hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.45rem;
  border: 1px solid rgba(24, 198, 194, 0.64);
  border-radius: 999px;
  background: rgba(3, 14, 21, 0.82);
  color: var(--studio-ink);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  vertical-align: 0.1em;
  box-shadow:
    inset 0 0 12px rgba(24, 198, 194, 0.14),
    0 0 16px rgba(24, 198, 194, 0.16);
}

.media-section__hint::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.6rem);
  z-index: 5;
  width: min(78vw, 330px);
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(216, 168, 66, 0.46);
  border-radius: 6px;
  background: rgba(4, 10, 16, 0.96);
  color: var(--studio-ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
  text-align: left;
  white-space: normal;
  transform: translate(-50%, 0.35rem);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.media-section__hint:hover::after,
.media-section__hint:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.barva-pitch {
  background:
    linear-gradient(90deg, rgba(216, 168, 66, 0.1), rgba(24, 198, 194, 0.07));
}

.barva-pitch__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.barva-copy-stack {
  color: var(--studio-muted);
  line-height: 1.75;
}

.barva-copy-stack p + p {
  margin-top: 0.85rem;
}

.barva-loop {
  background: #060a10;
}

.barva-loop__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.barva-loop__steps div,
.barva-system-grid article {
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.barva-loop__steps div {
  padding: 1.15rem;
  min-height: 196px;
}

.barva-loop__steps span,
.barva-system-grid span {
  display: inline-block;
  color: var(--studio-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.barva-loop__steps strong {
  display: block;
  margin-top: 1.1rem;
  color: var(--studio-ink);
  font-size: 1.2rem;
}

.barva-loop__steps p,
.barva-system-grid p,
.barva-screenshot-grid figcaption,
.barva-appeal p {
  color: var(--studio-muted);
  line-height: 1.65;
}

.barva-loop__steps p {
  margin-top: 0.55rem;
}

.barva-systems {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.barva-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.barva-system-grid article {
  padding: 1.2rem;
  min-height: 250px;
}

.barva-system-grid h3 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1.1rem;
}

.barva-screens {
  background: #05080d;
}

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

.barva-screenshot-grid figure {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.barva-screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.barva-screenshot-grid figcaption {
  padding: 1rem;
}

.barva-screenshot-grid strong {
  color: var(--studio-ink);
}

.barva-appeal {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(216, 168, 66, 0.1), rgba(102, 212, 136, 0.07));
}

.barva-appeal h2,
.barva-appeal p {
  margin-left: auto;
  margin-right: auto;
}

.barva-appeal p {
  max-width: 72ch;
}

.barva-appeal p + p {
  margin-top: 0.8rem;
}

.barva-final {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(216, 168, 66, 0.09));
}

.dev-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 4rem));
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24, 198, 194, 0.18), transparent 30%),
    linear-gradient(300deg, rgba(216, 168, 66, 0.16), transparent 34%),
    linear-gradient(180deg, #06090f, #071722 100%);
}

.dev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("qswebpics/SlipWorld4.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.dev-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 10, 15, 0.82) 42%, rgba(5, 10, 15, 0.42) 72%, rgba(5, 6, 10, 0.24) 100%),
    linear-gradient(0deg, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.24) 48%, transparent 82%);
}

.dev-hero .portfolio-hero__grid {
  position: relative;
  z-index: 1;
}

.dev-hero__line {
  color: var(--studio-ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.dev-signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.dev-signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(24, 198, 194, 0.44);
  border-radius: 8px;
  background: rgba(3, 14, 21, 0.72);
  color: var(--studio-ink);
  box-shadow:
    inset 0 0 16px rgba(24, 198, 194, 0.1),
    0 10px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dev-hero__media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  min-width: 0;
}

.dev-hero__media figure {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.36);
  border-radius: 8px;
  background: var(--studio-panel);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(24, 198, 194, 0.13);
}

.dev-hero__media figure:first-child {
  transform: translateX(-1rem);
}

.dev-hero__media figure:last-child {
  transform: translateX(1rem);
  border-color: rgba(24, 198, 194, 0.36);
}

.dev-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.dev-overview {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.1), rgba(216, 168, 66, 0.07));
}

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

.dev-project-grid article,
.dev-system-grid article {
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.dev-project-grid article {
  min-height: 260px;
  padding: 1.35rem;
}

.dev-project-grid span,
.dev-system-grid span {
  display: inline-block;
  color: var(--studio-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dev-project-grid h3,
.dev-system-grid h3 {
  margin: 1.1rem 0 0.65rem;
  color: var(--studio-ink);
  font-size: 1.18rem;
}

.dev-project-grid p,
.dev-system-grid p,
.dev-copy-stack,
.dev-shot-grid figcaption {
  color: var(--studio-muted);
  line-height: 1.65;
}

.dev-project-grid .btn {
  margin-top: 1rem;
}

.dev-project {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.1), rgba(216, 168, 66, 0.07));
}

.dev-project--writing {
  background:
    linear-gradient(90deg, rgba(216, 168, 66, 0.09), rgba(102, 212, 136, 0.07));
}

.dev-project__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.dev-project__grid > .dev-copy-stack {
  margin-top: 5.9rem;
}

.dev-concept-art {
  position: relative;
  overflow: hidden;
  margin-top: 1.35rem;
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 8px;
  background: rgba(3, 14, 21, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(24, 198, 194, 0.12);
}

.dev-concept-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.dev-concept-art.prototype-media img {
  aspect-ratio: 16 / 10;
}

.dev-copy-stack p + p {
  margin-top: 0.85rem;
}

.dev-systems {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.dev-systems--writing {
  background:
    linear-gradient(135deg, rgba(216, 168, 66, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.dev-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.dev-system-grid article {
  min-height: 245px;
  padding: 1.2rem;
}

.dev-screens {
  background: #05080d;
}

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

.dev-shot-grid figure {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.dev-shot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dev-shot-grid figcaption {
  padding: 1rem;
}

.dev-shot-grid strong {
  color: var(--studio-ink);
}

.dev-final {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(216, 168, 66, 0.09));
}

.studio-gallery.nl-gallery figure {
  aspect-ratio: auto;
  max-height: none;
}

.studio-gallery.nl-gallery img {
  display: block;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.studio-gallery.nl-gallery figcaption {
  padding: 1rem;
  color: var(--studio-muted);
  line-height: 1.6;
}

.studio-gallery.nl-gallery strong {
  color: var(--studio-ink);
}

.project-grid,
.development-grid,
.media-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-card,
.development-grid figure,
.media-grid figure {
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.project-card figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-card img,
.development-grid img,
.media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem;
}

.project-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.project-card__body .project-card__tagline {
  color: var(--studio-ink);
  font-weight: 800;
}

.project-card__body p,
.development-grid figcaption {
  color: var(--studio-muted);
  line-height: 1.65;
}

.project-card__body .btn {
  margin-top: auto;
}

.project-card__status {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(216, 168, 66, 0.36);
  border-radius: 999px;
  color: var(--studio-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.webgl-build-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.webgl-build-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

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

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

.in-development #development-heading {
  max-width: 780px;
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 1rem;
}

.development-intro {
  max-width: 860px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.project-grid > *,
.development-grid > *,
.media-grid > * {
  min-width: 0;
}

.development-grid figure,
.media-grid figure {
  aspect-ratio: 16 / 9;
  position: relative;
}

.development-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(2, 4, 7, 0.88));
  color: var(--studio-ink);
  font-weight: 700;
}

.development-actions {
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.media-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.media-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.media-grid__video {
  min-width: 0;
}

.media-grid .responsive-frame {
  margin-top: 0;
}

.media-section {
  background: #060a10;
}

.media-section--dark {
  background: #04070b;
}

.responsive-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 8px;
  background: #020407;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  margin-top: 1.4rem;
}

.responsive-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.responsive-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.responsive-frame--video {
  aspect-ratio: 16 / 9;
}

.responsive-frame--video iframe {
  height: 100%;
}

.responsive-frame--itch {
  max-width: 620px;
}

.responsive-frame--itch iframe {
  min-height: 167px;
}

.webgl-section {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.webgl-warning,
.webgl-mobile-note {
  max-width: 760px;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(216, 168, 66, 0.42);
  border-radius: 8px;
  background: rgba(216, 168, 66, 0.1);
  color: var(--studio-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.responsive-frame--webgl {
  aspect-ratio: 16 / 10;
  margin-top: 1.25rem;
}

.responsive-frame--webgl iframe {
  height: 100%;
}

.webgl-launch {
  position: relative;
  margin-top: 1.25rem;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 8px;
  background: #020407;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.webgl-launch__poster {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.04);
}

.webgl-launch__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(2, 4, 7, 0.18), rgba(2, 4, 7, 0.72));
}

.webgl-launch__overlay h3 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(24, 198, 194, 0.36);
}

.webgl-launch__overlay p {
  max-width: 34rem;
  color: var(--studio-muted);
}

.webgl-mobile-note {
  display: none;
}

.webgl-open-link {
  margin-top: 1rem;
}

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

.studio-gallery figure {
  aspect-ratio: 16 / 9;
  max-height: 360px;
}

.studio-redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.studio-redirect img {
  width: min(320px, 70vw);
  filter: drop-shadow(0 0 20px rgba(216, 168, 66, 0.38));
}

.studio-redirect p {
  color: var(--studio-muted);
}

.services-page {
  background:
    radial-gradient(circle at 18% 6%, rgba(216, 168, 66, 0.14), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(24, 198, 194, 0.12), transparent 24%),
    linear-gradient(180deg, #05060a 0%, #07111a 42%, #05070b 100%);
}

.services-page .studio-eyebrow,
.services-page .studio-section-kicker {
  font-size: 16px;
}

.services-page .studio-band h2 {
  font-size: 30px;
  line-height: 1.15;
}

.services-page #headache .web-services-checklist li::before {
  background: var(--studio-gold);
  box-shadow: 0 0 10px rgba(216, 168, 66, 0.55);
}

.services-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  border-bottom: 1px solid rgba(216, 168, 66, 0.2);
  background:
    linear-gradient(120deg, rgba(216, 168, 66, 0.14), transparent 28%),
    linear-gradient(300deg, rgba(24, 198, 194, 0.12), transparent 34%),
    linear-gradient(180deg, #06090f, #071722);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.08) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(24, 198, 194, 0.06) 1px, transparent 1px) 0 0 / 72px 72px;
  opacity: 0.34;
  pointer-events: none;
}

.services-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.services-hero h1 {
  max-width: 12ch;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.5rem, 5.4vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(24, 198, 194, 0.2);
}

.services-hero__lead,
.services-section-lead {
  color: var(--studio-muted);
  line-height: 1.75;
}

.services-hero__lead {
  max-width: 64ch;
  font-size: 1.08rem;
}

.services-hero__positioning {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--studio-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.services-hero__trust {
  margin-top: 1rem;
  color: var(--studio-gold);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
}

.services-hero__visual {
  min-width: 0;
}

.presence-board {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(216, 168, 66, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 12%, rgba(216, 168, 66, 0.18), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(24, 198, 194, 0.14), transparent 30%),
    linear-gradient(160deg, rgba(9, 30, 38, 0.92), rgba(5, 12, 20, 0.96));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(216, 168, 66, 0.12);
}

.presence-board::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(24, 198, 194, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.presence-board__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(216, 168, 66, 0.18);
  color: var(--studio-ink);
  font-weight: 900;
}

.presence-board__top img {
  width: 42px;
  filter: drop-shadow(0 0 10px rgba(216, 168, 66, 0.42));
}

.presence-board__screen {
  position: absolute;
  left: 9%;
  top: 26%;
  width: 62%;
  min-height: 210px;
  padding: 1rem;
  border: 1px solid rgba(24, 198, 194, 0.32);
  border-radius: 8px;
  background: rgba(3, 14, 21, 0.78);
  box-shadow:
    inset 0 0 26px rgba(24, 198, 194, 0.09),
    0 16px 36px rgba(0, 0, 0, 0.32);
}

.presence-board__pill,
.presence-board__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(216, 168, 66, 0.4);
  border-radius: 999px;
  color: var(--studio-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.presence-board__headline,
.presence-board__line,
.presence-board__button {
  display: block;
  border-radius: 999px;
  background: rgba(243, 239, 228, 0.82);
}

.presence-board__headline {
  width: 78%;
  height: 22px;
  margin-top: 1.4rem;
}

.presence-board__line {
  width: 62%;
  height: 10px;
  margin-top: 0.78rem;
  background: rgba(185, 198, 199, 0.42);
}

.presence-board__line--wide {
  width: 90%;
}

.presence-board__button {
  width: 122px;
  height: 36px;
  margin-top: 1.25rem;
  background: linear-gradient(180deg, #f2c970 0%, #be7e1f 100%);
  box-shadow: 0 0 18px rgba(216, 168, 66, 0.22);
}

.presence-board__qr {
  position: absolute;
  right: 10%;
  top: 35%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 118px;
  aspect-ratio: 1;
  padding: 0.8rem;
  border: 1px solid rgba(216, 168, 66, 0.32);
  border-radius: 8px;
  background: rgba(243, 239, 228, 0.94);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.presence-board__qr span {
  border-radius: 2px;
  background: #07111a;
}

.presence-board__qr span:nth-child(2n),
.presence-board__qr span:nth-child(7),
.presence-board__qr span:nth-child(11) {
  background: rgba(7, 17, 26, 0.22);
}

.presence-board__notes {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 9%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.services-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.services-copy {
  color: var(--studio-muted);
  line-height: 1.75;
}

.services-copy p + p {
  margin-top: 0.9rem;
}

.services-copy--wide {
  max-width: 86ch;
}

.services-side-note {
  max-width: 32ch;
  margin-top: 0.95rem;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(216, 168, 66, 0.64);
  color: var(--studio-muted);
  line-height: 1.55;
  font-size: 0.95rem;
  font-weight: 700;
}

.services-punch {
  color: var(--studio-ink);
  font-weight: 900;
}

.services-help,
.services-diy,
.services-examples,
.services-process,
.services-faq {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.services-packages,
.services-use-cases {
  background:
    linear-gradient(90deg, rgba(216, 168, 66, 0.1), rgba(24, 198, 194, 0.07));
}

.services-comparison,
.services-payment-links,
.services-extras {
  background: #05080d;
}

.services-fit,
.services-final {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(216, 168, 66, 0.09));
}

.services-card-grid,
.package-grid,
.comparison-grid,
.process-grid,
.use-case-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.services-diy-card {
  max-width: 860px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid rgba(40, 168, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 168, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(8, 22, 34, 0.92), rgba(5, 9, 15, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.services-diy-card p {
  max-width: 74ch;
  color: var(--studio-muted);
  line-height: 1.7;
}

.services-diy-card p + p {
  margin-top: 0.85rem;
}

.site-style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.services-example-note {
  width: fit-content;
  margin-top: 0.9rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 999px;
  background: rgba(216, 168, 66, 0.08);
  color: var(--studio-gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.site-style-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(40, 168, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 20, 31, 0.92), rgba(5, 8, 13, 0.96)),
    rgba(7, 13, 20, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.site-style-card__copy h3 {
  margin-bottom: 0.55rem;
  color: var(--studio-ink);
}

.site-style-card__copy p {
  color: var(--studio-muted);
  line-height: 1.62;
}

.site-style-card__copy p + p {
  margin-top: 0.55rem;
}

.site-style-card__copy strong {
  color: var(--studio-ink);
}

.site-style-mockup {
  min-height: 230px;
  padding: 0.7rem;
  border: 1px solid rgba(200, 230, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 168, 66, 0.18), transparent 25%),
    linear-gradient(180deg, #07131f, #04070c);
  overflow: hidden;
}

.site-style-mockup--image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  border-color: rgba(40, 168, 255, 0.3);
  background-image: url("assets/images/services-example-styles.png");
  background-repeat: no-repeat;
  background-size: 300% auto;
  background-color: #05080d;
  box-shadow:
    inset 0 0 0 1px rgba(216, 168, 66, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

.site-style-mockup--service {
  background-position: left 24%;
}

.site-style-mockup--creative {
  background-position: center 24%;
}

.site-style-mockup--venue {
  background-position: right 24%;
}

.services-proof-line {
  margin-top: 1.25rem;
  color: var(--studio-ink);
  font-weight: 900;
  line-height: 1.55;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

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

.services-card,
.package-card,
.comparison-card,
.process-grid article,
.use-case-grid article,
.services-faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.services-card,
.package-card,
.comparison-card,
.process-grid article,
.use-case-grid article {
  padding: 1.2rem;
}

.services-card span,
.process-grid span {
  display: inline-block;
  color: var(--studio-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-card h3,
.package-card h3,
.comparison-card h3,
.process-grid h3,
.use-case-grid h3 {
  margin: 1rem 0 0.65rem;
  color: var(--studio-ink);
  font-size: 1.14rem;
}

.services-card p,
.package-card p,
.comparison-card li,
.process-grid p,
.use-case-grid p {
  color: var(--studio-muted);
  line-height: 1.65;
}

.services-card ul,
.package-card ul,
.comparison-card ul,
.fit-list,
.extras-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.services-card li,
.package-card li,
.comparison-card li,
.fit-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--studio-muted);
  line-height: 1.55;
}

.services-card li::before,
.package-card li::before,
.comparison-card li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--studio-gold);
  box-shadow: 0 0 10px rgba(216, 168, 66, 0.48);
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card--featured {
  border-color: rgba(216, 168, 66, 0.62);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 168, 66, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(12, 42, 52, 0.95), rgba(5, 12, 20, 0.96));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 32px rgba(216, 168, 66, 0.14);
}

.package-card__badge {
  align-self: flex-start;
  min-height: 28px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(216, 168, 66, 0.54);
  border-radius: 999px;
  background: rgba(216, 168, 66, 0.12);
  color: var(--studio-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card__price {
  margin: 0 0 0.85rem;
  color: var(--studio-gold) !important;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
}

.package-card__price span {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--studio-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card__fit {
  margin: 1rem 0 1.2rem;
}

.package-card .btn {
  margin-top: auto;
  text-align: center;
}

.comparison-card--gnosis {
  border-color: rgba(24, 198, 194, 0.44);
  background:
    radial-gradient(circle at 20% 0%, rgba(24, 198, 194, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(9, 30, 38, 0.95), rgba(5, 12, 20, 0.96));
}

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

.extras-list {
  gap: 0.65rem;
}

.extras-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(216, 168, 66, 0.16);
  color: var(--studio-muted);
}

.extras-list strong {
  color: var(--studio-ink);
  white-space: nowrap;
}

.services-faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin-top: 1.5rem;
}

.services-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: var(--studio-ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.services-faq-list summary::-webkit-details-marker {
  display: none;
}

.services-faq-list summary::after {
  content: "+";
  color: var(--studio-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.services-faq-list details[open] summary::after {
  content: "-";
}

.services-faq-list p {
  padding: 0 1.15rem 1rem;
  color: var(--studio-muted);
  line-height: 1.65;
}

.services-final__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 2rem;
  align-items: center;
}

.services-final p {
  max-width: 68ch;
  color: var(--studio-muted);
  line-height: 1.72;
}

.services-final__actions {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.services-final__actions a:not(.btn) {
  color: var(--studio-ink);
  text-decoration: underline;
  text-decoration-color: rgba(216, 168, 66, 0.55);
  text-underline-offset: 0.2em;
}

.services-request-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid rgba(216, 168, 66, 0.2);
  background:
    radial-gradient(circle at 84% 24%, rgba(24, 198, 194, 0.13), transparent 25%),
    linear-gradient(120deg, rgba(216, 168, 66, 0.13), transparent 30%),
    linear-gradient(180deg, #06090f, #071722);
}

.services-request-hero__grid,
.services-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.services-request-hero h1 {
  max-width: 12ch;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.request-summary-card,
.request-contact-card,
.services-request-form {
  border: 1px solid rgba(216, 168, 66, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 38, 0.9), rgba(5, 12, 20, 0.94));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.request-summary-card {
  padding: 1.35rem;
}

.request-summary-card ul {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.request-summary-card li {
  color: var(--studio-ink);
  font-weight: 800;
}

.request-summary-card p,
.request-contact-card p,
.services-request-form__note {
  color: var(--studio-muted);
  line-height: 1.65;
}

.request-summary-card p {
  margin-top: 1rem;
}

.services-request-section {
  background:
    linear-gradient(135deg, rgba(24, 198, 194, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.request-contact-card {
  margin-top: 1.2rem;
  padding: 1.2rem;
}

.request-contact-card h3 {
  margin-bottom: 0.65rem;
  color: var(--studio-ink);
}

.request-contact-card a,
.services-request-form__note a {
  color: var(--studio-ink);
  text-decoration: underline;
  text-decoration-color: rgba(216, 168, 66, 0.55);
  text-underline-offset: 0.2em;
}

.services-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.services-request-form .form-group {
  min-width: 0;
}

.services-request-form .form-group--full,
.services-request-form button,
.services-request-form__note {
  grid-column: 1 / -1;
}

.services-request-form textarea {
  min-height: 160px;
}

.services-request-form button {
  justify-self: start;
}

.services-request-form__note {
  margin: 0;
  font-size: 0.9rem;
}

.web-services-page {
  --web-service-blue: #28a8ff;
  --web-service-blue-soft: rgba(40, 168, 255, 0.16);
  --web-service-card: rgba(7, 18, 30, 0.92);
  background:
    radial-gradient(circle at 16% 8%, rgba(40, 168, 255, 0.15), transparent 27%),
    radial-gradient(circle at 88% 20%, rgba(216, 168, 66, 0.1), transparent 24%),
    linear-gradient(180deg, #05060a 0%, #07111a 42%, #05070b 100%);
}

.web-services-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.4rem) 0;
  border-bottom: 1px solid rgba(40, 168, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(40, 168, 255, 0.12), transparent 30%),
    linear-gradient(300deg, rgba(216, 168, 66, 0.1), transparent 34%),
    linear-gradient(180deg, #06090f, #071722);
}

.web-services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 168, 255, 0.07) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(40, 168, 255, 0.05) 1px, transparent 1px) 0 0 / 72px 72px;
  opacity: 0.34;
  pointer-events: none;
}

.web-services-hero__grid,
.web-services-split,
.web-services-final__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.web-services-hero h1 {
  max-width: 12ch;
  margin: 0.7rem 0 1rem;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 0 24px rgba(40, 168, 255, 0.18);
}

.web-services-hero p,
.web-services-copy,
.web-services-final p {
  color: var(--studio-muted);
  line-height: 1.75;
}

.web-services-hero p + p,
.web-services-copy p + p {
  margin-top: 0.9rem;
}

.web-services-hero__lead {
  max-width: 62ch;
  color: var(--studio-ink) !important;
  font-size: 1.13rem;
  font-weight: 800;
}

.web-services-hero__panel,
.web-price-card,
.web-process-grid article {
  border: 1px solid rgba(40, 168, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(9, 30, 42, 0.92), rgba(5, 12, 20, 0.96));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.web-services-hero__panel {
  padding: 1.35rem;
}

.web-services-hero__panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.web-services-hero__panel li {
  color: var(--studio-ink);
  font-weight: 900;
}

.web-services-intro,
.web-services-process {
  background:
    linear-gradient(135deg, rgba(40, 168, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #06090f, #07131c);
}

.web-services-packages,
.web-services-trust {
  background:
    linear-gradient(90deg, rgba(40, 168, 255, 0.09), rgba(216, 168, 66, 0.07));
}

.web-services-domain {
  background: #05080d;
}

.web-services-final {
  background:
    linear-gradient(90deg, rgba(24, 198, 194, 0.09), rgba(40, 168, 255, 0.08));
}

.web-services-checklist,
.web-price-card ul {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.web-services-checklist li,
.web-price-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--studio-muted);
  line-height: 1.55;
}

.web-services-checklist li::before,
.web-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--studio-gold);
  box-shadow: 0 0 10px rgba(216, 168, 66, 0.55);
}

.web-price-grid,
.web-process-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.web-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.web-price-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}

.web-price-card--featured {
  border-color: rgba(216, 168, 66, 0.58);
  background:
    radial-gradient(circle at 80% 0%, rgba(216, 168, 66, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.95), rgba(5, 12, 20, 0.96));
}

.web-price-card h3,
.web-process-grid h3 {
  margin-bottom: 0.65rem;
  color: var(--studio-ink);
  font-size: 1.2rem;
}

.web-price-card p,
.web-process-grid p {
  color: var(--studio-muted);
  line-height: 1.65;
}

.web-price-card__price {
  margin: 0.2rem 0 0.85rem;
  color: var(--studio-gold) !important;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.web-price-card__price span {
  display: block;
  margin-top: 0.24rem;
  color: var(--studio-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.web-price-card__fit,
.web-price-card__smallprint {
  margin: 1rem 0 1.2rem;
}

.web-price-card__smallprint {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(216, 168, 66, 0.18);
  font-size: 0.9rem;
}

.web-price-card .btn {
  margin-top: auto;
  text-align: center;
}

.payment-link-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0.55rem;
  margin: 1.1rem 0;
}

.payment-link-labels span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(40, 168, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 22, 35, 0.72);
  color: var(--studio-ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.services-note {
  padding: 0.85rem 1rem;
  border-left: 3px solid rgba(216, 168, 66, 0.75);
  background: rgba(216, 168, 66, 0.08);
  color: var(--studio-muted);
}

@media (min-width: 901px) {
  .services-page .services-split {
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(1.75rem, 3vw, 2.75rem);
  }

  .services-page .services-split > div:first-child {
    max-width: 360px;
  }

  .services-page .services-split .services-copy {
    max-width: 760px;
  }

  .services-payment-links .payment-link-labels,
  .services-payment-links .services-note {
    max-width: 760px;
  }
}

@media (max-width: 540px) {
  .services-payment-links .payment-link-labels span:last-child {
    grid-column: 1 / -1;
  }
}

.web-services-strong {
  color: var(--studio-ink) !important;
  font-weight: 900;
}

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

.web-process-grid article {
  padding: 1.15rem;
}

.web-process-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--web-service-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.web-services-final__actions {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.web-services-final__actions a:not(.btn) {
  color: var(--studio-ink);
  text-decoration: underline;
  text-decoration-color: rgba(40, 168, 255, 0.55);
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .studio-hero {
    min-height: 0;
    height: auto;
  }

  .studio-hero__shade {
    background:
      linear-gradient(180deg, transparent 0%, transparent 74%, rgba(2, 3, 8, 0.16) 84%, rgba(2, 3, 8, 0.48) 95%, #020308 100%);
  }

  .studio-hero__image {
    object-position: top center;
  }

  .studio-intro__grid,
  .studio-join__grid,
  .studio-contact__grid,
  .studio-capabilities,
  .studio-desk__grid,
  .studio-feature__grid,
  .portfolio-hero__grid,
  .studio-gallery,
  .project-grid,
  .development-grid,
  .media-grid,
  .webgl-build-card,
  .nl-system__grid,
  .nl-pitch__grid,
  .nl-mechanic-grid,
  .barva-pitch__grid,
  .barva-loop__steps,
    .barva-system-grid,
    .barva-screenshot-grid,
    .dev-project-grid,
    .dev-project__grid,
    .dev-system-grid,
    .dev-shot-grid,
    .services-hero__grid,
    .services-split,
    .site-style-grid,
    .services-card-grid,
    .package-grid,
    .comparison-grid,
    .process-grid,
    .use-case-grid,
    .services-final__inner,
    .services-request-hero__grid,
    .services-request-grid,
    .web-services-hero__grid,
    .web-services-split,
    .web-services-final__grid,
    .web-price-grid,
    .web-process-grid {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    max-width: 14ch;
  }

  .presence-board {
    min-height: 360px;
  }

  .studio-capability {
    min-height: 0;
  }

  .studio-feature__media,
  .portfolio-hero__media,
  .works-hero-visual {
    order: -1;
  }

  .studio-feature__grid,
  .portfolio-hero__grid {
    gap: 1.5rem;
  }

  .barva-hero .portfolio-hero__grid {
    grid-template-columns: 1fr;
  }

  .studio-join-map {
    display: none;
  }

  .contact-signal-desk {
    width: min(78%, 430px);
  }

  .studio-contact__message {
    grid-column: auto;
  }

  .barva-hero__actions {
    grid-column: auto;
    flex-wrap: wrap;
    margin-top: 0.9rem;
    padding-top: 0;
  }

  .barva-hero .portfolio-hero__grid > div:first-child {
    min-height: 0;
  }

  .nl-system__full {
    grid-column: auto;
  }

  .barva-loop__steps div,
  .barva-system-grid article,
  .dev-project-grid article,
  .dev-system-grid article {
    min-height: 0;
  }

  .dev-project__grid > .dev-copy-stack {
    margin-top: 0;
  }

  .studio-hero__prototype-note {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    width: auto;
    justify-content: flex-end;
    white-space: normal;
  }

  .dev-hero__media figure:first-child,
  .dev-hero__media figure:last-child {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-hero-slide {
    transition: none;
    transform: none;
  }

  .works-hero-visual img,
  .works-hero-visual::after,
  .hero-scanline,
  .hero-particle,
  .studio-metal-title {
    animation: none;
  }
}

@media (max-width: 640px) {
  .studio-subnav {
    display: none;
  }

  .works-hero {
    min-height: clamp(33rem, 72vh, 44rem);
  }

  .works-hero .portfolio-hero__grid {
    min-height: clamp(33rem, 72vh, 44rem);
    padding-block: 5rem 1.4rem;
  }

  .works-hero::before {
    background:
      radial-gradient(circle at 18% 16%, rgba(24, 198, 194, 0.1), transparent 36%),
      linear-gradient(180deg, rgba(2, 5, 10, 0.06) 0%, rgba(2, 5, 10, 0.2) 42%, rgba(2, 5, 10, 0.58) 100%);
  }

  .works-hero--index-light-test {
    min-height: clamp(560px, 72vh, 760px);
  }

  .works-hero--index-light-test .portfolio-hero__grid {
    min-height: clamp(560px, 72vh, 760px);
    padding-block: 5rem 1.25rem;
  }

  .works-hero--index-light-test::before {
    background:
      radial-gradient(circle at 18% 16%, rgba(24, 198, 194, 0.08), transparent 36%),
      linear-gradient(180deg, rgba(2, 5, 10, 0.06) 0%, rgba(2, 5, 10, 0.16) 48%, rgba(2, 5, 10, 0.5) 100%);
  }

  .works-hero .portfolio-hero__lead {
    max-width: 26rem;
  }

  .works-hero__actions {
    width: 100%;
  }

  .works-hero__actions .btn {
    width: 100%;
  }

  .works-hero__controls {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .works-hero__dot {
    width: 0.58rem;
    height: 0.58rem;
  }

  .works-hero__dot.is-active {
    width: 1.45rem;
  }

  .studio-hero__inner,
  .portfolio-hero {
    padding-top: 3rem;
    padding-bottom: 3.2rem;
  }

  .works-hero {
    padding: 0;
  }

  .studio-band,
  .studio-feature {
    padding: 3rem 0;
  }

  .studio-hero h1,
  .portfolio-hero h1 {
    font-size: 2.75rem;
  }

  .studio-hero__title-lockup h1 {
    white-space: normal;
  }

  .studio-hero__title-lockup {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .studio-hero__mark {
    flex-basis: 64px;
    width: 64px;
  }

  .studio-actions .btn {
    width: 100%;
    text-align: center;
  }

  .services-hero {
    padding: 3rem 0;
  }

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

  .services-request-form {
    grid-template-columns: 1fr;
  }

  .web-services-hero h1 {
    max-width: 14ch;
  }

  .presence-board__screen {
    left: 7%;
    width: 68%;
  }

  .presence-board__qr {
    right: 7%;
    width: 92px;
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .extras-list li {
    display: block;
  }

  .extras-list strong {
    display: block;
    margin-top: 0.2rem;
  }

  .web-services-hero {
    padding: 3rem 0;
  }

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

  .responsive-frame--webgl {
    display: none;
  }

  .webgl-launch {
    display: none;
  }

  .webgl-mobile-note {
    display: block;
  }
}
