:root {
  --bg: #050505;
  --bg-soft: #101010;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f6f2;
  --text-muted: rgba(246, 246, 242, 0.76);
  --electric: #2f6bff;
  --electric-soft: rgba(47, 107, 255, 0.18);
  --silver: #d7dbe6;
  --max-width: 1200px;
  --header-height: 84px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top, rgba(47, 107, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #080808 0%, #040404 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

section {
  scroll-margin-top: 132px;
}

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

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 0.65rem 1rem;
  background: #f1f4ff;
  color: #050505;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  transition: background-color 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-preview {
  display: block;
  width: auto;
  height: 6.2rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  line-height: 0.86;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a,
.social-links a,
.footer-links a,
.contact-socials a {
  position: relative;
}

.site-nav a::after,
.social-links a::after,
.footer-links a::after,
.contact-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.social-links a:hover::after,
.footer-links a:hover::after,
.contact-socials a:hover::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links a,
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.social-links a {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover,
.contact-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.social-icon {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.social-icon-filled {
  fill: currentColor;
  stroke: none;
}

.social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-orb-one {
  top: 12%;
  right: 18%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.6), transparent 64%);
}

.hero-orb-two {
  bottom: -8rem;
  left: -6rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.hero-grid,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 94%);
}

.hero-noise {
  opacity: 0.15;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0, transparent 24%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.11) 0, transparent 18%),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.09) 0, transparent 16%);
  mix-blend-mode: screen;
}

.hero-inner,
.feature-grid,
.about-section,
.games-section,
.gallery-section,
.contact-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 4rem));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 3rem 0 5rem;
}

.eyebrow,
.feature-kicker,
.poster-label,
.game-index {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 9ch;
  margin-top: 0.65rem;
  font-size: clamp(4.75rem, 16vw, 10rem);
  line-height: 0.88;
}

.hero-text {
  max-width: 37rem;
  margin: 1.4rem 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-support {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
}

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

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

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

.button-primary {
  background: var(--electric);
  color: white;
  box-shadow: 0 14px 40px rgba(47, 107, 255, 0.32);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.hero-collage {
  position: relative;
  min-height: 32rem;
}

.poster {
  position: absolute;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.poster-main {
  top: 4%;
  right: 0.5rem;
  width: min(28rem, 100%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(47, 107, 255, 0.4), rgba(255, 255, 255, 0.06));
  transform: rotate(-6deg);
}

.poster-main h2 {
  margin: 1rem 0 0.8rem;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.poster-main p,
.poster-accent p,
.poster-outline p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.poster-accent {
  bottom: 5%;
  left: -0.6rem;
  width: 14rem;
  background: #f5f7fb;
  color: #090909;
  transform: rotate(-10deg);
}

.poster-accent p {
  color: rgba(9, 9, 9, 0.72);
}

.poster-accent strong {
  display: block;
  margin: 0.4rem 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.poster-outline {
  right: 1.8%;
  bottom: -4%;
  width: 16rem;
  background: rgba(3, 3, 3, 0.65);
  backdrop-filter: blur(16px);
  transform: rotate(8deg);
}

.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 1rem 0;
  animation: ticker-scroll 22s linear infinite;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid,
.about-section,
.collaborations-section,
.merch-teaser-section,
.games-section,
.gallery-section,
.contact-section {
  padding: 6rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.about-panel,
.game-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  padding: 2rem;
}

.feature-card-highlight {
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.05);
}

.feature-card h2,
.game-card h3 {
  margin: 1rem 0 0;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
}

.feature-card h2 {
  font-size: 2rem;
  line-height: 1;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-card a,
.game-card a {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-top: 0.6rem;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.96;
  max-width: 12ch;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
}

.about-panel {
  padding: 1.7rem 2rem;
}

.about-story {
  display: grid;
  gap: 0.62rem;
}

.about-story p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-story p:last-child {
  color: rgba(245, 247, 251, 0.94);
  font-weight: 550;
}

.about-closing {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: var(--text);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(47, 107, 255, 0.14)),
    rgba(255, 255, 255, 0.04);
}

.duo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 1rem 1.25rem 1.05rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 42%, rgba(0, 0, 0, 0.86) 100%);
}

.duo-card span {
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  display: inline-flex;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.72;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.duo-card strong {
  margin-top: auto;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.duo-card p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.duo-card-left {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 44%, rgba(0, 0, 0, 0.84) 100%),
    url("assets/about-control-tech.jpg") center 26% / cover no-repeat,
    #121212;
}

.duo-card-right {
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.89) 100%),
    url("assets/about-chaos.jpg") center 38% / cover no-repeat,
    #121212;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.section-intro {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

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

.collaboration-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0.95rem 1.25rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.collaborations-grid .collaboration-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(134, 94, 255, 0.22), transparent 34%),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.34), rgba(5, 5, 5, 0.1));
  opacity: 0.16;
  transform: scale(1.06);
  filter: blur(10px);
}

