:root {
  --accent: #3b82f6;
  --accent-rgb: 59, 130, 246;
  --accent-soft: rgba(59, 130, 246, 0.16);
  --bg: #030303;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --quiet: rgba(255, 255, 255, 0.44);
  --border: rgba(255, 255, 255, 0.14);
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@property --rgb-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

body.home-page {
  --accent: #3b82f6;
  --accent-rgb: 59, 130, 246;
  --accent-soft: rgba(59, 130, 246, 0.16);
}

body.gaming-page {
  --accent: #ff2b2b;
  --accent-rgb: 255, 43, 43;
  --accent-soft: rgba(255, 43, 43, 0.16);
}

body.ugc-page {
  --accent: #ffd84d;
  --accent-rgb: 255, 216, 77;
  --accent-soft: rgba(255, 216, 77, 0.16);
}

body.motion-page {
  --accent: #ff8a1e;
  --accent-rgb: 255, 138, 30;
  --accent-soft: rgba(255, 138, 30, 0.16);
}

body.arts-page {
  --accent: #a855f7;
  --accent-rgb: 168, 85, 247;
  --accent-soft: rgba(168, 85, 247, 0.16);
}

body.shorts-page {
  --accent: #ec4899;
  --accent-rgb: 236, 72, 153;
  --accent-soft: rgba(236, 72, 153, 0.16);
}

/* Home keeps the introduction; category pages lead with the work. */
.home-page #featured,
body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page)
  main > .section:not(.video-carousel-section):not(.contact-section) {
  display: none;
}

body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page) .hero {
  min-height: 68svh;
  padding-bottom: 64px;
}

body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page) .video-carousel-section {
  padding-block: 88px;
}

body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page)
  .video-carousel-section .section-subtitle {
  display: none;
}

body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page) .contact-section {
  padding-top: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(var(--accent-rgb), 0.18), transparent 34%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #050505 0%, #010101 100%);
  font-family: var(--font-sans);
}

body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

button:not(.menu-toggle):not(.modal-close) {
  border: 0;
}

.video-card.glass,
.art-card.glass,
.feature-card.glass {
  border: 1px solid var(--border);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-sans);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p,
a,
span,
small {
  overflow-wrap: break-word;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.glass {
  --mouse-x: 50%;
  --mouse-y: 0%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 10, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.glass::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(var(--accent-rgb), 0.2), transparent 34%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 100%, rgba(var(--accent-rgb), 0.14), transparent 34%);
  content: "";
  opacity: 0.74;
}

.glass::after {
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  pointer-events: none;
}

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

.glass--soft {
  background: rgba(255, 255, 255, 0.045);
}

.glass--strong {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.14), transparent 34%),
    rgba(255, 255, 255, 0.065);
}

.glass--flat {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.glass--accent {
  border-color: rgba(var(--accent-rgb), 0.32);
}

.hover-lift {
  transition:
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.hover-lift:hover,
.hover-lift:focus-visible {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(var(--accent-rgb), 0.46);
  box-shadow:
    0 18px 54px rgba(var(--accent-rgb), 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1080px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 14px 10px 18px;
  border-radius: 28px;
  transform: translateX(-50%);
}

.site-header.nav-open,
.site-header.language-open {
  overflow: visible;
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 12px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  padding: 1px;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--accent-rgb), 0.24), transparent 62%),
    rgba(8, 16, 30, 0.72);
  box-shadow:
    0 0 26px rgba(var(--accent-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 7px rgba(var(--accent-rgb), 0.42));
  object-fit: contain;
}

.brand-symbol {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.58));
  transform-origin: 50% 50%;
  will-change: transform;
}

.brand-mark:hover .brand-symbol,
.brand:focus-visible .brand-symbol {
  animation: ouroborosTurn 760ms cubic-bezier(0.22, 0.8, 0.24, 1) both;
}

.brand-symbol__body {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 7;
}

.brand-symbol__tail,
.brand-symbol__head {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-linejoin: round;
  stroke-width: 0.8;
}

