/* ==========================================================================
   MAJID ALI KHAN — AI CONTENT GENERATION SPECIALIST
   EDITORIAL STUDIO DESIGN SYSTEM (Inspired by studiors.be)
   ========================================================================== */

:root {
  /* Dark Noir Palette (Default) */
  --bg: #0E0E0D;
  --bg-deep: #090908;
  --bg-raise: #151513;
  --bg-surface: #1B1B18;
  --bg-surface-hover: #232320;
  
  --ink: #ECE9E2;
  --ink-dim: #9C988F;
  --ink-faint: #42403B;
  --ink-reverse: #0E0E0D;
  
  --line: rgba(236, 233, 226, 0.12);
  --line-light: rgba(236, 233, 226, 0.06);
  --line-strong: rgba(236, 233, 226, 0.24);

  --accent: #FF7A50;
  --accent-light: #FF9473;
  --accent-faint: rgba(255, 122, 80, 0.12);
  --accent-glow: rgba(255, 122, 80, 0.25);
  
  --success: #10B981;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing & Layout */
  --pad: clamp(1.25rem, 4vw, 4rem);
  --pad-sm: clamp(0.75rem, 2vw, 1.5rem);
  --content-max: 88rem; /* ~1408px */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Light Theme Overrides */
[data-theme="light"] {
  --bg: #F5F4F0;
  --bg-deep: #ECE9E2;
  --bg-raise: #FFFFFF;
  --bg-surface: #F0EDE5;
  --bg-surface-hover: #E6E2D8;

  --ink: #141412;
  --ink-dim: #605E59;
  --ink-faint: #B8B5AD;
  --ink-reverse: #ECE9E2;

  --line: rgba(20, 20, 18, 0.12);
  --line-light: rgba(20, 20, 18, 0.06);
  --line-strong: rgba(20, 20, 18, 0.22);

  --accent: #E5572C;
  --accent-light: #FF7A50;
  --accent-faint: rgba(229, 87, 44, 0.1);
  --accent-glow: rgba(229, 87, 44, 0.2);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Film Grain Overlay */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

[data-theme="light"] .grain {
  opacity: 0.02;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Section Shared */
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  border-top: 1px solid var(--line);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.title-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.pill-badge--glow {
  border-color: rgba(16, 185, 129, 0.3);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--success);
  box-shadow: 0 0 10px var(--success);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--pill {
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
}

.btn--solid {
  background-color: var(--ink);
  color: var(--ink-reverse);
}

.btn--solid:hover {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn--accent {
  background-color: var(--accent);
  color: #FFFFFF;
}

.btn--accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--ink);
  background-color: var(--bg-surface);
}

.btn--text {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn--text:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.btn__arr {
  font-family: var(--font-sans);
  transition: transform 0.2s ease;
}

.btn:hover .btn__arr {
  transform: translate(2px, -2px);
}

/* Highly Interactive Explore Work Button */
.btn--explore {
  position: relative;
  background: var(--ink);
  color: var(--ink-reverse);
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  border-radius: var(--radius-pill);
  gap: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn--explore__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 122, 80, 0.3) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.btn--explore:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px var(--accent-glow);
  background: #ffffff;
  color: #0E0E0D;
  border-color: var(--accent);
}

.btn--explore:hover .btn--explore__glow {
  opacity: 1;
}

.btn--explore__media-peek {
  display: flex;
  align-items: center;
  margin-right: -0.2rem;
}

.peek-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink-reverse);
  margin-left: -9px;
  background: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.peek-circle:first-child {
  margin-left: 0;
}

.btn--explore:hover .peek-circle:first-child {
  transform: translateX(-3px) scale(1.12);
}

.btn--explore:hover .peek-circle:last-child {
  transform: translateX(3px) scale(1.12);
}

.peek-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn--explore__text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding-right: 0.2rem;
}

.btn__arr-pill {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink-reverse);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.btn__arr-pill svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn--explore:hover .btn__arr-pill {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(45deg);
}

/* ==========================================================================
   NAVIGATION (Top Floating Glass Header)
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem var(--pad);
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.nav.scrolled {
  padding: 0.75rem var(--pad);
}

.nav__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 14, 13, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
}

[data-theme="light"] .nav__inner {
  background: rgba(245, 244, 240, 0.85);
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.nav__logo-txt {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.nav__logo-dot {
  color: var(--accent);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link:hover,
.nav__link.active {
  color: var(--ink);
}

.nav__link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--accent);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__theme-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav__theme-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.nav__theme-btn svg {
  width: 18px;
  height: 18px;
}

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

.burger-line {
  width: 16px;
  height: 1.5px;
  background-color: var(--ink);
  transition: transform 0.2s ease;
}

/* Mobile Drawer (mnav) */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.mnav.open {
  display: block;
}

