/* ═══════════════════════════════════════════════════════════════════
   CRERATIVE — Ultra-Premium Institutional Stylesheet
   Design Language: Apple × Stripe × Linear × Cuberto
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Dynamic CSS Property for Gradient Angle Rotation */
@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

/* ─── Custom Properties (Design Tokens) ────────────────────────── */
:root {
  /* Brand Palette */
  --color-white:       #F8F8F8;
  --color-black:       #111111;
  --color-cyan:        #6DDCFF;
  --color-pink:        #FF8DC7;
  --color-dark-800:    #1A1A1A;
  --color-dark-700:    #222222;
  --color-dark-600:    #2A2A2A;
  --color-muted:       #888888;
  --color-muted-light: #AAAAAA;
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-border-light:rgba(255, 255, 255, 0.12);

  /* Gradients */
  --gradient-brand:    linear-gradient(135deg, #6DDCFF 0%, #FFF4E0 50%, #FF8DC7 100%);
  --gradient-brand-45: linear-gradient(45deg, #6DDCFF 0%, #FFF4E0 50%, #FF8DC7 100%);
  --gradient-radial:   radial-gradient(ellipse at 50% 50%, rgba(109, 220, 255, 0.15) 0%, transparent 70%);
  --gradient-hero:     linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.6) 50%, #111111 100%);

  /* Typography */
  --font-primary:  'Bricolage Grotesque', 'Inter', system-ui, -apple-system, sans-serif;
  --font-fallback: 'Inter', system-ui, -apple-system, sans-serif;

  --text-headline:  clamp(2.5rem, 5vw, 5rem);
  --text-display:   clamp(3rem, 7vw, 7rem);
  --text-subhead:   clamp(1.5rem, 3vw, 2.5rem);
  --text-title:     clamp(1.25rem, 2vw, 1.75rem);
  --text-body:      clamp(0.95rem, 1.1vw, 1.125rem);
  --text-small:     clamp(0.8rem, 0.9vw, 0.875rem);
  --text-caption:   0.75rem;

  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.7;
  --tracking-tight: -0.03em;
  --tracking-normal: 0;

  /* Spacing */
  --space-section:   clamp(80px, 10vw, 140px);
  --space-xl:        clamp(48px, 6vw, 96px);
  --space-lg:        clamp(32px, 4vw, 64px);
  --space-md:        clamp(20px, 2.5vw, 40px);
  --space-sm:        clamp(12px, 1.5vw, 24px);
  --space-xs:        clamp(8px, 1vw, 16px);

  /* Layout */
  --container-max:   1320px;
  --container-wide:  1440px;
  --nav-height:      72px;
  --border-radius:   16px;
  --border-radius-sm: 10px;
  --border-radius-xs: 6px;

  /* Glassmorphism */
  --glass-bg:         rgba(255, 255, 255, 0.05);
  --glass-bg-strong:  rgba(255, 255, 255, 0.08);
  --glass-blur:       blur(20px);
  --glass-border:     1px solid rgba(255, 255, 255, 0.08);
  --glass-dark:       rgba(17, 17, 17, 0.8);
  --glass-dark-blur:  blur(24px);

  /* Motion */
  --ease-premium:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo:    cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out:      cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:    0.3s;
  --duration-normal:  0.6s;
  --duration-slow:    1s;
  --duration-reveal:  1.2s;
}

/* ─── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--color-white);
  background-color: var(--color-black);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-black);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-brand);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-brand-45);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-cyan) var(--color-black);
}

/* ─── Selection ────────────────────────────────────────────────── */
::selection {
  background: rgba(109, 220, 255, 0.3);
  color: var(--color-white);
}

::-moz-selection {
  background: rgba(109, 220, 255, 0.3);
  color: var(--color-white);
}

/* ─── Global Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-white);
}

h1 { font-size: var(--text-display); }
h2 { font-size: var(--text-headline); }
h3 { font-size: var(--text-subhead); }
h4 { font-size: var(--text-title); }

p {
  color: var(--color-muted-light);
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-premium);
}

a:hover {
  color: var(--color-cyan);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ─── Layout Containers ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.section--dark {
  background: var(--color-black);
}

.section--darker {
  background: var(--color-dark-800);
}

/* ─── Section Headers ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cyan);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gradient-brand);
}

.section-title {
  font-size: var(--text-headline);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--text-body);
  color: var(--color-muted);
  max-width: 55ch;
  line-height: var(--leading-normal);
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-premium);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.01);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration-normal) var(--ease-premium);
}

.nav.scrolled::before {
  background: var(--glass-dark);
  backdrop-filter: var(--glass-dark-blur);
  -webkit-backdrop-filter: var(--glass-dark-blur);
  border-bottom: 1px solid var(--color-border);
}

.nav.scrolled {
  height: 64px;
}

.nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  transition: transform var(--duration-fast) var(--ease-premium);
}

.nav__logo:hover {
  transform: scale(1.02);
}

.nav__logo span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-muted-light);
  transition: all var(--duration-fast) var(--ease-premium);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-brand);
  transition: width var(--duration-fast) var(--ease-premium);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-brand);
  color: var(--color-black);
  transition: all var(--duration-fast) var(--ease-premium);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(109, 220, 255, 0.3);
  color: var(--color-black);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 10;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-premium);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════════
   2. HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) saturate(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Floating gradient orbs */
.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero__gradient-orb--cyan {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, var(--color-cyan), transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__gradient-orb--pink {
  width: clamp(250px, 35vw, 500px);
  height: clamp(250px, 35vw, 500px);
  background: radial-gradient(circle, var(--color-pink), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -4s;
}

.hero__gradient-orb--center {
  width: clamp(200px, 30vw, 450px);
  height: clamp(200px, 30vw, 450px);
  background: radial-gradient(circle, rgba(109, 220, 255, 0.4), rgba(255, 141, 199, 0.2), transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -2s;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-muted-light);
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--duration-reveal) var(--ease-premium) 0.2s both;
}

.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--duration-reveal) var(--ease-premium) 0.4s both;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line span {
  display: inline-block;
  animation: textRevealUp var(--duration-reveal) var(--ease-premium) both;
}

.hero__title .line:nth-child(1) span { animation-delay: 0.5s; }
.hero__title .line:nth-child(2) span { animation-delay: 0.65s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.8s; }

.hero__description {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--color-muted-light);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  line-height: var(--leading-normal);
  animation: fadeInUp var(--duration-reveal) var(--ease-premium) 0.6s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp var(--duration-reveal) var(--ease-premium) 0.8s both;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp var(--duration-reveal) var(--ease-premium) 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.3; }
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-premium);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn--primary {
  background: linear-gradient(var(--gradient-angle), #6DDCFF 0%, #FFF4E0 50%, #FF8DC7 100%);
  color: var(--color-black);
  border: none;
  transition: transform var(--duration-fast) var(--ease-premium), box-shadow var(--duration-fast) var(--ease-premium), --gradient-angle 0.5s ease;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(109, 220, 255, 0.35), 0 4px 16px rgba(255, 141, 199, 0.2);
  color: var(--color-black);
  animation: rotateButtonGradient 6s linear infinite;
}

.btn--primary:active {
  transform: translateY(0);
}

@keyframes rotateButtonGradient {
  0% {
    --gradient-angle: 135deg;
  }
  100% {
    --gradient-angle: 495deg;
  }
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-cyan);
  background: rgba(109, 220, 255, 0.06);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Magnetic button wrapper */
.magnetic-btn {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-premium);
}

