/* ==========================================================================
   QuickLayer — Premium Cinematic Design System
   Near-Black Navy + Midnight Blue + Electric Blue + Violet + Cyan + Glass 3D
   ========================================================================== */

:root {
  /* Core Palette */
  --bg-primary: #060812;
  --bg-secondary: #0a0e1c;
  --bg-tertiary: #10162a;
  --bg-card: rgba(10, 14, 28, 0.72);
  --bg-card-hover: rgba(16, 22, 42, 0.88);

  /* Luminous Hierarchy */
  --electric-blue: #0066ff;
  --cyan-glow: #00f0ff;
  --violet-glow: #7c3aed;
  --deep-purple: #4c1d95;
  --magenta-glow: #d946ef;
  --accent-green: #10b981;

  /* Typography Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Borders & Glassmorphism */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-luminous: rgba(0, 240, 255, 0.35);
  --border-blue: rgba(0, 102, 255, 0.4);

  /* Shadows & Blooms */
  --glow-blue: 0 0 40px rgba(0, 102, 255, 0.28);
  --glow-cyan: 0 0 35px rgba(0, 240, 255, 0.22);
  --glow-violet: 0 0 45px rgba(124, 58, 237, 0.28);
  --hero-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.85);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-btn: 14px;

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

  /* Dimensions */
  --container-max: 1220px;
  --header-height: 72px;
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-primary);
}

/* ==========================================================================
   09. AMBIENT ATMOSPHERIC BACKGROUND (SLOW TRANSFORM-BASED DRIFT)
   ========================================================================== */

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: ambientEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

@keyframes ambientEntrance {
  0% { opacity: 0; }
  100% { opacity: 0.42; }
}

.ambient-glow-1 {
  top: -160px;
  left: 15%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.28) 0%, rgba(124, 58, 237, 0.15) 55%, transparent 75%);
  animation: ambientEntrance 1.2s forwards, floatAmbient1 24s ease-in-out infinite alternate;
}

.ambient-glow-2 {
  top: 42%;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, rgba(217, 70, 239, 0.12) 60%, transparent 75%);
  animation: ambientEntrance 1.2s forwards, floatAmbient2 30s ease-in-out infinite alternate;
}

.ambient-glow-3 {
  bottom: 8%;
  left: -100px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(0, 102, 255, 0.1) 60%, transparent 75%);
  animation: ambientEntrance 1.2s forwards, floatAmbient3 28s ease-in-out infinite alternate;
}

@keyframes floatAmbient1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 60px) scale(1.08); }
  100% { transform: translate(-40px, 30px) scale(0.96); }
}

@keyframes floatAmbient2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -45px) scale(1.06); }
  100% { transform: translate(40px, 50px) scale(0.94); }
}

@keyframes floatAmbient3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -50px) scale(1.1); }
  100% { transform: translate(-50px, 25px) scale(0.98); }
}

/* ==========================================================================
   LAYOUT & TYPOGRAPHY
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #0066ff 45%, #d946ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-inter);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.22);
}

.section-headline {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-subheadline {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 64px;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 26px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #0066ff 0%, #7c3aed 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px -4px rgba(0, 102, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -2px rgba(0, 102, 255, 0.65), 0 0 25px rgba(124, 58, 237, 0.45);
  border-color: rgba(255, 255, 255, 0.38);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-medium);
  transform: translateY(-2px);
  color: #ffffff;
}

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

.btn-hero {
  padding: 16px 34px;
  font-size: 16px;
  font-weight: 700;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13.5px;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-arrow {
  transition: transform 0.25s ease;
}

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

/* ==========================================================================
   10. NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background: transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-bottom 300ms ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 25, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 18.5px;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--cyan-glow);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-nav-panel {
  display: none;
}

/* ==========================================================================
   04, 05, 06, 07, 08. HERO SECTION & 3D MOTION
   ========================================================================== */

