:root {
  --bg: #060606;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f7f2e8;
  --muted: #cabfae;
  --gold: #ffbf1f;
  --gold-deep: #8b6704;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Tajawal", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 191, 31, 0.18), transparent 25%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 84%);
  opacity: 0.35;
}

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

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

.page-glow {
  position: fixed;
  width: 30vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.page-glow-a {
  top: -8vw;
  inset-inline-start: -8vw;
  background: rgba(255, 191, 31, 0.14);
}

.page-glow-b {
  bottom: -12vw;
  inset-inline-end: -8vw;
  background: rgba(255, 191, 31, 0.08);
}

.site-shell {
  width: 100vw;
  margin: 0;
  position: relative;
  z-index: 1;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 191, 31, 0.16), transparent 24%),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 24px;
  text-align: center;
}

.preloader-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.preloader-name {
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
}

.preloader-logo {
  width: clamp(56px, 12vw, 82px);
  height: clamp(56px, 12vw, 82px);
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

.preloader-name {
  letter-spacing: 0.24em;
  font-size: clamp(1rem, 4vw, 1.5rem);
}

.preloader-line {
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.preloader-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background: linear-gradient(90deg, #8b6704 0%, #ffbf1f 45%, #ffe6a0 100%);
  animation: preload-bar 1.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1480px, calc(100vw - 48px));
  z-index: 30;
  margin-top: 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.74);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  flex-shrink: 0;
}

.brand-copy strong {
  font-family: "Oxanium", sans-serif;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  position: relative;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 191, 31, 0.48);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.lang-btn {
  min-width: 44px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
}

.lang-btn.is-active {
  color: #0c0c0c;
  background: linear-gradient(135deg, #ffe28f, var(--gold));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

main {
  display: flex;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0;
  margin-top: 0;
}

main::-webkit-scrollbar {
  display: none;
}

section {
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 100dvh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 132px max(28px, calc((100vw - var(--container)) / 2 + 24px)) 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* scroll-margin-top: 130px; */
}

.hero {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  padding: 132px max(28px, calc((100vw - var(--container)) / 2 + 24px)) 42px;
  width: 100%;
  margin: 0;
}

.hero-neural {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 191, 31, 0.09), transparent 18%),
    radial-gradient(circle at 34% 42%, rgba(255, 191, 31, 0.045), transparent 22%),
    radial-gradient(circle at 78% 68%, rgba(255, 191, 31, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(14, 22, 28, 0.68), rgba(6, 8, 10, 0.1));
}

.hero-neural::before,
.hero-neural::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-neural::before {
  background:
    radial-gradient(circle at 22% 38%, rgba(255, 191, 31, 0.12), transparent 12%),
    radial-gradient(circle at 28% 50%, rgba(255, 191, 31, 0.06), transparent 18%);
  filter: blur(28px);
  opacity: 0.9;
}

.hero-neural::after {
  background:
    linear-gradient(90deg, rgba(255, 191, 31, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 191, 31, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 28% 44%, black 18%, transparent 75%);
  opacity: 0.35;
}

.neural-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
}

.brand-24-cluster {
  position: relative;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 22px rgba(255, 191, 31, 0.14));
}

.brand-24-cluster::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 31, 0.12), transparent 70%);
  filter: blur(12px);
}

.brand-24-logo {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255, 191, 31, 0.16);
}

.brand-24-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 31, 0.16);
  box-shadow: inset 0 0 24px rgba(255, 191, 31, 0.05);
}

.orbit-a {
  transform: scale(1);
  animation: orbit-spin 18s linear infinite;
}

.orbit-b {
  transform: scale(0.8) rotate(34deg);
  border-style: dashed;
  animation: orbit-spin-reverse 14s linear infinite;
}

.orbit-c {
  transform: scale(0.58) rotate(70deg);
  border-color: rgba(255, 255, 255, 0.12);
  animation: orbit-pulse 4.2s ease-in-out infinite;
}

.brand-24-text {
  display: grid;
  gap: 4px;
}

.brand-24-text strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand-24-text small {
  color: var(--muted);
  font-family: "Oxanium", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-copy p,
.service-card p,
.work-copy p,
.timeline-step p,
.cta p,
.floating-panel p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-copy {
  max-width: 620px;
  align-self: center;
}

.hero-actions,
.cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-inline-end: 8px;
  fill: currentColor;
  flex-shrink: 0;
}

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

