/* ============================================
   PRINCESS FAITH ODO - PORTFOLIO STYLES
   Modern, High-End Design with Animations
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700&family=Dancing+Script:wght@400;500;600;700&family=Great+Vibes&family=Nunito:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #A970FF;
  --color-primary-light: #b987ff;
  --color-primary-dark: #8B5CF6;
  --color-secondary: #4cc9f0;
  --color-accent: #f72585;
  --color-accent-2: #b5179e;
  
  /* Background Colors */
  --bg-dark: #0a0a1a;
  --bg-dark-2: #12122a;
  --bg-dark-3: #1a1a3e;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-accent: #A970FF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #A970FF 0%, #4cc9f0 100%);
  --gradient-hero: linear-gradient(135deg, rgba(169, 112, 255, 0.1) 0%, rgba(76, 201, 240, 0.1) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-display-decorative: 'Cinzel Decorative', serif;
  --font-script: 'Great Vibes', cursive;
  --font-script-alt: 'Dancing Script', cursive;
  --font-body: 'Inter', sans-serif;
  --font-rounded: 'Nunito', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(169, 112, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ============================================
   MODERN STICKY TRANSPARENT NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.site-header.scrolled {
  background: linear-gradient(135deg, rgba(20, 23, 46, 0.58), rgba(96, 118, 166, 0.22));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  padding: 0.38rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: auto;
  height: 2.35rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  transition: height var(--transition-normal), filter var(--transition-normal), transform var(--transition-normal);
}

.site-header.scrolled .logo-image {
  height: 2.15rem;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
  transform: translateY(-1px);
}

/* Navigation */
.main-nav {
  margin-left: auto;
  margin-right: auto;
}

.main-nav ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  min-height: 2.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  box-shadow:
    inset 1px 1px 6px rgba(255, 255, 255, 0.1),
    inset -1px -1px 6px rgba(255, 255, 255, 0.02),
    0 6px 14px rgba(5, 8, 24, 0.18);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 1px 1px 4px rgba(255, 255, 255, 0.12),
    inset -1px -1px 4px rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(8, 12, 30, 0.22);
  transform: translateY(-1px);
}

.header-cta:focus-visible {
  outline: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(169, 112, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(169, 112, 255, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-liquid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-liquid-bg .gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(169, 112, 255, 0.15) 0%,
    rgba(76, 201, 240, 0.1) 50%,
    rgba(10, 10, 26, 1) 100%
  );
}

.hero-liquid-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.particle-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle-layer.front {
  z-index: 3;
}

.particle-layer .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: float-particle 8s linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

.home-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Hero Avatar */
.home-hero-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5rem;
}

.avatar-ring {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: visible;
  isolation: isolate;
}

.avatar-ring.border-gradient {
  padding: 3px;
}

.avatar-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(206, 181, 255, 0) 0deg,
    rgba(206, 181, 255, 0.95) 70deg,
    rgba(143, 229, 255, 0.85) 120deg,
    rgba(206, 181, 255, 0) 180deg,
    rgba(206, 181, 255, 0) 360deg
  );
  animation: avatar-ring-spin 4.2s linear infinite;
  z-index: -1;
}

.avatar-ring::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(206, 181, 255, 0) 0deg,
    rgba(206, 181, 255, 0.95) 70deg,
    rgba(143, 229, 255, 0.85) 120deg,
    rgba(206, 181, 255, 0) 180deg,
    rgba(206, 181, 255, 0) 360deg
  );
  filter: blur(15px);
  opacity: 0.4;
  animation: avatar-ring-spin 4.2s linear infinite;
  z-index: -2;
}

@keyframes avatar-ring-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.avatar-ring img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 0;
}

/* Hero Text */
.home-hero-text {
  width: auto;
  max-width: min(760px, 100%);
  margin-top: 4.5rem;
  margin-left: 9rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.8rem;
}

.home-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  max-width: 100%;
  background: linear-gradient(135deg, #fff 0%, #A970FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.home-hero-title .hero-title-line-1 {
  white-space: nowrap;
}

.home-hero-title .hero-title-amp {
  text-align: center;
}

.home-hero-title .hero-title-line-3 {
  text-align: center;
}

.home-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.8rem;
  line-height: 1.9;
}

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

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

