/* ===================================
   MODERN CSS FOUNDATION & DESIGN SYSTEM
   =================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Color System */
  --color-primary: #0066FF;
  --color-primary-light: #00D4FF;
  --color-secondary: #FF6B35;
  --color-secondary-light: #FF9500;
  --color-accent: #6C5CE7;
  --color-accent-light: #A29BFE;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-gray-50: #F8F9FA;
  --color-gray-100: #F1F3F4;
  --color-gray-200: #E8EAED;
  --color-gray-300: #DADCE0;
  --color-gray-400: #BDC1C6;
  --color-gray-500: #9AA0A6;
  --color-gray-600: #80868B;
  --color-gray-700: #5F6368;
  --color-gray-800: #3C4043;
  --color-gray-900: #202124;
  --color-black: #000000;
  
  /* Semantic Colors */
  --color-background: var(--color-white);
  --color-surface: var(--color-gray-50);
  --color-text-primary: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-700);
  --color-text-muted: var(--color-gray-500);
  
  /* Typography System */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-secondary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Responsive Typography with clamp() */
  --font-size-xs: clamp(0.75rem, 0.5vw + 0.625rem, 0.875rem);
  --font-size-sm: clamp(0.875rem, 0.75vw + 0.75rem, 1rem);
  --font-size-base: clamp(1rem, 1vw + 0.875rem, 1.125rem);
  --font-size-lg: clamp(1.125rem, 1.25vw + 1rem, 1.25rem);
  --font-size-xl: clamp(1.25rem, 1.5vw + 1.125rem, 1.5rem);
  --font-size-2xl: clamp(1.5rem, 2vw + 1.25rem, 1.875rem);
  --font-size-3xl: clamp(1.875rem, 2.5vw + 1.5rem, 2.25rem);
  --font-size-4xl: clamp(2.25rem, 3vw + 1.875rem, 3rem);
  --font-size-5xl: clamp(3rem, 4vw + 2.25rem, 4rem);
  --font-size-6xl: clamp(4rem, 5vw + 3rem, 6rem);
  
  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  /* Spacing System (8px base unit) */
  --space-1: 0.5rem;   /* 8px */
  --space-2: 1rem;     /* 16px */
  --space-3: 1.5rem;   /* 24px */
  --space-4: 2rem;     /* 32px */
  --space-6: 3rem;     /* 48px */
  --space-8: 4rem;     /* 64px */
  --space-12: 6rem;    /* 96px */
  --space-16: 8rem;    /* 128px */
  --space-20: 10rem;   /* 160px */
  --space-24: 12rem;   /* 192px */
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-base: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.2s ease-out;
  --transition-slow: 0.3s ease-out;
  --transition-slower: 0.5s ease-out;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===================================
   MODERN CSS RESET
   =================================== */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height-normal);
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================
   MODERN TYPOGRAPHY SYSTEM
   =================================== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-semibold);
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}

/* Paragraphs and text */
p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
}

li {
  margin-bottom: var(--space-1);
  line-height: var(--line-height-relaxed);
}

/* Strong and emphasis */
strong, b {
  font-weight: var(--font-weight-semibold);
}

em, i {
  font-style: italic;
}

/* Small text */
small {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }

.font-light { font-weight: var(--font-weight-light); }
.font-regular { font-weight: var(--font-weight-regular); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }

/* Color utilities */
.text-blue { color: var(--color-primary); }
.text-orange { color: var(--color-secondary); }
.text-purple { color: var(--color-accent); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-surface { background-color: var(--color-surface); }

/* Spacing utilities */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

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

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ===================================
   MODERN COMPONENT BASE STYLES
   =================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border: none;
  border-radius: var(--radius-base);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Cards */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

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

/* Modern gradients */
.gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   MODERN NAVIGATION SYSTEM
   =================================== */

/* Main Navigation Header */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  padding: var(--space-2) 0;
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: var(--space-1) 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Logo */
.nav-logo {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-logo:hover {
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-6);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-base);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  transition: left var(--transition-base);
  z-index: -1;
  border-radius: var(--radius-base);
}

.nav-link:hover::before {
  left: 0;
}

.nav-link:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-link.active {
  color: var(--color-primary);
  background: rgba(0, 102, 255, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-modal);
}

.nav-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle-line:not(:last-child) {
  margin-bottom: 5px;
}

/* Mobile Menu Toggle Animation */
.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-modal-backdrop);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-8) var(--space-4);
  transition: right var(--transition-slow);
  z-index: var(--z-modal);
  box-shadow: var(--shadow-2xl);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-item {
  margin-bottom: var(--space-2);
}

