/* ==========================================================================
   HARE KRISHN GRAPHICS — PREMIUM PORTFOLIO DESIGN SYSTEM
   ========================================================================== */

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

:root {
  --bg-dark: #070304;
  --bg-card: rgba(18, 18, 22, 0.68);
  --bg-card-hover: rgba(26, 26, 32, 0.82);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.2);
  --text-white: #ffffff;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --accent-sparkle: #e2e8f0;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Bebas Neue', 'Syne', sans-serif;
}

html {
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: clip;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  scroll-padding-bottom: 90px;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: clip;
  position: relative;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   FIXED BACKGROUND CANVAS & VIGNETTE
   ========================================================================== */

.canvas-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-dark);
}

#animationCanvas {
  display: block;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
}

.canvas-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 35%,
    transparent 15%,
    rgba(7, 3, 4, 0.45) 55%,
    rgba(7, 3, 4, 0.88) 85%
  );
  pointer-events: none;
}

/* ==========================================================================
   CONTENT WRAPPER & GLASSMORPHISM
   ========================================================================== */

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   HEADER / NAVBAR (FLOATING CENTERED BOTTOM DOCK)
   ========================================================================== */

.site-header {
  position: fixed;
  bottom: 24px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  top: auto;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-capsule {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px;
  background: rgba(14, 14, 20, 0.58);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.7),
              0 -2px 14px rgba(0, 0, 0, 0.3),
              0 0 0 1px rgba(255, 255, 255, 0.03),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .nav-capsule {
  background: rgba(10, 10, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8),
              0 -4px 18px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(0.98);
}

/* Brand inside capsule */
.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-white);
  padding: 5px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-brand:hover {
  background: rgba(255, 255, 255, 0.08);
}

.logo-box-mini {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 2px 4px 2px 6px;
  border-left: 2px solid #ffffff;
  line-height: 1;
  display: inline-block;
}

/* Divider inside capsule */
.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 2px;
  flex-shrink: 0;
}

/* Nav Links Group */
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Pill Navigation Item */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.nav-item-icon {
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease, stroke 0.25s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover .nav-item-icon {
  transform: translateY(-1px);
  opacity: 1;
}

/* Active Pill State */
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
              0 2px 8px rgba(0, 0, 0, 0.35);
}

.nav-link.active .nav-item-icon {
  stroke: #ffffff;
  opacity: 1;
}

/* Pill CTA Button (Let's Talk) */
.nav-talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: #080304;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid #ffffff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 2px;
}

.nav-talk-btn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.22);
}

/* Common Pill Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-white {
  background: #ffffff;
  color: #080304;
  border: 1px solid #ffffff;
}

.btn-white:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 20px 0 40px;
}

.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-left {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.sparkle {
  font-size: 14px;
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 11vw, 9.5rem);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

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

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin-top: 6px;
  min-height: 5.4em;
  position: relative;
}

.type-text {
  color: #e2e8f0;
  white-space: normal;
}

.type-cursor {
  display: inline-block;
  font-weight: 300;
  font-size: 1.1em;
  color: #60a5fa;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.95), 0 0 16px rgba(96, 165, 250, 0.5);
  margin-left: 2px;
  animation: cursorBlink 0.75s infinite ease-in-out;
  transform: translateY(-1px);
  user-select: none;
}

@keyframes cursorBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

/* Freelance Floating Stamp Badge */
.hero-right {
  padding-bottom: 24px;
}

.freelance-badge {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  animation: rotateRing 25s linear infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  z-index: 2;
}

.badge-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.badge-main {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
  margin: 2px 0;
}

.badge-action {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

/* ==========================================================================
   STATS SECTION BAR
   ========================================================================== */

.stats-section {
  width: 100%;
}

.stats-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 32px 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-icon {
  font-size: 18px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-glass);
}

/* ==========================================================================
   FEATURED WORK SECTION
   ========================================================================== */

.featured-work-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.section-link:hover {
  opacity: 0.8;
  transform: translateX(4px);
}

/* ==========================================================================
   EXPERIENCE TIMELINE / INTERACTIVE LIST
   ========================================================================== */

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.timeline-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.timeline-item.active {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.timeline-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
}

.timeline-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.company-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  flex-shrink: 0;
  color: #ffffff;
}

.company-logo-badge.dual-badge {
  gap: 8px;
  padding: 8px 12px;
}

.company-logo-img {
  height: 15px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  display: block;
}

.badge-separator {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 400;
}

