.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; overflow: visible; }
.cta-primary, .cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 12px; font-weight: 700; text-decoration: none;
  position: relative; z-index: 2; outline: none; white-space: nowrap;
  transition: all 0.3s ease;
}
.cta-primary {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  font-weight: 800;
}
.cta-primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  font-weight: 600;
}
.cta-secondary:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
}
/* ========= DESIGN TOKENS ========= */
@import url('./design-tokens.css');

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

/* CSS Custom Properties for Navigation */
:root {
  --nav-height: 70px;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-border: rgba(0, 0, 0, 0.1);
  --nav-text: #1f2937;
  --nav-text-hover: #3b82f6;
  --nav-text-active: #2563eb;
  --nav-logo: #1f2937;
  --nav-cta-bg: #3b82f6;
  --nav-cta-bg-hover: #2563eb;
  --nav-cta-text: #ffffff;
  --nav-mobile-bg: #ffffff;
  --nav-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --nav-blur: 20px;
  --transition-nav: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* Base Navigation Styles */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
  transition: var(--transition-nav);
  height: var(--nav-height);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--nav-logo);
  text-decoration: none;
  transition: var(--transition-fast);
  letter-spacing: -0.025em;
}

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

/* Desktop Navigation Menu */
.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nav-text-hover);
  transition: width 0.3s ease;
}

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

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

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

.nav-link-active::after {
  width: 100%;
  background: var(--nav-text-active);
}

/* CTA Button */
.nav-cta {
  display: none;
  background: var(--nav-cta-bg);
  color: var(--nav-cta-text);
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.nav-cta:hover {
  background: var(--nav-cta-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgba(59, 130, 246, 0.3);
}

/* Hamburger Menu Button */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
}

.hamburger {
  width: 1.5rem;
  height: 1.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--nav-text);
  border-radius: 1px;
  transition: var(--transition-nav);
  transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-nav);
  z-index: 999;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--nav-mobile-bg);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-nav);
  z-index: 1001;
  overflow-y: auto;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--nav-text);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  transition: var(--transition-fast);
  border-radius: 0.375rem;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 2rem 0;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-link {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 2rem;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(59, 130, 246, 0.05);
  border-left-color: var(--nav-text-hover);
  color: var(--nav-text-hover);
}

.mobile-nav-active {
  background: rgba(37, 99, 235, 0.1);
  border-left-color: var(--nav-text-active);
  color: var(--nav-text-active);
}

.mobile-nav-cta {
  margin-top: 1rem;
  background: var(--nav-cta-bg);
  color: var(--nav-cta-text);
  border-radius: 0.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
  text-align: center;
}

.mobile-nav-cta:hover {
  background: var(--nav-cta-bg-hover);
  border-left-color: transparent;
}

/* Desktop Breakpoint */
@media (min-width: 768px) {
  .nav-container {
    padding: 0 3rem;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .nav-cta {
    display: block;
  }
  
  .nav-toggle {
    display: none;
  }
  
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
}

/* Large Desktop Breakpoint */
@media (min-width: 1024px) {
  .nav-container {
    padding: 0 4rem;
  }
  
  .nav-menu {
    gap: 2.5rem;
  }
}

/* Navigation Scroll Behavior */
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* About page: keep nav dark on scroll to match dark background */
.about-page .site-nav,
.about-page .site-nav.scrolled {
  background: rgba(2, 6, 23, 0.85) !important; /* near slate-950 */
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25) !important;
}
.about-page .nav-logo,
.about-page .nav-link,
.about-page .nav-cta,
.about-page .mobile-menu-title {
  color: #f8fafc !important;
}
.about-page .nav-link::after { background: #60a5fa !important; }
.about-page .nav-cta { background: #3b82f6 !important; color: #fff !important; }

/* Focus Styles for Accessibility */
.nav-logo:focus,
.nav-link:focus,
.nav-cta:focus,
.nav-toggle:focus,
.mobile-menu-close:focus,
.mobile-nav-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.7);
  border-radius: 0.5rem;
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-logo,
  .nav-link,
  .nav-cta,
  .nav-toggle,
  .hamburger-line,
  .mobile-menu-overlay,
  .mobile-menu,
  .mobile-menu-close,
  .mobile-nav-link {
    transition: none;
  }
  
  .nav-link::after {
    transition: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --nav-bg: rgba(255, 255, 255, 1);
    --nav-border: rgba(0, 0, 0, 0.3);
    --nav-text: #000000;
    --nav-text-hover: #0000ff;
    --nav-text-active: #0000ff;
    --nav-logo: #000000;
  }
}