.magnetic-btn:hover {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════════════════════
   3. TRUSTED BRANDS — Infinite Marquee
   ═══════════════════════════════════════════════════════════════════ */
.brands {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-black);
}

.brands__label {
  text-align: center;
  margin: 0 auto var(--space-md);
  display: block;
  width: 100%;
  font-size: var(--text-small);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.brands__track:hover {
  animation-play-state: paused;
}

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 4vw, 56px);
  flex-shrink: 0;
}

.brands__item img {
  height: clamp(24px, 3vw, 40px);
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%) brightness(2);
  transition: all var(--duration-fast) var(--ease-premium);
}

.brands__item:hover img {
  opacity: 0.7;
  filter: grayscale(0%) brightness(1);
}

/* ═══════════════════════════════════════════════════════════════════
   4. ABOUT SECTION — Split Editorial
   ═══════════════════════════════════════════════════════════════════ */
.about {
  background: var(--color-black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__content {
  padding-right: var(--space-lg);
}

.about__headline {
  font-size: var(--text-headline);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
}

.about__text {
  font-size: var(--text-body);
  color: var(--color-muted-light);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-md);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.about__stat-number {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}

.about__stat-label {
  font-size: var(--text-caption);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__visual {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-premium);
}

.about__visual:hover img {
  transform: scale(1.04);
}

.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.4), transparent 50%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   5. SERVICES ECOSYSTEM — Premium Glass Grid
   ═══════════════════════════════════════════════════════════════════ */
.services {
  background: var(--color-dark-800);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--border-radius);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  transition: all var(--duration-normal) var(--ease-premium);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  padding: 1px;
  background: var(--gradient-brand);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-premium);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--glass-bg-strong);
  z-index: 10;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(109, 220, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  transition: all var(--duration-normal) var(--ease-premium);
}