.brand-symbol__eye {
  fill: #07101e;
  stroke: #fff;
  stroke-width: 0.6;
}

.brand-symbol__mouth {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 1.5;
}

@keyframes ouroborosTurn {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.brand-name {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(20px, 3.6vw, 34px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: #fff;
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(219, 234, 254, 0.94));
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.12),
    0 12px 32px rgba(var(--accent-rgb), 0.2);
  color: #050505;
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #050505;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.25),
    0 18px 42px rgba(var(--accent-rgb), 0.3);
}

.language-picker {
  position: relative;
  z-index: 1002;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  min-width: 82px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 12, 22, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-picker.is-open .language-toggle {
  border-color: rgba(var(--accent-rgb), 0.54);
  background: rgba(var(--accent-rgb), 0.14);
  transform: translateY(-2px);
}

.language-flag {
  display: block;
  width: 28px;
  min-width: 28px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.language-code {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.62;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-picker.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 192px;
  gap: 4px;
  padding: 8px;
  border-radius: 19px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.language-picker.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.language-option {
  display: grid;
  min-height: 48px;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(var(--accent-rgb), 0.15);
  color: #fff;
}

.language-check {
  color: var(--accent);
  opacity: 0;
  text-align: center;
}

.language-option.is-active .language-check {
  opacity: 1;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 150px 24px 100px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--accent-rgb), 0.14), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: radial-gradient(circle at 50% 35%, black, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1180px, calc(100vw - 48px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  right: clamp(-120px, 6vw, 80px);
  z-index: 1;
  width: min(520px, 42vw);
  aspect-ratio: 1;
  opacity: 0.22;
  pointer-events: none;
  transform: translateY(-50%);
}


.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 999px;
  content: "";
}

.hero-orbit::after {
  inset: 16%;
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.8);
}

.hero-orbit span:nth-child(1) {
  top: 10%;
  left: 50%;
}

.hero-orbit span:nth-child(2) {
  top: 54%;
  right: 12%;
}

.hero-orbit span:nth-child(3) {
  bottom: 16%;
  left: 26%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  margin: 0 auto 34px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-badge::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.7);
  content: "";
}

.hero-title {
  display: flex;
  width: 100%;
  max-width: min(1180px, calc(100vw - 48px));
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(3.8rem, 6.7vw, 6.9rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-align: center;
}

.hero-title span {
  overflow-wrap: normal;
  word-break: normal;
}

.hero-line {
  display: block;
  width: 100%;
  overflow: visible;
  clip-path: inset(-0.1em -12vw -0.22em -12vw);
  text-align: center;
}

.hero-line > span {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

.hero-line--main > span,
.hero-line--serif > span {
  transform: translateX(0);
}

.hero-line--serif {
  margin-top: -0.06em;
}

.hero-title .serif {
  display: inline-block;
  font-size: 0.86em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.hero-underlined {
  position: relative;
  display: inline-block;
}

.hero-underlined::after {
  position: absolute;
  right: 3%;
  bottom: 0.02em;
  left: 3%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.92), transparent);
  content: "";
  pointer-events: none;
}

.hero-subtitle {
  width: min(620px, 100%);
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.55;
  text-align: center;
}

.hero-actions {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 42px auto 0;
  text-align: center;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  padding: 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 19px;
  background: linear-gradient(135deg, #fff, #dbeafe);
  box-shadow: 0 16px 44px rgba(var(--accent-rgb), 0.2);
  color: #050505;
  font-weight: 850;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(var(--accent-rgb), 0.3);
}

.btn-link {
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 650;
  text-decoration: underline;

  text-underline-offset: 5px;
}

.btn-link:hover,
.btn-link:focus-visible {
  color: #fff;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 132px) 24px;
  scroll-margin-top: 120px;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
}

.section-kicker,
.eyebrow,
.card-kicker,
.modal-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-align: center;
}

.section-subtitle {
  max-width: 580px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.masked-title {
  overflow: hidden;
}

.masked-title > span {
  display: inline-block;
}

.feature-card {
  display: block;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 12px;
  cursor: pointer;
  will-change: clip-path, transform, opacity;
}

.feature-media {
  display: grid;
  min-height: clamp(280px, 42vw, 520px);
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 35%, rgba(var(--accent-rgb), 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.feature-play {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.feature-label {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.feature-media small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 650;
}

.feature-card .video-thumb--vertical {
  width: min(360px, 100%);
  margin: 0 auto;
}

.card-grid,
.service-grid,
.process-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

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

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

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

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

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

.info-card,
.service-card,
.process-card {
  position: relative;
  display: grid;
  min-height: 230px;
  height: 100%;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  padding: 30px 24px;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
}

.info-card--process,
.process-card {
  min-height: 210px;
}

.info-card--compact {
  min-height: 190px;
}

.info-card__number,
.service-card span,
.process-card span {
  width: 42px;
  height: 42px;
  margin: 0 auto 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), 0.52);
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.12);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.info-card__title,
.service-card h3,
.process-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-align: center;
}

.info-card__text,
.service-card p,
.process-card p {
  max-width: 230px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -0.03em;
  text-align: center;
}

.marquee-carousel {
  position: relative;
  width: 100%;
  overflow: visible;
}

.marquee-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: 100%;
  padding: 6px 2px 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.marquee-track::-webkit-scrollbar {
  display: none;
}

.marquee-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.marquee-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.carousel-arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), opacity var(--ease);
}