/* Hero Popups */
.hero-popups {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.popup-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  animation: popup-float 6s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

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

.popup-card.project .popup-dot {
  background: var(--color-secondary);
  box-shadow: 0 0 10px var(--color-secondary);
}

.popup-card.value .popup-dot {
  background: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
}

.popup-title {
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.popup-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.25;
}

/* Popup Positions */
.popup-left.popup-1 { left: 1%; top: 15%; animation-delay: 0.2s; }
.popup-left.popup-2 { left: 0%; top: 50%; animation-delay: 0.5s; }
.popup-left.popup-3 { left: -1%; top: 75%; animation-delay: 0.8s; }
.popup-right.popup-4 { left: 41%; right: auto; top: 15%; animation-delay: 1.1s; }
.popup-right.popup-5 { left: 42%; right: auto; top: 50%; animation-delay: 1.4s; }
.popup-right.popup-6 { left: 41%; right: auto; top: 75%; animation-delay: 1.7s; }

@keyframes popup-float {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.home-welcome {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vh, 5rem) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  overflow: hidden;
  --welcome-content-parallax: 0px;
  --welcome-stars-parallax: 0px;
}

.welcome-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, var(--welcome-stars-parallax), 0);
  will-change: transform;
}

#stars, #stars2, #stars3 {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  animation: animStar 50s linear infinite;
}

#stars {
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 150px 150px;
}

#stars2 {
  background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 220px 220px;
  animation-duration: 100s;
}

#stars3 {
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 320px 320px;
  animation-duration: 150s;
}

@keyframes animStar {
  from { transform: translateY(0); }
  to { transform: translateY(-2000px); }
}

.welcome-content {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  transform: translate3d(0, var(--welcome-content-parallax), 0);
  will-change: transform;
}

.welcome-video {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 200px;
  opacity: 0.8;
}

.welcome-video video {
  width: 100%;
  border-radius: var(--radius-lg);
}

.welcome-greeting {
  font-family: var(--font-script);
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.scroll-indicator {
  margin: 1rem auto 1.4rem;
  width: 40px;
  height: 60px;
}

.scroll-arrows {
  width: 100%;
  height: 100%;
}

.scroll-arrows path {
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
  animation: arrow-bounce 2s ease-in-out infinite;
}

.scroll-arrows path.a2 { animation-delay: 0.2s; }
.scroll-arrows path.a3 { animation-delay: 0.4s; }

@keyframes arrow-bounce {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}

.welcome-lead {
  max-width: 42rem;
  margin: 0 auto 0.35rem;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.34rem);
  line-height: 1.35;
  color: var(--text-primary);
}

.welcome-description {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 52rem;
  margin: 0 auto 2rem;
  line-height: 1.85;
}

.welcome-description em {
  color: var(--color-primary);
  font-style: normal;
  font-weight: 500;
}

.welcome-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.welcome-buttons .btn.btn-primary {
  background:
    linear-gradient(135deg, rgba(54, 44, 96, 0.92) 0%, rgba(93, 70, 168, 0.9) 100%);
  color: #f8f2ff;
  border: 1px solid rgba(194, 162, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 26px rgba(66, 48, 122, 0.34);
}

.welcome-buttons .btn.btn-primary:hover {
  background:
    linear-gradient(135deg, rgba(73, 57, 130, 0.96) 0%, rgba(121, 86, 214, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 30px rgba(98, 70, 178, 0.42);
}

.welcome-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(237, 225, 255, 0.96);
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(178, 151, 235, 0.26);
  border-radius: 999px;
  background: rgba(54, 44, 86, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(20, 16, 42, 0.22);
  transition:
    color var(--transition-normal),
    border-color var(--transition-normal),
    transform var(--transition-normal),
    background var(--transition-normal),
    box-shadow var(--transition-normal);
}

.welcome-link:hover {
  color: #ffffff;
  background: rgba(89, 69, 148, 0.28);
  border-color: rgba(198, 173, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(60, 43, 114, 0.28);
  transform: translateX(4px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #fff 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   FEATURED PROJECTS - CAROUSEL
   ============================================ */
.home-projects {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
  padding-top: var(--space-sm);
}

.home-projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.34) 48%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.home-projects > * {
  position: relative;
  z-index: 1;
}

.mzaCarousel {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.mzaCarousel-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: grab;
}

.mzaCarousel-viewport:active {
  cursor: grabbing;
}

.mzaCarousel-track {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mzaCarousel-slide {
  position: absolute;
  width: 400px;
  height: 450px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  transform: scale(0.8);
}

.mzaCarousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.mzaCarousel-slide.prev {
  transform: translateX(-120%) scale(0.8);
  opacity: 0.3;
}

.mzaCarousel-slide.next {
  transform: translateX(120%) scale(0.8);
  opacity: 0.3;
}

.mzaCard {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.mzaCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.mzaCard-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-lg) var(--space-lg) 1.05rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
}

.mzaCard-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 22, 0.82) 0%,
    rgba(3, 7, 22, 0.64) 74%,
    rgba(4, 8, 26, 0) 100%
  );
  z-index: 0;
}

.mzaCard-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.mzaCard-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mzaCard-text {
  position: absolute;
  bottom: 100px;
  left: var(--space-lg);
  right: var(--space-lg);
  z-index: 2;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mzaCard-actions {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 2;
}

.mzaBtn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.2rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.mzaBtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Carousel Controls */
.mzaCarousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-sm);
  pointer-events: none;
  z-index: 20;
}

.mzaCarousel-prev,
.mzaCarousel-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mzaCarousel-prev:hover,
.mzaCarousel-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.mzaCarousel-pagination {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-xs);
  z-index: 20;
}

.mzaCarousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.mzaCarousel-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: var(--radius-full);
}

.mzaCarousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.mzaCarousel-progressBar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0;
  transition: width 0.1s linear;
}

/* ============================================
   WORD SCRAMBLE SECTION - DROPDOWN DESCramble
   ============================================ */
.home-scramble {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(121, 90, 255, 0.2) 0%, rgba(19, 24, 67, 0) 60%),
    radial-gradient(110% 90% at 50% 100%, rgba(49, 80, 164, 0.3) 0%, rgba(4, 7, 26, 0) 70%),
    linear-gradient(180deg, #060a28 0%, #060824 60%, #04061d 100%);
  padding: clamp(3.2rem, 8vh, 5.5rem) 0;
  min-height: min(70vh, 780px);
  display: grid;
  place-items: center;
}

.home-scramble::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(4, 8, 32, 0) 45%, rgba(2, 4, 19, 0.55) 100%);
  z-index: 1;
}

.scramble-tubes-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
}

.scramble-container {
  max-width: 840px;
  width: min(92vw, 840px);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.9rem;
}

.scramble-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7.2vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(100deg, #d4b6ff 0%, #9f87ff 45%, #58c7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 10px 30px rgba(62, 85, 200, 0.25));
  transition: opacity 240ms ease, transform 240ms ease;
}

.scramble-heading.is-switching {
  opacity: 0.35;
  transform: translateY(4px);
}

.scramble-message {
  margin: 0 0 0.25rem;
  min-height: 1.6em;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(246, 249, 255, 0.98);
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
  transition: opacity 260ms ease;
}

.scramble-message.is-fading {
  opacity: 0.28;
}

.scramble-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.scramble-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 250px;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.scramble-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.scramble-trigger:focus-visible {
  outline: 2px solid rgba(130, 208, 255, 0.95);
  outline-offset: 2px;
}

.scramble-trigger[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(159, 135, 255, 0.92) 0%, rgba(88, 199, 255, 0.92) 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(95, 124, 255, 0.28);
}

.scramble-trigger[aria-expanded="true"] .trigger-icon {
  transform: rotate(180deg);
}

.trigger-text {
  font-weight: 700;
}

.trigger-selected {
  font-weight: 500;
  opacity: 0.9;
}

.trigger-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-normal);
}

.scramble-options {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 19, 52, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 0.35rem;
  min-width: 250px;
  box-shadow: 0 14px 36px rgba(4, 8, 30, 0.55);
  z-index: 100;
  animation: dropdown-appear 0.22s ease;
}

@keyframes dropdown-appear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scramble-option {
  display: block;
  width: 100%;
  padding: 0.62rem 0.8rem;
  background: none;
  border: none;
  color: rgba(227, 233, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.scramble-option:hover,
.scramble-option:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  outline: none;
}

.scramble-option.is-active {
  background: rgba(137, 118, 255, 0.24);
  color: #ffffff;
}

@media (max-width: 768px) {
  .home-scramble {
    min-height: auto;
    padding: var(--space-3xl) 0;
  }

  .scramble-container {
    gap: 0.9rem;
  }

  .scramble-trigger {
    min-width: min(88vw, 270px);
  }

  .scramble-options {
    min-width: min(88vw, 270px);
  }
}

/* ============================================
   VALUES SECTION
   ============================================ */
.home-values {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  min-height: 75vh;
  padding: calc(var(--space-3xl) * 0.75) 0;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(90, 128, 196, 0.12) 0%, rgba(90, 128, 196, 0) 65%),
    radial-gradient(95% 60% at 12% 70%, rgba(64, 96, 158, 0.11) 0%, rgba(64, 96, 158, 0) 72%),
    radial-gradient(95% 60% at 88% 68%, rgba(70, 98, 154, 0.1) 0%, rgba(70, 98, 154, 0) 72%),
    linear-gradient(180deg, #020413 0%, #040820 16%, #071334 45%, #0b1e4a 78%, #10275a 100%);
}

.home-values::before,
.home-values::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.home-values::before {
  top: 0;
  height: 170px;
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(72, 102, 184, 0.13) 0%, rgba(72, 102, 184, 0) 72%),
    linear-gradient(180deg, rgba(2, 5, 22, 0.96) 0%, rgba(7, 14, 40, 0.62) 52%, rgba(10, 18, 50, 0) 100%);
}