/* Dark Mode Support (if implemented) */
@media (prefers-color-scheme: dark) {
  :root {
    --nav-bg: rgba(17, 24, 39, 0.95);
    --nav-border: rgba(255, 255, 255, 0.1);
    --nav-text: #f9fafb;
    --nav-text-hover: #60a5fa;
    --nav-text-active: #3b82f6;
    --nav-logo: #f9fafb;
    --nav-mobile-bg: #1f2937;
  }
}

/* Ensure main content doesn't overlap with fixed nav */
body {
  padding-top: var(--nav-height);
}

/* ========= END NAVIGATION SYSTEM ========= */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Prevent horizontal overflow on all elements */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Prevent pinch zoom and unwanted touch behaviors */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

/* Ensure all containers respect viewport width */
.container,
.max-w-7xl,
.max-w-6xl,
.max-w-5xl,
.max-w-4xl,
.max-w-3xl,
.max-w-2xl,
.max-w-xl,
.max-w-lg,
.max-w-md,
.max-w-sm {
    /* max-width: 100vw; */
    overflow-x: hidden;
}

/* Prevent any element from exceeding viewport width */
* {
    box-sizing: border-box;
}



/* Fix any potential overflow issues with fixed positioning */
.fixed {
    max-width: 100vw !important;
}

/* Prevent image overflow */
img, video, svg {
    max-width: 100% !important;
    height: auto !important;
}

/* Ensure all flex containers don't overflow */
.flex, .grid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Prevent text overflow */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Ensure tables don't cause horizontal scroll */
table {
    max-width: 100% !important;
    overflow-x: auto !important;
}