.mnav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.mnav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--bg-raise);
  border-left: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.mnav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mnav__logo {
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mnav__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink);
  cursor: pointer;
}

.mnav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.mnav__link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mnav__link span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
}

/* ==========================================================================
   HERO SECTION (studiors.be 2-Column Editorial Grid)
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(clamp(4.5rem, 8vw, 6.5rem) + 4rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Ambient Cinematic Background Video (4 Reel Split Grid) */
.hero__bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero__bg-col {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

[data-theme="light"] .hero__bg-col:not(:last-child)::after {
  background: rgba(0, 0, 0, 0.08);
}

.hero__bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
  opacity: 1;
  transition: opacity 0.35s ease, filter 0.3s ease;
}

.hero__bg-video.fading {
  opacity: 0 !important;
}

[data-theme="light"] .hero__bg-video {
  filter: brightness(0.92) contrast(1.12) saturate(1.15);
  opacity: 0.68;
}

@media (max-width: 900px) {
  .hero__bg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__bg-grid {
    grid-template-columns: 1fr;
  }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 13, 0.65);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  transition: background 0.3s ease;
}

[data-theme="light"] .hero__bg-overlay {
  background: rgba(245, 244, 240, 0.28);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 13, 0.4) 0%, rgba(14, 14, 13, 0.72) 55%, var(--bg-main) 100%);
  transition: background 0.3s ease;
}

[data-theme="light"] .hero__bg-gradient {
  background: linear-gradient(180deg, rgba(245, 244, 240, 0.1) 0%, rgba(245, 244, 240, 0.45) 60%, var(--bg-main) 100%);
}

.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 45%, transparent 25%, rgba(14, 14, 13, 0.8) 100%);
  transition: background 0.3s ease;
}

[data-theme="light"] .hero__bg-vignette {
  background: radial-gradient(circle at 35% 45%, transparent 35%, rgba(245, 244, 240, 0.35) 100%);
}

.hero__body {
  max-width: min(1520px, 86vw);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: block;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
}

.hero__main {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  width: 100%;
  max-width: 100%;
}

.hero__top-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin: 0.25rem 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}

.hero__line-grotesk {
  font-size: clamp(3.5rem, 9.5vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-transform: uppercase;
}

.hero__line-serif {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 10.5vw, 9.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-top: -0.18em;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  color: #D4D9EA;
  max-width: min(1150px, 92%);
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .hero__desc {
  color: #1A1A18;
  text-shadow: 0 1px 12px rgba(245, 244, 240, 0.95);
}

.hero__desc strong {
  color: var(--ink);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.hero__actions .btn--outline {
  background: #000000;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__actions .btn--outline:hover {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .hero__actions .btn--outline {
  background: #000000;
  color: #FFFFFF;
  border: 1.5px solid #000000;
}

[data-theme="light"] .hero__actions .btn--outline:hover {
  background: #222222;
  color: #FFFFFF;
  border-color: #222222;
}

/* Editorial Proof Strip */
.hero__proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.25rem);
  width: 100%;
  max-width: min(1280px, 100%);
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  margin-top: 1.25rem;
  background: rgba(14, 14, 13, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .hero__proof-strip {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.proof-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.proof-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.proof-chip__content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-chip__content strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.proof-chip__content span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
}

/* Marquee Ticker */
.hero__ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 0.85rem 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  animation: tickerSlide 35s linear infinite;
}

.ticker__item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--ink-dim);
  padding: 0 1.25rem;
}

.ticker__sep {
  color: var(--accent);
  margin-left: 1.25rem;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   MANIFESTO / THE STUDIO SECTION
   ========================================================================== */
.manifesto__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: flex-start;
}

.manifesto__rail {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rail__number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--line-strong);
}

.rail__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.manifesto__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}

.manifesto__lead {
  font-size: 1.1rem;
  color: var(--ink-dim);
  line-height: 1.7;
}

.manifesto__lead strong {
  color: var(--ink);
}