.service-card:hover .service-card__icon {
  background: rgba(109, 220, 255, 0.15);
  box-shadow: 0 0 30px rgba(109, 220, 255, 0.2);
}

.service-card__title {
  font-size: var(--text-title);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: var(--tracking-tight);
}

.service-card__desc {
  font-size: var(--text-small);
  color: var(--color-muted);
  line-height: var(--leading-normal);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-sm);
}

.service-card__tag {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════
   6. IN-HOUSE PRODUCTION — Dark Cinematic
   ═══════════════════════════════════════════════════════════════════ */
.production {
  position: relative;
  background: var(--color-black);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.production__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.production__bg video,
.production__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.6);
}

.production__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 50%, rgba(17,17,17,0.9) 100%);
}

.production__content {
  position: relative;
  z-index: 2;
}

.production__headline {
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.production__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.production__feature {
  position: relative;
  padding: var(--space-md);
  border-left: 2px solid var(--color-border);
}

.production__feature::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--duration-normal) var(--ease-premium);
}

.production__feature:hover::before {
  transform: scaleY(1);
}

.production__feature-title {
  font-size: var(--text-title);
  font-weight: 600;
  margin-bottom: 8px;
  text-wrap: balance;
}

.production__feature-desc {
  font-size: var(--text-small);
  color: var(--color-muted);
  line-height: var(--leading-normal);
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════════════
   7. STUDIO STRUCTURE — Luxury Editorial Gallery
   ═══════════════════════════════════════════════════════════════════ */
.studio {
  background: var(--color-dark-800);
}

.studio__header {
  margin-bottom: var(--space-xl);
}

.studio__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto auto;
  gap: clamp(12px, 1.5vw, 20px);
}

.studio__gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}

.studio__gallery-item:first-child {
  grid-row: 1 / 4;
  height: 100%;
}

.studio__gallery-item:nth-child(2),
.studio__gallery-item:nth-child(3),
.studio__gallery-item:nth-child(4) {
  aspect-ratio: 16 / 10;
}

.studio__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium);
}

.studio__gallery-item:hover img {
  transform: scale(1.06);
}

.studio__gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-premium);
}

.studio__gallery-item:hover::after {
  opacity: 1;
}

.studio__gallery-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-size: var(--text-small);
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--duration-fast) var(--ease-premium);
}

.studio__gallery-item:hover .studio__gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   8. PORTFOLIO — Masonry Grid
   ═══════════════════════════════════════════════════════════════════ */
.portfolio {
  background: var(--color-black);
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.portfolio__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio__filter {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-premium);
  min-height: 40px;
}

.portfolio__filter:hover,
.portfolio__filter.active {
  color: var(--color-black);
  background: var(--gradient-brand);
  border-color: transparent;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.portfolio__item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-dark-700);
  aspect-ratio: 1 / 1;
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-premium), filter 0.8s var(--ease-premium);
}

.portfolio__item:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.5vw, 32px);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-premium);
  background: linear-gradient(to top, rgba(17,17,17,0.8) 0%, transparent 70%);
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio__overlay-category {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cyan);
  margin-bottom: 6px;
  font-weight: 500;
}

.portfolio__overlay-title {
  font-size: var(--text-title);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
}

.portfolio__overlay-arrow {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translate(8px, -8px) rotate(-45deg);
  opacity: 0;
  transition: all var(--duration-fast) var(--ease-premium);
}

.portfolio__item:hover .portfolio__overlay-arrow {
  transform: translate(0, 0) rotate(-45deg);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   9. RESULTS — Animated Stat Cards
   ═══════════════════════════════════════════════════════════════════ */
.results {
  background: var(--color-dark-800);
  position: relative;
}

.results::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: var(--gradient-radial);
  pointer-events: none;
}