.nav-mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-mobile-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  transition: left var(--transition-base);
  z-index: -1;
  border-radius: var(--radius-lg);
}

.nav-mobile-link:hover::before,
.nav-mobile-link.active::before {
  left: 0;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  color: var(--color-white);
  transform: translateX(8px);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  z-index: var(--z-tooltip);
  transition: width var(--transition-fast);
}

/* Body padding for fixed navigation */
body {
  padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  body {
    padding-top: 70px;
  }
  
  .main-nav {
    padding: var(--space-1) 0;
  }
  
  .main-nav.scrolled {
    padding: var(--space-1) 0;
  }
}

@media (max-width: 480px) {
  .nav-mobile {
    width: 100%;
    right: -100%;
  }
  
  .nav-container {
    padding: 0 var(--space-2);
  }
}
/* ==
=================================
   DYNAMIC HERO SECTION
   =================================== */

/* Hero Section Layout */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #6C5CE7 100%);
}

/* Animated Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Gradient Mesh Animation */
.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.floating-element-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: -2s;
  animation-duration: 10s;
}

.floating-element-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 25%;
  animation-delay: -4s;
  animation-duration: 7s;
}

.floating-element-4 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 20%;
  animation-delay: -1s;
  animation-duration: 9s;
}

.floating-element-5 {
  width: 40px;
  height: 40px;
  top: 15%;
  left: 60%;
  animation-delay: -3s;
  animation-duration: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) translateX(-15px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) translateX(5px) rotate(270deg);
  }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-family-primary);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease-out forwards;
}

.hero-title-line-1 {
  animation-delay: 0.2s;
}

.hero-title-line-2 {
  animation-delay: 0.4s;
}

.hero-emphasis {
  background: linear-gradient(135deg, #FF6B35 0%, #FF9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-emphasis::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF9500 100%);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  animation: scaleIn 0.8s ease-out 0.8s forwards;
}

.hero-subtitle {
  font-family: var(--font-family-primary);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-text {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.6s forwards;
}

/* Hero Roles */
.hero-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-family-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

.hero-role {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease-out forwards;
  transition: all var(--transition-fast);
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-base);
}

.hero-role:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-divider {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
  color: rgba(255, 255, 255, 0.5);
}

/* Staggered Animation Delays */
.hero-role[data-delay="0"] { animation-delay: 1s; }
.hero-role[data-delay="100"] { animation-delay: 1.1s; }
.hero-role[data-delay="200"] { animation-delay: 1.2s; }
.hero-role[data-delay="300"] { animation-delay: 1.3s; }
.hero-role[data-delay="400"] { animation-delay: 1.4s; }
.hero-role[data-delay="500"] { animation-delay: 1.5s; }

.hero-divider:nth-child(2) { animation-delay: 1.05s; }
.hero-divider:nth-child(4) { animation-delay: 1.15s; }
.hero-divider:nth-child(6) { animation-delay: 1.25s; }
.hero-divider:nth-child(8) { animation-delay: 1.35s; }
.hero-divider:nth-child(10) { animation-delay: 1.45s; }
.hero-divider:nth-child(12) { animation-delay: 1.55s; }

/* Hero Call to Action */
.hero-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 1.8s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  transition: left var(--transition-slow);
  z-index: -1;
}

.hero-btn:hover::before {
  left: 0;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn i {
  transition: transform var(--transition-base);
}

.hero-btn:hover i {
  transform: translateY(3px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease-out 2.5s forwards;
}

.scroll-indicator-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator-text {
  margin-top: var(--space-2);
}

/* Keyframe Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Mouse Movement Interactive Elements */
.floating-element.mouse-interactive {
  transition: transform 0.3s ease-out;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    padding: var(--space-4) 0;
  }
  
  .hero-container {
    padding: 0 var(--space-2);
  }
  
  .hero-roles {
    flex-direction: column;
    gap: var(--space-1);
  }
  
  .hero-divider {
    display: none;
  }
  
  .hero-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-base);
  }
  
  .floating-element {
    display: none;
  }
  
  .hero-scroll-indicator {
    bottom: var(--space-4);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }
  
  .hero-roles {
    font-size: var(--font-size-sm);
  }
}

/* Adjust body padding to account for hero section */
body {
  padding-top: 0;
}

/* Ensure navigation stays on top of hero */
.main-nav {
  z-index: var(--z-fixed);
}