.timeline-title-group {
  display: flex;
  flex-direction: column;
}

.timeline-role {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.timeline-company-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.company-name {
  color: #ffffff;
  font-weight: 600;
}

.meta-dot {
  color: var(--text-dim);
}

.work-type {
  color: var(--text-muted);
}

.timeline-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.timeline-date-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.timeline-location-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.timeline-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.timeline-item.active .timeline-toggle-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.timeline-body {
  padding: 0 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  max-height: 600px;
  opacity: 1;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:not(.active) .timeline-body {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-top-color: transparent;
  pointer-events: none;
}

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

.timeline-bullets li {
  font-size: 13.5px;
  line-height: 1.6;
  color: #d1d5db;
  position: relative;
  padding-left: 20px;
}

.timeline-bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.skill-tag {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   CAPABILITIES & TOOLS / EDUCATION
   ========================================================================== */

.capabilities-tools-section {
  width: 100%;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
}

.column-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Left: Capabilities 2-col mini grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-icon {
  color: var(--text-white);
  display: flex;
  align-items: center;
}

.capability-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 4px;
}

.capability-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Right Stack */
.right-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.tool-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.tool-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.python-icon {
  background: #1e293b;
  color: #38bdf8;
  border: 1px solid #38bdf8;
}

.sql-icon {
  background: #064e3b;
  color: #34d399;
  border: 1px solid #34d399;
}

.tableau-icon {
  background: #431407;
  color: #fb923c;
  border: 1px solid #fb923c;
}

.pbi-icon {
  background: #422006;
  color: #facc15;
  border: 1px solid #facc15;
}

.bq-icon {
  background: #172554;
  color: #60a5fa;
  border: 1px solid #60a5fa;
}

.ps-icon {
  background: #001e36;
  color: #31a8ff;
  border: 1px solid #31a8ff;
}

.lr-icon {
  background: #002b36;
  color: #38bdf8;
  border: 1px solid #38bdf8;
}

.pr-icon {
  background: #2e0854;
  color: #e879f9;
  border: 1px solid #e879f9;
}

.tool-text-group {
  display: flex;
  flex-direction: column;
}

.tool-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dim);
  line-height: 1;
}

.tool-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Education List */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.education-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
}

.education-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  flex-shrink: 0;
}

.education-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.education-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ==========================================================================
   MY DESIGN PROCESS SECTION
   ========================================================================== */

.process-section {
  width: 100%;
}

.process-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.process-title {
  margin-bottom: 4px;
}

.process-steps-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
}

.step-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.step-description {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  min-height: 48px;
}

.step-icon-wrapper {
  color: var(--text-white);
  display: flex;
  align-items: center;
}

