/* ═══════════════════════════════════════════════════════════
   ANAS BIN MEHBOOB — PERSONAL CREATIVE PORTFOLIO
   Design System & Information Architecture Inspired by Mobbin.com
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Restrained Neutral Monochrome Palette */
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-subtle: #F4F4F6;
  --surface-dark: #141414;
  
  --text-primary: #141414;
  --text-secondary: #717171;
  --text-tertiary: #A3A3A3;
  --text-inverse: #FFFFFF;
  
  /* Hairline Borders */
  --border: rgba(0, 0, 0, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.05);
  --border-hover: rgba(0, 0, 0, 0.18);
  --border-dark: rgba(255, 255, 255, 0.12);
  
  /* Radii */
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-inner: 12px;
  --radius-sm: 8px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-dock: 0 16px 40px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Syne', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Micro-Interaction Timings & Curves */
  --ease-tactile: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.18s var(--ease-tactile);
  --transition-normal: 0.28s var(--ease-tactile);
  --transition-slow: 0.45s var(--ease-tactile);
  
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

body.portfolio-body {
  background-color: #FAFAFB;
  color: #111111;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Subtle blueprint drafting grid in background (Sober & Architectural) */
body.portfolio-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.ambient-mesh-canvas {
  display: none;
}

/* ══════════════════════════════════════════
   00.1 — INTERACTIVE DYNAMIC CURSOR & SPOTLIGHT
══════════════════════════════════════════ */
.cursor-spotlight {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(59, 130, 246, 0.05) 35%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: left, top;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0F0F12;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.12s ease, background-color 0.2s ease;
  will-change: transform, left, top;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 15, 18, 0.35);
  background: rgba(99, 102, 241, 0.04);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background-color 0.25s ease;
  will-change: transform, left, top, width, height;
}

/* Cursor Interactive Hover States */
.cursor-ring.cursor-hover {
  width: 56px;
  height: 56px;
  border-color: rgba(99, 102, 241, 0.85);
  background: rgba(99, 102, 241, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(0.5);
  background: #4F46E5;
}

.cursor-ring.cursor-down {
  transform: translate(-50%, -50%) scale(0.85);
}

/* Hide custom cursor on mobile / touch displays */
@media (pointer: coarse), (hover: none) {
  .cursor-spotlight,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

::selection {
  background: var(--text-primary);
  color: var(--text-inverse);
}

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

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

.site-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-primary);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 54px;
  gap: 32px;
  flex-wrap: wrap;
}

.section-subtext {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   TACTILE BUTTON SYSTEM (Micro-Interactions)
══════════════════════════════════════════ */
.btn-tactile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: transform 0.22s var(--ease-tactile),
              background 0.22s ease,
              border-color 0.22s ease,
              box-shadow 0.22s ease,
              color 0.22s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-tactile:hover {
  transform: translateY(-2px);
}

.btn-tactile:active {
  transform: scale(0.97) translateY(0);
}

.btn-arrow-icon {
  transition: transform 0.22s var(--ease-tactile);
}

.btn-tactile:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-inverse);
  border: 1px solid var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  background: #242424;
  border-color: #242424;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: #FAFAFA;
}

.btn-dock-cta {
  background: var(--text-primary);
  color: var(--text-inverse);
  padding: 8px 18px;
  font-size: 12.5px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 14px;
}

.w-full {
  width: 100%;
}

/* ══════════════════════════════════════════
   01 — FLOATING PILL DOCK (Mobbin-Style)
══════════════════════════════════════════ */
.dock-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.floating-dock {
  position: relative;
  pointer-events: auto;
  width: 100%;
  max-width: 1080px;
  height: 60px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(32px) saturate(210%);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  box-shadow: 
    inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.03),
    0 20px 48px -8px rgba(0, 0, 0, 0.08),
    0 4px 14px -2px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 20px;
  gap: 16px;
  overflow: visible;
  transition: transform 0.35s var(--ease-tactile), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

/* Liquid Glass Prismatic Sheen Bar */
.floating-dock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 25%, rgba(99, 102, 241, 0.4) 50%, rgba(255, 255, 255, 0.95) 75%, transparent 100%);
  pointer-events: none;
  opacity: 0.85;
}

.floating-dock:hover {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 
    inset 0 1.5px 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.04),
    0 24px 54px -8px rgba(0, 0, 0, 0.11),
    0 6px 18px -2px rgba(0, 0, 0, 0.04);
}

