/* =====================================================
   NOVA · Premium Cinematic Website
   style.css — Production-ready, theme-aware, responsive
   ===================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Palette — Dark (default) */
  --bg: #0a0a0f;
  --bg-elev: #0f0f17;
  --bg-soft: #15151f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --text-soft: #b8b8c4;
  --text-mute: #6b6b78;

  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;

  --gradient-1: linear-gradient(135deg, #7c5cff 0%, #22d3ee 100%);
  --gradient-2: linear-gradient(135deg, #f472b6 0%, #facc15 100%);
  --gradient-3: linear-gradient(135deg, #7c5cff 0%, #f472b6 50%, #facc15 100%);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Sizing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --container: 1320px;
  --pad-x: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.2s;
  --dur-mid: 0.5s;
  --dur-slow: 0.9s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 20px 60px -10px rgba(124, 92, 255, 0.45);
}

[data-theme="light"] {
  --bg: #f7f7f8;
  --bg-elev: #ffffff;
  --bg-soft: #eeeef2;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(0, 0, 0, 0.06);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --text: #0a0a0f;
  --text-soft: #4a4a55;
  --text-mute: #8a8a94;
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 20px 60px -10px rgba(124, 92, 255, 0.3);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--dur-mid) var(--ease-out), color var(--dur-mid) var(--ease-out);
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: 0; outline: 0; width: 100%; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* Hide scrollbar but allow scroll */
body { scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }

/* ---------- NOISE / GRAIN ---------- */
.noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.04em;
  display: flex; gap: 4px; justify-content: center;
  margin-bottom: 40px;
}
.loader__char {
  display: inline-block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: translateY(120%);
  animation: loaderChar 0.8s var(--ease-out) forwards;
}
.loader__char:nth-child(1) { animation-delay: 0s; }
.loader__char:nth-child(2) { animation-delay: 0.08s; }
.loader__char:nth-child(3) { animation-delay: 0.16s; }
.loader__char:nth-child(4) { animation-delay: 0.24s; }
@keyframes loaderChar { to { transform: translateY(0); } }

.loader__bar {
  width: min(280px, 60vw);
  height: 2px;
  background: var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
}
.loader__progress {
  height: 100%; width: 0%;
  background: var(--gradient-1);
  transition: width 0.2s linear;
}
.loader__percent {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; mix-blend-mode: difference; }
.cursor__dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
}
.cursor__ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; border-color: var(--accent-2); }
.cursor.is-hover .cursor__dot { transform: translate(-50%, -50%) scale(0); }
@media (max-width: 900px) { .cursor { display: none; } }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gradient-1);
  z-index: 9000;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(124, 92, 255, 0.6);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out), backdrop-filter var(--dur-mid) var(--ease-out);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.02em;
}
.nav__logo svg { color: var(--text); }

.nav__menu {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px;
  backdrop-filter: blur(10px);
}
.nav__menu a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__menu a:hover { color: var(--text); background: var(--surface-strong); }
@media (max-width: 1024px) { .nav__menu { display: none; } }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 10px 18px; font-size: 13px; }
@media (max-width: 700px) { .nav__cta span { display: none; } .nav__cta { padding: 10px; } }