body {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,.06), transparent 60%),
              linear-gradient(140deg, #0f172a 0%, #1e293b 55%, #0b1220 100%);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}



.hero-about {
  background: none !important;
  color: #fff !important;
}
/* Remove bright gradient overlays inside About hero to match site aesthetic */
.about-page .hero-about .absolute { display: none !important; }

/* Match homepage hero spacing and type scale */
.about-page .hero-about {
  padding: clamp(72px, 8vw, 120px) 0 clamp(48px, 6vw, 80px) !important;
  overflow: visible !important; /* prevent hover/focus ring clipping on buttons */
}
.about-page .hero-about > .relative { overflow: visible !important; }
/* ensure inner wrappers don't clip shadows */
.about-page .hero-about .max-w-6xl,
.about-page .hero-about .grid,
.about-page .hero-about .flex { overflow: visible !important; }
.about-page .hero-about h1 {
  font-size: clamp(32px, 4.2vw, 54px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.5rem !important;
}
.about-page .hero-about p.text-xl {
  margin-top: 14px !important;
  font-size: clamp(16px, 1.4vw, 20px) !important;
  color: rgba(255,255,255,.88) !important;
  max-width: 58ch !important;
}
.about-page .hero-about .flex.gap-4 { gap: 1rem !important; }

/* Buttons aligned to homepage aesthetic - Glassmorphism */
/* OLD BUTTON STYLES REMOVED - Now using .btn .btn--primary and .btn .btn--ghost system */

/* lift CTAs above nearby elements */
.about-page .hero-about .flex.flex-wrap.gap-4 { position: relative; z-index: 5; }

/* Final CTA section (bottom) - prevent clipping and ensure legible CTAs */
.about-page section.py-20.bg-gradient-to-r { overflow: visible !important; position: relative; padding-bottom: 3rem; }
.about-page section.py-20.bg-gradient-to-r .max-w-4xl,
.about-page section.py-20.bg-gradient-to-r .flex,
.about-page section.py-20.bg-gradient-to-r .btn { overflow: visible !important; position: relative; z-index: 2; }
.hero-about h1, .hero-about p, .hero-about .text-white,
.hero-about .text-slate-100 {
  color: #fff !important;
}

.hero-about .text-slate-100 {
  color: #f1f5f9 !important;
}
.hero-about .gradient-text {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}

/* Dark sections - keep white text */
.bg-slate-900, .bg-gradient-to-br {
  background: none !important;
  color: #fff !important;
}

/* Light sections - use dark text */
.bg-slate-50, .bg-indigo-50, .text-gray-900 {
  background: #f8fafc !important;
  color: #1e293b !important;
}

/* Education section specific fixes */
section.py-20.text-gray-900 {
  background: #f8fafc !important;
  color: #1e293b !important;
}

section.py-20.text-gray-900 h2,
section.py-20.text-gray-900 h3,
section.py-20.text-gray-900 p {
  color: #1e293b !important;
}

section.py-20.text-gray-900 .text-indigo-600 {
  color: #3b82f6 !important;
}

section.py-20.text-gray-900 .text-gray-600 {
  color: #475569 !important;
}

.bg-slate-50 .text-gray-900, 
.bg-slate-50 .text-gray-700, 
.bg-slate-50 .text-gray-600,
.bg-indigo-50 .text-gray-900, 
.bg-indigo-50 .text-gray-700, 
.bg-indigo-50 .text-gray-600 {
  color: #1e293b !important;
}

/* Headings in dark sections */
.bg-slate-900 h2, .bg-slate-900 h3, .bg-slate-900 h4, .bg-slate-900 h5, .bg-slate-900 h6,
.bg-gradient-to-br h2, .bg-gradient-to-br h3, .bg-gradient-to-br h4, .bg-gradient-to-br h5, .bg-gradient-to-br h6 {
  color: #fff !important;
}

/* Headings in light sections */
.bg-slate-50 h2, .bg-slate-50 h3, .bg-slate-50 h4, .bg-slate-50 h5, .bg-slate-50 h6,
.bg-indigo-50 h2, .bg-indigo-50 h3, .bg-indigo-50 h4, .bg-indigo-50 h5, .bg-indigo-50 h6 {
  color: #1e293b !important;
}

.text-gray-900, .text-gray-700, .text-gray-600, .text-slate-900, .text-slate-700, .text-slate-600 {
  color: #f1f5f9 !important;
}

.bg-slate-800, .bg-slate-900 {
  background: rgba(30,41,59,0.95) !important;
}

.card, .rounded-xl, .p-6, .p-8 {
  background: rgba(255,255,255,0.04) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

a, .text-indigo-600, .hover\:text-indigo-800:hover {
  color: #38bdf8 !important;
}

footer {
  background: #181f2a !important;
  color: #cbd5e1 !important;
}

/* Timeline icons and tags */
.bg-gradient-to-r, .bg-indigo-600\/20, .bg-cyan-600\/20 {
  background: linear-gradient(90deg, #3b82f6, #06b6d4) !important;
  color: #fff !important;
}

/* Remove box shadows that look odd on dark */
.shadow-2xl, .shadow-lg {
  box-shadow: none !important;
}

.education-section .text-indigo-600 {
  color: #38bdf8 !important;
}

/* OLD BUTTON STYLES REMOVED - Now using .btn .btn--primary and .btn .btn--ghost system */



/* About Page Specific Styles */

.about-page {
    /* Match site hero subtle ink gradient */
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,.06), transparent 60%),
                linear-gradient(140deg, #0f172a 0%, #1e293b 55%, #0b1220 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.about-page * {
    color: inherit;
}

.about-page section {
    color: #f8fafc;
}

.about-page .text-gray-600 {
    color: #cbd5e1 !important;
}

.about-page .bg-gray-50 {
    background: rgba(30, 41, 59, 0.6) !important;
}

.about-page .text-gray-900 {
    color: #f8fafc !important;
}

.about-page .bg-white {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page .shadow-lg {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.about-page .text-indigo-600 {
    color: #60a5fa !important;
}

.about-page .text-green-600 {
    color: #34d399 !important;
}

/* Dark mode typography */
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4,
.about-page h5,
.about-page h6 {
    color: #f8fafc;
}

.about-page p {
    color: #cbd5e1;
}

/* Override card backgrounds for better contrast */
.about-page .stat-card {
    background: rgba(15, 23, 42, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

.about-page .stat-card .text-gray-600 {
    color: #94a3b8 !important;
}

/* Dark footer override */
.about-page footer {
    background: #0f172a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure proper text contrast */
.about-page .text-gray-400 {
    color: #94a3b8 !important;
}

.about-page .text-gray-500 {
    color: #64748b !important;
}

/* Button styling for dark theme */
/* OLD BUTTON STYLES REMOVED - Now using .btn .btn--primary and .btn .btn--ghost system */

/* Ensure icons and SVGs are visible */
.about-page svg {
    color: inherit;
}

/* LinkedIn icon hover effect */
.about-page footer a:hover svg {
    color: #60a5fa !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-page {
        padding: 0;
    }
    
    .about-page .hero-about {
        padding: 6rem 1rem 3rem 1rem !important; /* Much more aggressive padding for mobile */
    }
    
    .about-page .py-16 {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .about-page .hero-about {
        padding: 7rem 1rem 3rem 1rem !important; /* Maximum padding for small screens */
    }
} 

/* ========= ANIMATED WORD CYCLING ========= */

#animated-word {
  display: block;
  position: relative;
  height: 1.4em;
  width: 100%;
  text-align: left;
 
}

.word-transition {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.1em;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-checkmark {
  position: relative;
}

.word-checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  transform: translateY(-50%) scale(0);
  color: #22c55e;
  font-size: 1.2em;
  font-weight: bold;
  animation: checkmark 0.3s ease-out forwards;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.word-fadeout {
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.word-fadein {
  opacity: 0;
  transform: translateY(15px) scale(1.05);
  animation: fadein 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes checkmark {
  0% {
    transform: translateY(-50%) scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.3) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(1.05);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* High-contrast color variations optimized for dark background */
.word-user { 
  color: #e879f9;
  text-shadow: 0 0 20px rgba(232, 121, 249, 0.3);
}
.word-customer { 
  color: #22d3ee;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}
.word-shopper { 
  color: #34d399;
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}
.word-clinician { 
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}
.word-investor { 
  color: #fb7185;
  text-shadow: 0 0 20px rgba(251, 113, 133, 0.3);
}
.word-gamer { 
  color: #a78bfa;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}
.word-human { 
  background: linear-gradient(
    110deg,
    #eab308 0%,
    #fbbf24 20%,
    #fde047 35%,
    #fef08a 45%,
    #ffffff 50%,
    #fef08a 55%,
    #fde047 65%,
    #fbbf24 80%,
    #eab308 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  animation: gold-shimmer 3s linear infinite alternate;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4)) drop-shadow(0 0 16px rgba(251, 191, 36, 0.2));
}

.word-human::before {
  top: -8px;
  left: -12px;
  animation-delay: 0s;
}

.word-human::after {
  top: -3px;
  right: -15px;
  animation-delay: 1s;
}






@keyframes gold-shimmer {
  0% {
    background-position: 0% 0;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.3)) drop-shadow(0 0 12px rgba(251, 191, 36, 0.1));
  }
  50% {
    background-position: 50% 0;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6)) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3)) drop-shadow(0 0 28px rgba(255, 215, 0, 0.2));
  }
  100% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.3)) drop-shadow(0 0 12px rgba(251, 191, 36, 0.1));
  }
}







/* Responsive adjustments */
@media (max-width: 768px) {
  #animated-word {
    min-width: 140px;
  }
  
  .word-strikethrough::after {
    height: 2px;
  }
} 
/* === Button System === */
.btn {
  --btn-radius: 12px;
  --btn-pad-y: 14px;
  --btn-pad-x: 22px;
  --btn-fg: #0b1220;
  --btn-bg: #e5e7eb;
  --btn-brd: rgba(255,255,255,0.18);
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:800;border-radius:var(--btn-radius);
  padding:var(--btn-pad-y) var(--btn-pad-x);
  text-decoration:none;line-height:1;gap:.5rem;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  border:1px solid var(--btn-brd);
  box-shadow:0 8px 24px rgba(0,0,0,.10);
  will-change:transform;
  cursor:pointer;
  font-family:inherit;
  font-size:inherit;
}
button.btn {
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}
.btn:hover { transform: translateY(-2px); }

/* Primary = glass on dark hero */
.btn--primary{
  color:#fff;background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-color:rgba(255,255,255,.28);
}
.btn--primary:hover{ background:rgba(255,255,255,.18); }

/* Ghost = quiet secondary */
.btn--ghost{
  color:#ffffff;background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-color:rgba(255,255,255,.28);
}
.btn--ghost:hover{ background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.35); }

/* Link button for footer or inline */
.btn--link{ color:#60a5fa;background:transparent;border-color:transparent;box-shadow:none;padding:0; }
.btn--link:hover{ text-decoration:underline; }

/* === Evidence Bar === */
.evidence-bar{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding:18px 0;
}
.evidence-inner{
  max-width:1200px;margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(9,1fr);align-items:center;gap:8px;
}
.evidence-item{ grid-column: span 1 / auto; display:flex; flex-direction:column; gap:2px; }
.evidence-label{ font-size:.68rem; letter-spacing:.04em; text-transform:uppercase; color:rgba(255,255,255,.65); }
.evidence-value{ font-weight:800;font-size:1.3rem;color:#fff; line-height:1.1; }
.evidence-note{ font-size:.72rem;color:rgba(255,255,255,.72); }
.divider{ height:28px; width:1px; background:linear-gradient(to bottom, transparent, rgba(255,255,255,.25), transparent); }

@media (max-width: 960px){
  .evidence-inner{ grid-template-columns:1fr 1px 1fr; row-gap:14px; }
  .divider:nth-of-type(4), .divider:nth-of-type(8){ display:none; }
}

/* === Why Hire Me === */
.why-hire{ padding:40px 0 8px; }
.why-grid{ max-width:1200px;margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.why-card{ background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:18px 20px; box-shadow:0 6px 18px rgba(0,0,0,.12); }
.why-card h3{ margin:0 0 6px; font-size:1rem; color:#c7d2fe; }
.why-card p{ margin:0; font-size:.98rem; color:#e5e7eb; }
@media (max-width:960px){ .why-grid{ grid-template-columns:1fr; } }