/* Brand Monogram */
.dock-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-monogram-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-brand:hover .brand-monogram-img {
  transform: scale(1.1) translateY(-1px);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-full-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.brand-discipline {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   MOBBIN-STYLE TOP SEARCH BAR
══════════════════════════════════════════ */
.dock-search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  width: 250px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-search-box:focus-within {
  width: 320px;
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04), 0 10px 26px rgba(0, 0, 0, 0.06);
}

.dock-search-box .search-icon {
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.dock-search-box:focus-within .search-icon {
  color: #111111;
}

.top-search-input {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  width: 100%;
  outline: none;
}

.top-search-input::placeholder {
  color: var(--text-tertiary);
}

.search-kbd {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* Live Search Dropdown Popup */
.search-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 380px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.search-dropdown-menu.open {
  display: flex;
  animation: searchDropFade 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes searchDropFade {
  0% { opacity: 0; transform: translateY(-8px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.search-quick-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.chip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  font-weight: 600;
}

.search-chip {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.search-chip:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease;
}

.search-result-item:hover {
  background: rgba(99, 102, 241, 0.08);
}

.search-result-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-res-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.search-res-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.search-res-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.search-no-results {
  font-size: 12.5px;
  color: var(--text-secondary);
  text-align: center;
  padding: 16px 0;
}

/* Center Nav Links */
.dock-nav {
  display: flex;
  align-items: center;
}

.dock-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.dock-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.dock-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.dock-link.active {
  color: var(--text-primary);
  font-weight: 600;
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Sleek Obsidian Liquid Glass Action Button */
.btn-sleek,
.btn-glow-gradient {
  background: linear-gradient(135deg, #1C1C22 0%, #0C0C10 100%);
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.4),
    0 4px 14px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sleek::after,
.btn-glow-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
}

.btn-sleek:hover,
.btn-glow-gradient:hover {
  background: linear-gradient(135deg, #282832 0%, #14141A 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   LIQUID GLASS ECOSYSTEM BUTTONS (Brandier TV & Main Studio)
══════════════════════════════════════════ */
.btn-liquid-glass {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-liquid-glass:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 
    0 8px 22px rgba(0, 0, 0, 0.09),
    inset 0 1px 1.5px #FFFFFF;
  transform: translateY(-1.5px);
  color: #000000;
}

.btn-brandier-tv {
  background: rgba(244, 63, 94, 0.08);
  border-color: rgba(244, 63, 94, 0.25);
  color: #E11D48;
}

.btn-brandier-tv:hover {
  background: rgba(244, 63, 94, 0.16);
  border-color: rgba(244, 63, 94, 0.5);
  color: #BE123C;
}

.tv-live-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E11D48;
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.8);
  display: inline-block;
  animation: tvBeaconPulse 1.8s ease-in-out infinite;
}

@keyframes tvBeaconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.btn-main-studio {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.22);
  color: #2563EB;
}

.btn-main-studio:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.45);
  color: #1D4ED8;
}

.btn-ext-icon,
.footer-arrow {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.btn-liquid-glass:hover .btn-ext-icon,
.footer-eco-link:hover .footer-arrow {
  transform: translate(1px, -1px);
  opacity: 1;
}

.mobile-search-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.mobile-search-btn:hover,
.mobile-search-btn:active {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(0.96);
}

.mobile-dock-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dock-toggle:hover,
.mobile-dock-toggle:active {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(0.96);
}

.mobile-dock-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

/* Mobile In-Menu Search */
.mobile-menu-search-wrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}

.mobile-menu-search-input {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  width: 100%;
  outline: none;
}

.mobile-menu-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* Mobile Menu Card */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
}

.mobile-menu-overlay.open {
  display: flex;
}

.mobile-menu-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  padding: 24px;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  font-size: 18px;
  color: var(--text-secondary);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.mobile-menu-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   02 — HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  padding: 160px 0 60px;
  overflow: hidden;
}

/* ══════════════════════════════════════════
   HOMEPAGE HERO AMBIENT BACKGROUND VIDEO
   (High-visibility video with protective typography veil)
══════════════════════════════════════════ */
.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: contrast(106%) saturate(106%);
  transition: opacity 0.6s ease;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

/* Intelligent dual-layer gradient scrim:
   Video remains vibrant & clearly visible ("zyada transparency nh rakhan")
   while text, badges, and controls are 100% sharp & readable */
.hero-video-scrim {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 45%, rgba(250, 250, 251, 0.70) 0%, rgba(250, 250, 251, 0.36) 55%, rgba(250, 250, 251, 0.66) 100%),
    linear-gradient(to right, rgba(250, 250, 251, 0.64) 0%, rgba(250, 250, 251, 0.20) 60%, rgba(250, 250, 251, 0.48) 100%);
  pointer-events: none;
}

.hero-video-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(250, 250, 251, 0) 0%, #FAFAFB 100%);
  pointer-events: none;
}

.hero-container-content {
  position: relative;
  z-index: 2;
}

/* Hero Entrance Animations */
.hero-anim-item {
  opacity: 0;
  transform: translateY(24px);
  animation: heroSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-anim-item[style*="--anim-order: 1"] { animation-delay: 0.1s; }
.hero-anim-item[style*="--anim-order: 2"] { animation-delay: 0.22s; }
.hero-anim-item[style*="--anim-order: 3"] { animation-delay: 0.36s; }

@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   MOBBIN-STYLE HERO APP SQUIRCLE (Liquid Glass)
══════════════════════════════════════════ */
.hero-app-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.mobbin-app-squircle {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 16px 36px -6px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.95),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  user-select: none;
}

.mobbin-app-squircle:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 
    0 24px 48px -8px rgba(0, 0, 0, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 1);
}

.squircle-glass-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 20px 20px 50px 50px / 20px 20px 20px 20px;
  pointer-events: none;
  z-index: 2;
}

.squircle-icon-stage {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 400px;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  z-index: 1;
}

.squircle-icon-stage.flip {
  transform: rotateY(90deg) scale(0.85);
  opacity: 0;
}

.squircle-svg-icon {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.squircle-glow-pulse {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  animation: squircleGlow 3s ease-in-out infinite alternate;
}

@keyframes squircleGlow {
  0% { transform: scale(0.9); opacity: 0.3; }
  100% { transform: scale(1.1); opacity: 0.7; }
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

.status-pill-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-primary);
}

.status-sep {
  color: var(--text-tertiary);
  font-size: 9px;
}

.status-pill-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   AI VIDEO MODEL APP BUTTONS (Mobbin Tactile Liquid Glass)
══════════════════════════════════════════ */
.hero-ai-tools-bar {
  margin-top: 32px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-tools-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.ai-model-buttons-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ai-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.03), 
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(0, 0, 0, 0.03);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.24s ease,
              border-color 0.24s ease,
              box-shadow 0.24s ease;
  cursor: pointer;
  user-select: none;
}

.ai-app-btn:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 1);
}