.collaboration-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.5);
}

.collaboration-card__brand-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.24rem;
}

.collaboration-card__brand-logo {
  display: block;
  width: clamp(7rem, 21vw, 9rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
}

.collaborations-grid .collaboration-card:nth-child(2) .collaboration-card__brand-logo {
  width: clamp(5rem, 15vw, 6.4rem);
  opacity: 0.78;
}

.collaboration-card h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.collaboration-card p {
  max-width: 28rem;
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.collaborations-grid .collaboration-card:first-child p:first-of-type {
  color: var(--text);
}

.collaborations-grid .collaboration-card:first-child p:nth-of-type(2) {
  color: rgba(246, 246, 242, 0.68);
}

.collaboration-card a {
  display: inline-flex;
  margin-top: 0.65rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.collaboration-card__site-link {
  margin-top: 0.9rem;
  color: var(--silver);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

.collaborations-grid .collaboration-card:first-child > a[data-modal-open] {
  margin-top: 0.22rem;
  color: rgba(246, 246, 242, 1);
  font-weight: 800;
}

.collaboration-card:hover .collaboration-card__site-link {
  opacity: 0.92;
}

.collaboration-card:hover > a[data-modal-open] {
  transform: translateX(3px);
}

.collaborations-section .section-heading,
.collaborations-section .section-intro {
  max-width: 46rem;
}

.collaborations-section {
  padding-inline: clamp(2.5rem, 5vw, 5rem);
}

.collaborations-section .section-heading,
.collaborations-section .collaborations-grid {
  width: min(100%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.collaborations-section .section-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4.2vw, 3.9rem);
}

.case-study-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.case-study-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-study-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: blur(18px);
}

.case-study-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  width: min(100%, 980px);
  height: min(88vh, 900px);
  max-height: min(88vh, 900px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #101010;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: scale(0.97) translateY(12px);
  transition: transform 220ms ease;
}

.case-study-modal.is-open .case-study-modal__panel {
  transform: scale(1) translateY(0);
}

.case-study-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.case-study-modal__close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.case-study-modal__close span {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(45deg);
}

.case-study-modal__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  min-height: 0;
  padding: clamp(1.35rem, 2.6vw, 2rem) clamp(1rem, 2.4vw, 1.65rem) clamp(0.9rem, 2vw, 1.3rem);
  background:
    linear-gradient(160deg, rgba(47, 107, 255, 0.42), rgba(8, 8, 8, 0.22) 52%, rgba(8, 8, 8, 0.9)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 38%),
    #0b0b0b;
}

.case-study-modal__media::before {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.case-study-modal__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.3)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 18px
    );
  opacity: 0.75;
}

.case-study-modal__reel-placeholder,
.case-study-modal__media-copy {
  z-index: 1;
}

.case-study-modal__reel-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(100%, 17.5rem);
  gap: 0.32rem;
  flex: 0 0 auto;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
}

.case-study-modal__logo {
  display: block;
  width: min(100%, 7rem);
  height: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 0.05rem;
  filter: drop-shadow(0 12px 32px rgba(134, 94, 255, 0.18));
}

.case-study-modal__video-frame {
  position: relative;
  width: 94%;
  margin-inline: auto;
  align-self: center;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: #070707;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.28);
}

.case-study-modal__video-frame::before,
.case-study-modal__video-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.case-study-modal__video-frame::before {
  top: 0;
  height: 14%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.42), transparent);
}

.case-study-modal__video-frame::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 15%;
  background:
    radial-gradient(circle at center, transparent 55%, rgba(5, 5, 5, 0.14) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.44), transparent);
}

.case-study-modal__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  transform: scale(1.07);
  transform-origin: center center;
}

