/* =========================================================
   SYNEX STUDIO — premium monochrome
   ========================================================= */

:root {
  --bg: #050506;
  --bg-2: #0a0a0c;
  --surface: rgba(255, 255, 255, 0.022);
  --surface-2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f6;
  --muted: #9b9ba3;
  --muted-2: #6c6c74;
  --white: #ffffff;
  --metal: linear-gradient(135deg, #ffffff 0%, #d6d6da 45%, #8c8c93 100%);

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2: cubic-bezier(0.65, 0.05, 0.36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "Inter", sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ----------------- reset ----------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
::selection { background: #fff; color: #000; }

/* ----------------- layout helpers ----------------- */
.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 160px) var(--pad);
}
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.section__desc {
  margin-top: 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

/* ----------------- overlays ----------------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ----------------- custom cursor ----------------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 34px; height: 34px; border: 1px solid #fff;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s;
}
.cursor-dot { width: 5px; height: 5px; background: #fff; }
.cursor.is-hover { width: 56px; height: 56px; background: rgba(255,255,255,0.12); }
.cursor.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ----------------- preloader ----------------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__mark { width: 70px; height: 70px; }
.preloader__mark path {
  stroke-dasharray: 240; stroke-dashoffset: 240;
  animation: draw 1.4s var(--ease) forwards;
}
.preloader__word {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.42em;
  color: var(--muted); opacity: 0; transform: translateY(8px);
  animation: fadeUp .7s var(--ease) .7s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ----------------- scroll progress ----------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9000;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: var(--metal);
}

/* ----------------- buttons ----------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 500; font-size: 15px;
  padding: 14px 24px; border-radius: 100px; white-space: nowrap;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn svg { transition: transform .4s var(--ease); }
.btn--solid { background: #fff; color: #000; }
.btn--solid:hover { background: #e4e4e8; }
.btn--solid:hover svg { transform: translateX(4px); }
.btn--line { border: 1px solid var(--line-strong); color: var(--text); }
.btn--line:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); padding: 11px 18px; font-size: 14px; }
.btn--ghost:hover { border-color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px var(--pad);
  background: rgba(6, 6, 8, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__mark { width: 34px; height: 34px; }
.nav__brandtext { display: flex; flex-direction: column; line-height: 1; }
.nav__brandtext strong { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: 0.22em; }
.nav__brandtext em { font-style: normal; font-family: var(--mono); font-size: 9px; letter-spacing: 0.42em; color: var(--muted-2); margin-top: 3px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative; font-size: 14px; color: var(--muted); padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: #fff; transition: width .35s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 6px; width: 34px; height: 34px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: transform .4s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__tg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--text);
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.nav__tg:hover { border-color: #fff; background: var(--surface); transform: translateY(-2px); }

/* mobile menu */
.mobilemenu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(5,5,6,0.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobilemenu.is-open { opacity: 1; visibility: visible; }
.mobilemenu a { font-family: var(--display); font-size: 28px; padding: 12px; color: var(--muted); transition: color .3s; }
.mobilemenu a:hover { color: #fff; }
.mobilemenu__cta { margin-top: 24px; color: #fff !important; font-size: 18px !important; border: 1px solid var(--line-strong); border-radius: 100px; padding: 14px 28px !important; }
.mobilemenu__channel { display: inline-flex; align-items: center; gap: 9px; margin-top: 6px; font-size: 15px !important; color: var(--muted) !important; }
.mobilemenu__channel:hover { color: #fff !important; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px var(--pad) 80px;
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.9; }
.hero__glow {
  position: absolute; z-index: 0; top: 30%; left: 50%; transform: translate(-50%,-50%);
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 960px; }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface); margin-bottom: 30px;
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.5);} 70% { box-shadow: 0 0 0 9px rgba(255,255,255,0);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);} }

.hero__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(42px, 8.5vw, 116px);
  line-height: 0.98; letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .grad {
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reveal-word { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.is-in .reveal-word { transform: translateY(0); }

.hero__sub { max-width: 600px; color: var(--muted); font-size: clamp(16px, 1.9vw, 20px); margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4.5vw, 52px); line-height: 1; letter-spacing: -0.02em; }
.stat__label { font-size: 13px; color: var(--muted-2); max-width: 150px; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scrollline { width: 1px; height: 46px; background: linear-gradient(to bottom, #fff, transparent); position: relative; overflow: hidden; }
.hero__scrollline::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: scrolldown 2s var(--ease-2) infinite; }
@keyframes scrolldown { 0% { top: -50%; } 100% { top: 100%; } }

/* ===================== MARQUEE ===================== */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; white-space: nowrap;
  background: var(--bg-2);
}
.marquee__track { display: inline-flex; align-items: center; gap: 38px; animation: marquee 38s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--display); font-weight: 500; font-size: clamp(22px, 3.4vw, 40px); letter-spacing: -0.01em; color: var(--text); }
.marquee__track .sep { color: var(--muted-2); font-size: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================== STUDIO ===================== */
.studio__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.studio__lead { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.4; letter-spacing: -0.01em; }
.studio__lead strong { font-weight: 600; }
.studio__text { color: var(--muted); font-size: clamp(15px, 1.7vw, 18px); padding-top: 8px; }

/* ===================== APPROACH ===================== */
.approach { overflow: hidden; }
.approach__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(transparent 0, transparent calc(100% - 1px), var(--line) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--line) 100%);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 75%);
  opacity: 0.5;
}
.approach__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(30px, 5vw, 70px); align-items: stretch; }
.approach__col { display: flex; flex-direction: column; gap: 18px; }
.approach__tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.approach__col p { font-size: clamp(15px, 1.8vw, 19px); color: var(--text); line-height: 1.6; }
.approach__col:first-of-type p { color: var(--muted); }
.approach__divider { width: 1px; background: linear-gradient(to bottom, transparent, var(--line-strong), transparent); }
.approach__quote {
  margin-top: clamp(50px, 8vw, 96px); text-align: center;
  font-family: var(--display); font-weight: 500; font-size: clamp(24px, 4.4vw, 54px);
  line-height: 1.2; letter-spacing: -0.02em; max-width: 18ch; margin-inline: auto;
}