.carousel-arrow:hover:not(:disabled),
.carousel-arrow:focus-visible:not(:disabled) {
  border-color: rgba(var(--accent-rgb), 0.58) !important;
  background: rgba(var(--accent-rgb), 0.16);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.video-card,
.art-card {
  display: block;
  flex: 0 0 auto;
  width: min(360px, 82vw);
  padding: 12px;
  cursor: pointer;
  scroll-snap-align: center;
  text-align: center;
  will-change: transform;
}

.video-card:hover,
.video-card:focus-visible,
.art-card:hover,
.art-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(var(--accent-rgb), 0.52);
  box-shadow:
    0 24px 80px rgba(var(--accent-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Video cards are the media itself: no glass frame or caption block. */
.video-card.glass {
  padding: 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.art-card.glass {
  padding: 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.video-card.glass:hover,
.video-card.glass:focus-visible {
  border-color: transparent !important;
  box-shadow: none;
}

.art-card.glass:hover,
.art-card.glass:focus-visible,
.art-card.glass:focus-within {
  border-color: transparent !important;
  box-shadow: none;
}

.video-card .video-thumb {
  position: relative;
  overflow: hidden;
  border: 0;
}

.video-thumb.has-video-preview iframe,
.video-thumb.has-video-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  object-fit: cover;
}

.art-card .art-thumb {
  overflow: hidden;
  border: 0;
}

.video-card .video-info {
  display: none;
}

.art-card .art-info {
  display: none;
}

.video-card--vertical {
  width: min(280px, 74vw);
}

.video-card--wide {
  width: min(480px, 84vw);
}

.art-card--square {
  width: min(300px, 76vw);
}

.art-card--wide {
  width: min(480px, 84vw);
}

.art-card--vertical {
  width: min(310px, 76vw);
}

.video-thumb,
.art-thumb {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--accent-rgb), 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  text-align: center;
  will-change: clip-path, transform, opacity;
}

.video-thumb--wide,
.art-thumb--wide,
.video-card--wide .video-thumb,
.art-card--wide .art-thumb {
  min-height: auto;
  aspect-ratio: 16 / 9;
}

.video-thumb--vertical,
.video-card--vertical .video-thumb {
  min-height: auto;
  aspect-ratio: 9 / 16;
}

.art-card--square .art-thumb {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

.art-card--vertical .art-thumb {
  min-height: auto;
  aspect-ratio: 4 / 5;
}

.video-thumb.has-project-poster,
.art-thumb.has-project-poster {
  background:
    linear-gradient(180deg, rgba(2, 3, 7, 0.08) 35%, rgba(2, 3, 7, 0.84) 100%),
    var(--project-poster) center / cover no-repeat;
  justify-content: flex-end;
  padding: 24px;
}

.video-card .video-thumb.has-project-poster {
  background:
    linear-gradient(180deg, transparent 60%, rgba(2, 3, 7, 0.28) 100%),
    var(--project-poster) center / cover no-repeat;
  padding: 0;
}

.video-card .video-thumb.has-project-poster span,
.video-card .video-thumb.has-project-poster small {
  display: none;
}

.art-card .art-thumb.has-project-poster {
  background: var(--project-poster) center / cover no-repeat;
  padding: 0;
}

.art-card .art-thumb.has-project-poster span,
.art-card .art-thumb.has-project-poster small {
  display: none;
}

.art-card {
  cursor: zoom-in;
}

.video-thumb.has-project-poster span,
.art-thumb.has-project-poster span,
.video-thumb.has-project-poster small,
.art-thumb.has-project-poster small {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.ugc-video-carousel .marquee-track {
  align-items: center;
}

.ugc-video {
  position: relative;
  flex: 0 0 auto;
  width: min(300px, 76vw);
  overflow: hidden;
  border-radius: 22px;
  background: #050505;
  scroll-snap-align: center;
}

.ugc-video--vertical {
  aspect-ratio: 9 / 16;
}

.ugc-video--portrait {
  width: min(360px, 80vw);
  aspect-ratio: 4 / 5;
}

.ugc-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.ugc-sound-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.ugc-video.has-sound .ugc-sound-hint {
  background: rgba(var(--accent-rgb), 0.7);
}

.video-thumb span,
.art-thumb span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.video-thumb small,
.art-thumb small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 650;
}

.video-info,
.art-info {
  display: block;
  padding: 18px 6px 4px;
  text-align: center;
}

.video-info p,
.art-info p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-info h3,
.art-info h3 {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}


.trial-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) 24px;
  text-align: center;
}

.trial-list {
  display: grid;
  width: min(560px, 100%);
  gap: 22px;
  margin: 34px auto 42px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.trial-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.trial-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "+";
  font-weight: 900;
}

.trial-action {
  display: flex;
  justify-content: center;
}

.rgb-trial-button {
  --rgb-angle: 0deg;

  position: relative;
  display: inline-flex;
  width: min(430px, 100%);
  min-height: 66px;
  padding: 2px;
  border-radius: 999px;
  background: conic-gradient(
    from var(--rgb-angle),
    #ff005d,
    #ff7a00,
    #ffee00,
    #00ff85,
    #00c8ff,
    #7a5cff,
    #ff005d
  );
  color: #fff;
  text-decoration: none;
  animation: rgbBorderSpin 4s linear infinite;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.rgb-trial-button__inner {
  display: inline-flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #050505;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-align: center;
}

.rgb-trial-button:hover,
.rgb-trial-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 80px rgba(var(--accent-rgb), 0.24);
  animation-duration: 1.6s;
}

.rgb-trial-button em {
  margin-inline: 0.22em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  width: min(760px, 100%);
  gap: 14px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 24px;
  color: #fff;
  text-align: left;
}


.contact-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-card strong {
  max-width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.faq-list {
  display: grid;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 10px 28px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.faq-item button span:last-child {
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform var(--ease);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--ease), opacity var(--ease), padding var(--ease);
}

.faq-item.is-open p {
  max-height: 180px;
  padding-bottom: 22px;
  opacity: 1;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.site-footer {
  margin: 0;
  padding: 80px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.12), transparent 34%),
    #030303;
}

.footer-inner {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: 1fr 0.55fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin: 0 auto;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  width: fit-content;

  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.44);
  background: rgba(var(--accent-rgb), 0.075);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.footer-bottom {
  display: flex;
  width: min(1120px, 100%);
  justify-content: space-between;
  gap: 22px;
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
  font-weight: 650;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 18px;
}

.video-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(940px, 100%);
  max-height: calc(100svh - 36px);
  gap: 14px;
  overflow: auto;
  padding: 24px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.44);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: #fff;
  content: "";
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-kicker {
  padding-right: 52px;
}

.modal-panel h2 {
  padding-right: 52px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.modal-media {
  display: grid;
  min-height: clamp(260px, 48vw, 520px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 20%, rgba(var(--accent-rgb), 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.modal-media video,
.modal-media iframe,
.modal-media img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.modal-media iframe {
  min-height: clamp(260px, 48vw, 520px);
  border: 0;
  aspect-ratio: 16 / 9;
}

.modal-placeholder {
  display: grid;
  width: min(560px, 86%);
  min-height: 230px;
  place-items: center;
  gap: 10px;
  padding: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.62);
  text-align: center;
}

.modal-placeholder strong {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.modal-placeholder span {
  color: var(--muted);
}

.modal-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: start;
  padding: 0 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
}

.modal-link[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes rgbBorderSpin {
  to {
    --rgb-angle: 360deg;
  }
}

@keyframes marqueeLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .rgb-trial-button {
    background: linear-gradient(90deg, #ff005d, #00c8ff);
  }
}

@media (max-width: 1100px) {
  .card-grid--four,
  .card-grid--three,
  .service-grid,
  .process-grid,
  .process-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 78px 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 8px 10px 8px 12px;
    border-radius: 18px;
  }

  .site-header.nav-open {
    border-radius: 18px 18px 0 0;
  }

  .brand-name {
    max-width: 150px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(9, 9, 11, 0.98);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    order: 1;
  }

  .language-picker {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    order: 3;
  }

  .language-toggle {
    min-width: 46px;
    min-height: 46px;
    padding: 0 9px;
    border-radius: 15px;
  }

  .language-code,
  .language-chevron {
    display: none;
  }

  .language-menu {
    right: -58px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 94svh;
    padding: 132px 18px 82px;
  }

  body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page) .hero {
    min-height: 66svh;
    padding-block: 118px 58px;
  }

  body:is(.gaming-page, .ugc-page, .motion-page, .arts-page, .shorts-page) .video-carousel-section {
    padding-block: 64px;
  }

  .hero-content {
    width: min(100%, 390px);
  }

  .hero-orbit {
    top: 52%;
    right: auto;
    left: 50%;
    width: 520px;
    opacity: 0.11;
    transform: translate(-50%, -50%);
  }

  .marquee-carousel {
    mask-image: none;
  }

  .marquee-track {
    gap: 14px;
  }

  .carousel-controls {
    margin-top: 12px;
  }

  .hero-title {
    max-width: 390px;
    font-size: clamp(3rem, 13.5vw, 4.55rem);
    line-height: 0.92;
    letter-spacing: -0.025em;
  }

  .hero-line > span {
    white-space: normal;
  }

  .hero-title .serif {
    font-size: 0.9em;
  }

  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .section-subtitle,
  .hero-subtitle {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-subtitle {
    margin-top: 26px;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
    margin-top: 34px;
  }

  .rgb-trial-button {
    width: 100%;
    max-width: 340px;
  }

  .video-card--vertical {
    width: min(250px, 74vw);
  }

  .video-card--wide,
  .art-card--wide {
    width: min(330px, 84vw);
  }

  .art-card--square {
    width: min(270px, 76vw);
  }

  .card-grid,
  .card-grid--four,
  .card-grid--three,
  .card-grid--two,
  .service-grid,
  .service-grid--four,
  .process-grid,
  .process-grid--three {
    grid-template-columns: 1fr;
  }

  .trial-list {
    text-align: left;
  }

  .contact-card {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

}

@media (max-width: 560px) {
.rgb-trial-button {
    width: 100%;
    min-width: 0;
  }

  .rgb-trial-button__inner {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .card-grid,
  .card-grid--four,
  .card-grid--three,
  .card-grid--two,
  .service-grid--four {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .hover-lift:hover,
  .hover-lift:focus-visible,
  .video-card:hover,
  .art-card:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .brand-name {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12.5vw, 3.15rem);
  }

  .hero-title .serif {
    font-size: 0.82em;
  }

  .hero-badge {
    padding-inline: 13px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Portfolio direction: only the formats that are actually offered. */
.ugc-page .video-carousel-section:not(#work),
.motion-page .video-carousel-section:not(#work) {
  display: none;
}

/* Motion portfolio: a direct three-column gallery instead of a carousel. */
.motion-page .motion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  padding-top: 6px;
}

.motion-page .motion-grid .video-card--wide {
  width: 100%;
  min-width: 0;
}

.motion-page .motion-grid > .video-card:nth-child(7) {
  grid-column: 2;
}

/* UGC portfolio follows the same direct three-column gallery. */
.ugc-page .ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  width: 100%;
  padding-top: 6px;
}

.ugc-page .ugc-grid .ugc-video {
  width: 100%;
  max-width: 360px;
  min-width: 0;
  justify-self: center;
}

.ugc-page .ugc-grid > .ugc-video:nth-child(7) {
  grid-column: 2;
}

.arts-page .thumbnail-carousel-stack {
  display: grid;
  gap: 34px;
  width: 100%;
  overflow: hidden;
}

.arts-page .thumbnail-carousel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.arts-page .thumbnail-carousel .marquee-track {
  gap: 22px;
  overflow: hidden;
  padding: 6px 0 10px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: default;
}

.arts-page .thumbnail-carousel .art-card--wide {
  width: calc((100% - 44px) / 3);
  min-width: calc((100% - 44px) / 3);
  flex: 0 0 calc((100% - 44px) / 3);
}

.arts-page .thumbnail-carousel .carousel-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.arts-page .thumbnail-carousel .carousel-arrow:hover,
.arts-page .thumbnail-carousel .carousel-arrow:focus-visible {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 900px) {
  .motion-page .motion-grid,
  .ugc-page .ugc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .motion-page .motion-grid > .video-card:nth-child(7) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 480px);
  }

  .ugc-page .ugc-grid > .ugc-video:nth-child(7) {
    grid-column: 1 / -1;
  }

  .arts-page .thumbnail-carousel .marquee-track {
    gap: 18px;
  }

  .arts-page .thumbnail-carousel .art-card--wide {
    width: calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 620px) {
  .motion-page .motion-grid,
  .ugc-page .ugc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .motion-page .motion-grid > .video-card:nth-child(7) {
    grid-column: auto;
    width: 100%;
  }

  .ugc-page .ugc-grid > .ugc-video:nth-child(7) {
    grid-column: auto;
  }

  .arts-page .thumbnail-carousel-stack {
    gap: 22px;
  }

  .arts-page .thumbnail-carousel .marquee-track {
    gap: 14px;
  }

  .arts-page .thumbnail-carousel .art-card--wide {
    width: 100%;
    min-width: 100%;
    flex-basis: 100%;
  }
}

/* Side controls with an unobtrusive counter; autoplay is handled in main.js. */
.portfolio-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-inline: 64px;
}

.portfolio-carousel .marquee-track {
  padding-bottom: 20px;
}

@media (min-width: 769px) {
  .portfolio-carousel .video-card--vertical {
    width: 400px;
  }
}

/* Two compact, continuous rows for short-form portfolios. */
.dual-video-marquee-stack {
  display: grid;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}

.video-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.video-marquee .marquee-track {
  gap: 18px;
  overflow: hidden;
  padding-block: 4px 12px;
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: default;
}

.portfolio-carousel.video-marquee .video-card--vertical {
  width: min(240px, 68vw);
  min-width: min(240px, 68vw);
  flex-basis: min(240px, 68vw);
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.home-motion-stack,
.home-showcase-side {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.home-showcase-grid .video-card--wide {
  width: 100%;
  min-width: 0;
}

.portfolio-carousel.home-short-carousel {
  min-width: 0;
  padding-inline: 40px;
}

.home-short-carousel .marquee-track {
  gap: 14px;
}

.portfolio-carousel.home-short-carousel .video-card--vertical {
  width: 150px;
  min-width: 150px;
  flex-basis: 150px;
}

/* Home narrative: work first, then formats, process and conversion. */
.home-explore-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-explore-card {
  --explore-rgb: 249, 115, 22;

  position: relative;
  display: flex;
  min-height: 270px;
  grid-column: span 2;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 6%, rgba(var(--explore-rgb), 0.15), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  color: #fff;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.home-explore-card:nth-child(n + 4) {
  grid-column: span 3;
}

.home-explore-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(var(--explore-rgb), 0.12);
  border-radius: 50%;
  content: "";
  opacity: 0;
  right: -90px;
  top: -90px;
  transform: scale(0.72);
  transition: opacity 280ms ease, transform 400ms ease;
}

.home-explore-card:hover,
.home-explore-card:focus-visible {
  border-color: rgba(var(--explore-rgb), 0.44);
  box-shadow: 0 24px 70px rgba(var(--explore-rgb), 0.1);
  transform: translateY(-5px);
}

.home-explore-card:hover::before,
.home-explore-card:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.home-explore-card--gaming {
  --explore-rgb: 59, 130, 246;
}

.home-explore-card--ugc {
  --explore-rgb: 34, 197, 94;
}

.home-explore-card--motion {
  --explore-rgb: 249, 115, 22;
}

.home-explore-card--arts {
  --explore-rgb: 168, 85, 247;
}

.home-explore-card--shorts {
  --explore-rgb: 236, 72, 153;
}

.home-explore-number {
  position: absolute;
  top: 14px;
  right: 22px;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(3.8rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.home-explore-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-explore-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--explore-rgb));
  box-shadow: 0 0 18px rgba(var(--explore-rgb), 0.8);
  content: "";
}

.home-explore-card h3 {
  max-width: 310px;
  margin: 66px 0 12px;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.home-explore-card p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.58;
}

.home-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 750;
}

.home-explore-link span {
  color: rgb(var(--explore-rgb));
  transition: transform 220ms ease;
}

.home-explore-card:hover .home-explore-link span,
.home-explore-card:focus-visible .home-explore-link span {
  transform: translate(3px, -3px);
}

.home-process-panel {
  overflow: hidden;
  padding: clamp(36px, 6vw, 70px) clamp(20px, 4vw, 48px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% -20%, rgba(var(--accent-rgb), 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.home-process-heading {
  margin-bottom: clamp(36px, 5vw, 54px);
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-process-card {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014));
}

.home-process-card::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 50%;
  content: "";
}

.home-process-number {
  display: block;
  margin-bottom: 56px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.home-process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-trial-card {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(56px, 9vw, 100px) 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 10%, rgba(var(--accent-rgb), 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  text-align: center;
}

.home-trial-card::before,
.home-trial-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-trial-card::before {
  width: min(720px, 80vw);
  height: min(720px, 80vw);
}

.home-trial-card::after {
  width: min(480px, 56vw);
  height: min(480px, 56vw);
}

.home-trial-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px 6px rgba(var(--accent-rgb), 0.75), 0 0 90px 34px rgba(var(--accent-rgb), 0.12);
  transform: translate(-50%, -50%);
}

.home-trial-card > *:not(.home-trial-glow) {
  position: relative;
  z-index: 1;
}

.home-trial-card .section-title {
  max-width: 820px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

.home-trial-copy {
  max-width: 610px;
  margin: 28px auto 36px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.03rem;
  line-height: 1.65;
}

.home-trial-actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  width: min(430px, 100%);
}

.home-trial-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

@media (max-width: 620px) {
  .dual-video-marquee-stack {
    gap: 18px;
  }

  .portfolio-carousel.video-marquee {
    padding-inline: 48px;
  }

  .portfolio-carousel.video-marquee .video-card--vertical {
    width: min(200px, 66vw);
    min-width: min(200px, 66vw);
    flex-basis: min(200px, 66vw);
  }

  .home-showcase-grid,
  .home-motion-stack,
  .home-showcase-side {
    gap: 16px;
  }

  .portfolio-carousel.home-short-carousel {
    padding-inline: 36px;
  }

  .home-explore-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-explore-card,
  .home-explore-card:nth-child(n + 4) {
    min-height: 250px;
    grid-column: auto;
  }

  .home-process-panel {
    border-radius: 24px;
  }

  .home-process-card {
    min-height: 190px;
  }

  .home-process-number {
    margin-bottom: 42px;
  }

  .home-trial-card {
    min-height: 470px;
    border-radius: 26px;
  }

  .home-trial-card .section-title {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
}

@media (max-width: 900px) {
  .home-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .home-explore-card,
  .home-explore-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .home-explore-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .home-explore-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-explore-card:last-child {
    grid-column: auto;
  }
}

.portfolio-carousel .carousel-controls {
  position: static;
  display: block;
  margin: 0;
}

.portfolio-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 50px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(5, 5, 7, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(145%);
  transform: translateY(-62%);
}

.portfolio-carousel .carousel-arrow:hover,
.portfolio-carousel .carousel-arrow:focus-visible {
  transform: translateY(-62%) scale(1.05);
}

.portfolio-carousel .carousel-arrow--previous {
  left: 0;
}

.portfolio-carousel .carousel-arrow--next {
  right: 0;
}

/* Compact, platform-branded contact actions. */
.contact-grid {
  width: min(820px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px 18px;
  overflow: hidden;
  border-radius: 26px;
  text-align: center;
}

.contact-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 58%);
  content: "";
  opacity: 0.55;
}

.contact-card--whatsapp {
  border-color: rgba(37, 211, 102, 0.42) !important;
  background:
    linear-gradient(145deg, rgba(37, 211, 102, 0.34), rgba(11, 70, 38, 0.22) 60%, rgba(8, 12, 10, 0.82)),
    rgba(5, 12, 8, 0.78);
  box-shadow: inset 0 1px 0 rgba(174, 255, 204, 0.22), 0 22px 60px rgba(37, 211, 102, 0.09);
}

.contact-card--discord {
  border-color: rgba(88, 101, 242, 0.48) !important;
  background:
    linear-gradient(145deg, rgba(88, 101, 242, 0.4), rgba(37, 43, 110, 0.24) 60%, rgba(8, 9, 18, 0.84)),
    rgba(7, 8, 18, 0.8);
  box-shadow: inset 0 1px 0 rgba(197, 201, 255, 0.22), 0 22px 60px rgba(88, 101, 242, 0.1);
}

.contact-card--email {
  border-color: rgba(73, 151, 255, 0.44) !important;
  background:
    linear-gradient(145deg, rgba(47, 128, 237, 0.4), rgba(22, 68, 132, 0.24) 60%, rgba(7, 10, 18, 0.84)),
    rgba(6, 10, 17, 0.8);
  box-shadow: inset 0 1px 0 rgba(190, 221, 255, 0.22), 0 22px 60px rgba(47, 128, 237, 0.1);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.contact-card strong {
  display: none;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-5px) scale(1.015);
}

.footer-inner {
  grid-template-columns: 1fr auto;
}

.footer-contact {
  display: none;
}

@media (min-width: 1101px) {
  .home-page .service-grid--four {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-carousel {
    padding-inline: 42px;
  }

  .portfolio-carousel .carousel-arrow {
    width: 42px;
    height: 62px;
    border-radius: 15px;
  }

  .portfolio-carousel .carousel-arrow--previous {
    left: -6px;
  }

  .portfolio-carousel .carousel-arrow--next {
    right: -6px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    width: min(330px, 100%);
  }

  .contact-card {
    min-height: 112px;
    flex-direction: row;
    align-items: center;
    padding: 18px 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