.case-study-modal__visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study-modal__video-toggle {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.1)),
    rgba(5, 5, 5, 0.015);
  color: var(--text);
  cursor: pointer;
  transition: opacity 180ms ease, background-color 180ms ease;
}

.case-study-modal__video-toggle:hover,
.case-study-modal__video-toggle:focus-visible {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.24)),
    rgba(5, 5, 5, 0.05);
}

.case-study-modal__video-frame.is-playing .case-study-modal__video-toggle {
  opacity: 0;
  pointer-events: none;
}

.case-study-modal__video-toggle-icon {
  display: inline-flex;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.case-study-modal__video-toggle-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin: auto auto auto 1.38rem;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.76rem solid rgba(255, 255, 255, 0.94);
}

.case-study-modal__video::-webkit-media-controls-panel {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.case-study-modal__video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

.case-study-modal__video::-webkit-media-controls-overlay-play-button {
  opacity: 0.86;
}

.case-study-modal__video::-webkit-media-controls-volume-slider,
.case-study-modal__video::-webkit-media-controls-timeline {
  opacity: 1;
}

.case-study-modal__media-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 0.16rem;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.case-study-modal__media-copy {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 0 1.2rem 1.2rem;
}

.case-study-modal__media-label,
.case-study-modal__eyebrow,
.case-study-modal__section-label {
  margin: 0;
  color: rgba(246, 246, 242, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.case-study-modal__media-copy strong {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.case-study-modal__media-copy span {
  max-width: 18rem;
  color: rgba(246, 246, 242, 0.78);
  line-height: 1.55;
}

.case-study-modal__content {
  min-height: 0;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.case-study-modal__content::-webkit-scrollbar {
  width: 0.7rem;
}

.case-study-modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.case-study-modal__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

.case-study-modal__content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
}

.case-study-modal__intro,
.case-study-modal__section {
  padding-bottom: 1.65rem;
  margin-bottom: 1.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-study-modal__section:last-of-type {
  margin-bottom: 0;
}

.case-study-modal__label {
  margin: 0.45rem 0 0;
  color: var(--silver);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-study-modal__content h2 {
  margin: 0.7rem 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.92;
}

.case-study-modal__summary,
.case-study-modal__section-copy {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.case-study-modal__site-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.1rem;
  color: var(--silver);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.case-study-modal__list {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.case-study-modal__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
  line-height: 1.65;
}

.case-study-modal__list li::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--electric);
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.4);
}

.case-study-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 1.75rem;
}

.case-study-modal__actions .button {
  min-height: 48px;
  padding-inline: 1.25rem;
}

body.modal-open {
  overflow: hidden;
}

#oneodio-modal .case-study-modal__content {
  padding: 1.7rem 2.35rem 2rem;
}

#gallery-look-modal .case-study-modal__video {
  object-position: 50% 12%;
  transform: scale(1.08);
}

#gallery-look-modal .case-study-modal__reel-placeholder {
  margin-top: -0.12rem;
  padding-bottom: 0.8rem;
}

#gallery-look-modal .case-study-modal__video-frame {
  width: 92%;
  margin-top: 0;
}

#gallery-look-modal .case-study-modal__video-toggle {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.01), rgba(5, 5, 5, 0.05)),
    rgba(5, 5, 5, 0.01);
}

#gallery-live-modal .case-study-modal__visual {
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  transform-origin: center center;
}

#gallery-live-modal .case-study-modal__reel-placeholder {
  margin-top: -0.12rem;
  padding-bottom: 0.8rem;
}

#gallery-live-modal .case-study-modal__video-frame {
  width: 92%;
  margin-top: 0;
}

#gallery-campaign-modal .case-study-modal__visual {
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  transform-origin: center center;
}

#gallery-campaign-modal .case-study-modal__reel-placeholder {
  margin-top: -0.12rem;
  padding-bottom: 0.8rem;
}

#gallery-campaign-modal .case-study-modal__video-frame {
  width: 92%;
  margin-top: 0;
}

#gallery-behind-modal .case-study-modal__visual {
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  transform-origin: center center;
}

#gallery-behind-modal .case-study-modal__reel-placeholder {
  margin-top: -0.12rem;
  padding-bottom: 0.8rem;
}

#gallery-behind-modal .case-study-modal__video-frame {
  width: 92%;
  margin-top: 0;
}

#oneodio-modal .case-study-modal__intro,
#oneodio-modal .case-study-modal__section {
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
}