.hero-section {
  padding-top: 40px;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 56px;
}

/* Hero Visual Frame (Left Column) */
.hero-visual-col {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-visual-wrapper {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Hero Floating Motion (7-9s subtle loop) */
.hero-floating-anim {
  animation: heroSubtleFloat 8s ease-in-out infinite;
}

@keyframes heroSubtleFloat {
  0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-8px) rotateX(1deg) rotateY(-1deg); }
  100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
}

/* Secondary Transparent Glass Layer Behind */
.hero-glass-depth-layer {
  position: absolute;
  top: -14px;
  left: -14px;
  right: -14px;
  bottom: -14px;
  border-radius: 30px;
  background: rgba(13, 19, 38, 0.45);
  border: 1px solid rgba(0, 240, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(-25px) rotate(-1deg);
  pointer-events: none;
  box-shadow: var(--glow-blue);
  z-index: 0;
}

/* Floating Timeline Micro-HUD Badges */
.hero-hud-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(8, 12, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 240, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--cyan-glow);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  animation: hudBob 6s ease-in-out infinite alternate;
}

.hero-hud-top {
  top: -12px;
  right: 24px;
}

.hero-hud-bottom {
  bottom: -12px;
  left: 24px;
  border-color: rgba(124, 58, 237, 0.35);
  color: #c084fc;
  animation-delay: -3s;
}

@keyframes hudBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.hud-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* Main Hero Video Frame */
.hero-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.28);
  box-shadow: var(--hero-shadow), 0 0 55px -10px rgba(0, 102, 255, 0.3);
  background: var(--bg-secondary);
  aspect-ratio: 16 / 9.8;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  /* 06. Hero entrance: 0ms -> 1000ms, scale 1.04 -> 1, translateY 24px -> 0 */
  animation: heroVideoEntrance 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

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

.hero-visual-frame:hover {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: var(--hero-shadow), 0 0 70px -5px rgba(0, 102, 255, 0.45);
}

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

.hero-video-glass-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(6, 8, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

.hero-video-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-video-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.12);
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

/* Hero Content Column (Right) */
.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-metadata-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.22);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: heroMetadataEntrance 650ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

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

/* 06. Hero Headline: 150ms -> 650ms, translateY 24px -> 0 */
.hero-headline {
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text-primary);
  animation: heroHeadlineEntrance 500ms cubic-bezier(0.16, 1, 0.3, 1) 150ms both;
}

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

/* 06. Hero Body: 300ms -> 750ms, translateY 18px -> 0 */
.hero-subheadline {
  font-size: clamp(18px, 1.9vw, 20.5px);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 400;
  animation: heroBodyEntrance 450ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

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

/* 06. Primary CTA: 450ms -> 850ms, translateY 14px -> 0 */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  width: 100%;
  animation: heroCtaEntrance 400ms cubic-bezier(0.16, 1, 0.3, 1) 450ms both;
}

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

.hero-metrics-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
  animation: heroMetricsEntrance 450ms cubic-bezier(0.16, 1, 0.3, 1) 600ms both;
}

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

.metric-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.metric-check {
  color: var(--cyan-glow);
  font-weight: 700;
}

/* ==========================================================================
   11, 12, 13. SECTION 02 — THE TRANSFORMATION (3 INTERACTIVE DEMONSTRATIONS)
   ========================================================================== */

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1200px;
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 350ms ease, box-shadow 350ms ease;
  will-change: transform;
}

/* 13. 3D Hover on Transform Cards */
.transform-card:hover {
  transform: rotateX(2deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), var(--glow-blue);
}

.transform-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.transform-card:hover .transform-card-glow {
  opacity: 1;
}

.transform-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.transform-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  flex-shrink: 0;
}

.transform-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

/* Interactive Transformation Stage */
.transform-interactive-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(6, 8, 18, 0.65);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-subtle);
}

.stage-flow-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.flow-tag-accent {
  color: var(--cyan-glow);
}