.ai-app-btn:active {
  transform: scale(0.97) translateY(0);
}

.ai-app-btn.active {
  background: linear-gradient(135deg, #1C1C22 0%, #0C0C10 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.ai-app-btn.active .app-btn-title {
  color: #FFFFFF;
}

.ai-app-btn.active .app-btn-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.app-btn-icon-wrap {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-btn-icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.app-btn-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
}

.app-btn-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.tag-cyan { background: rgba(6, 182, 212, 0.14); color: #0891B2; }
.tag-lime { background: rgba(132, 204, 22, 0.18); color: #4D7C0F; }
.tag-purple { background: rgba(168, 85, 247, 0.16); color: #7E22CE; }
.tag-amber { background: rgba(245, 158, 11, 0.16); color: #B45309; }
.tag-graphite { background: rgba(0, 0, 0, 0.08); color: #4B5563; }

/* ══════════════════════════════════════════
   HERO SPLIT GRID (Editorial Two-Column Layout)
══════════════════════════════════════════ */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 28px;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
}

.hero-right-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ══════════════════════════════════════════
   CLAUDE AI-STYLE KINETIC SKETCH MOTION STAGE
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PURE MINIMALIST STORYTELLING BLACK LINE ANIMATION
   (Cardless, Textless, Seamless Screen Background Narrative)
══════════════════════════════════════════ */
.hero-story-sketch-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
  user-select: none;
}

.story-sketch-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Black Sketch Line Fundamentals */
.sketch-line {
  stroke: #16161A;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.line-main {
  stroke-width: 2.2px;
}

.line-thin {
  stroke-width: 1.4px;
  stroke: rgba(22, 22, 26, 0.42);
}

.line-dashed {
  stroke-width: 1.5px;
  stroke: rgba(22, 22, 26, 0.42);
}

.line-ribbon {
  stroke-width: 2.4px;
  stroke: #16161A;
  stroke-dasharray: 600;
  animation: loopRibbon 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.sketch-node {
  fill: #16161A;
  stroke: #FAFAFB;
  stroke-width: 2px;
}

/* Continuous Master Story Thread (Undulating ink ribbon underneath) */
.line-master-thread {
  stroke: rgba(22, 22, 26, 0.18);
  stroke-width: 1.8px;
  stroke-dasharray: 600;
  animation: flowMasterThread 10s linear infinite;
}

@keyframes flowMasterThread {
  0% { stroke-dashoffset: 1200; }
  100% { stroke-dashoffset: 0; }
}

/* ══════════════════════════════════════════
   FOUR-ACT CONTINUOUS STORYLINE TIMELINE (16s Loop)
   Act 1: 3D Cube (0s - 4.5s)
   Act 2: Camera & Aperture (4s - 8.5s)
   Act 3: 3D Product & Fluid Ribbon (8s - 12.5s)
   Act 4: AI Generative Spark & Orbitals (12s - 16s)
══════════════════════════════════════════ */
.story-phase {
  transform-origin: 230px 175px;
  will-change: opacity, transform;
}

/* Act 1: 3D Isometric Cube */
.phase-cube {
  animation: playPhaseCube 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes playPhaseCube {
  0% {
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
  }
  4%, 22% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  27%, 96% {
    opacity: 0;
    transform: scale(1.08) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
  }
}

/* Act 2: Cinematic Camera & Aperture */
.phase-camera {
  animation: playPhaseCamera 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes playPhaseCamera {
  0%, 23% {
    opacity: 0;
    transform: scale(0.88) rotate(-6deg);
  }
  27%, 46% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  51%, 100% {
    opacity: 0;
    transform: scale(1.06) rotate(6deg);
  }
}

/* Aperture iris opening & closing */
.iris-blades-group {
  transform-origin: 230px 178px;
  animation: irisAction 4s ease-in-out infinite;
}

@keyframes irisAction {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(0.7) rotate(45deg); }
}

/* Act 3: 3D Luxury Product Bottle & Fluid Ribbon */
.phase-product {
  animation: playPhaseProduct 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes playPhaseProduct {
  0%, 48% {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  52%, 71% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  76%, 100% {
    opacity: 0;
    transform: scale(1.05) translateY(-10px);
  }
}

@keyframes loopRibbon {
  0% { stroke-dashoffset: 600; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* Act 4: AI Generative Spark & Orbitals */
.phase-spark {
  animation: playPhaseSpark 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes playPhaseSpark {
  0%, 73% {
    opacity: 0;
    transform: scale(0.85) rotate(-15deg);
  }
  77%, 95% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  99%, 100% {
    opacity: 0;
    transform: scale(1.1) rotate(15deg);
  }
}

.orbit-ellipse-1 {
  animation: spinOrbit 18s linear infinite;
  transform-origin: 230px 175px;
}

.orbit-ellipse-2 {
  animation: spinOrbitRev 14s linear infinite;
  transform-origin: 230px 175px;
}

@keyframes spinOrbit {
  0% { transform: rotate(-25deg); }
  100% { transform: rotate(335deg); }
}

@keyframes spinOrbitRev {
  0% { transform: rotate(35deg); }
  100% { transform: rotate(-325deg); }
}

.hero-title-block {
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, #141414 0%, #1D4ED8 45%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 2px 14px rgba(37, 99, 235, 0.12));
}

/* ══════════════════════════════════════════
   HAND-DRAWN SKETCH HIGHLIGHT & ANNOTATION
   (Eleken / Ellipsus / HeyFriends Inspired)
══════════════════════════════════════════ */
.sketch-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0 6px;
}

.sketch-text {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-family: inherit;
  color: #111111;
}

.sketch-loop-svg {
  position: absolute;
  left: -14%;
  top: -24%;
  width: 128%;
  height: 148%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
  color: #2563EB;
}

.sketch-loop-svg path,
.sketch-loop-path {
  stroke: #2563EB;
  stroke-width: 2.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: drawSketchLoopContinuous 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.25));
}

@keyframes drawSketchLoopContinuous {
  0% {
    stroke-dashoffset: 640;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
    transform: scale(1);
  }
  88% {
    transform: scale(1.02);
  }
  100% {
    stroke-dashoffset: -640;
    opacity: 0;
    transform: scale(1);
  }
}

.hero-subline-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 10px;
}

.hero-sketch-annotation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.035);
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-pill);
  color: #4B5563;
  margin-top: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-sketch-annotation:hover {
  border-color: rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.sketch-arrow-svg {
  color: #4B5563;
  animation: sketchArrowBob 2.8s ease-in-out infinite;
}

@keyframes sketchArrowBob {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px) translateY(-1px);
  }
}

.sketch-annotation-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4B5563;
}

.hero-lead-text {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 620px;
}

.hero-lead-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Category Segment Filter Bar (Mobbin-Style) */
.hero-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.category-segment-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  padding: 5px;
  border-radius: var(--radius-pill);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.04), 
    inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-segment-filter::-webkit-scrollbar {
  display: none;
}

.segment-btn {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid transparent;
}

.cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.segment-btn:hover .cat-dot {
  transform: scale(1.3);
}

.cat-count {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-tertiary);
  transition: all 0.2s ease;
}

.segment-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.segment-btn.active {
  background: linear-gradient(135deg, #1C1C22 0%, #0C0C10 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.segment-btn.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.controls-right-cluster {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Liquid Glass Category Dropdown Selector */
.category-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-pill);
  padding: 2px 14px 2px 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.95);
  transition: all 0.22s ease;
}