#oneodio-modal .case-study-modal__summary,
#oneodio-modal .case-study-modal__section-copy {
  line-height: 1.62;
}

#oneodio-modal .case-study-modal__list {
  gap: 0.75rem;
}

#oneodio-modal .case-study-modal__video-frame::before {
  height: 15%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5), transparent);
}

#oneodio-modal .case-study-modal__video-toggle {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.03), rgba(5, 5, 5, 0.1)),
    rgba(5, 5, 5, 0.02);
}

#oneodio-modal .case-study-modal__video-toggle:hover,
#oneodio-modal .case-study-modal__video-toggle:focus-visible {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.08)),
    rgba(5, 5, 5, 0.01);
}

#oneodio-modal .case-study-modal__video-toggle-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

#oneodio-modal .case-study-modal__video-toggle-icon::before {
  margin: auto auto auto 1.22rem;
  border-top-width: 0.44rem;
  border-bottom-width: 0.44rem;
  border-left-width: 0.68rem;
}

#selected-modal .case-study-modal__content {
  padding: 1.65rem 2.25rem 1.95rem;
}

#selected-modal .case-study-modal__intro,
#selected-modal .case-study-modal__section {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

#selected-modal .case-study-modal__summary,
#selected-modal .case-study-modal__section-copy {
  line-height: 1.6;
}

#selected-modal .case-study-modal__list {
  gap: 0.72rem;
}

#whatever-sweats-modal .case-study-modal__content {
  padding: 1.5rem 2.1rem 2.3rem;
}

#whatever-sweats-modal .case-study-modal__intro,
#whatever-sweats-modal .case-study-modal__section {
  padding-bottom: 1.05rem;
  margin-bottom: 1.05rem;
}

#whatever-sweats-modal .case-study-modal__summary,
#whatever-sweats-modal .case-study-modal__section-copy {
  line-height: 1.5;
}

#whatever-sweats-modal .case-study-modal__list {
  gap: 0.62rem;
}

#whatever-sweats-modal .case-study-modal__media-cta,
#whatever-sweats-modal .case-study-modal__site-link {
  text-transform: none;
  letter-spacing: 0.03em;
}