.flow-steps-animated {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.step-chip.danger {
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.25);
}

/* Flow Arrow */
.stage-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  padding: 4px 0;
  position: relative;
}

.flow-pulse-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
}

/* Flow After Action Card */
.flow-action-card {
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px -2px rgba(0, 102, 255, 0.25);
}

.action-highlight-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #00f0ff;
  margin-bottom: 6px;
}

.action-desc {
  font-size: 12.5px;
  color: var(--text-primary);
  line-height: 1.45;
  font-weight: 500;
}

.flow-meta {
  font-size: 11.5px;
  font-weight: 600;
}

.text-muted { color: var(--text-dim); }
.text-accent { color: var(--cyan-glow); }

/* ==========================================================================
   14, 15. SECTION 03 — FEATURE SHOWCASE (8 CORE FEATURES WITH MICRO-ANIMATIONS)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 350ms ease, box-shadow 350ms ease, background 350ms ease;
  will-change: transform;
}

.feature-card:hover {
  transform: rotateX(2deg) rotateY(-3deg) translateY(-6px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.75), var(--glow-blue);
  background: var(--bg-card-hover);
}

.feature-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
}

/* Feature Micro Timeline Stage */
.feature-preview-canvas {
  height: 76px;
  background: rgba(6, 8, 16, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.micro-timeline {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.clip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.base-clip {
  background: rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  width: 90%;
}

/* Micro Animation 1: Adjustment layer appears above */
.adj-clip {
  background: rgba(0, 240, 255, 0.3);
  border: 1px solid var(--cyan-glow);
  color: #ffffff;
  width: 90%;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.anim-adj {
  animation: animAdjDrop 3.5s ease-in-out infinite;
}

@keyframes animAdjDrop {
  0%, 20% { opacity: 0; transform: translateY(-8px); }
  35%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; transform: translateY(0); }
}

/* Micro Animation 2: Solid Matte */
.solid-clip {
  background: rgba(217, 70, 239, 0.3);
  border: 1px solid var(--magenta-glow);
  color: #f5d0fe;
  width: 95%;
  text-align: center;
}

.anim-matte {
  animation: animMattePulse 3s ease-in-out infinite;
}

@keyframes animMattePulse {
  0%, 15% { opacity: 0.2; transform: scaleX(0.7); }
  30%, 80% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 14px rgba(217, 70, 239, 0.4); }
  95%, 100% { opacity: 0.2; transform: scaleX(0.7); }
}

/* Micro Animation 3: VFX Stack 3-tier */
.micro-timeline-stack {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.stack-layer {
  font-family: var(--font-mono);
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 3px;
}

.layer-1 { background: rgba(59, 130, 246, 0.3); color: #bfdbfe; }
.layer-2 { background: rgba(124, 58, 237, 0.35); color: #ddd6fe; }
.layer-3 { background: rgba(0, 240, 255, 0.35); color: #cffafe; }

.anim-stack1 { animation: animStackRise 3s ease-in-out infinite; }
.anim-stack2 { animation: animStackRise 3s ease-in-out 0.2s infinite; }
.anim-stack3 { animation: animStackRise 3s ease-in-out 0.4s infinite; }

@keyframes animStackRise {
  0%, 20% { opacity: 0; transform: translateY(6px); }
  40%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; transform: translateY(6px); }
}

/* Micro Animation 4: Trim snap */
.trim-clip {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trim-head, .trim-tail {
  width: 3px;
  height: 100%;
  background: #34d399;
}

.anim-trim {
  animation: animTrimSnap 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes animTrimSnap {
  0%, 20% { width: 100%; }
  40%, 80% { width: 70%; margin: 0 auto; box-shadow: 0 0 10px rgba(52, 211, 153, 0.5); }
  95%, 100% { width: 100%; }
}

/* Micro Animation 5: True Duplicate */
.dup-clip {
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fde68a;
  width: 90%;
}

.anim-dup {
  animation: animDuplicateSlide 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes animDuplicateSlide {
  0%, 25% { opacity: 0; transform: translateY(12px); }
  45%, 80% { opacity: 1; transform: translateY(0); }
  95%, 100% { opacity: 0; transform: translateY(0); }
}

/* Micro Animation 6: Nest / Unnest */
.nest-box {
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #e9d5ff;
  text-align: center;
}

.anim-nest {
  animation: animNestCompress 3.2s ease-in-out infinite;
}

@keyframes animNestCompress {
  0%, 20% { transform: scaleX(0.7); }
  40%, 80% { transform: scaleX(1); border-color: var(--cyan-glow); }
  95%, 100% { transform: scaleX(0.7); }
}

/* Micro Animation 7: Image Paste */
.image-paste {
  background: rgba(0, 240, 255, 0.25);
  border: 1px dashed var(--cyan-glow);
  color: #ffffff;
  text-align: center;
}

.anim-paste {
  animation: animImagePaste 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes animImagePaste {
  0%, 20% { opacity: 0; transform: scale(0.85); }
  40%, 80% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.85); }
}

/* Micro Animation 8: Clean Project */
.clean-folder {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(99, 102, 241, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.45);
  color: #c7d2fe;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
}

.anim-clean {
  animation: animFolderOrganize 3.5s ease-in-out infinite;
}

@keyframes animFolderOrganize {
  0%, 20% { transform: translateY(4px); opacity: 0.5; }
  40%, 80% { transform: translateY(0); opacity: 1; border-color: var(--cyan-glow); }
  95%, 100% { transform: translateY(4px); opacity: 0.5; }
}

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

.feature-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

/* ==========================================================================
   16, 17. SECTION 04 — CINEMATIC PRODUCT SECTION
   ========================================================================== */

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.showcase-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: all 0.25s ease;
}

.showcase-tab:hover {
  color: #ffffff;
  border-color: var(--border-medium);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-tab.active {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.25), rgba(124, 58, 237, 0.25));
  border-color: rgba(0, 240, 255, 0.45);
  color: #ffffff;
  box-shadow: 0 4px 20px -2px rgba(0, 102, 255, 0.35);
}

.showcase-tab.active .tab-indicator {
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
}

.product-stage-container {
  max-width: 920px;
  margin: 0 auto;
  perspective: 1200px;
}

/* 17. Scroll-based product motion */
.product-stage-3d {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 48px 32px 36px;
  background: radial-gradient(circle at 50% 30%, rgba(14, 18, 32, 0.92) 0%, rgba(6, 8, 18, 0.98) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: var(--hero-shadow), 0 0 70px -15px rgba(0, 102, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.stage-lighting-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 250px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.22) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 80%);
  pointer-events: none;
}

.product-frame-glass {
  position: relative;
  max-width: 560px;
  width: 100%;
  display: flex;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-screenshot {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.85));
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.product-reflection {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  filter: blur(15px);
  pointer-events: none;
}

.product-caption {
  margin-top: 32px;
  text-align: center;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.caption-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   18. "FLOW" SECTION (EMOTIONAL TYPOGRAPHY STATEMENT)
   ========================================================================== */

.flow-section {
  padding: 150px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.flow-statement-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-radial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(0, 102, 255, 0.2) 0%, rgba(124, 58, 237, 0.12) 50%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 1s ease;
}

.flow-line {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-line-1.revealed { opacity: 0.6; transform: translateY(0); }
.flow-line-2.revealed { opacity: 0.85; transform: translateY(0); }
.flow-line-3.revealed { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   19. PROOF SECTION (3 PILLARS)
   ========================================================================== */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: 1200px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 350ms ease, box-shadow 350ms ease;
  will-change: transform;
}

.proof-card:hover {
  transform: rotateX(2deg) rotateY(-2deg) translateY(-5px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.75), var(--glow-blue);
  background: var(--bg-card-hover);
}

.proof-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-card:hover .proof-card-glow {
  opacity: 1;
}

.proof-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  margin-bottom: 24px;
}

.proof-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan-glow);
  margin-bottom: 12px;
}

.proof-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.proof-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   20. PRICING SECTION
   ========================================================================== */

.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  perspective: 1200px;
}

.pricing-card {
  background: rgba(10, 14, 28, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(16px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
  will-change: transform;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), var(--glow-blue);
}

.pricing-card-featured {
  border-color: rgba(0, 240, 255, 0.45);
  background: linear-gradient(180deg, rgba(16, 22, 42, 0.95) 0%, rgba(10, 14, 28, 0.92) 100%);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.7), var(--glow-blue);
}

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
  color: #060812;
  padding: 4px 12px;
  border-radius: 100px;
}

.pricing-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover .pricing-card-glow {
  opacity: 1;
}

.pricing-plan-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-plan-type {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-plan-sub {
  font-size: 13.5px;
  color: var(--cyan-glow);
  font-weight: 600;
  margin-bottom: 28px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.p-check {
  color: var(--cyan-glow);
  font-weight: 700;
}

.pricing-guarantee {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.35);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--cyan-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--cyan-glow);
}

/* ==========================================================================
   21, 22. FINAL CTA & 3D GLASS LAYER OBJECT
   ========================================================================== */

.final-cta-section {
  padding-bottom: 120px;
}

.final-cta-stage {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 90px 48px;
  background: radial-gradient(circle at 50% 10%, rgba(16, 22, 42, 0.95) 0%, rgba(6, 8, 18, 0.98) 100%);
  border: 1px solid rgba(0, 102, 255, 0.35);
  box-shadow: var(--hero-shadow), 0 0 80px -10px rgba(124, 58, 237, 0.3);
  overflow: hidden;
  perspective: 1200px;
}

.final-cta-atmosphere {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 450px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.28) 0%, rgba(124, 58, 237, 0.18) 50%, transparent 80%);
  pointer-events: none;
}