.home-values::after {
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(30, 62, 133, 0) 0%, rgba(26, 42, 93, 0.6) 100%);
}

.home-values .section-inner {
  position: relative;
  z-index: 2;
}

.home-values .section-inner::before,
.home-values .section-inner::after {
  content: '';
  position: absolute;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  z-index: 0;
  filter: blur(56px);
  pointer-events: none;
}

.home-values .values-tube-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.26;
  mix-blend-mode: screen;
}

.home-values .tube-line {
  position: absolute;
  display: block;
  width: 31rem;
  height: 0.22rem;
  border-radius: 999px;
  filter: blur(1px) drop-shadow(0 0 16px rgba(143, 192, 255, 0.55));
  background:
    linear-gradient(90deg, rgba(130, 205, 255, 0) 0%, rgba(130, 205, 255, 0.72) 30%, rgba(179, 141, 255, 0.68) 62%, rgba(130, 205, 255, 0) 100%);
}

.home-values .tube-1 {
  top: -0.8rem;
  right: -12rem;
  transform: rotate(16deg);
}

.home-values .tube-2 {
  top: 1.2rem;
  right: -14rem;
  transform: rotate(20deg);
  opacity: 0.78;
}

.home-values .tube-3 {
  top: 3.6rem;
  right: -11.5rem;
  transform: rotate(14deg);
  opacity: 0.68;
}

.home-values .tube-4 {
  top: 5.7rem;
  right: -15rem;
  transform: rotate(22deg);
  opacity: 0.56;
}

.home-values .section-inner::before {
  top: 6%;
  left: -9%;
  background: linear-gradient(315deg, rgba(110, 158, 226, 0.16) 0%, rgba(130, 120, 228, 0.14) 74%);
  animation: values-glass-drift 16s ease-in-out infinite alternate;
}

.home-values .section-inner::after {
  right: -10%;
  bottom: 8%;
  background: linear-gradient(315deg, rgba(120, 170, 226, 0.14) 0%, rgba(106, 134, 214, 0.12) 74%);
  animation: values-glass-drift-2 18s ease-in-out infinite alternate;
}

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

.home-values .value-card {
  position: relative;
  padding: 1.85rem 1.25rem 1.45rem;
  background: rgba(173, 216, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(219, 239, 255, 0.38);
  border-radius: 1.1rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    18px 18px 36px rgba(5, 15, 50, 0.42),
    inset 10px 10px 20px rgba(216, 239, 255, 0.18),
    inset -18px -18px 34px rgba(113, 177, 233, 0.2);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.home-values .value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 244, 255, 0.5);
  box-shadow:
    20px 24px 42px rgba(5, 15, 50, 0.55),
    inset 10px 10px 24px rgba(221, 242, 255, 0.22),
    inset -20px -20px 38px rgba(103, 168, 228, 0.24);
}

.home-values .value-card::before {
  content: '';
  position: absolute;
  inset: 0.38rem;
  border-radius: 0.82rem;
  border: 2px solid rgba(223, 231, 242, 0.34);
  background: radial-gradient(circle at 50% 0%, rgba(237, 248, 255, 0.22) 0%, rgba(237, 248, 255, 0.03) 58%, rgba(237, 248, 255, 0) 100%);
  pointer-events: none;
}

.home-values .value-card::after {
  content: '';
  position: absolute;
  inset: 0.38rem;
  border-radius: 0.82rem;
  padding: 2px;
  background: conic-gradient(
    from -30deg,
    rgba(236, 241, 248, 0) 0deg,
    rgba(236, 241, 248, 0) 336deg,
    rgba(236, 241, 248, 0.08) 343deg,
    rgba(245, 248, 252, 0.86) 350deg,
    rgba(255, 255, 255, 1) 356deg,
    rgba(230, 236, 244, 0.65) 358deg,
    rgba(236, 241, 248, 0) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.58;
  filter: none;
  pointer-events: none;
  animation: none;
}

.home-values .value-card > * {
  position: relative;
  z-index: 2;
}

.home-values .value-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-bottom: 0.6rem;
  color: rgba(238, 247, 255, 0.98);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.home-values .value-card p {
  font-size: 0.9rem;
  color: rgba(226, 238, 255, 0.88);
  line-height: 1.55;
}

.home-values .value-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(137, 203, 255, 0.22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.home-values .value-card:hover .value-glow {
  opacity: 0.65;
}

@keyframes value-border-orbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes values-glass-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(56px);
  }
  100% {
    transform: translate3d(20px, -12px, 0) scale(1.06);
    filter: blur(64px);
  }
}