.category-dropdown-wrap:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.dropdown-icon-glyph {
  display: inline-flex;
  align-items: center;
  color: var(--text-tertiary);
  margin-right: 6px;
  pointer-events: none;
}

.catalog-category-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 18px 8px 2px;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.dropdown-arrow-svg {
  position: absolute;
  right: 10px;
  color: var(--text-tertiary);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.category-dropdown-wrap:focus-within .dropdown-arrow-svg {
  transform: rotate(180deg);
}

.filter-count-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.035);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.count-number {
  font-weight: 700;
  color: var(--text-primary);
}

/* Curated vs Full Sequenced Archive Toggle Bar */
.archive-toggle-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 20px;
}

.btn-archive-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.05),
    inset 0 1.5px 1.5px rgba(255, 255, 255, 1);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-archive-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.08),
    inset 0 1.5px 1.5px rgba(255, 255, 255, 1);
  border-color: rgba(37, 99, 235, 0.35);
}

.archive-toggle-icon {
  display: inline-flex;
  align-items: center;
  color: #2563EB;
}

.archive-toggle-chevron {
  transition: transform 0.28s ease;
  color: var(--text-tertiary);
}

.btn-archive-toggle.is-expanded .archive-toggle-chevron {
  transform: rotate(180deg);
}

/* Category Sequenced Section Dividers (When Full Archive is Expanded) */
.category-sequenced-divider {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.03),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.category-sequenced-divider:first-of-type {
  margin-top: 10px;
}

.divider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.divider-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.divider-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.divider-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════
   STYLIZED KINETIC ANIMATION-STYLE MOTION BAND
   (Fluid floating liquid glass motion capsules)
══════════════════════════════════════════ */
.kinetic-motion-section {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  margin-bottom: 40px;
  position: relative;
  user-select: none;
}

.kinetic-motion-track {
  display: flex;
  width: max-content;
  animation: glideMotionTrack 55s linear infinite;
  will-change: transform;
}

.kinetic-motion-section:hover .kinetic-motion-track {
  animation-play-state: paused;
}

.motion-capsules-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  white-space: nowrap;
}

.motion-glass-capsule {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.035), 
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              background 0.3s ease;
  cursor: default;
}

.motion-glass-capsule:hover {
  transform: translateY(-4px) scale(1.04) !important;
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.1);
}

/* Staggered Sine-Wave Floating Animations */
.float-1 { animation: floatWave1 3.2s ease-in-out infinite; }
.float-2 { animation: floatWave2 3.6s ease-in-out infinite 0.25s; }
.float-3 { animation: floatWave1 3.4s ease-in-out infinite 0.5s; }
.float-4 { animation: floatWave2 3.8s ease-in-out infinite 0.15s; }
.float-5 { animation: floatWave1 3.3s ease-in-out infinite 0.65s; }
.float-6 { animation: floatWave2 3.5s ease-in-out infinite 0.4s; }

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