/* 22. Signature 3D Glass Layer Object */
.glass-stack-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 280px;
  perspective: 1000px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}

.glass-layer-stack {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  /* 21. Slow rotation 0deg -> 360deg over 35s */
  animation: rotateGlassStack 35s linear infinite;
}

@keyframes rotateGlassStack {
  0% { transform: rotateX(60deg) rotateZ(0deg); }
  100% { transform: rotateX(60deg) rotateZ(360deg); }
}

.glass-layer {
  position: absolute;
  width: 280px;
  height: 160px;
  left: 100px;
  top: 60px;
  background: rgba(13, 19, 38, 0.45);
  border: 1px solid rgba(0, 240, 255, 0.35);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(0, 240, 255, 0.6);
}

.g-layer-1 { transform: translateZ(50px); border-color: rgba(0, 240, 255, 0.5); }
.g-layer-2 { transform: translateZ(25px); border-color: rgba(0, 102, 255, 0.4); }
.g-layer-3 { transform: translateZ(0px); border-color: rgba(124, 58, 237, 0.4); }
.g-layer-4 { transform: translateZ(-25px); border-color: rgba(217, 70, 239, 0.4); }
.g-layer-5 { transform: translateZ(-50px); border-color: rgba(59, 130, 246, 0.3); }

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-headline {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}