@keyframes values-glass-drift-2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(56px);
  }
  100% {
    transform: translate3d(-22px, 14px, 0) scale(1.08);
    filter: blur(66px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-values .value-card::after {
    animation: none;
  }

  .home-values .section-inner::before,
  .home-values .section-inner::after {
    animation: none;
  }
}

/* ============================================
   STATS SECTION - NEW
   ============================================ */
.section-stats {
  position: relative;
  overflow: hidden;
  background: url('https://images.alphacoders.com/116/1169862.jpg') center/cover no-repeat;
  padding: var(--space-2xl) 0;
}

.section-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 34, 0.84);
  pointer-events: none;
}

.section-stats::after {
  content: none;
}

.section-stats .section-inner {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(9, 17, 48, 0.5);
  border: 1px solid rgba(174, 213, 255, 0.22);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

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

/* ============================================
   SKILLS SECTION - NEW
   ============================================ */
.section-skills {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background: url('https://images.alphacoders.com/116/1169862.jpg') center/cover no-repeat;
}

.section-skills::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 34, 0.84);
  pointer-events: none;
}

.section-skills::after {
  content: none;
}

.section-skills .section-inner {
  position: relative;
  z-index: 1;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.skill-category h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.skill-tag {
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.skill-tag:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ============================================
   REFLECTIONS SECTION
   ============================================ */
.home-reflections {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(85% 55% at 15% 5%, rgba(94, 130, 255, 0.18) 0%, rgba(94, 130, 255, 0) 70%),
    radial-gradient(80% 60% at 85% 15%, rgba(68, 209, 255, 0.12) 0%, rgba(68, 209, 255, 0) 72%),
    linear-gradient(180deg, #070a2a 0%, #0a0e32 58%, #090d2b 100%);
}

.reflections-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.reflections-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) brightness(0.22) saturate(0.78);
  transform: scale(1.06);
}

.home-reflections::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 5, 20, 0.62) 0%, rgba(4, 8, 28, 0.56) 36%, rgba(7, 12, 36, 0.6) 100%),
    radial-gradient(circle at 20% 80%, rgba(87, 122, 232, 0.16) 0%, rgba(87, 122, 232, 0) 35%);
  z-index: 0;
}

.home-reflections .section-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reflections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.reflection-card {
  position: relative;
  padding: 1.05rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(20, 25, 64, 0.72) 0%, rgba(16, 20, 51, 0.72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(173, 193, 255, 0.22);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(4, 7, 25, 0.4);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
}

.reflection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0) 60%);
}

.reflection-card:hover {
  transform: translateY(-7px);
  border-color: rgba(176, 206, 255, 0.42);
  box-shadow: 0 24px 44px rgba(4, 7, 25, 0.58);
}

.reflection-card-featured {
  border-color: rgba(135, 205, 255, 0.48);
}

.reflection-card-featured::after {
  content: '';
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 216, 255, 0.85) 0%, rgba(159, 130, 255, 0.92) 100%);
}

.reflection-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(174, 196, 255, 0.18);
}

.reflection-date {
  font-size: 0.8rem;
  color: rgba(206, 217, 249, 0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reflection-category {
  font-size: 0.72rem;
  color: rgba(219, 246, 255, 0.95);
  background: rgba(61, 177, 230, 0.18);
  border: 1px solid rgba(116, 224, 255, 0.35);
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.reflection-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: rgba(247, 251, 255, 0.98);
  line-height: 1.33;
  min-height: 2.8em;
}

.reflection-card p {
  font-size: 0.88rem;
  color: rgba(217, 227, 248, 0.9);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  min-height: 4.5em;
}

.reflection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(171, 120, 255, 1);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.reflection-link:hover {
  color: rgba(193, 160, 255, 1);
  transform: translateX(3px);
}

/* ============================================
   TESTIMONIALS SECTION - NEW
   ============================================ */
.section-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-2) 100%);
  min-height: 84vh;
  height: 84vh;
  padding: 0;
}