.step-arrow-divider {
  font-size: 20px;
  color: var(--text-dim);
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CALL TO ACTION (CTA) BANNER
   ========================================================================== */

.cta-section {
  width: 100%;
}

.cta-banner {
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr;
  align-items: center;
  gap: 36px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.cta-title-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-action-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-availability {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 260px;
}

.cta-contact-col {
  border-left: 1px solid var(--border-glass);
  padding-left: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  width: 100%;
  padding: 24px 0 100px;
  padding-bottom: max(95px, calc(65px + env(safe-area-inset-bottom, 0px)));
  border-top: 1px solid var(--border-glass);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.connect-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: #ffffff;
  color: #080304;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE, TABLET & MULTI-DEVICE)
   ========================================================================== */

/* Tablet & Medium Screens (769px - 1024px) */
@media (max-width: 1024px) {
  html {
    scroll-padding-top: 40px;
    scroll-padding-bottom: 85px;
  }

  .content-wrapper {
    padding: 0 20px;
    gap: 60px;
  }

  .site-header {
    top: auto;
    bottom: 20px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 0 12px;
  }

  .nav-capsule {
    gap: 3px;
    padding: 4px 5px;
  }

  .nav-brand {
    padding: 4px 8px;
  }

  .logo-box-mini {
    font-size: 14px;
    padding: 2px 3px 2px 5px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 11.5px;
    gap: 5px;
  }

  .nav-talk-btn {
    padding: 6px 12px;
    font-size: 11.5px;
  }

  .hero-section {
    min-height: 75vh;
  }

  .hero-title {
    font-size: clamp(4.2rem, 9vw, 6.5rem);
  }

  .two-column-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-arrow-divider {
    transform: rotate(90deg);
    margin: 4px auto;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 30px;
  }

  .cta-contact-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
  }
}

/* Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 30px;
    scroll-padding-bottom: 80px;
  }

  .content-wrapper {
    padding: 0 16px;
    gap: 48px;
  }

  /* Optimized Mobile Canvas Scrim/Vignette */
  .canvas-vignette-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 3, 4, 0.7) 0%,
      rgba(7, 3, 4, 0.3) 25%,
      rgba(7, 3, 4, 0.6) 55%,
      rgba(7, 3, 4, 0.96) 90%
    );
  }

  /* Navbar */
  .site-header {
    top: auto;
    bottom: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    padding: 0 10px;
  }

  .nav-capsule {
    gap: 2px;
    padding: 4px;
    max-width: calc(100vw - 20px);
  }

  .nav-brand {
    padding: 4px 6px;
  }

  .logo-box-mini {
    font-size: 13.5px;
    padding: 1px 3px 1px 4px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding: 6px 9px;
    font-size: 11px;
    gap: 4px;
  }

  .nav-talk-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .brand-logo {
    gap: 10px;
  }

  .logo-box {
    font-size: 20px;
    padding: 2px 5px;
  }

  .brand-title {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .btn-pill {
    padding: 9px 16px;
    font-size: 11.5px;
    gap: 6px;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 16px 0 28px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-left {
    max-width: 100%;
    gap: 14px;
  }

  .eyebrow-tag {
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12.5vw, 4.4rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-cta-group {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-cta-group .btn-pill {
    flex: 1;
    min-width: 130px;
    justify-content: center;
    text-align: center;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4px 0 0;
  }

  .freelance-badge {
    width: 130px;
    height: 130px;
  }

  .badge-main {
    font-size: 24px;
  }

  .badge-sub {
    font-size: 9px;
  }

  .badge-action {
    font-size: 10.5px;
  }

  /* Stats 2x2 Grid */
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
    padding: 22px 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-label {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }

  /* Section Header */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-title {
    font-size: 11.5px;
    letter-spacing: 0.12em;
  }

  .section-link {
    font-size: 11px;
  }

  /* Experience Timeline - Mobile 2-Tier Row Layout */
  .timeline-item {
    border-radius: 16px;
  }

  .timeline-header {
    padding: 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .timeline-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .company-logo-badge {
    height: 34px;
    padding: 6px 10px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .company-logo-badge.dual-badge {
    padding: 6px 8px;
    gap: 5px;
  }

  .company-logo-img {
    height: 13px;
    max-width: 75px;
  }

  .timeline-title-group {
    flex: 1;
    min-width: 0;
  }

  .timeline-role {
    font-size: 16px;
    line-height: 1.25;
    word-break: break-word;
  }

  .timeline-company-meta {
    font-size: 11px;
    margin-top: 3px;
    flex-wrap: wrap;
    gap: 5px;
  }

  .company-name {
    font-size: 11px;
    white-space: normal;
  }

  .timeline-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 8px;
  }

  .timeline-date-badge {
    font-size: 10.5px;
    padding: 4px 11px;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  .timeline-location-tag {
    font-size: 10.5px;
  }

  .timeline-toggle-icon {
    width: 28px;
    height: 28px;
  }

  .timeline-body {
    padding: 0 16px 18px;
    gap: 14px;
  }

  .timeline-bullets li {
    font-size: 12.5px;
    line-height: 1.5;
    padding-left: 16px;
  }

  .timeline-skills {
    gap: 6px;
  }

  .skill-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Capabilities & Tools */
  .column-card {
    padding: 22px 16px;
    gap: 18px;
    border-radius: 16px;
  }

  .column-title {
    font-size: 11.5px;
  }

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

  .capability-item {
    gap: 6px;
  }

  .capability-title {
    font-size: 12.5px;
  }

  .capability-desc {
    font-size: 11.5px;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tool-badge {
    padding: 9px 10px;
    gap: 8px;
    border-radius: 10px;
  }

  .tool-icon-box {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .tool-name {
    font-size: 11px;
  }

  .tool-sub {
    font-size: 8px;
  }

  /* Education */
  .education-list {
    gap: 10px;
  }

  .education-item {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 10px;
  }

  .education-icon-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .education-title {
    font-size: 12px;
  }

  .education-meta {
    font-size: 10px;
  }

  /* Process */
  .process-card {
    padding: 22px 16px;
    gap: 18px;
    border-radius: 16px;
  }

  .process-steps-track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step {
    padding: 14px;
    border-radius: 12px;
    gap: 8px;
  }

  .step-name {
    font-size: 12.5px;
  }

  .step-description {
    font-size: 11px;
    min-height: auto;
  }

  /* CTA */
  .cta-banner {
    padding: 24px 18px;
    gap: 20px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
  }

  .cta-availability {
    font-size: 12px;
    max-width: 100%;
  }

  .cta-contact-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
  }

  .contact-info-list {
    gap: 10px;
  }

  .contact-link {
    font-size: 11.5px;
  }

  /* Footer */
  .site-footer {
    padding: 20px 0 40px;
  }

  .footer-container {
    flex-direction: column-reverse;
    gap: 14px;
    align-items: center;
    text-align: center;
    font-size: 11px;
  }

  .footer-right {
    flex-direction: column;
    gap: 8px;
  }
}

/* Extra Small Mobile (<= 480px: iPhone SE, Small Androids) */
@media (max-width: 480px) {
  html {
    scroll-padding-top: 25px;
    scroll-padding-bottom: 75px;
  }

  .content-wrapper {
    padding: 0 12px;
    gap: 40px;
  }

  .site-header {
    top: auto;
    bottom: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 0 6px;
  }

  .nav-capsule {
    padding: 3px 4px;
    gap: 2px;
  }

  .nav-link {
    padding: 6px 7px;
    font-size: 10.5px;
    gap: 3px;
  }

  .nav-link .nav-text {
    display: none;
  }

  .nav-brand {
    padding: 3px 5px;
  }

  .logo-box-mini {
    font-size: 12.5px;
    padding: 1px 2px 1px 3px;
  }

  .nav-talk-btn span {
    display: none;
  }

  .nav-talk-btn {
    padding: 6px 9px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11.5vw, 3.2rem);
  }

  .brand-title {
    font-size: 11px;
  }

  .btn-pill {
    padding: 8px 12px;
    font-size: 11px;
  }

  .timeline-header {
    padding: 14px 12px;
  }

  .timeline-role {
    font-size: 15px;
  }

  .timeline-date-badge {
    font-size: 9.5px;
    padding: 3px 8px;
  }

  .stat-number {
    font-size: 28px;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .tool-badge {
    padding: 8px;
    gap: 6px;
  }

  .tool-name {
    font-size: 10.5px;
  }
}

/* ==========================================================================
   SCROLL-DRIVEN REVEAL & STAGGER ANIMATIONS
   ========================================================================== */

/* Section-level scroll fade effect (uses opacity & transform only to preserve backdrop-filter blur) */
.section-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.section-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-section.section-fade {
  opacity: 1;
  transform: translateY(0);
}

/* Single element reveal (opacity & transform only for 60fps & no CLS) */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Stagger container items (80ms - 100ms progression) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.64s; }

/* AI Workflow Left-to-Right progression (Steps 01-05 + Dividers) */
.process-steps-track.reveal-stagger > .process-step,
.process-steps-track.reveal-stagger > .step-arrow-divider {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.process-steps-track.reveal-stagger.is-visible > .process-step,
.process-steps-track.reveal-stagger.is-visible > .step-arrow-divider {
  opacity: 1;
  transform: translateY(0);
}

.process-steps-track.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; } /* Step 01 */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; } /* Arrow */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; } /* Step 02 */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; } /* Arrow */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; } /* Step 03 */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; } /* Arrow */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.48s; } /* Step 04 */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.56s; } /* Arrow */
.process-steps-track.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.64s; } /* Step 05 */

/* Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-stagger > *,
  .process-steps-track.reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   PHOTOSHOOT AUTO-PLAYING CAROUSEL SECTION
   ========================================================================== */

.shoots-carousel-section {
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
  overflow: visible;
}

/* Header & Live Status Bar */
.shoots-header-wrapper {
  margin-bottom: 24px;
}

.shoots-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.shoots-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shoots-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-white);
}

.live-pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseLiveDot 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
  display: inline-block;
}

@keyframes pulseLiveDot {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.shoots-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.shoots-controls-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Filter Bar */
.shoots-filter-bar {
  display: inline-flex;
  align-items: center;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.shoot-filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.shoot-filter-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.shoot-filter-btn.active {
  background: #ffffff;
  color: #070304;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

/* Actions: Play/Pause & Arrows */
.shoots-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shoots-ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 24, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shoots-ctrl-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(35, 35, 45, 0.9);
}

.shoots-ctrl-btn.paused {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
}

.shoots-ctrl-btn .ctrl-icon {
  font-size: 9px;
  letter-spacing: -1px;
}

.shoots-nav-arrows {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.shoots-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(24, 24, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.shoots-arrow-btn:hover {
  background: #ffffff;
  color: #070304;
  border-color: #ffffff;
  transform: scale(1.05);
}

.shoots-arrow-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   CAROUSEL VIEWPORT & TRACK
   ========================================================================== */

.shoots-carousel-viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 16px 4px 24px;
}

.shoots-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.shoots-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.shoots-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ==========================================================================
   SHOOT CARD STYLES
   ========================================================================== */

.shoot-card {
  flex: 0 0 320px;
  width: 320px;
  height: 440px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  background: #0d0a0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.45s ease,
              opacity 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.shoot-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 80, 100, 0.45);
  box-shadow: 0 24px 48px -12px rgba(239, 68, 68, 0.25),
              0 12px 28px -6px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shoot-card.filtered-out {
  display: none !important;
}

/* Card Media Wrap */
.card-media-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.shoot-card:hover .card-bg-img {
  transform: scale(1.08);
}

.card-glass-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 3, 4, 0.45) 0%,
    rgba(7, 3, 4, 0.05) 35%,
    rgba(7, 3, 4, 0.75) 70%,
    #070304 100%
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

.shoot-card:hover .card-glass-tint {
  background: linear-gradient(
    180deg,
    rgba(7, 3, 4, 0.35) 0%,
    rgba(7, 3, 4, 0.0) 35%,
    rgba(7, 3, 4, 0.85) 68%,
    #070304 100%
  );
}

/* Card Top Bar & Badges */
.card-top-bar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(12, 10, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.badge-dot-white {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

.card-badge.stat-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(18, 16, 22, 0.65);
}

.card-badge.camera-badge {
  padding: 6px 8px;
}

/* Card Content Bottom */
.card-content-bottom {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.card-tag-pill {
  display: inline-flex;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0;
}

.card-title-sub {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  letter-spacing: -0.01em;
}

.card-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-client-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.loc-dot {
  font-size: 10px;
  color: #f87171;
}

.card-inspect-btn,
.card-join-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.shoot-card:hover .card-inspect-btn,
.shoot-card:hover .card-join-btn {
  background: #ffffff;
  color: #070304;
  border-color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SPECIAL CARD: DISCUSSION / FORUM VARIANT
   ========================================================================== */

.shoot-card-forum {
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-forum-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
              #111116;
  z-index: 1;
}

.forum-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.7;
}

.card-forum-icon {
  font-size: 16px;
  color: #ffffff;
  z-index: 5;
}

.card-forum-tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 5;
}

.card-forum-body {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  margin-bottom: auto;
}

.forum-avatar-stack {
  display: flex;
  align-items: center;
}

.forum-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #111116;
  margin-right: -10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.forum-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forum-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.forum-title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-join-btn.forum-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   CAROUSEL FOOTER / PROGRESS BAR
   ========================================================================== */

.shoots-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 0 4px;
}

.shoots-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.shoots-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6.66%;
  background: linear-gradient(90deg, #f87171, #ffffff);
  border-radius: 999px;
  transition: width 0.15s ease-out;
}

.shoots-counter-badge {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.counter-curr {
  color: #ffffff;
}

.counter-sep {
  opacity: 0.4;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */

.shoot-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.shoot-lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 3, 4, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.lightbox-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  background: rgba(16, 14, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  overflow-y: auto;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.9),
              0 0 60px rgba(239, 68, 68, 0.15);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shoot-lightbox-modal.is-active .lightbox-container {
  transform: scale(1) translateY(0);
}

.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-close-btn:hover {
  background: #ffffff;
  color: #070304;
  transform: rotate(90deg) scale(1.05);
}

.lightbox-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  padding: 32px;
}

/* Lightbox Media Left Column */
.lightbox-media-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lightbox-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  background: #090608;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.lightbox-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-media-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-nav-btn:hover {
  background: #ffffff;
  color: #070304;
  border-color: #ffffff;
}

.lightbox-nav-counter {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Lightbox Info Right Column */
.lightbox-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.lightbox-tags-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lightbox-kicker-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.lightbox-client-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

.lightbox-shoot-title {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lightbox-shoot-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #d1d5db;
}

/* Specs Grid in Lightbox */
.lightbox-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.spec-icon {
  color: #f87171;
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.spec-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-val {
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}

.lightbox-action-row {
  margin-top: 10px;
}

.lightbox-book-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 12px;
}

/* ==========================================================================
   RESPONSIVE STYLES FOR SHOOTS CAROUSEL & LIGHTBOX
   ========================================================================== */

@media (max-width: 900px) {
  .lightbox-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .lightbox-img-wrapper {
    max-height: 380px;
  }

  .lightbox-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .shoots-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .shoots-controls-group {
    width: 100%;
    justify-content: space-between;
  }

  .shoots-filter-bar {
    overflow-x: auto;
    max-width: calc(100vw - 120px);
    scrollbar-width: none;
  }

  .shoot-card {
    flex: 0 0 280px;
    width: 280px;
    height: 400px;
  }

  .card-title {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .shoot-card {
    flex: 0 0 260px;
    width: 260px;
    height: 380px;
  }

  .shoots-filter-bar {
    max-width: 100%;
  }

  .shoots-actions {
    margin-top: 6px;
  }
}

/* ==========================================================================
   CINEMATIC INTRO ANIMATION OVERLAY
   ========================================================================== */

.site-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background-color: #050204;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-intro-overlay.intro-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.06);
  filter: blur(16px);
}

/* Ambient Radial Glow */
.intro-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 92vw);
  height: min(720px, 92vw);
  background: radial-gradient(
    circle at center,
    rgba(239, 68, 68, 0.3) 0%,
    rgba(220, 38, 38, 0.15) 32%,
    rgba(185, 28, 28, 0.05) 58%,
    transparent 72%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: introGlowPulse 4s ease-in-out infinite alternate;
  filter: blur(50px);
}

@keyframes introGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

/* Tech Mesh Grid */
.intro-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.55;
}

/* Center Stage Container */
.intro-center-stage {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  max-width: 680px;
  width: 100%;
  padding: 32px 24px;
}

/* 1. Top Trio Icons */
.intro-icons-trio {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.intro-glass-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 18, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -4px rgba(0, 0, 0, 0.75),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  opacity: 0;
  transform: translateY(22px) scale(0.8);
  animation: introIconSpring 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.intro-glass-icon:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.intro-glass-icon.icon-code  { animation-delay: 0.15s; }
.intro-glass-icon.icon-user  { animation-delay: 0.30s; }
.intro-glass-icon.icon-globe { animation-delay: 0.45s; }

@keyframes introIconSpring {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }
  70% {
    transform: translateY(-4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 2. Center Headline */
.intro-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.intro-title-top {
  font-family: var(--font-sans);
  font-size: clamp(28px, 5.2vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: introTextReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.intro-title-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 5.2vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  animation: introTextReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.intro-title-text {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 25%, #fca5a5 55%, #ffffff 80%, #9ca3af 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: introShimmer 4s ease-in-out infinite;
}

@keyframes introShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.intro-sparkle {
  font-size: clamp(20px, 3.5vw, 32px);
  color: #f87171;
  text-shadow: 0 0 16px rgba(239, 68, 68, 0.85);
  animation: introSparklePulse 2s infinite ease-in-out alternate;
  user-select: none;
}

@keyframes introSparklePulse {
  0% { transform: scale(0.9) rotate(0deg); opacity: 0.7; }
  100% { transform: scale(1.25) rotate(15deg); opacity: 1; text-shadow: 0 0 26px rgba(239, 68, 68, 1); }
}

@keyframes introTextReveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* 3. Bottom Domain Pill */
.intro-domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(22, 18, 26, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: translateY(18px) scale(0.95);
  animation: introPillReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.intro-domain-pill:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.32);
}

.domain-globe-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.domain-url-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.01em;
}

.domain-status-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: 0.6; transform: scale(0.9); }
}

@keyframes introPillReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 4. Progress Meter & Status */
.intro-footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  width: 100%;
  max-width: 260px;
  opacity: 0;
  animation: introPillReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.intro-status-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  min-height: 14px;
}

.intro-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: visible;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ef4444 0%, #f43f5e 60%, #ffffff 100%);
  border-radius: 999px;
  transition: width 0.06s linear;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.85);
}

.intro-progress-head {
  position: absolute;
  right: -3px;
  top: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px 2px rgba(239, 68, 68, 0.9);
  pointer-events: none;
}

.intro-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.intro-percentage {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
}

.intro-skip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Ensure intro overlay always displays with maximum reliability */
.intro-skip-btn:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.intro-skip-btn .skip-arr {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.intro-skip-btn:hover .skip-arr {
  transform: translateX(2px);
}