/* ===================== SERVICES ===================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc {
  position: relative; padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; transition: background .5s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,0.06), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.svc:hover { background: var(--surface); }
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; }
.svc__icon { width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 12px; display: grid; place-items: center; margin-bottom: 26px; transition: border-color .4s, transform .5s var(--ease); }
.svc__icon svg { width: 24px; height: 24px; stroke: #fff; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc:hover .svc__icon { border-color: #fff; transform: translateY(-3px); }
.svc h3 { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2vw, 24px); margin-bottom: 12px; letter-spacing: -0.01em; }
.svc p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.svc__num { position: absolute; top: clamp(24px, 3vw, 40px); right: clamp(24px, 3vw, 40px); font-family: var(--mono); font-size: 12px; color: var(--muted-2); z-index: 1; }

/* ===================== PRODUCTS ===================== */
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(26px, 2.6vw, 38px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; min-height: 100%;
  transition: transform .6s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
  transform-style: preserve-3d;
}
.product::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.08), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.product:hover { border-color: var(--line-strong); background: var(--surface-2); }
.product:hover::after { opacity: 1; }
.product__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.product__badge {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted);
  display: inline-flex; align-items: center; gap: 7px;
}
.product__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.product__badge.is-soon { color: var(--muted-2); }
.product__badge.is-soon .dot { background: var(--muted-2); }
.product__mark { width: 38px; height: 38px; opacity: 0.85; }
.product__name { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.02em; margin-bottom: 8px; }
.product__tagline { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; margin-bottom: 18px; }
.product__desc { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.product__features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.product__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.product__features li svg { flex: none; width: 15px; height: 15px; margin-top: 3px; stroke: #fff; }
.product__more {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 14px; color: #fff;
  opacity: 0.8; transition: opacity .3s, gap .3s var(--ease);
}
.product:hover .product__more { opacity: 1; gap: 12px; }

/* ===================== PROCESS ===================== */
.process__list { list-style: none; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: clamp(16px, 4vw, 60px); align-items: baseline;
  padding: clamp(26px, 3.5vw, 46px) 0; border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--ease), background .5s var(--ease);
}
.step:hover { padding-left: 20px; background: linear-gradient(90deg, var(--surface), transparent); }
.step__num { font-family: var(--mono); font-size: 14px; color: var(--muted-2); }
.step__body h3 { font-family: var(--display); font-weight: 500; font-size: clamp(20px, 3vw, 34px); letter-spacing: -0.02em; margin-bottom: 10px; }
.step__body p { color: var(--muted); font-size: clamp(14px, 1.6vw, 17px); max-width: 56ch; }

/* ===================== AUDIENCE ===================== */
.audience__chips { display: flex; flex-wrap: wrap; gap: 14px; }
.audience__chips span {
  font-family: var(--display); font-size: clamp(15px, 1.8vw, 20px); font-weight: 400;
  padding: 12px 22px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted);
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.audience__chips span:hover { color: #fff; border-color: #fff; background: var(--surface); transform: translateY(-3px); }

/* ===================== CONTACT ===================== */
.contact { padding-bottom: clamp(80px, 12vw, 180px); }
.contact__card {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(48px, 8vw, 110px) var(--pad);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px);
  background: var(--bg-2);
}
.contact__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(40% 80% at 50% 120%, rgba(255,255,255,0.06), transparent 60%);
}
.contact__card > * { position: relative; z-index: 1; }
.contact__title { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 6.5vw, 84px); letter-spacing: -0.03em; line-height: 1; margin: 14px 0 20px; }
.contact__text { color: var(--muted); font-size: clamp(15px, 1.8vw, 19px); max-width: 460px; margin: 0 auto 38px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===================== FOOTER ===================== */
.footer { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 7vw, 90px) var(--pad) 40px; border-top: 1px solid var(--line); }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: clamp(40px, 6vw, 70px); }
.footer__brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); letter-spacing: 0.16em; font-size: 18px; }
.footer__brand strong { font-weight: 600; }
.footer__mark { width: 30px; height: 30px; }
.footer__tag { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }
.footer__topright { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer__channel { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-size: 14px; color: var(--text); padding: 11px 20px; border: 1px solid var(--line-strong); border-radius: 100px; transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease); }
.footer__channel:hover { border-color: #fff; background: var(--surface); transform: translateY(-2px); }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: clamp(30px, 5vw, 56px) 0; border-top: 1px solid var(--line); }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.footer__col a { color: var(--muted); font-size: 15px; transition: color .3s; width: fit-content; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 30px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted-2); }

/* ===================== reveal animations ===================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.stagger-1 { transition-delay: .08s; }
.reveal.stagger-2 { transition-delay: .16s; }
.reveal.stagger-3 { transition-delay: .24s; }
.reveal.stagger-4 { transition-delay: .32s; }
.reveal.stagger-5 { transition-delay: .40s; }

/* ===================== responsive ===================== */
@media (max-width: 980px) {
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .studio__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: 1fr; }
  .approach__grid { grid-template-columns: 1fr; }
  .approach__divider { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .services__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__num { font-size: 12px; }
  .hero__stats { gap: 24px; }
  .stat { flex: 1 1 40%; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; }
  .footer__topright { align-items: flex-start; }
}

/* ===================== reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .reveal-word { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