@keyframes floatWave2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.capsule-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.beacon-cyan { background: #06B6D4; box-shadow: 0 0 8px #06B6D4; }
.beacon-lime { background: #84CC16; box-shadow: 0 0 8px #84CC16; }
.beacon-rose { background: #F43F5E; box-shadow: 0 0 8px #F43F5E; }
.beacon-purple { background: #A855F7; box-shadow: 0 0 8px #A855F7; }
.beacon-blue { background: #3B82F6; box-shadow: 0 0 8px #3B82F6; }
.beacon-amber { background: #F59E0B; box-shadow: 0 0 8px #F59E0B; }
.beacon-emerald { background: #10B981; box-shadow: 0 0 8px #10B981; }

.capsule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.capsule-name {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111111;
  text-transform: uppercase;
}

.capsule-sub-pill {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
}

@keyframes glideMotionTrack {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ══════════════════════════════════════════
   SCROLL-DRIVEN REVEAL SYSTEM
══════════════════════════════════════════ */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   03 — WORK / PROJECTS GRID (Mobbin-Inspired)
══════════════════════════════════════════ */
.work-section {
  padding: 30px 0 100px;
}

.projects-masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Dynamic Sheen Follower inside card */
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 320px at var(--card-mouse-x, 50%) var(--card-mouse-y, 50%), rgba(255, 255, 255, 0.18), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 7;
}

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

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.09), 0 4px 16px rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.16);
}

.project-card.featured-wide {
  grid-column: span 2;
}

/* Media Viewport */
.project-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #121214;
  overflow: hidden;
  cursor: pointer;
}

.project-media-wrap.aspect-portrait {
  aspect-ratio: 16/11;
}

.project-media-wrap.aspect-9-16 {
  aspect-ratio: 9/14;
}

.badge-aspect-pill {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-aspect-pill.is-shorts {
  background: rgba(244, 63, 94, 0.22);
  border-color: rgba(244, 63, 94, 0.5);
  color: #FB7185;
}

.badge-aspect-pill.is-commercial {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.45);
  color: #60A5FA;
}

.project-poster-canvas {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.project-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.project-media-wrap:hover .project-poster-canvas,
.project-media-wrap:hover .project-poster-img {
  transform: scale(1.04);
}

/* Moody, High-Contrast Cinematic 3D Art Canvas Backdrops */
.bg-gradient-01 {
  background: radial-gradient(circle at 75% 30%, rgba(59, 130, 246, 0.32) 0%, transparent 60%),
              radial-gradient(circle at 25% 75%, rgba(30, 41, 59, 0.5) 0%, transparent 65%),
              linear-gradient(145deg, #0F1117 0%, #07080B 100%);
}
.bg-gradient-02 {
  background: radial-gradient(circle at 80% 30%, rgba(225, 29, 72, 0.28) 0%, transparent 58%),
              radial-gradient(circle at 20% 75%, rgba(76, 29, 149, 0.32) 0%, transparent 62%),
              linear-gradient(145deg, #130B14 0%, #08050A 100%);
}
.bg-gradient-03 {
  background: radial-gradient(circle at 75% 35%, rgba(217, 119, 6, 0.3) 0%, transparent 58%),
              radial-gradient(circle at 25% 75%, rgba(180, 83, 9, 0.2) 0%, transparent 62%),
              linear-gradient(145deg, #15100B 0%, #090705 100%);
}
.bg-gradient-04 {
  background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.26) 0%, transparent 58%),
              radial-gradient(circle at 30% 70%, rgba(13, 148, 136, 0.22) 0%, transparent 62%),
              linear-gradient(145deg, #0A1411 0%, #050A08 100%);
}
.bg-gradient-05 {
  background: radial-gradient(circle at 75% 30%, rgba(124, 58, 237, 0.28) 0%, transparent 58%),
              radial-gradient(circle at 25% 75%, rgba(37, 99, 235, 0.24) 0%, transparent 62%),
              linear-gradient(145deg, #100E1C 0%, #07060D 100%);
}
.bg-gradient-06 {
  background: radial-gradient(circle at 70% 30%, rgba(212, 163, 115, 0.28) 0%, transparent 58%),
              radial-gradient(circle at 30% 70%, rgba(100, 116, 139, 0.25) 0%, transparent 62%),
              linear-gradient(145deg, #141315 0%, #080809 100%);
}

.poster-inner-art {
  text-align: center;
  z-index: 2;
  padding: 24px;
}

.art-badge-code {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.art-spec-title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Floating Badges on Video Card */
.media-top-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.badge-pill-light {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Category-specific Vibrant Badges */
.badge-cat-3d {
  background: rgba(6, 182, 212, 0.22);
  border-color: rgba(6, 182, 212, 0.45);
  color: #22D3EE;
}

.badge-cat-ai-ugc {
  background: rgba(244, 63, 94, 0.22);
  border-color: rgba(244, 63, 94, 0.45);
  color: #FB7185;
}

.badge-cat-ai-motion {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(139, 92, 246, 0.45);
  color: #A78BFA;
}

.badge-cat-commercials {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.45);
  color: #FBBF24;
}

.badge-duration {
  background: rgba(0, 0, 0, 0.8);
}

/* Animated Soundwave Visualizer Bars */
.soundwave-bars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 10px;
  margin-left: 4px;
}

.soundwave-bar {
  width: 2px;
  background: #10B981;
  border-radius: 1px;
  height: 3px;
  transition: height 0.2s ease;
}

.project-card:hover .soundwave-bar:nth-child(1) {
  animation: soundBounce 0.75s ease-in-out infinite 0.1s;
}
.project-card:hover .soundwave-bar:nth-child(2) {
  animation: soundBounce 0.75s ease-in-out infinite 0.25s;
}
.project-card:hover .soundwave-bar:nth-child(3) {
  animation: soundBounce 0.75s ease-in-out infinite 0.18s;
}
.project-card:hover .soundwave-bar:nth-child(4) {
  animation: soundBounce 0.75s ease-in-out infinite 0.32s;
}

@keyframes soundBounce {
  0%, 100% { height: 3px; }
  50% { height: 10px; }
}

/* Center Tactile Play Button with Pulsing Ripple */
.card-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s var(--ease-tactile), background 0.28s ease;
}

.card-play-trigger::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.project-card:hover .card-play-trigger::after {
  animation: playRipple 1.6s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes playRipple {
  0% {
    opacity: 0.9;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.card-play-trigger svg {
  margin-left: 3px;
}

.project-card:hover .card-play-trigger {
  transform: translate(-50%, -50%) scale(1.12);
  background: #FFFFFF;
}

/* Project Card Info Block */
.project-info-block {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.project-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 16px;
}

.project-client-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

.project-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
}

.project-summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.project-tags-wrap {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  background: var(--surface-subtle);
  padding: 3px 8px;
  border-radius: 4px;
}

.btn-open-study {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-fast);
}

.btn-open-study:hover {
  color: #0065FF;
}

/* ══════════════════════════════════════════
   04 — SERVICES SECTION (Interactive Disclosure)
══════════════════════════════════════════ */
.services-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.service-card-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.service-card-row:hover {
  background: #FAFAFA;
}

.service-head-trigger {
  width: 100%;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr 48px;
  align-items: center;
  text-align: left;
  gap: 24px;
  cursor: pointer;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.service-main-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.service-tagline-text {
  font-size: 14.5px;
  color: var(--text-secondary);
}

.service-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-primary);
  transition: transform 0.3s var(--ease-tactile), background 0.3s ease;
}

.service-card-row.open .service-toggle-icon {
  transform: rotate(45deg);
  background: var(--text-primary);
  color: var(--text-inverse);
  border-color: var(--text-primary);
}

.service-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-tactile), padding 0.4s var(--ease-tactile);
  padding: 0 16px 0 104px;
}

.service-card-row.open .service-expand-body {
  max-height: 300px;
  padding-bottom: 36px;
}

.service-inner-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 18px;
}

.service-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-primary);
}

.service-meta-box {
  background: var(--surface-subtle);
  padding: 18px 20px;
  border-radius: var(--radius-inner);
}

.meta-box-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.meta-box-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   05 — PROCESS PIPELINE
══════════════════════════════════════════ */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.process-step-card {
  background: var(--surface);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.process-step-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--text-primary), transparent);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-card:hover::after {
  left: 100%;
}

.process-step-card:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   06 — ABOUT SECTION
══════════════════════════════════════════ */
.about-card-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: flex-start;
}