.final-cta-subheadline {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.55;
}

.final-cta-btn-group {
  display: flex;
  justify-content: center;
}

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

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
  background: rgba(6, 8, 18, 0.95);
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

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

/* ==========================================================================
   MODAL (CHECKOUT & INSTANT ACCESS)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0a0e1c;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), var(--glow-blue);
  transform: scale(0.94) translateY(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-header {
  margin-bottom: 20px;
}

.modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.modal-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
}

.modal-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.modal-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 6px;
}

.modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(6, 8, 18, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.modal-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ==========================================================================
   25. RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* 25. Mobile Order: headline, copy, CTA, video */
  .hero-visual-col {
    order: 2;
  }

  .hero-content-col {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-metrics-strip {
    justify-content: center;
  }

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

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

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

  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(6, 8, 18, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .mobile-nav-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-nav-link {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
  }

  .section {
    padding: 80px 0;
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    width: 100%;
  }

  .final-cta-stage {
    padding: 50px 24px;
  }
}

/* ==========================================================================
   27. ACCESSIBILITY: PREFERS 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;
  }
  .ambient-glow,
  .hero-floating-anim,
  .glass-layer-stack,
  .anim-adj,
  .anim-matte,
  .anim-stack1,
  .anim-stack2,
  .anim-stack3,
  .anim-trim,
  .anim-dup,
  .anim-nest,
  .anim-paste,
  .anim-clean {
    animation: none !important;
  }
  .hero-visual-frame,
  .hero-metadata-badge,
  .hero-headline,
  .hero-subheadline,
  .hero-cta-group,
  .hero-metrics-strip,
  .flow-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   28. RAKHI SPECIAL FESTIVE PROMO & BONUS STYLES
   ========================================================================== */
.rakhi-announcement-bar {
  background: linear-gradient(90deg, #b45309 0%, #b91c1c 45%, #6d28d9 100%);
  color: #ffffff;
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.4);
}

.rakhi-sparkle-pill {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.original-price-strike {
  font-size: 1.25rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 500;
}

.discount-chip {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

.rakhi-bonus-card {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px dashed rgba(236, 72, 153, 0.5);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 24px;
}

.rakhi-bonus-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f472b6;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.rakhi-bonus-desc {
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.rakhi-urgency-note {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #fbbf24;
  margin-top: 14px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
}

/* ==========================================================================
   29. PREMIUM COUNTDOWN TIMING SECTION
   ========================================================================== */
.countdown-section {
  padding: 30px 0 70px 0;
  position: relative;
  z-index: 10;
}

.countdown-wrapper {
  background: linear-gradient(135deg, rgba(16, 22, 42, 0.92) 0%, rgba(8, 11, 20, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 42px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px -10px rgba(0, 240, 255, 0.2), 0 0 40px -10px rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.countdown-glow-ambient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.18) 0%, rgba(139, 92, 246, 0.12) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(40px);
}

.countdown-header-block {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.countdown-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.countdown-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  animation: pulseCountdown 1.8s infinite;
}

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

.countdown-headline {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.countdown-subheadline {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* TIMER TILES ROW */
.countdown-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 32px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.countdown-tile {
  background: rgba(4, 6, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  min-width: 120px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.countdown-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.25);
}

.countdown-digit {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(0, 240, 255, 0.5), 0 0 10px rgba(0, 240, 255, 0.3);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.countdown-unit-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan-glow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
}

.countdown-colon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 240, 255, 0.6);
  margin-top: -16px;
  animation: blinkColon 1s step-start infinite;
}

@keyframes blinkColon {
  50% { opacity: 0.25; }
}

/* FOOTER BAR & SCARCITY BAR */
.countdown-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.countdown-scarcity {
  flex: 1;
  min-width: 260px;
}

.countdown-scarcity-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.scarcity-claimed {
  color: #fbbf24;
  font-weight: 700;
}

.scarcity-left {
  color: #f472b6;
  font-weight: 600;
}

.countdown-progress-track {
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.countdown-progress-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #f59e0b 0%, #ec4899 70%, #00f0ff 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.countdown-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 0.98rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .countdown-wrapper {
    padding: 28px 20px;
  }
  .countdown-timer-row {
    gap: 8px;
  }
  .countdown-tile {
    min-width: 70px;
    padding: 12px 10px;
  }
  .countdown-colon {
    display: none;
  }
  .countdown-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}