.manifesto__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.spec-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.spec-card__num {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.spec-card__num .stat-unit {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: normal;
  margin-left: 2px;
}

.spec-card__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

.spec-card__desc {
  font-size: 0.75rem;
  color: var(--ink-dim);
  line-height: 1.4;
}

.manifesto__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.pillar-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.pillar-body p {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

/* ==========================================================================
   9:16 VERTICAL SHOWCASE STRIP (studiors.be Style)
   ========================================================================== */
.strip-showcase {
  background: var(--bg-deep);
  overflow: hidden;
  padding-bottom: 5rem;
}

.strip-showcase__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reel-action-cue {
  display: flex;
  align-items: center;
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
}

.action-cue-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 122, 80, 0.12);
  border: 1px solid rgba(255, 122, 80, 0.35);
  color: var(--ink);
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 20px rgba(255, 122, 80, 0.15);
  transition: var(--transition-fast);
}

.action-cue-pill:hover {
  background: rgba(255, 122, 80, 0.18);
  border-color: var(--accent);
}

.action-cue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: cuePulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes cuePulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--accent); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.action-cue-text {
  font-weight: 500;
  color: var(--ink);
}

.action-cue-text strong {
  color: var(--accent);
  font-weight: 700;
}

[data-theme="light"] .action-cue-pill {
  background: rgba(235, 94, 40, 0.08);
  border-color: rgba(235, 94, 40, 0.3);
  color: #1A1A18;
}

[data-theme="light"] .action-cue-text strong {
  color: #EB5E28;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-dim);
  max-width: 600px;
  margin-top: 0.5rem;
}

.reel-filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}