.merch-teaser-section {
  display: grid;
  gap: 2rem;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.merch-teaser-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.merch-image-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.merch-image-frame-soft {
  border-color: rgba(255, 255, 255, 0.08);
  background: #f5f1e8;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.merch-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.merch-image-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.merch-image-detail {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.merch-stage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  min-height: 26rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.merch-stage-small {
  min-height: 18rem;
  padding: 1.4rem;
}

.merch-stage-detail {
  min-height: 34rem;
}

.tee,
.cap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.tee {
  width: 15rem;
  height: 20rem;
  border-radius: 1.5rem 1.5rem 1.1rem 1.1rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.tee::before,
.tee::after {
  content: "";
  position: absolute;
  top: 2.8rem;
  width: 4.3rem;
  height: 5.1rem;
  border-radius: 1.1rem;
}

.tee::before {
  left: -2.2rem;
  transform: rotate(28deg);
}

.tee::after {
  right: -2.2rem;
  transform: rotate(-28deg);
}

.tee span,
.cap span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tee span {
  top: 34%;
}

.tee-black {
  background: linear-gradient(180deg, #1e1e1f, #0d0d0d);
  color: #f7f3e9;
}

.tee-black::before,
.tee-black::after {
  background: linear-gradient(180deg, #232324, #101010);
}

.tee-white {
  background: linear-gradient(180deg, #f7f4ed, #ebe6dc);
  color: #111111;
}

.tee-white::before,
.tee-white::after {
  background: linear-gradient(180deg, #fcfaf6, #ece7df);
}

.cap {
  width: 15rem;
  height: 12rem;
  align-self: center;
}

.cap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 12rem;
  height: 8rem;
  border-radius: 6rem 6rem 2.3rem 2.3rem;
  transform: translateX(-50%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.cap::after {
  content: "";
  position: absolute;
  top: 5.8rem;
  left: 50%;
  width: 12.5rem;
  height: 2.35rem;
  border-radius: 0.4rem 0.4rem 2.5rem 2.5rem;
  transform: translateX(-50%);
}

.cap span {
  top: 38%;
}

.cap-black {
  color: #f7f3e9;
}

.cap-black::before,
.cap-black::after {
  background: linear-gradient(180deg, #1f1f20, #0d0d0d);
}

.cap-white {
  color: #111111;
}

.cap-white::before,
.cap-white::after {
  background: linear-gradient(180deg, #faf7f1, #ece5d9);
}

.merch-teaser-copy {
  display: grid;
  gap: 1rem;
}

.merch-teaser-copy h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.merch-teaser-list {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.merch-teaser-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.merch-teaser-list p {
  margin: 0 0 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.game-card {
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 2rem;
}

.game-card-featured {
  background:
    linear-gradient(180deg, rgba(47, 107, 255, 0.25), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.game-card h3 {
  font-size: 2rem;
  line-height: 0.96;
}

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

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

.gallery-block {
  position: relative;
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, rgba(47, 107, 255, 0.16), rgba(255, 255, 255, 0.05)),
    #101010;
  transition: transform 220ms ease, filter 220ms ease, border-color 220ms ease;
}

.gallery-block-look {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.08)),
    url("assets/gallery-look.jpg");
  background-size: cover;
  background-position: center 28%;
}

.gallery-block-live {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    url("assets/gallery-live-still.png");
  background-size: cover;
  background-position: center 42%;
}

.gallery-block-campaign {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    url("assets/gallery-campaign-still.png");
  background-size: cover;
  background-position: center 28%;
}

.gallery-block-behind {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18)),
    url("assets/gallery-behind-still.png");
  background-size: cover;
  background-position: center 58%;
}

.gallery-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  transition: opacity 220ms ease;
}

.gallery-block::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  color: rgba(246, 246, 242, 0.48);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.gallery-block span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.4rem;
  color: #f6f6f2;
  text-transform: uppercase;
  transition: transform 220ms ease;
}

.gallery-block p {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  margin: 0;
  color: rgba(246, 246, 242, 0.87);
  font-size: 0.98rem;
  line-height: 1.45;
  transition: transform 220ms ease;
}

.gallery-block span + p {
  bottom: 2.9rem;
}

.gallery-block-look::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46) 100%);
}

.gallery-block:hover {
  transform: scale(1.04);
  filter: brightness(1.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.gallery-block:hover span,
.gallery-block:hover p {
  transform: translateY(-3px);
}

.gallery-block:hover::before {
  opacity: 0.9;
}

.gallery-block:hover::after {
  color: rgba(246, 246, 242, 0.72);
  transform: scale(1.14);
}

.gallery-block-large {
  grid-column: span 7;
  min-height: 29rem;
}

.gallery-block-wide {
  grid-column: span 7;
}

.gallery-grid > .gallery-block:not(.gallery-block-large):not(.gallery-block-wide) {
  grid-column: span 5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 33rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 2rem;
  font-weight: 700;
}

.contact-socials a {
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-socials a span {
  letter-spacing: 0.01em;
}

.social-links a::before,
.contact-socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-links a:hover::before,
.contact-socials a:hover::before {
  opacity: 1;
}

.social-links a:hover .social-icon,
.contact-socials a:hover .social-icon {
  transform: scale(1.06);
}

.social-links a[data-platform="instagram"]::before,
.contact-socials a[data-platform="instagram"]::before {
  background: radial-gradient(circle at 30% 120%, rgba(255, 220, 128, 0.25), transparent 30%),
    linear-gradient(135deg, rgba(131, 58, 180, 0.18), rgba(225, 48, 108, 0.2), rgba(252, 175, 69, 0.18));
}

.social-links a[data-platform="tiktok"]::before,
.contact-socials a[data-platform="tiktok"]::before {
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.16));
}

.social-links a[data-platform="soundcloud"]::before,
.contact-socials a[data-platform="soundcloud"]::before {
  background: linear-gradient(135deg, rgba(255, 136, 0, 0.18), rgba(255, 85, 0, 0.18));
}

.social-links a[data-platform="youtube"]::before,
.contact-socials a[data-platform="youtube"]::before {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.16), rgba(255, 59, 48, 0.12));
}

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

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form__select-field {
  align-items: start;
}

.contact-form__select-field select {
  width: auto;
  min-width: 14rem;
  max-width: 18rem;
  padding-right: 3rem;
}

.contact-form__submit {
  justify-self: start;
  width: auto;
  min-width: 0;
  padding-inline: 2rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(246, 246, 242, 0.5);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.brand-footer .brand-mark {
  width: 44px;
  height: 44px;
}

.brand-logo-preview-footer {
  height: 6.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.92rem;
}

.footer-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.merch-page-main {
  padding-top: calc(var(--header-height) + 40px);
}

.merch-header {
  background: rgba(4, 4, 4, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.merch-surface {
  min-height: 100vh;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at top, rgba(47, 107, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #080808 0%, #040404 100%);
  color: var(--text);
}

.merch-hero-section,
.merch-catalog,
.merch-detail-section,
.merch-note-section {
  width: min(1220px, calc(100% - 4rem));
  margin: 0 auto;
}

.merch-hero-section {
  padding: 4rem 0 2rem;
}

.merch-breadcrumb {
  display: flex;
  gap: 0.65rem;
  color: rgba(246, 246, 242, 0.68);
  font-size: 0.92rem;
}

.merch-breadcrumb a {
  color: var(--text);
}

.merch-dark {
  color: rgba(246, 246, 242, 0.74);
}

.merch-hero-copy {
  margin-top: 1.5rem;
}

.merch-hero-copy h1,
.merch-detail-copy h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
}

.merch-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.9;
  color: var(--text);
}

.merch-hero-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.merch-catalog {
  display: block;
  padding: 1.5rem 0 4rem;
}

.merch-products-header p {
  margin: 0 0 1rem;
  color: rgba(246, 246, 242, 0.68);
  font-weight: 700;
}

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

.merch-card-link {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 237, 228, 0.98)),
    #f5f1e8;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.merch-status,
.merch-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: #8a8f97;
  color: #f4f6f8;
  font-weight: 700;
}

.merch-card h3 {
  margin: 0;
  color: #121212;
  font-size: 1.9rem;
  font-weight: 500;
}

.merch-card p {
  margin: 0;
  color: #121212;
  font-size: 1.1rem;
}

.merch-detail-section {
  padding: 2rem 0 4rem;
}

.merch-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 2.25rem;
  align-items: center;
}

.merch-detail-grid-reverse {
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
}

.merch-detail-grid-reverse .merch-image-frame {
  order: 2;
}

.merch-detail-copy {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 237, 228, 0.98)),
    #f5f1e8;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
}