.results__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.stat-card {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 48px);
  border-radius: var(--border-radius);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-premium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-normal) var(--ease-premium);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 50px rgba(109, 220, 255, 0.08);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card__number {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card__label {
  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: var(--leading-snug);
  letter-spacing: 0.02em;
}

.stat-card__suffix {
  font-size: 0.6em;
  vertical-align: super;
}

/* Secondary metrics styling below cards */
.results__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.results__secondary-item {
  text-align: center;
}

.results__secondary-number {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

.results__secondary-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.results__secondary-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   10. TESTIMONIALS — Minimal Luxury Carousel
   ═══════════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind testimonials */
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(109, 220, 255, 0.18) 0%, rgba(255, 141, 199, 0.1) 50%, transparent 100%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonials__carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 var(--space-md);
}

.testimonials__track-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: clamp(32px, 5vw, 64px) 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.testimonials__track {
  display: flex;
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-premium);
}

.testimonial-card {
  flex: 0 0 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(24px, 5vw, 64px);
}

.testimonial-card__quote {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 500;
  line-height: var(--leading-snug);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  max-width: 42ch;
  letter-spacing: -0.01em;
  position: relative;
}

.testimonial-card__author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.testimonial-card__brand {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-card__bullet {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

.testimonial-card__role {
  font-size: var(--text-small);
  color: var(--color-muted);
  font-weight: 500;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: var(--space-lg);
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-premium);
  font-size: 1.1rem;
  color: var(--color-white);
  cursor: pointer;
}

.testimonials__nav-btn:hover {
  border-color: var(--color-cyan);
  background: rgba(109, 220, 255, 0.08);
  transform: translateY(-2px);
}

.testimonials__nav-btn:active {
  transform: translateY(0);
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-premium);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--gradient-brand);
}

/* ═══════════════════════════════════════════════════════════════════
   11. FINAL CTA — Cinematic Ending
   ═══════════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0.08;
  animation: gradientShift 8s ease-in-out infinite;
  background-size: 200% 200%;
}

.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(109, 220, 255, 0.12) 0%, rgba(255, 141, 199, 0.08) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.cta__title {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: var(--color-muted-light);
  max-width: none;
  margin: 0 auto var(--space-lg);
  line-height: var(--leading-normal);
  position: relative;
  z-index: 1;
}

.cta__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   12. FOOTER — Minimal Premium
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--color-black);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-sm);
}

.footer__logo span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__tagline {
  font-size: var(--text-small);
  color: var(--color-muted);
  line-height: var(--leading-normal);
}

.footer__column-title {
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: var(--text-small);
  color: var(--color-muted);
  transition: all var(--duration-fast) var(--ease-premium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--color-cyan);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: var(--text-caption);
  color: var(--color-muted);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-premium);
  font-size: 1rem;
}

.footer__social:hover {
  border-color: var(--color-cyan);
  background: rgba(109, 220, 255, 0.08);
  transform: translateY(-2px);
  color: var(--color-cyan);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reveal on Scroll ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--duration-reveal) var(--ease-premium),
              transform var(--duration-reveal) var(--ease-premium);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-reveal) var(--ease-premium),
              transform var(--duration-reveal) var(--ease-premium);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-reveal) var(--ease-premium),
              transform var(--duration-reveal) var(--ease-premium);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Stagger Delays ──────────────────────────────────────────── */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ─── Text Reveal (clip-path) ─────────────────────────────────── */
.text-reveal {
  clip-path: inset(0 100% 0 0);
  animation: clipReveal var(--duration-reveal) var(--ease-premium) forwards;
}

@keyframes clipReveal {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes textRevealUp {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ─── Marquee (Infinite Scroll) ────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Float (Gentle Levitation) ────────────────────────────────── */
.float {
  animation: float 6s ease-in-out infinite;
}

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

/* ─── Gradient Shift ───────────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Fade In Up ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Count Up (for number animation) ──────────────────────────── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Shimmer ──────────────────────────────────────────────────── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* ─── Glow Pulse ───────────────────────────────────────────────── */
.glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(109, 220, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(109, 220, 255, 0.3), 0 0 60px rgba(255, 141, 199, 0.15);
  }
}

/* ─── Spin (for loaders / accents) ─────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Scale In ─────────────────────────────────────────────────── */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

/* Text utilities */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-muted  { color: var(--color-muted); }
.text-white  { color: var(--color-white); }
.text-cyan   { color: var(--color-cyan); }
.text-pink   { color: var(--color-pink); }

.font-light    { font-weight: 300; }
.font-regular  { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 800; }

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Spacing utilities */
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }

/* Flex utilities */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.gap-sm      { gap: var(--space-sm); }
.gap-md      { gap: var(--space-md); }