.testimonials-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-glass-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
      linear-gradient(180deg, rgba(7, 10, 30, 0.62) 0%, rgba(7, 10, 30, 0.74) 100%),
      radial-gradient(circle at 20% 20%, rgba(120, 170, 255, 0.12) 0%, rgba(120, 170, 255, 0) 38%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

.section-testimonials .section-inner {
  position: relative;
  z-index: 2;
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.section-testimonials .section-header {
  margin-bottom: 1.4rem;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 1.4rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial-quote {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.8rem;
  color: var(--color-primary);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.88rem;
}

.author-info h4 {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonials-dots .dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: var(--radius-full);
}

/* ============================================
   COMMUNITY LAUNCH
   ============================================ */
.community-soon-section {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background-color: #191733;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(197, 39, 145, 0.22) 0, rgba(197, 39, 145, 0.22) 9rem, transparent 13rem),
    radial-gradient(circle at 84% 18%, rgba(76, 201, 240, 0.18) 0, rgba(76, 201, 240, 0.18) 8rem, transparent 12rem),
    radial-gradient(circle at 28% 86%, rgba(163, 28, 114, 0.18) 0, rgba(163, 28, 114, 0.18) 8rem, transparent 12rem),
    radial-gradient(circle at 78% 78%, rgba(74, 21, 138, 0.2) 0, rgba(74, 21, 138, 0.2) 9rem, transparent 13rem),
    linear-gradient(180deg, rgba(24, 23, 50, 0.96), rgba(13, 13, 30, 0.98));
  animation: communitySectionFloat 18s ease-in-out infinite;
}

.community-soon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  pointer-events: none;
}

.community-soon-section .section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.community-soon-card {
  position: relative;
  min-height: min(45vh, 25rem);
  padding: 0;
}

.community-soon-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 10px 0 20px rgba(255, 255, 255, 0.35);
  filter: blur(1px);
  animation: communityOrbFloat 22s ease-in-out infinite;
}

.community-soon-orb-one {
  width: 13rem;
  height: 13rem;
  left: -2.5rem;
  bottom: 2.5rem;
  background-image: linear-gradient(145deg, rgba(255, 182, 120, 0.8), rgba(242, 92, 154, 0.7));
}

.community-soon-orb-two {
  width: 8.5rem;
  height: 8.5rem;
  right: 8%;
  top: -1.6rem;
  background-image: linear-gradient(145deg, rgba(76, 201, 240, 0.68), rgba(169, 112, 255, 0.72));
  animation-delay: -8s;
}

.community-soon-feature-card,
.community-soon-copy,
.community-soon-highlights {
  position: relative;
  z-index: 1;
}

.community-soon-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.85fr);
  gap: 2rem;
  min-height: 100%;
  width: 100%;
  padding: 1.85rem 1.9rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 2px 1px 6px rgba(255, 255, 255, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.community-soon-feature-sheen {
  content: "";
  position: absolute;
  width: 125%;
  height: 1rem;
  top: 100%;
  left: -105%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotateZ(46deg);
  filter: blur(20px);
  animation: communityCardShine 11s ease infinite;
}

.community-soon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #8fe0ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-soon-eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #a970ff, #4cc9f0);
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.community-soon-copy h2 {
  max-width: 9ch;
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  color: var(--text-primary);
}

.community-soon-copy p {
  max-width: 42rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.community-soon-highlights {
  display: grid;
  align-content: center;
  gap: 1rem;
  justify-items: stretch;
  width: 100%;
}

.community-soon-highlights span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.15rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  color: #f6f8ff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  box-shadow:
    inset 2px 1px 6px rgba(255, 255, 255, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.community-soon-highlights span::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 1rem;
  top: 100%;
  left: -110%;
  background: rgba(255, 255, 255, 0.92);
  transform: rotateZ(46deg);
  filter: blur(20px);
  animation: communityCardShine 11s ease infinite;
}

@keyframes communitySectionFloat {
  0%,
  100% {
    background-position:
      14% 18%,
      84% 18%,
      28% 86%,
      78% 78%,
      0 0;
  }
  50% {
    background-position:
      9% 24%,
      88% 12%,
      24% 80%,
      73% 84%,
      0 0;
  }
}

@keyframes communityCardShine {
  0% {
    top: 100%;
    left: -100%;
  }
  50%,
  100% {
    top: -10%;
    left: 72%;
  }
}

@keyframes communityOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8%, 6%) scale(0.92);
  }
}

@media (max-width: 1024px) {
  .community-soon-card {
    min-height: auto;
  }

  .community-soon-feature-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .community-soon-copy h2,
  .community-soon-copy p {
    max-width: none;
  }

  .community-soon-feature-card {
    min-height: auto;
  }

  .community-soon-orb-one {
    left: -3rem;
    bottom: 1rem;
  }

  .community-soon-orb-two {
    right: 4%;
  }
}