.button-primary {
  color: #0b0b0b;
  background: linear-gradient(135deg, #ffe08a, #ffbf1f 58%, #c48d00);
  box-shadow: 0 10px 30px rgba(255, 191, 31, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button-secondary span {
  line-height: 1;
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.hero-image,
.media-card,
.stats article,
.service-card,
.work-card,
.timeline-step,
.cta-box,
.floating-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 62px 28px 78px 22px;
  overflow: hidden;
  border-radius: 34px;
  transform: translateZ(0);
}

.hero-collage {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 191, 31, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(22, 37, 49, 0.92), rgba(5, 8, 11, 0.98));
}

.hero-image::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.hero-image img,
.media-card img,
.work-card img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  background: #000;
  transition: transform 0.7s ease;
}

.hero-collage .hero-collage-main {
  position: absolute;
  inset: 14% 7% 14% 18%;
  width: 64%;
  height: 72%;
  border-radius: 28px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}

.hero-collage .hero-collage-card {
  position: absolute;
  width: 38%;
  height: 32%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.hero-collage-card-a {
  inset-inline-start: 3%;
  top: 8%;
}

.hero-collage-card-b {
  inset-inline-end: 4%;
  bottom: 8%;
}

.hero-collage-line {
  position: absolute;
  inset-inline: 9% 12%;
  bottom: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 31, 0.72), transparent);
  z-index: 1;
}

.floating-panel {
  position: absolute;
  padding: 18px 20px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  transition: transform 0.4s ease;
}

.floating-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Oxanium", sans-serif;
  font-size: 1.4rem;
}

.floating-panel-primary {
  inset-inline-start: 10px;
  bottom: 10px;
  width: min(335px, 100%);
  background: rgba(255, 191, 31, 0.08);
  border-color: rgba(255, 191, 31, 0.24);
}

.floating-panel-secondary {
  inset-inline-end: 8px;
  top: 6px;
  width: 285px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-content: center;
}

.stats article {
  padding: 28px 20px;
  border-radius: 24px;
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.stats article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 191, 31, 0.22);
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Oxanium", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.section-grid,
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
}

.about-layout {
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 5vw, 76px);
}

.section-copy {
  max-width: 600px;
}

.section-copy .eyebrow {
  margin-bottom: 18px;
}

.section-copy h2 {
  margin-bottom: 22px;
}

.section-copy p {
  max-width: 56ch;
}