.theme-toggle {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background var(--dur-fast);
}
.theme-toggle:hover { background: var(--surface-strong); }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  position: relative;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform var(--dur-mid) var(--ease-out), top var(--dur-mid) var(--ease-out);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, -4px); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, 4px); }
.menu-toggle.is-open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }
@media (max-width: 1024px) { .menu-toggle { display: block; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), box-shadow var(--dur-fast);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--ghost {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
}
.btn--ghost:hover { background: var(--surface-strong); transform: translateY(-2px); }
.play-icon {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 100px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: padding var(--dur-mid) var(--ease-out), color var(--dur-fast);
  opacity: 0;
  transform: translateY(40px);
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu__link:hover { padding-left: 24px; color: var(--accent); }
.mobile-menu__num {
  font-family: var(--font-sans); font-size: 12px; font-weight: 400;
  color: var(--text-mute);
  letter-spacing: 0.15em;
}
.mobile-menu__footer {
  display: flex; justify-content: space-between;
  color: var(--text-mute); font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px var(--pad-x) 100px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.hero__orb--1 { top: -10%; left: -10%; width: 50vmax; height: 50vmax; background: radial-gradient(circle, #7c5cff, transparent 60%); }
.hero__orb--2 { bottom: -20%; right: -10%; width: 55vmax; height: 55vmax; background: radial-gradient(circle, #22d3ee, transparent 60%); }
.hero__orb--3 { top: 30%; right: 20%; width: 30vmax; height: 30vmax; background: radial-gradient(circle, #f472b6, transparent 60%); opacity: 0.35; }
[data-theme="light"] .hero__orb { opacity: 0.35; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22ff88;
  box-shadow: 0 0 10px #22ff88;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 32px;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.1em; }
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero__sub strong { color: var(--text); font-weight: 500; }

.hero__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__meta {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  flex-wrap: wrap; justify-content: center;
}
.hero__meta-item { display: flex; flex-direction: column; align-items: flex-start; }
.hero__meta-num {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__meta-label { font-size: 12px; color: var(--text-mute); }
.hero__meta-divider { width: 1px; height: 28px; background: var(--border-strong); }

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--text-mute);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: var(--border-strong);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -50%; } 100% { top: 100%; } }

.hero__visual { display: none; }

/* ---------- MARQUEE ---------- */
.marquee {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elev);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__group { display: flex; gap: 60px; align-items: center; }
.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.marquee__dot { color: var(--accent) !important; font-size: 14px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTIONS COMMON ---------- */
section { position: relative; }
.about, .services, .work, .stats, .process, .testimonials, .faq, .contact {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 1000px;
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about__text p { color: var(--text-soft); font-size: 17px; margin-bottom: 18px; max-width: 520px; }
.about__list { margin-top: 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; }
.check {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--gradient-1);
  border-radius: 50%; color: #fff; font-size: 12px; font-weight: 600;
}

.about__card {
  aspect-ratio: 1;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.about__card-glow {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent);
  animation: rotate 8s linear infinite;
  opacity: 0.4;
}
.about__svg { position: relative; z-index: 2; width: 100%; height: 100%; padding: 40px; }
.orbit-dots { animation: rotate 20s linear infinite; transform-origin: 200px 200px; }
@keyframes rotate { to { transform: rotate(360deg); } }

/* ---------- SERVICES ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 36px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.service-card:hover .service-card__hover { opacity: 1; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.service-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--accent-2);
  margin-bottom: 28px;
  transition: transform var(--dur-mid) var(--ease-out);
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.08); }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 20px; }
.service-card ul { display: grid; gap: 6px; }
.service-card ul li {
  color: var(--text-mute);
  font-size: 13px;
  padding-left: 14px;
  position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--accent);
}
.service-card__hover {
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(124, 92, 255, 0.15), transparent 40%);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-mid);
}

/* ---------- WORK HORIZONTAL ---------- */
.work__pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.work__track {
  display: flex;
  gap: 40px;
  height: 100%;
  padding: 60px var(--pad-x);
  will-change: transform;
}
.work__item {
  flex: 0 0 auto;
  width: min(70vw, 720px);
  display: flex; flex-direction: column;
}
.work__media {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.work__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.work__item:hover .work__media img { transform: scale(1.05); }
.work__shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-out);
}
.work__item:hover .work__shine { transform: translateX(100%); }
.work__info { padding: 24px 4px 0; }
.work__info span {
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.work__info h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.work__info p { color: var(--text-soft); font-size: 14px; }

@media (max-width: 768px) {
  .work__pin { height: auto; }
  .work__track {
    flex-direction: column;
    transform: none !important;
    height: auto;
    padding: 20px var(--pad-x);
  }
  .work__item { width: 100%; }
  .work__media { aspect-ratio: 4/3; }
}

/* ---------- STATS ---------- */
.stats {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.stat { text-align: center; position: relative; }
.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.stat p {
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- PROCESS TIMELINE ---------- */
.timeline {
  position: relative;
  display: grid; gap: 60px;
  padding-left: 60px;
}
.timeline__line {
  position: absolute;
  left: 20px; top: 10px; bottom: 10px;
  width: 2px;
  background: var(--border);
}
.timeline__line-fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: var(--gradient-1);
  transition: height 0.1s linear;
}
.timeline__step { position: relative; padding-bottom: 20px; }
.timeline__dot {
  position: absolute;
  left: -50px; top: 4px;
  width: 18px; height: 18px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg), 0 0 20px rgba(124, 92, 255, 0.6);
}
.timeline__phase {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.timeline__content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin: 6px 0 10px;
  letter-spacing: -0.02em;
}
.timeline__content p { color: var(--text-soft); font-size: 16px; max-width: 540px; }

/* ---------- TESTIMONIALS ---------- */
.slider {
  position: relative;
  overflow: hidden;
}
.slider__track {
  display: flex;
  transition: transform 0.8s var(--ease-out);
}
.slide {
  flex: 0 0 100%;
  padding: 60px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}
.slide__quote {
  font-family: var(--font-serif);
  font-size: 100px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: -30px;
}
.slide p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}
.slide__author {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.slide__avatar { width: 48px; height: 48px; border-radius: 50%; }
.slide__author strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
}
.slide__author span { color: var(--text-mute); font-size: 13px; }

.slider__controls {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 32px;
}
.slider__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.slider__btn:hover { background: var(--surface-strong); transform: scale(1.08); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: width var(--dur-mid), background var(--dur-fast);
}
.slider__dots button.is-active { width: 32px; background: var(--accent); border-radius: 4px; }

@media (max-width: 600px) { .slide { padding: 40px 24px; } }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; max-width: 880px; }
.faq__item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  top: 50%; left: 50%;
  transition: transform var(--dur-mid) var(--ease-out);
}
.faq__icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item p {
  padding: 0 28px 24px;
  color: var(--text-soft);
  font-size: 15px;
}

/* ---------- CONTACT ---------- */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
}
.contact__desc { color: var(--text-soft); font-size: 17px; max-width: 460px; margin-bottom: 48px; }

.contact__info { display: grid; gap: 24px; }
.contact__info > div {
  display: grid; gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.contact__info span:first-child {
  font-size: 12px; color: var(--text-mute);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.contact__info a, .contact__info p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  transition: color var(--dur-fast);
}
.contact__info a:hover { color: var(--accent); }

.contact__form {
  display: grid; gap: 28px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}
.field { position: relative; }
.field input, .field select, .field textarea {
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--border-strong);
  font-size: 16px;
  transition: border-color var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: var(--bg-elev); color: var(--text); }
.field label {
  position: absolute; left: 0; top: 24px;
  font-size: 14px;
  color: var(--text-mute);
  pointer-events: none;
  transition: top var(--dur-mid) var(--ease-out), font-size var(--dur-mid), color var(--dur-mid);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field input:valid + label,
.field select:valid + label,
.field select:focus + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 4px; font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.field input, .field textarea { background: transparent; }
.field input::placeholder, .field textarea::placeholder { opacity: 0; }
.field input:required, .field textarea:required, .field select:required { box-shadow: none; }
.field__line {
  position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--gradient-1);
  transition: width var(--dur-mid) var(--ease-out);
}
.field input:focus ~ .field__line,
.field select:focus ~ .field__line,
.field textarea:focus ~ .field__line { width: 100%; }

.form-status {
  font-size: 13px; color: var(--accent-2);
  min-height: 18px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative; overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand p { color: var(--text-soft); margin-top: 18px; max-width: 320px; font-size: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__cols a {
  display: block;
  padding: 6px 0;
  color: var(--text-soft);
  font-size: 14px;
  transition: color var(--dur-fast), padding var(--dur-fast);
}
.footer__cols a:hover { color: var(--text); padding-left: 6px; }

.footer__mega {
  font-family: var(--font-display);
  font-size: clamp(120px, 28vw, 380px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-align: center;
  background: var(--gradient-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 60px 0 20px;
  user-select: none;
}

.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
}

/* ---------- REVEAL ANIMATIONS (FALLBACK BEFORE GSAP) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.is-in { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

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