@media (max-width: 768px) {
  .community-soon-section {
    padding: 2rem 0;
  }

  .community-soon-card {
    padding: 1.25rem 0;
  }

  .community-soon-feature-card {
    padding: 1.3rem 1.15rem 1.4rem;
  }

  .community-soon-highlights span {
    min-height: 5.3rem;
    padding: 1rem 1.15rem;
    font-size: 0.96rem;
  }
}

/* ============================================
   CTA SECTION - ENHANCED
   ============================================ */
.section-cta-enhanced {
  position: relative;
  padding: calc(var(--space-3xl) * 0.5) 0;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  left: -100px;
  animation: glow-pulse 8s ease-in-out infinite;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  right: -50px;
  animation: glow-pulse 8s ease-in-out infinite reverse;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.page-home .section-cta-enhanced .section-bg-only,
.page-home .section-cta-enhanced .section-bg-only * {
  box-sizing: border-box;
}

.page-home .section-cta-enhanced {
  min-height: 68vh;
  padding: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(169, 112, 255, 0.14) 0%, transparent 30%),
    radial-gradient(circle at 80% 76%, rgba(91, 216, 255, 0.12) 0%, transparent 32%),
    linear-gradient(135deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}

.page-home .section-cta-enhanced .cta-bg-effects {
  z-index: 0;
  overflow: hidden;
}

.page-home .section-cta-enhanced .cta-glow {
  border-radius: 999px;
  filter: blur(88px);
  opacity: 0.6;
}

.page-home .section-cta-enhanced .cta-glow-1 {
  top: -6rem;
  left: -4rem;
  width: 24rem;
  height: 24rem;
  background: rgba(169, 112, 255, 0.2);
  animation: none;
}

.page-home .section-cta-enhanced .cta-glow-2 {
  right: -2rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(91, 216, 255, 0.18);
  animation: none;
}

.page-home .section-cta-enhanced .cta-particles {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.24;
}

.page-home .section-cta-enhanced .section-bg-only {
  position: absolute;
  inset: 0;
  min-height: 420px;
  overflow: hidden;
  background: #151515;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  pointer-events: none;
}

.page-home .section-cta-enhanced .section-bg-only::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 190%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 153, 102, 0.05),
    rgba(255, 153, 102, 0.35),
    rgba(255, 153, 102, 0.85),
    rgba(255, 153, 102, 0.35),
    rgba(255, 153, 102, 0.05),
    transparent
  );
  animation: rotateGlowBg 7s linear infinite;
  z-index: 0;
}

.page-home .section-cta-enhanced .section-bg-inner {
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 153, 102, 0.08), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(255, 90, 90, 0.08), transparent 26%),
    linear-gradient(180deg, #181818 0%, #101010 100%);
  z-index: 1;
}

.page-home .section-cta-enhanced .section-inner {
  position: relative;
  z-index: 2;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@keyframes rotateGlowBg {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: var(--space-sm);
}

.cta-line {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.cta-line-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: 0;
}

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

.cta-social p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.page-home .section-cta-enhanced .btn.btn-primary.btn-large {
  background: linear-gradient(180deg, rgba(255, 196, 136, 0.96), rgba(255, 131, 80, 0.96));
  color: #1a110d;
  border-color: rgba(255, 222, 188, 0.2);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(255, 183, 96, 0.42);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.page-home .section-cta-enhanced .btn.btn-primary.btn-large:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 196, 118, 0.56);
}