/* ══════════════════════════════════════════
   ABOUT PORTRAIT CARD (Liquid Glass & Sized Cleanly)
══════════════════════════════════════════ */
.about-portrait-card {
  width: 100%;
  max-width: 380px;
  margin-bottom: 24px;
  position: relative;
}

.portrait-glass-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 20px 48px -12px rgba(0, 0, 0, 0.1),
    0 4px 14px rgba(0, 0, 0, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.portrait-glass-viewport:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.15);
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top 10% center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-glass-viewport:hover .about-portrait-img {
  transform: scale(1.03);
}

.portrait-glass-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Interactive Founder Video Play Button Overlay */
.portrait-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.portrait-play-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid #FFFFFF;
  color: #0E0E12;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-play-trigger svg {
  margin-left: 3px;
}

.portrait-play-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.about-portrait-card:hover .portrait-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.about-portrait-card:hover .portrait-play-trigger {
  background: #FFFFFF;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}

.portrait-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(18, 18, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.verified-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  flex-shrink: 0;
}

.portrait-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.portrait-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.portrait-role {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.portrait-corner-mark {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.corner-monogram-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.about-spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.spec-row {
  display: flex;
  flex-direction: column;
}

.spec-k {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.spec-v {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.about-headline {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 10px 0 24px;
}

.about-prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Animated Telemetry Stats Grid */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
  padding: 24px;
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-inner);
}

.stat-counter-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-counter-val {
  font-family: var(--font-mono);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-counter-lbl {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.tools-matrix-block {
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.tools-heading {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

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

.tool-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   07 — CONTACT & SOCIAL (Minimal CTA)
══════════════════════════════════════════ */
.contact-cta-card {
  position: relative;
  background: #08080B;
  color: var(--text-inverse);
  border-radius: var(--radius-card);
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Ambient Background Video Container */
.contact-bg-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.contact-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: contrast(108%) brightness(102%);
  transition: opacity 0.5s ease;
}

/* Ultra-light translucent vignette so the video is vividly visible */
.contact-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(10, 10, 14, 0.08) 0%, rgba(8, 8, 12, 0.28) 60%, rgba(5, 5, 8, 0.48) 100%),
    linear-gradient(to bottom, rgba(10, 10, 14, 0.05) 0%, rgba(5, 5, 8, 0.30) 100%);
  pointer-events: none;
}

/* Sleek Liquid Glass Panel for Crystal-Clear Text Legibility */
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 36px;
  background: rgba(10, 10, 14, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.contact-cta-card .section-label {
  color: #A1A1AA;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.contact-title {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.contact-sub {
  font-size: 16px;
  color: #F4F4F5;
  line-height: 1.65;
  margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.contact-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.contact-actions-row .btn-primary {
  background: #FFFFFF;
  color: #0F0F12 !important;
  border-color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.contact-actions-row .btn-primary:hover {
  background: #F4F4F6;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.contact-actions-row .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-actions-row .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.social-links-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
  flex-wrap: wrap;
}

.social-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link-item:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.social-icon-wrap {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.social-platform-name {
  letter-spacing: 0.01em;
}

.social-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-link-item:hover .social-arrow {
  color: #FFFFFF;
  transform: translate(2px, -2px);
}

/* ══════════════════════════════════════════
   08 — FOOTER
══════════════════════════════════════════ */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-wrap {
  margin-bottom: 8px;
}

.footer-brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-brand-logo:hover {
  opacity: 1;
  transform: scale(1.03);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-back-to-top:hover {
  color: var(--text-primary);
}

/* Footer Ecosystem Center Bar */
.footer-center {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.footer-eco-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-eco-link:hover {
  color: var(--text-primary);
}

.footer-sep {
  color: var(--text-tertiary);
  font-size: 8px;
}

/* Mobile Menu Ecosystem Bar */
.mobile-ecosystem-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-eco-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-sans);
}

.eco-card-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-dot-blue {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3B82F6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
}

.eco-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.eco-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   09 — YOUTUBE CINEMA MODAL
══════════════════════════════════════════ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal-overlay.open {
  display: flex;
}

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

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: var(--surface-dark);
  color: #FFFFFF;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 2;
  animation: modalEnter 0.3s var(--ease-tactile);
  transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Adaptive Smartphone-Style Vertical Video Modal for 9:16 Shorts */
.video-modal-dialog.is-vertical-video {
  max-width: 420px;
  border-radius: 24px;
}

.video-modal-dialog.is-vertical-video .video-viewport-frame {
  aspect-ratio: 9/16;
  max-height: 72vh;
}

@keyframes modalEnter {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.video-modal-topbar {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
}

.modal-category {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.modal-close-btn {
  color: #FFFFFF;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.video-viewport-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  position: relative;
}

.video-viewport-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-bottombar {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-dark);
  gap: 20px;
  flex-wrap: wrap;
}

.modal-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
}

.modal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.modal-tag-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════════
   10 — COMPREHENSIVE RESPONSIVE DESIGN FOR ALL DEVICES
══════════════════════════════════════════ */

/* Laptops & Tablets Landscape (<= 1100px) */
@media (max-width: 1100px) {
  .hero-split-grid {
    gap: 32px;
  }
  .hero-story-sketch-container {
    max-width: 400px;
    height: 300px;
  }
  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tablets & Small Devices (<= 860px) */
@media (max-width: 860px) {
  .site-container {
    padding: 0 16px;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: clip;
  }
  .dock-wrapper {
    top: max(8px, env(safe-area-inset-top));
    padding: 0 10px;
    width: 100vw;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .floating-dock {
    height: 48px;
    padding: 0 10px;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 9999px;
  }
  .dock-nav {
    display: none;
  }
  .dock-search-box {
    display: none !important;
  }
  .btn-brandier-tv,
  .btn-main-studio {
    display: none !important;
  }
  .dock-brand {
    gap: 7px;
    flex-shrink: 0;
  }
  .brand-monogram-img {
    height: 22px;
  }
  .brand-full-name {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .brand-last {
    display: inline !important; /* Full Name ANAS BIN MEHBOOB always visible */
  }
  .brand-discipline {
    display: none;
  }
  .dock-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .mobile-search-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
  }
  .btn-dock-cta {
    padding: 5px 10px;
    font-size: 10.5px;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 4px;
  }
  .btn-dock-cta svg {
    width: 10px;
    height: 10px;
  }
  .mobile-dock-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5px;
    padding: 4px;
  }

  /* ══════════════════════════════════════════
     HERO SECTION ON MOBILE & SMALL SCREENS:
     - Zero Video Scene Cropping (Full-frame display with ambient blurred fill)
     - Luxury 3-Line Syne Headline (Larger, commanding, high-end editorial feel)
     - Decluttered & Pristine (No overlapping sketch lines, zero khichri)
  ══════════════════════════════════════════ */
  .hero-section {
    padding: 84px 0 28px;
    overflow: hidden;
    min-height: auto;
  }
  
  /* Mobile Background Video - Dedicated 9:16 Vertical Video (No Scene Cutting) */
  .hero-bg-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .hero-video-desktop {
    display: none !important;
  }
  .hero-video-mobile {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 0.92 !important;
    filter: contrast(106%) saturate(106%) !important;
  }

  .hero-video-scrim {
    background: 
      radial-gradient(ellipse at 50% 28%, rgba(250, 250, 251, 0.78) 0%, rgba(250, 250, 251, 0.42) 55%, rgba(250, 250, 251, 0.74) 100%),
      linear-gradient(to bottom, rgba(250, 250, 251, 0.52) 0%, rgba(250, 250, 251, 0.16) 45%, rgba(250, 250, 251, 0.84) 100%);
  }

  .hero-split-grid {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .hero-left-col {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
  }

  /* Restored Minimalist Storytelling Sketch Animation on Mobile (Cleanly placed, no text overlap) */
  .hero-right-col {
    display: flex !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    height: 170px !important;
    margin: 14px auto 14px !important;
    z-index: 2 !important;
    pointer-events: none;
    opacity: 0.88 !important;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  .hero-story-sketch-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    margin: 0 auto;
    opacity: 0.92 !important;
    overflow: hidden;
  }
  .story-sketch-svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 270px !important;
    overflow: hidden;
  }

  .hero-sketch-annotation {
    display: none !important;
  }

  /* Animated Circular Sketch Highlight on 3D Motion (Active on Mobile) */
  .sketch-loop-svg {
    display: block !important;
    position: absolute;
    left: -10%;
    top: -20%;
    width: 120%;
    height: 140%;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
  }
  .sketch-loop-path {
    stroke-width: 2.4px !important;
  }

  /* Large, Commanding 3-Line Headline */
  .hero-title-block {
    max-width: 100% !important;
    margin-bottom: 16px !important;
  }
  .hero-main-title {
    font-family: var(--font-display) !important;
    font-size: clamp(34px, 8.8vw, 44px) !important;
    font-weight: 800 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.035em !important;
    color: #111827 !important;
    margin-bottom: 16px !important;
    text-align: left !important;
  }
  .hero-title-line {
    display: block !important;
  }
  .hero-title-line.line-1 {
    font-size: 0.94em;
    color: #1F2937;
  }
  .hero-title-line.line-2 {
    margin: 2px 0;
  }
  .hero-title-line.line-3 {
    font-size: 0.94em;
    color: #1F2937;
  }
  .hero-title-accent {
    background: linear-gradient(135deg, #0F172A 0%, #2563EB 55%, #06B6D4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
    display: inline-block !important;
  }
  .hero-lead-text {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #4B5563 !important;
    margin-bottom: 20px !important;
  }

  /* AI Video Model Buttons: CLEAN 2-COLUMN MINIMAL GRID (No giant cards, No khichri) */
  .hero-ai-tools-bar {
    margin-top: 22px;
    margin-bottom: 18px;
    width: 100%;
  }
  .ai-tools-label {
    font-size: 9px;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
    color: var(--text-tertiary);
  }
  .ai-model-buttons-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .ai-app-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    font-size: 11px;
    gap: 6px;
    border-radius: var(--radius-pill);
    justify-content: flex-start;
  }
  .ai-app-btn .app-btn-icon-wrap {
    width: 18px;
    height: 18px;
  }
  .ai-app-btn .app-btn-title {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ai-app-btn .app-btn-tag {
    display: none; /* Hide tags on mobile to keep them ultra-clean and uncluttered */
  }
  .ai-app-btn[data-model="runway"] {
    grid-column: span 2;
    justify-content: center;
    max-width: 190px;
    margin: 0 auto;
  }

  /* Category Filter Segment: 2-COLUMN MINIMAL GRID */
  .hero-controls-bar {
    padding-top: 14px;
    gap: 10px;
    width: 100%;
  }
  .category-segment-filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
  }
  .segment-btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 6px 10px;
    font-size: 11px;
  }
  .controls-right-cluster {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .category-dropdown-wrap {
    flex: 1;
    max-width: calc(100% - 110px);
  }
  .catalog-category-select {
    width: 100%;
    font-size: 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .btn-archive-toggle {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 12px 16px;
    text-align: center;
  }
  .category-sequenced-divider {
    padding: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .divider-title {
    font-size: 15px;
  }

  .hero-subline-row {
    flex-direction: column;
    gap: 14px;
  }
  .hero-sketch-annotation {
    margin-top: 0;
  }

  /* Projects & Content */
  .projects-masonry-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-card.featured-wide {
    grid-column: span 1;
  }
  .service-head-trigger {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
  }
  .service-tagline-text {
    display: none;
  }
  .service-expand-body {
    padding-left: 16px;
  }
  .service-inner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-card-box {
    padding: 28px 18px;
  }
  .about-portrait-card {
    max-width: 290px;
    margin: 0 auto 20px;
  }
}

/* Standard Mobile Devices (<= 600px) */
@media (max-width: 600px) {
  .site-container {
    padding: 0 12px;
  }
  .section {
    padding: 54px 0;
  }
  .section-title {
    font-size: clamp(25px, 7.2vw, 34px);
    margin-bottom: 20px;
  }

  .brand-full-name {
    font-size: 11px;
  }

  /* Hero Elements: 3-line bold Syne headline */
  .hero-main-title {
    font-size: clamp(33px, 9vw, 42px) !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .hero-lead-text {
    font-size: 14px;
    line-height: 1.58;
  }
  .hero-app-badge-row {
    gap: 8px;
    margin-bottom: 16px;
  }
  .mobbin-app-squircle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .squircle-icon-stage {
    width: 30px;
    height: 30px;
  }
  .hero-status-pill {
    padding: 5px 10px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .status-pill-text {
    font-size: 7.8px;
    letter-spacing: 0.08em;
  }
  .status-pill-sub {
    font-size: 7.8px;
  }

  /* Projects & Cinema Modal */
  .project-card {
    border-radius: 18px;
  }
  .card-bottom-bar {
    padding: 14px;
  }
  .project-title {
    font-size: 16.5px;
  }
  .video-modal-dialog {
    width: 100%;
    max-width: 100%;
    margin: auto 0 0 0;
    border-radius: 20px 20px 0 0;
    padding: 14px;
    max-height: 88vh;
  }

  /* Process Section */
  .process-track {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Contact Section with Background Video */
  .contact-cta-card {
    padding: 32px 12px;
    border-radius: 18px;
  }
  .cta-inner {
    padding: 24px 14px;
    border-radius: 16px;
    width: 100%;
  }
  .contact-title {
    font-size: clamp(22px, 6.2vw, 32px);
    margin-bottom: 10px;
  }
  .contact-sub {
    font-size: 13.5px;
    margin-bottom: 22px;
  }
  .contact-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .contact-actions-row a, 
  .contact-actions-row button {
    width: 100%;
    justify-content: center;
  }
  .social-links-bar {
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    align-items: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-brand-wrap {
    justify-content: center;
  }
}

/* Compact Small Screens & iPhone SE (<= 380px) */
@media (max-width: 380px) {
  .site-container {
    padding: 0 8px;
  }
  .dock-wrapper {
    padding: 0 6px;
  }
  .floating-dock {
    height: 44px;
    padding: 0 6px 0 8px;
    gap: 4px;
  }
  .brand-monogram-img {
    height: 18px;
  }
  .brand-full-name {
    font-size: 10px;
  }
  .mobile-search-btn {
    width: 26px;
    height: 26px;
  }
  .btn-dock-cta {
    padding: 4px 8px;
    font-size: 9.5px;
  }
  .btn-dock-cta .btn-arrow-icon {
    display: none;
  }
  .mobile-dock-toggle {
    width: 26px;
    height: 26px;
    padding: 3px;
  }
  .hero-main-title {
    font-size: 29px !important;
    line-height: 1.14 !important;
  }
  .hero-right-col {
    max-width: 260px;
    height: 210px;
  }
  .cta-inner {
    padding: 18px 10px;
  }
}

/* ══════════════════════════════════════════
   11 — ACCESSIBILITY (Reduced Motion)
══════════════════════════════════════════ */
@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;
  }
}