/* Visual utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--border-radius);
}

.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: var(--glass-dark-blur);
  -webkit-backdrop-filter: var(--glass-dark-blur);
  border: var(--glass-border);
  border-radius: var(--border-radius);
}

.rounded     { border-radius: var(--border-radius); }
.rounded-sm  { border-radius: var(--border-radius-sm); }
.rounded-full { border-radius: 100px; }

.overflow-hidden { overflow: hidden; }
.relative       { position: relative; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Gradient divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 1200px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .production__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 992px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__content {
    padding-right: 0;
    order: 2;
  }

  .about__visual {
    order: 1;
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .studio__gallery-item:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 5;
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    font-size: 1rem;
    padding: 14px 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --space-section: clamp(60px, 10vw, 100px);
    --nav-height: 64px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

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

  .results__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .portfolio__item:nth-child(n) {
    aspect-ratio: 16 / 10;
  }

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

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }

  .testimonial-card {
    padding: var(--space-md);
  }

  .testimonial-card__quote {
    font-size: 1.05rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: auto;
  }

  /* Ensure touch targets */
  .nav__link,
  .portfolio__filter,
  .footer__link,
  .footer__social,
  .testimonials__nav-btn,
  .testimonials__dot {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .results__secondary-divider {
    display: none;
  }

  .results__secondary {
    gap: 20px 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — 576px (Small Mobile)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-card__number {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

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

  .about__stat-number {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .cta__title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .brands__item {
    padding: 0 clamp(16px, 3vw, 32px);
  }

  .brands__item img {
    height: clamp(18px, 3vw, 28px);
  }

  .service-card {
    padding: 24px 20px;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION — Accessibility
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .brands__track {
    animation: none;
  }

  .hero__gradient-orb {
    animation: none;
  }

  .hero__title .line span {
    animation: none;
    transform: none;
    opacity: 1;
  }

  .text-reveal {
    clip-path: none;
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════ */
@media print {
  body {
    background: white;
    color: black;
  }

  .nav,
  .hero__gradient-orb,
  .hero__scroll-indicator,
  .cta__bg,
  .cta__glow {
    display: none;
  }

  .section {
    padding: 40px 0;
    page-break-inside: avoid;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  display: flex;
  align-items: baseline;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50%      { opacity: 1;   transform: scale(1.02); }
}

body.loading {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════
   NAV HIDDEN (Smart Hide)
   ═══════════════════════════════════════════════════════════════════ */
.nav.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU (Full-screen overlay)
   ═══════════════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: right var(--duration-normal) var(--ease-premium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-link {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: var(--tracking-tight);
  transition: color var(--duration-fast) var(--ease-premium);
}

.mobile-nav-link:hover {
  color: var(--color-cyan);
}

/* ═══════════════════════════════════════════════════════════════════
   CURSOR FOLLOWER
   ═══════════════════════════════════════════════════════════════════ */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  background: url('assets/images/cursor.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: width 0.3s var(--ease-premium), height 0.3s var(--ease-premium), margin-top 0.3s var(--ease-premium), margin-left 0.3s var(--ease-premium), opacity 0.3s var(--ease-premium);
  will-change: transform;
}

.cursor-follower.cursor-grow {
  width: 48px !important;
  height: 48px !important;
  margin-top: -24px !important;
  margin-left: -24px !important;
  opacity: 0.85 !important;
}

.cursor-follower.cursor-light {
  /* Kept for script integration compatibility, PNG remains colored */
}

@media (pointer: coarse) {
  .cursor-follower {
    display: none !important;
  }
}

/* Hide native mouse cursor on desktop pointer devices */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GRADIENT TEXT (utility used across HTML)
   ═══════════════════════════════════════════════════════════════════ */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════════════
   MARQUEE STYLES (for text-based brand marquee)
   ═══════════════════════════════════════════════════════════════════ */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 75s linear infinite;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION PADDING OVERRIDE
   ═══════════════════════════════════════════════════════════════════ */
.section {
  padding: var(--space-section) 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADLINE (flat class used in HTML)
   ═══════════════════════════════════════════════════════════════════ */
.section-headline,
.section-headline-light {
  font-size: var(--text-headline);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section-label-light {
  color: var(--color-cyan);
}

/* ═══════════════════════════════════════════════════════════════════
   HAMBURGER (cross-compatible with nav__toggle)
   ═══════════════════════════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span,
.hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-premium);
  transform-origin: center;
}

.hamburger.active span:nth-child(1),
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2),
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3),
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}