.merch-detail-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.94;
  color: #121212;
}

.merch-price {
  margin: 0;
  color: #121212;
  font-size: 2rem;
  font-weight: 500;
}

.merch-option-group {
  display: grid;
  gap: 0.7rem;
}

.merch-option-label {
  margin: 0;
  color: rgba(18, 18, 18, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merch-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.merch-option-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #121212;
  font: inherit;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
  cursor: pointer;
}

.merch-option-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 18, 18, 0.28);
}

.merch-option-chip.is-selected {
  border-color: #121212;
  background: #121212;
  color: #f7f3e9;
}

.merch-option-chip.is-selected[data-merch-colour="white"],
.merch-option-chip.is-selected[data-cap-colour="white"] {
  border-color: rgba(18, 18, 18, 0.22);
  background: #ffffff;
  color: #121212;
  box-shadow: inset 0 0 0 1px rgba(18, 18, 18, 0.08);
}

.merch-option-chip.is-unavailable {
  border-color: rgba(18, 18, 18, 0.08);
  background: rgba(18, 18, 18, 0.04);
  color: rgba(18, 18, 18, 0.42);
  opacity: 0.75;
}

.merch-selection-note {
  margin: -0.15rem 0 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.merch-cta {
  width: min(100%, 22rem);
  background: #8d929a;
}

.merch-cta.is-tone-black {
  background: #121212;
  color: #f7f3e9;
}

.merch-cta.is-tone-white {
  border: 1px solid rgba(18, 18, 18, 0.14);
  background: #ffffff;
  color: #121212;
}

.merch-cta.is-disabled {
  pointer-events: none;
  background: #c2c5ca;
  color: rgba(255, 255, 255, 0.92);
}

.merch-cta-muted {
  background: #b6babf;
}

.merch-description {
  max-width: 34rem;
  margin: 0;
  color: rgba(18, 18, 18, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.merch-note-section {
  padding: 0 0 4rem;
}

.merch-note-section p {
  margin: 0;
  color: rgba(246, 246, 242, 0.68);
  font-size: 1rem;
}

.merch-policy-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-policy-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-policy-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0;
  list-style: none;
  cursor: pointer;
  color: #f6f6f2;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  text-transform: uppercase;
}

.merch-policy-item summary::-webkit-details-marker {
  display: none;
}

.merch-policy-symbol::before {
  content: "+";
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.merch-policy-item[open] .merch-policy-symbol::before {
  content: "-";
}

.merch-policy-content {
  display: grid;
  gap: 1.15rem;
  padding: 0 0 1.8rem;
}

.merch-policy-content p {
  max-width: 60rem;
  color: rgba(246, 246, 242, 0.78);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.75;
}

.merch-policy-rates {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-policy-rates li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f6f6f2;
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
}

.merch-policy-rates strong {
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .social-links {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .social-links {
    display: flex;
    width: 100%;
  }

  .site-header.nav-open {
    grid-template-columns: auto auto;
    align-items: start;
    background: rgba(4, 4, 4, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1rem;
  }

  .site-header.nav-open .social-links {
    grid-column: 1 / -1;
    padding-top: 0.25rem;
  }

  .hero-inner,
  .about-layout,
  .merch-teaser-layout,
  .merch-detail-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .collaborations-grid,
  .merch-card-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 24rem;
  }

  .poster-main {
    top: 0;
    right: 0;
  }

  .gallery-block-large,
  .gallery-block-wide,
  .gallery-grid > .gallery-block:not(.gallery-block-large):not(.gallery-block-wide) {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .hero-inner,
  .feature-grid,
  .about-section,
  .collaborations-section,
  .games-section,
  .gallery-section,
  .contact-section,
  .site-footer {
    width: min(var(--max-width), calc(100% - 2rem));
  }

  .collaborations-section {
    padding-inline: 0;
  }

  .announcement-bar {
    min-height: 48px;
    padding-inline: 1.25rem;
    text-align: center;
  }

  .site-header {
    top: 48px;
  }

  .brand-logo-preview {
    height: 5rem;
  }

  .brand-logo-preview-footer {
    height: 5.2rem;
  }

  .hero {
    min-height: auto;
  }

  .merch-hero-section,
  .merch-catalog,
  .merch-detail-section,
  .merch-note-section {
    width: min(1220px, calc(100% - 2rem));
  }

  .hero-inner {
    padding: 2rem 0 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 24vw, 5.6rem);
  }

  .hero-collage {
    min-height: 20rem;
  }

  .poster {
    padding: 1rem;
    border-radius: 22px;
  }

  .poster-main {
    width: calc(100% - 1.5rem);
  }

  .poster-accent {
    width: 11rem;
  }

  .poster-outline {
    width: 13rem;
  }

  .merch-image-card,
  .merch-image-detail {
    min-height: 0;
  }

  .about-duo {
    grid-template-columns: 1fr;
  }

  .duo-card {
    min-height: 16rem;
  }

  .feature-grid,
  .about-section,
  .collaborations-section,
  .merch-teaser-section,
  .games-section,
  .gallery-section,
  .contact-section {
    padding: 4rem 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-modal {
    padding: 0.8rem;
  }

  .case-study-modal__panel {
    grid-template-columns: 1fr;
    height: calc(100vh - 1.6rem);
    max-height: calc(100vh - 1.6rem);
    border-radius: 26px;
  }

  .case-study-modal__media {
    min-height: 16rem;
    gap: 1rem;
  }

  .case-study-modal__media::before {
    inset: 1rem;
    border-radius: 20px;
  }

  .case-study-modal__reel-placeholder {
    width: min(100%, 13.6rem);
    margin: 0 auto;
    min-height: auto;
  }

  .case-study-modal__logo {
    width: min(100%, 6rem);
  }

  .case-study-modal__video-frame {
    width: 100%;
    border-radius: 18px;
  }

  .case-study-modal__video-toggle-icon {
    width: 3rem;
    height: 3rem;
  }

  .case-study-modal__media-copy {
    padding: 0 0.85rem 0.85rem;
  }

  .case-study-modal__content {
    padding: 1.5rem;
  }

  #oneodio-modal .case-study-modal__content {
    padding: 1.35rem;
  }

  #selected-modal .case-study-modal__content {
    padding: 1.35rem;
  }

  #whatever-sweats-modal .case-study-modal__content {
    padding: 1.2rem 1.2rem 1.5rem;
  }

  .case-study-modal__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .case-study-modal__actions .button {
    width: 100%;
  }
}