.section-copy p + p {
  margin-top: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.media-card {
  overflow: hidden;
  border-radius: 28px;
}

.about-card {
  width: 100%;
  height: clamp(390px, 58dvh, 620px);
  border-radius: 26px;
}

.about-card img {
  object-position: center;
}

.about-showcase {
  position: relative;
  height: clamp(420px, 60dvh, 650px);
  min-height: 420px;
  isolation: isolate;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 3% 4% 12%;
  border: 1px solid rgba(255, 191, 31, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 191, 31, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.025);
  transform: rotate(-2deg);
}

.about-video-showcase::before {
  inset: 9% 4% 7% 13%;
  background:
    linear-gradient(135deg, rgba(255, 191, 31, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.about-video-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: var(--shadow);
}

.about-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(255, 191, 31, 0.08), transparent 34%);
}

.about-video-frame-main {
  inset: 7% 0 11% 12%;
  border-radius: 30px;
  z-index: 2;
}

.about-video-frame-accent {
  inset-inline-end: 4%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  z-index: 4;
}

.smart-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.about-video-signature {
  inset-inline-start: 0;
  bottom: 8%;
}

.about-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.about-frame-main {
  inset: 14% 7% 9% 22%;
  border-radius: 30px;
  z-index: 2;
}

.about-frame-top {
  top: 0;
  inset-inline-start: 0;
  width: 38%;
  height: 36%;
  border-radius: 24px;
  z-index: 3;
}

.about-frame-bottom {
  inset-inline-end: 0;
  bottom: 0;
  width: 44%;
  height: 34%;
  border-radius: 24px;
  z-index: 3;
}

.about-signature {
  position: absolute;
  inset-inline-start: 8%;
  bottom: 6%;
  z-index: 4;
  width: min(290px, 58%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 191, 31, 0.24);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

.about-signature strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: "Oxanium", sans-serif;
  font-size: 1.55rem;
}

.about-signature span {
  color: var(--muted);
  line-height: 1.5;
}

.media-card-large {
  min-height: 520px;
}

.service-grid,
.work-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.service-card,
.timeline-step {
  padding: 28px;
  border-radius: 24px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card span,
.timeline-step span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Oxanium", sans-serif;
}

.service-card h3,
.timeline-step h3,
.work-copy h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.behance-grid {
  width: 100%;
  height: clamp(360px, 50dvh, 560px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(108px, 1fr));
  gap: 14px;
  overflow: hidden;
}

.work-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  border-radius: 18px;
  padding: 0;
  color: inherit;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.behance-grid .work-card {
  min-height: 0;
}

.behance-grid .work-card img {
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(180deg, #f1f1ef 0%, #b9b9b3 100%);
}

.service-card:hover,
.timeline-step:hover,
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 191, 31, 0.24);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.work-card:hover img,
.hero-image:hover img {
  transform: scale(1.025);
}

.work-copy {
  position: absolute;
  inset: auto 12px 12px 12px;
  z-index: 1;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.work-copy h3 {
  margin-bottom: 3px;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
}

.work-copy p {
  margin: 0;
  max-width: 32ch;
  color: rgba(247, 242, 232, 0.78);
  font-size: 0.86rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.work-card-large {
  min-height: 0;
}

.behance-grid .work-card-large {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
}

.partners {
  justify-content: center;
}

.partner-slider {
  position: relative;
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 191, 31, 0.11), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  padding: 18px 0;
}

.partner-slider::before,
.partner-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 110px;
  z-index: 2;
  pointer-events: none;
}

.partner-slider::before {
  inset-inline-start: 0;
  background: linear-gradient(90deg, #070707, transparent);
}

.partner-slider::after {
  inset-inline-end: 0;
  background: linear-gradient(270deg, #070707, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: partner-slide 28s linear infinite;
}

.partner-slider:hover .partner-track {
  animation-play-state: paused;
}

.partner-slide {
  width: 210px;
  min-height: 150px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #0b0b0b;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.partner-slide:hover,
.partner-slide:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 191, 31, 0.32);
}

.partner-slide img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f3f3f0, #bbb9b3);
}

.partner-slide span {
  color: var(--text);
  font-weight: 700;
  line-height: 1;
}

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

.cta-box {
  padding: 28px;
  border-radius: 28px;
  justify-content: center;
}

.about,
.services,
.work,
.partners,
.process,
.cta {
  align-items: center;
}

.about,
.services,
.work,
.partners,
.process,
.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .section-grid,
.about .about-layout,
.services .service-grid,
.work .work-grid,
.process .timeline,
.cta .cta-box {
  width: 100%;
}

.services .section-heading,
.work .section-heading,
.process .section-heading,
.partners .section-heading {
  width: 100%;
}

.work .section-heading {
  max-width: 900px;
  margin-bottom: 22px;
}

.work .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes preload-bar {
  0% {
    transform: translateX(100%);
  }

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

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit-spin {
  from {
    transform: scale(1) rotate(0deg);
  }

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

@keyframes orbit-spin-reverse {
  from {
    transform: scale(0.8) rotate(34deg);
  }

  to {
    transform: scale(0.8) rotate(-326deg);
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(0.58) rotate(70deg);
    opacity: 0.65;
  }

  50% {
    transform: scale(0.66) rotate(70deg);
    opacity: 1;
  }
}

@keyframes partner-slide {
  from {
    transform: translateX(0);
  }

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

[data-float] {
  animation: float-y 4.6s ease-in-out infinite;
}

.floating-panel-secondary[data-float] {
  animation-duration: 5.4s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

html[dir="ltr"] body {
  font-feature-settings: "liga" 1;
}

html[dir="ltr"] .brand {
  direction: ltr;
}

@media (max-width: 1100px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  main {
    display: block;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  section {
    width: 100%;
    min-height: auto;
    height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .hero,
  .section-grid,
  .about-layout,
  .cta,
  .stats,
  .service-grid,
  .timeline,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    gap: 34px;
    padding: 132px 30px 44px;
    width: 100%;
  }

  .work-card-large {
    grid-column: span 2;
  }

  .behance-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
    overflow: visible;
    padding-right: 0;
  }

  .behance-grid .work-card-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .behance-grid .work-card {
    min-height: 260px;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .topbar {
    border-radius: 28px;
    flex-wrap: wrap;
    align-items: flex-start;
    width: calc(100vw - 20px);
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .lang-switch {
    order: 3;
  }

  .nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

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

  section {
    padding: 120px 20px 28px;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    /* scroll-margin-top: 110px; */
  }

  .hero,
  .stats,
  .section-grid,
  .about-layout,
  .service-grid,
  .work-grid,
  .timeline,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 28px;
    border-radius: 30px;
  }

  .hero-brand-lockup {
    align-items: flex-start;
  }

  .brand-24-cluster {
    width: 88px;
    height: 88px;
  }

  .brand-24-logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image {
    inset: 70px 0 100px 0;
  }

  .hero-collage .hero-collage-main {
    inset: 18% 8% 18% 14%;
    width: 72%;
    height: 64%;
  }

  .hero-collage .hero-collage-card {
    width: 46%;
    height: 28%;
  }

  .floating-panel-secondary {
    inset-inline-end: 8px;
    top: 8px;
    width: 180px;
  }

  .floating-panel-primary {
    inset-inline: 8px;
    width: auto;
  }

  .work-card-large {
    grid-column: auto;
  }

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

  .behance-grid .work-card,
  .behance-grid .work-card-large,
  .behance-grid .work-card:nth-child(8) {
    grid-column: auto;
    min-height: 300px;
  }

  .about-card {
    height: min(62dvh, 460px);
  }

  .about-showcase {
    height: 520px;
    min-height: 520px;
  }

  .about-frame-main {
    inset: 16% 0 12% 12%;
  }

  .about-video-frame-main {
    inset: 8% 0 20% 0;
  }

  .about-video-frame-accent {
    inset-inline-end: 0;
    bottom: 0;
    width: 58%;
  }

  .about-video-signature {
    inset-inline-start: 0;
    bottom: 10%;
    width: min(250px, 62%);
  }

  .about-frame-top {
    width: 46%;
  }

  .about-frame-bottom {
    width: 52%;
  }

  .partner-slider {
    width: 100%;
    border-radius: 22px;
  }

  .partner-slide {
    width: 180px;
  }
}