.page-home .section-cta-enhanced .btn.btn-outline.btn-large {
  color: #ffd9b0;
  border-color: rgba(255, 203, 150, 0.34);
  background: rgba(22, 18, 17, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.page-home .section-cta-enhanced .btn.btn-outline.btn-large:hover {
  border-color: rgba(255, 221, 182, 0.58);
  background: rgba(31, 25, 24, 0.72);
  color: #fff0dd;
}

.page-home .section-cta-enhanced .cta-content {
  max-width: 640px;
  overflow: visible;
}

.page-home .section-cta-enhanced .cta-title {
  margin-bottom: 1.15rem;
  font-family: 'Dancing Script', cursive;
  line-height: 1.18;
  padding-bottom: 0.35rem;
  overflow: visible;
}

.page-home .section-cta-enhanced .cta-line {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  font-weight: 600;
  line-height: 1.16;
  color: #ffd7b0;
}

.page-home .section-cta-enhanced .cta-line-accent {
  background: linear-gradient(90deg, #ffb870 0%, #ff7a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-home .section-cta-enhanced .cta-subtitle {
  font-size: 0.98rem;
  color: rgba(255, 229, 198, 0.82);
  margin-bottom: 1.55rem;
  line-height: 1.6;
  font-family: 'Nunito', sans-serif;
}

.page-home .section-cta-enhanced .cta-buttons {
  margin-top: 0.35rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-3px);
}

.social-link:hover svg {
  color: var(--text-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 95% at 50% 118%, rgba(215, 191, 166, 0.18) 0%, rgba(215, 191, 166, 0.1) 30%, rgba(215, 191, 166, 0) 68%),
    radial-gradient(44% 48% at 80% 18%, rgba(255, 221, 188, 0.09) 0%, rgba(255, 221, 188, 0) 72%),
    linear-gradient(180deg, #131313 0%, #101010 54%, #0b0b0b 100%);
  border-top: 1px solid rgba(255, 236, 217, 0.08);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.24) 0%, rgba(13, 13, 13, 0.38) 44%, rgba(9, 9, 9, 0.72) 100%),
    radial-gradient(82% 68% at 50% 112%, rgba(255, 210, 169, 0.12) 0%, rgba(255, 210, 169, 0) 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 42%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-footer .footer-top,
.site-footer .footer-bottom {
  position: relative;
  z-index: 2;
}

.site-footer .footer-aurora-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.site-footer #lightings {
  bottom: -60px;
  position: absolute;
  width: 100%;
  opacity: 0.46;
  filter: blur(8px) saturate(0.7);
}

.site-footer #lightings section {
  border-radius: 50%;
  height: 20px;
  width: 100%;
  position: relative;
  margin: auto;
}

.site-footer #one {
  animation: one 16s ease-in-out infinite alternate;
}

@keyframes one {
  from { box-shadow: 0 0 250px 20px rgba(196, 176, 156, 0.5); }
  to { box-shadow: 0 0 100px 15px rgba(136, 124, 113, 0.4); }
}

.site-footer #two {
  width: 90%;
  animation: two 14s ease-in-out infinite alternate;
}

@keyframes two {
  from { box-shadow: 0 0 250px 20px rgba(177, 163, 145, 0.36); }
  to { box-shadow: 0 0 100px 15px rgba(116, 109, 100, 0.28); }
}

.site-footer #three {
  width: 80%;
  animation: three 12s ease-in-out infinite alternate;
}

@keyframes three {
  from { box-shadow: 0 0 250px 20px rgba(255, 213, 170, 0.26); }
  to { box-shadow: 0 0 100px 15px rgba(166, 141, 118, 0.24); }
}

.site-footer #four {
  width: 70%;
  animation: four 10s ease-in-out infinite alternate;
}

@keyframes four {
  from { box-shadow: 0 0 250px 20px rgba(122, 110, 104, 0.32); }
  to { box-shadow: 0 0 100px 15px rgba(212, 194, 181, 0.24); }
}

.site-footer #five {
  width: 60%;
  animation: five 8s ease-in-out infinite alternate;
}

@keyframes five {
  from { box-shadow: 0 0 250px 20px rgba(188, 173, 152, 0.26); }
  to { box-shadow: 0 0 100px 15px rgba(232, 220, 204, 0.18); }
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-2xl);
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, #f7efe6 0%, #d8c7b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(226, 214, 201, 0.72);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245, 237, 227, 0.92);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: rgba(214, 202, 189, 0.68);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: rgba(255, 230, 205, 0.96);
}

.footer-bottom {
  border-top: none;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: rgba(205, 193, 180, 0.62);
  text-align: center;
  position: relative;
}

.footer-logo {
  position: absolute;
  left: var(--space-lg);
  bottom: 0;
  width: auto;
  height: 10rem;
  flex-shrink: 0;
  opacity: 0.92;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  transform: translateY(-1%);
  pointer-events: none;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  position: absolute;
  right: var(--space-lg);
}

.footer-legal a:hover {
  color: rgba(247, 238, 228, 0.94);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  
  .home-hero-avatar {
    order: -1;
    margin-left: 0;
  }

  .avatar-ring {
    width: 250px;
    height: 250px;
  }
  
  .home-hero-text {
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-popups {
    display: none;
  }
  
  .values-grid,
  .reflections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
  }
  
  .main-nav.open {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .header-cta {
    display: none;
  }
  
  .home-hero-title {
    font-size: 2rem;
  }
  
  .welcome-greeting {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .values-grid,
  .reflections-grid,
  .stats-grid,
  .skills-container {
    grid-template-columns: 1fr;
  }
  
  .mzaCarousel {
    height: 400px;
  }

  
  .mzaCarousel-slide {
    width: 300px;
    height: 350px;
  }
  
  .cta-line {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-logo {
    position: static;
    height: 4.2rem;
    transform: none;
    pointer-events: auto;
  }

  .footer-legal {
    position: static;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.scale-in {
  animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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