.reel-filters {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-chip,
.tab-chip {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-chip:hover,
.tab-chip:hover {
  color: var(--ink);
  border-color: var(--ink-dim);
}

.filter-chip.active,
.tab-chip.active {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}

.strip-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-btn {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.arrow-btn:hover {
  background: var(--ink);
  color: var(--ink-reverse);
}

/* Horizontal Track */
.strip-container {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--pad);
}

.strip-container::-webkit-scrollbar {
  display: none;
}

.strip-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

/* Reel Card */
.reel-card {
  width: 290px;
  flex-shrink: 0;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.reel-card__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000000;
  overflow: hidden;
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  transform: translateY(-6px);
  background: rgba(14, 14, 13, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.reel-card:hover .reel-card__tag {
  opacity: 1;
  transform: translateY(0);
}

.reel-card__play-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(14, 14, 13, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.reel-card__play-badge .play-icon {
  color: var(--accent);
  font-size: 0.7rem;
}

.reel-card:hover .reel-card__play-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reel-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reel-card__title {
  font-size: 1rem;
  font-weight: 700;
}

.reel-card__desc {
  font-size: 0.8rem;
  color: var(--ink-dim);
  line-height: 1.4;
}

.reel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-light);
}

.reel-card__hardware {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
}

.reel-card__prompt-badge {
  font-size: 0.75rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   FEATURED WORK & PIPELINES SECTION
   ========================================================================== */
.section-header-editorial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.portfolio-category-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pipelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.pipeline-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pipeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pipeline-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.pipeline-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pipeline-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 14, 13, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.pipeline-card__content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pipeline-card__title {
  font-size: 1.25rem;
}

.pipeline-card__desc {
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.pipeline-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.pipeline-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.pipeline-card__specs-peek {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   THE METHOD (Numbered Cards)
   ========================================================================== */
.method-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.method-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.method-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.method-card__step {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.method-card__phase {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
}

.method-card__title {
  font-size: 1.1rem;
  line-height: 1.3;
}

.method-card__desc {
  font-size: 0.85rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.method-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* ==========================================================================
   SERVICES LIST
   ========================================================================== */
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1.5fr 1fr 100px;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: var(--transition-fast);
}

.service-item:hover {
  background: var(--bg-surface);
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-item__index {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.service-item__name h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.service-item__name p {
  font-size: 0.85rem;
  color: var(--ink-dim);
}

.service-item__deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.deliv-pill {
  font-size: 0.75rem;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  color: var(--ink-dim);
}

/* ==========================================================================
   DIRECT CONTACT & INQUIRIES SECTION (Editorial Minimalist Grid)
   ========================================================================== */
.contact-card {
  background: var(--bg-raise);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.contact-card__sidebar {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-deep);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-card__title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-card__desc {
  font-size: 1rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

.contact-status-box {
  margin-top: auto;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 122, 80, 0.05);
  border: 1px solid rgba(255, 122, 80, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.status-sub {
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin: 0;
}

.contact-grid {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.contact-box {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-box:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-box--primary {
  border-color: rgba(255, 122, 80, 0.35);
  background: linear-gradient(145deg, var(--bg-deep) 0%, rgba(255, 122, 80, 0.04) 100%);
}

.contact-box--primary:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 36px var(--accent-glow);
}

.contact-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-box__tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-box__icon {
  font-size: 1.1rem;
  color: var(--ink-dim);
}

.contact-box__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-box__lead {
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.contact-box__desc {
  font-size: 0.88rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.direct-email-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  background: var(--bg-surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  margin-top: 0.25rem;
}

.direct-email-address {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  user-select: all;
}

.direct-email-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.copy-btn-feedback {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.contact-box__link {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.contact-box--guide {
  background: var(--bg-surface);
  border: 1px dashed var(--line-strong);
}

.brief-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.brief-checklist li {
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.45;
}

.brief-checklist li strong {
  color: var(--ink);
}

@media (max-width: 960px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-card__sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* ==========================================================================
   FOOTER (studiors.be Monolith Wordmark)
   ========================================================================== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
}

.footer__brand-lead {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand-sub {
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__monolith {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  user-select: none;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer__monolith span {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(3rem, 10.5vw, 10.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--line-strong);
  display: block;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--ink-dim);
}

.specs-badge {
  font-family: var(--font-mono);
}

/* ==========================================================================
   MODAL (Workflow & Case Study Viewer)
   ========================================================================== */
.workflow-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.workflow-modal.open {
  display: flex;
}

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

.modal-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  background: var(--bg-raise);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75);
}

.modal-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--bg-raise);
  z-index: 10;
}

.modal-category {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
}

.modal-title {
  font-size: 1.5rem;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.15);
  color: var(--accent);
}

.modal-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* 2-Column Side-by-Side Layout for Vertical 9:16 Reels */
.modal-reel-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

.modal-reel-video-col {
  width: 100%;
}

.modal-reel-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-section-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.modal-section-text {
  color: var(--ink-dim);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Video Box Styles */
.modal-video-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.modal-video-box--landscape {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  max-height: 480px;
}

.modal-video-box--landscape video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000000;
}

.modal-video-box--portrait {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  min-height: 480px;
  margin: 0 auto;
  background: #000000;
}

.modal-video-box--portrait video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000000;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.modal-spec-item span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-dim);
  display: block;
}

.modal-spec-item strong {
  font-size: 0.85rem;
  color: var(--ink);
}

.modal-stages-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-stage-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.stage-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.stage-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.stage-body p {
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* ==========================================================================
   FEATURED PROJECT: LUCIDSCAPES AUTONOMOUS PIPELINE
   ========================================================================== */
.featured-project-section {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.featured-project-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  background: var(--bg-surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.featured-project__media-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-project__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.featured-project__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.featured-project__video.fading {
  opacity: 0 !important;
}

.featured-project__video-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  z-index: 2;
}

.featured-badge {
  background: rgba(14, 14, 13, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 122, 80, 0.35);
  text-transform: uppercase;
}

.format-badge {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

.featured-project__social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  background: var(--bg-surface);
}

.social-btn:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.social-btn:hover .social-icon {
  transform: scale(1.15);
}

.social-icon--instagram {
  filter: drop-shadow(0 2px 8px rgba(225, 48, 108, 0.4));
}

.social-icon--facebook {
  filter: drop-shadow(0 2px 8px rgba(24, 119, 242, 0.4));
}

.social-btn--instagram:hover {
  border-color: #E1306C;
  background: rgba(225, 48, 108, 0.08);
  box-shadow: 0 4px 18px rgba(225, 48, 108, 0.2);
}

.social-btn--facebook:hover {
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.08);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.2);
}

.featured-project__content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
}

.featured-flow-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mono-tag-accent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-flow-header h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.flow-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.flow-step-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.flow-step-item--highlight {
  border-color: rgba(255, 122, 80, 0.4);
  background: rgba(255, 122, 80, 0.04);
}

.flow-step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 122, 80, 0.12);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.flow-step-body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.flow-step-body p {
  font-size: 0.78rem;
  color: var(--ink-dim);
  line-height: 1.45;
}

.featured-project__specs-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.spec-pill-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.spec-pill-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.spec-pill-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

