:root {
  --color-ink: #070b18;
  --color-navy: #0e1633;
  --color-navy-deep: #0a1126;
  --color-text: #eaf0ff;
  --color-muted: #a7b3d1;
  --color-gold: #c8a35a;
  --color-teal: #5aa7c8;
  --color-border: rgba(140, 160, 210, 0.18);
  --color-glow: rgba(90, 167, 200, 0.18);
  --color-warm: rgba(200, 163, 90, 0.22);
  --max-width: 1160px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 20px 60px rgba(4, 10, 26, 0.5);
  --shadow-glow: 0 0 0 1px rgba(150, 175, 220, 0.2), 0 18px 40px rgba(4, 10, 26, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--color-ink);
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: -0.01em;
  font-size: 19px;
}

a {
  color: var(--color-teal);
  text-decoration: none;
}

a:hover {
  color: var(--color-text);
}

strong {
  color: var(--color-text);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1025px) {
  .section .container {
    padding-right: 280px;
  }

  .hero .container {
    padding-right: 280px;
  }
}

.section {
  padding: 120px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 163, 90, 0.4), transparent);
  opacity: 0.5;
}

.section-header {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-header.tight {
  margin-bottom: 24px;
}

.section-title {
  font-size: 48px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  position: relative;
  font-weight: 700;
  background: linear-gradient(135deg, #f2f5ff 0%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--color-gold), rgba(200, 163, 90, 0.1));
  border-radius: 999px;
}

/* Section-specific title colors matching scrollspy */
#think .section-title {
  background: linear-gradient(135deg, rgba(90, 167, 200, 0.5) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#build .section-title {
  background: linear-gradient(135deg, rgba(211, 176, 106, 0.5) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#work .section-title {
  background: linear-gradient(135deg, rgba(155, 107, 219, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#manifesto .section-title {
  background: linear-gradient(135deg, rgba(236, 111, 146, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#research .section-title {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#experience .section-title {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#current .section-title {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#contact .section-title {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.4) 0%, #f2f5ff 40%, #f2f5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--color-muted);
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
}

/* Scrollspy Navigation */
.scrollspy-nav {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(7, 11, 24, 0.75);
  padding: 20px 16px;
  border-radius: 24px;
  border: 1px solid rgba(120, 150, 210, 0.15);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(4, 10, 26, 0.5),
              0 0 0 1px rgba(200, 163, 90, 0.1);
  transition: all 0.3s ease;
}

.scrollspy-nav:hover {
  background: rgba(7, 11, 24, 0.85);
  border-color: rgba(120, 150, 210, 0.25);
  box-shadow: 0 16px 50px rgba(4, 10, 26, 0.6),
              0 0 0 1px rgba(200, 163, 90, 0.2);
}

.scrollspy-brand {
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(120, 150, 210, 0.15);
}

.scrollspy-brand a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.12), rgba(200, 163, 90, 0.05));
  border: 1px solid rgba(200, 163, 90, 0.3);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(200, 163, 90, 0.15);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.scrollspy-brand a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.2), rgba(90, 167, 200, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scrollspy-brand a:hover::before {
  opacity: 1;
}

.scrollspy-brand a:hover {
  border-color: rgba(200, 163, 90, 0.5);
  box-shadow: 0 4px 16px rgba(200, 163, 90, 0.3);
  transform: translateY(-1px);
}

/* Progress Line */
.scrollspy-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.scrollspy-links::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(200, 163, 90, 0.25) 0%,
    rgba(90, 167, 200, 0.25) 50%,
    rgba(155, 107, 219, 0.25) 100%);
  border-radius: 2px;
}

.scrollspy-links li {
  position: relative;
}

.scrollspy-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 0;
  position: relative;
}

/* Color-coded dots for different sections */
.nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid rgba(167, 179, 209, 0.4);
  background: rgba(14, 22, 51, 0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(4, 10, 26, 0.5);
}

/* Section-specific colors */
.scrollspy-links li:nth-child(1) .nav-dot { border-color: rgba(90, 167, 200, 0.5); }
.scrollspy-links li:nth-child(2) .nav-dot { border-color: rgba(200, 163, 90, 0.5); }
.scrollspy-links li:nth-child(3) .nav-dot { border-color: rgba(155, 107, 219, 0.5); }
.scrollspy-links li:nth-child(4) .nav-dot { border-color: rgba(236, 111, 146, 0.5); }
.scrollspy-links li:nth-child(5) .nav-dot { border-color: rgba(52, 211, 153, 0.5); }
.scrollspy-links li:nth-child(6) .nav-dot { border-color: rgba(251, 146, 60, 0.5); }
.scrollspy-links li:nth-child(7) .nav-dot { border-color: rgba(96, 165, 250, 0.5); }
.scrollspy-links li:nth-child(8) .nav-dot { border-color: rgba(244, 114, 182, 0.5); }

.nav-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(14, 22, 51, 0.98), rgba(7, 11, 24, 0.98));
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(120, 150, 210, 0.2);
  box-shadow: 0 8px 24px rgba(4, 10, 26, 0.7),
              0 0 0 1px rgba(120, 150, 210, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
}

.nav-label::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, rgba(14, 22, 51, 0.98), rgba(7, 11, 24, 0.98));
  border-right: 1px solid rgba(200, 163, 90, 0.3);
  border-bottom: 1px solid rgba(200, 163, 90, 0.3);
}

/* Hover states with section-specific colors */
.scrollspy-links li:nth-child(1) a:hover .nav-dot,
.scrollspy-links li:nth-child(1) a.active .nav-dot {
  background: radial-gradient(circle, #5aa7c8 0%, #4a8fa8 100%);
  border-color: #5aa7c8;
  box-shadow: 0 0 24px rgba(90, 167, 200, 0.9),
              0 0 48px rgba(90, 167, 200, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(2) a:hover .nav-dot,
.scrollspy-links li:nth-child(2) a.active .nav-dot {
  background: radial-gradient(circle, #d3b06a 0%, #c8a35a 100%);
  border-color: #d3b06a;
  box-shadow: 0 0 24px rgba(200, 163, 90, 0.9),
              0 0 48px rgba(200, 163, 90, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(3) a:hover .nav-dot,
.scrollspy-links li:nth-child(3) a.active .nav-dot {
  background: radial-gradient(circle, #9b6bdb 0%, #7c54b3 100%);
  border-color: #9b6bdb;
  box-shadow: 0 0 24px rgba(155, 107, 219, 0.9),
              0 0 48px rgba(155, 107, 219, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(4) a:hover .nav-dot,
.scrollspy-links li:nth-child(4) a.active .nav-dot {
  background: radial-gradient(circle, #ec6f92 0%, #d85577 100%);
  border-color: #ec6f92;
  box-shadow: 0 0 24px rgba(236, 111, 146, 0.9),
              0 0 48px rgba(236, 111, 146, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(5) a:hover .nav-dot,
.scrollspy-links li:nth-child(5) a.active .nav-dot {
  background: radial-gradient(circle, #34d399 0%, #2ab67a 100%);
  border-color: #34d399;
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.9),
              0 0 48px rgba(52, 211, 153, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(6) a:hover .nav-dot,
.scrollspy-links li:nth-child(6) a.active .nav-dot {
  background: radial-gradient(circle, #fb923c 0%, #ea7c1f 100%);
  border-color: #fb923c;
  box-shadow: 0 0 24px rgba(251, 146, 60, 0.9),
              0 0 48px rgba(251, 146, 60, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(7) a:hover .nav-dot,
.scrollspy-links li:nth-child(7) a.active .nav-dot {
  background: radial-gradient(circle, #60a5fa 0%, #3b82f6 100%);
  border-color: #60a5fa;
  box-shadow: 0 0 24px rgba(96, 165, 250, 0.9),
              0 0 48px rgba(96, 165, 250, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links li:nth-child(8) a:hover .nav-dot,
.scrollspy-links li:nth-child(8) a.active .nav-dot {
  background: radial-gradient(circle, #f472b6 0%, #ec4899 100%);
  border-color: #f472b6;
  box-shadow: 0 0 24px rgba(244, 114, 182, 0.9),
              0 0 48px rgba(244, 114, 182, 0.5),
              inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.scrollspy-links a:hover .nav-dot,
.scrollspy-links a.active .nav-dot {
  transform: scale(1.6);
  border-width: 3px;
}

.scrollspy-links a.active .nav-dot {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.scrollspy-links a:hover .nav-label {
  color: var(--color-text);
  border-color: rgba(200, 163, 90, 0.4);
}

.scrollspy-links a.active .nav-label {
  color: var(--color-text);
  font-weight: 700;
}

/* Active state label colors */
.scrollspy-links li:nth-child(1) a.active .nav-label {
  border-color: rgba(90, 167, 200, 0.5);
  box-shadow: 0 8px 24px rgba(90, 167, 200, 0.3);
}
.scrollspy-links li:nth-child(2) a.active .nav-label {
  border-color: rgba(200, 163, 90, 0.5);
  box-shadow: 0 8px 24px rgba(200, 163, 90, 0.3);
}
.scrollspy-links li:nth-child(3) a.active .nav-label {
  border-color: rgba(155, 107, 219, 0.5);
  box-shadow: 0 8px 24px rgba(155, 107, 219, 0.3);
}
.scrollspy-links li:nth-child(4) a.active .nav-label {
  border-color: rgba(236, 111, 146, 0.5);
  box-shadow: 0 8px 24px rgba(236, 111, 146, 0.3);
}
.scrollspy-links li:nth-child(5) a.active .nav-label {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.3);
}
.scrollspy-links li:nth-child(6) a.active .nav-label {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 8px 24px rgba(251, 146, 60, 0.3);
}
.scrollspy-links li:nth-child(7) a.active .nav-label {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.3);
}
.scrollspy-links li:nth-child(8) a.active .nav-label {
  border-color: rgba(244, 114, 182, 0.5);
  box-shadow: 0 8px 24px rgba(244, 114, 182, 0.3);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(14, 22, 51, 0.5);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg,
    var(--color-gold) 0%,
    var(--color-teal) 25%,
    #9b6bdb 50%,
    #ec6f92 75%,
    #34d399 100%);
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(200, 163, 90, 0.5);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 22, 51, 0.98), rgba(7, 11, 24, 0.98));
  border: 1px solid rgba(200, 163, 90, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(4, 10, 26, 0.8),
              0 0 0 1px rgba(200, 163, 90, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1);
  border-color: rgba(200, 163, 90, 0.5);
  box-shadow: 0 12px 32px rgba(200, 163, 90, 0.3);
}

.mobile-nav-toggle i {
  color: var(--color-gold);
  font-size: 24px;
}

.mobile-nav-menu {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1000;
  background: rgba(14, 22, 51, 0.98);
  border: 1px solid rgba(120, 150, 210, 0.2);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(4, 10, 26, 0.8);
  backdrop-filter: blur(12px);
  min-width: 200px;
}

.mobile-nav-menu.active {
  display: flex;
}

.mobile-nav-item {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(200, 163, 90, 0.1);
  color: var(--color-text);
  border-left: 3px solid var(--color-gold);
  padding-left: 13px;
}

/* Hide scrollspy on mobile, show mobile nav */
@media (max-width: 1024px) {
  .scrollspy-nav {
    display: none;
  }

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

  .scroll-progress {
    display: block;
  }
}

.hero {
  padding-top: 140px;
  padding-bottom: 140px;
  background: radial-gradient(circle at top, rgba(200, 163, 90, 0.14), transparent 52%),
    radial-gradient(circle at 20% 20%, rgba(90, 167, 200, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(14, 22, 51, 0.45) 0%, rgba(7, 11, 24, 0.95) 65%);
}

.hero-content {
  max-width: 900px;
  margin: 0 0 64px;
}

.hero-intro {
  margin-bottom: 48px;
}

.hero-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wave {
  font-size: 48px;
  display: inline-block;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40%, 100% { transform: rotate(0deg); }
}

.hero-greeting p {
  font-size: 32px;
  font-weight: 400;
  color: var(--color-muted);
  margin: 0;
}

.hero-name {
  font-size: clamp(56px, 8vw, 80px);
  line-height: 1;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-roles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.role-tag {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid;
  transition: all 0.3s ease;
}

.role-tag.security {
  background: rgba(200, 163, 90, 0.1);
  border-color: rgba(200, 163, 90, 0.4);
  color: var(--color-gold);
}

.role-tag.ai {
  background: rgba(90, 167, 200, 0.1);
  border-color: rgba(90, 167, 200, 0.4);
  color: var(--color-teal);
}

.role-tag.research {
  background: rgba(155, 107, 219, 0.1);
  border-color: rgba(155, 107, 219, 0.4);
  color: #9b6bdb;
}

.role-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  margin-bottom: 48px;
}

.hero-lead {
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 24px;
}

.hero-secondary {
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(14, 22, 51, 0.6);
  border: 1px solid rgba(120, 150, 210, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 163, 90, 0.4);
  box-shadow: 0 12px 32px rgba(4, 10, 26, 0.6);
}

.stat-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.availability-dot {
  width: 10px;
  height: 10px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(120, 150, 210, 0.2);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(4, 10, 26, 0.7);
}

.highlight-card.expertise:hover {
  border-color: rgba(200, 163, 90, 0.4);
}

.highlight-card.approach:hover {
  border-color: rgba(90, 167, 200, 0.4);
}

.highlight-card.location:hover {
  border-color: rgba(155, 107, 219, 0.4);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.highlight-icon {
  font-size: 32px;
}

.highlight-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.highlight-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.highlight-list li::before {
  content: "▸";
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
}

.highlight-card p {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.approach-principles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.principle-mini {
  padding: 8px 14px;
  background: rgba(90, 167, 200, 0.1);
  border: 1px solid rgba(90, 167, 200, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
}

.location-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.location-badge {
  padding: 14px 20px;
  background: rgba(155, 107, 219, 0.1);
  border: 1px solid rgba(155, 107, 219, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #9b6bdb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timezone-note {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.button {
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, #d3b06a 0%, #c29a4c 100%);
  color: #120f08;
  box-shadow: 0 10px 30px rgba(200, 163, 90, 0.25);
}

.button.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(200, 163, 90, 0.4);
  background: linear-gradient(135deg, #e0c080 0%, #d3a860 100%);
}

.button.ghost {
  border-color: rgba(200, 163, 90, 0.45);
  color: var(--color-text);
  background: rgba(14, 22, 51, 0.6);
}

.button.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 163, 90, 0.7);
  background: rgba(14, 22, 51, 0.9);
  box-shadow: 0 12px 30px rgba(200, 163, 90, 0.15);
}

.hero-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(200, 163, 90, 0.2);
  box-shadow: 0 0 0 1px rgba(200, 163, 90, 0.08), 0 18px 40px rgba(4, 10, 26, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(200, 163, 90, 0.2), 0 24px 60px rgba(4, 10, 26, 0.8);
}

.hero-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.hero-card p {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 163, 90, 0.12);
  border: 1px solid rgba(200, 163, 90, 0.35);
  font-size: 13px;
  color: var(--color-text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: scale(1.05);
  background: rgba(200, 163, 90, 0.2);
  border-color: rgba(200, 163, 90, 0.5);
}

.proof-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: rgba(14, 22, 51, 0.7);
  border: 1px solid rgba(200, 163, 90, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-value {
  font-weight: 700;
  color: var(--color-text);
  font-size: 18px;
}

.proof-label {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
}

.capability-list {
  display: grid;
  gap: 18px;
}

.capability-card {
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(120, 150, 210, 0.22);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(4, 10, 26, 0.7), 0 0 0 1px rgba(200, 163, 90, 0.3);
  border-color: rgba(200, 163, 90, 0.4);
}

.capability-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
}

.capability-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--color-text);
  font-size: 16px;
}

.mini-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mini-list li::before {
  content: "•";
  color: var(--color-gold);
  font-size: 20px;
}

.thought-card {
  background: linear-gradient(160deg, rgba(14, 22, 51, 0.9), rgba(7, 11, 24, 0.9));
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(200, 163, 90, 0.28);
  box-shadow: 0 0 0 1px rgba(200, 163, 90, 0.1), 0 20px 50px rgba(4, 10, 26, 0.6);
}

.thought-card h3 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
}

.thought-card p {
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.thought-metrics {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--color-gold);
  display: block;
}

.metric-value {
  font-size: 17px;
  color: var(--color-text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(120, 150, 210, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.work-card:hover::before {
  transform: translateX(0);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(4, 10, 26, 0.8), 0 0 0 1px rgba(90, 167, 200, 0.4);
  border-color: rgba(90, 167, 200, 0.5);
}

.work-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.badge {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 163, 90, 0.16);
  border: 1px solid rgba(200, 163, 90, 0.4);
  color: var(--color-text);
  width: fit-content;
  font-weight: 600;
  transition: all 0.2s ease;
}

.badge:hover {
  background: rgba(200, 163, 90, 0.25);
  border-color: rgba(200, 163, 90, 0.6);
  transform: scale(1.05);
}

.work-line {
  margin: 0;
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.65;
}

.work-why {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

.work-tools {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.manifesto {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(120, 150, 210, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 24px;
  font-size: 18px;
  line-height: 1.7;
}

.manifesto p {
  margin: 0;
  color: var(--color-muted);
}

.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.principle {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(200, 163, 90, 0.28);
  background: rgba(200, 163, 90, 0.08);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.research-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(120, 150, 210, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 20px;
  font-size: 18px;
  line-height: 1.7;
}

.research-card p {
  margin: 0;
  color: var(--color-muted);
}

.text-link {
  color: var(--color-gold);
  font-weight: 600;
}

.experience-list {
  display: grid;
  gap: 18px;
}

.experience-item {
  padding: 28px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(120, 150, 210, 0.2);
  background: rgba(14, 22, 51, 0.62);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.experience-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(4, 10, 26, 0.6);
  border-color: rgba(200, 163, 90, 0.35);
  background: rgba(14, 22, 51, 0.8);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.experience-item h3 {
  margin: 0;
  font-size: 21px;
}

.experience-item ul {
  margin: 12px 0 8px;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 15.5px;
}

.impact {
  margin: 0;
  color: var(--color-muted);
  font-size: 14.5px;
}

.current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.current-grid p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 20px;
}

.current-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(200, 163, 90, 0.26);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.current-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(4, 10, 26, 0.7), 0 0 0 1px rgba(200, 163, 90, 0.4);
  border-color: rgba(200, 163, 90, 0.5);
}

.value-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-chip {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(200, 163, 90, 0.28);
  background: rgba(200, 163, 90, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text);
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #f0d08a 0%, #c29a4c 60%, rgba(200, 163, 90, 0.4) 100%);
  box-shadow: 0 0 10px rgba(200, 163, 90, 0.5);
  flex-shrink: 0;
}

.current-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--color-ink) 0%, var(--color-navy-deep) 100%);
  position: relative;
}

.contact-section::before {
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.3), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-card {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(244, 114, 182, 0.2);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 114, 182, 0.4);
  box-shadow: 0 24px 60px rgba(4, 10, 26, 0.7), 0 0 0 1px rgba(244, 114, 182, 0.3);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.contact-card p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f472b6;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #ec4899;
  transform: translateX(4px);
}

.locations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.location-tag {
  padding: 8px 16px;
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.contact-social {
  background: linear-gradient(160deg, rgba(14, 22, 51, 0.9), rgba(7, 11, 24, 0.9));
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(244, 114, 182, 0.25);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}

.contact-social h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.contact-social > p {
  margin: 0 0 32px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.6;
}

.social-links {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(14, 22, 51, 0.6);
  border: 1px solid rgba(120, 150, 210, 0.2);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateX(8px);
  background: rgba(14, 22, 51, 0.9);
  box-shadow: 0 8px 24px rgba(4, 10, 26, 0.6);
}

.social-link.linkedin:hover {
  border-color: rgba(10, 102, 194, 0.6);
}

.social-link.github:hover {
  border-color: rgba(200, 163, 90, 0.6);
}

.social-link.youtube:hover {
  border-color: rgba(255, 0, 0, 0.6);
}

.social-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 24px;
  position: relative;
}

.linkedin-icon {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.15), rgba(10, 102, 194, 0.05));
  border: 1px solid rgba(10, 102, 194, 0.3);
  color: #0a66c2;
}

.github-icon {
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.15), rgba(200, 163, 90, 0.05));
  border: 1px solid rgba(200, 163, 90, 0.3);
  color: var(--color-gold);
}

.youtube-icon {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff0000;
}

.social-link:hover .linkedin-icon {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.25), rgba(10, 102, 194, 0.15));
  border-color: rgba(10, 102, 194, 0.5);
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.3);
  transform: scale(1.1);
}

.social-link:hover .github-icon {
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.25), rgba(200, 163, 90, 0.15));
  border-color: rgba(200, 163, 90, 0.5);
  box-shadow: 0 0 20px rgba(200, 163, 90, 0.3);
  transform: scale(1.1);
}

.social-link:hover .youtube-icon {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(255, 0, 0, 0.15));
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transform: scale(1.1);
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-text strong {
  font-size: 18px;
  color: var(--color-text);
  font-weight: 700;
}

.social-text span {
  font-size: 14px;
  color: var(--color-muted);
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.footer {
  padding: 48px 0;
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(120, 140, 185, 0.15);
}

.footer-bottom {
  text-align: center;
  color: var(--color-muted);
  font-size: 14px;
}

.sep {
  margin: 0 12px;
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .value-row {
    grid-template-columns: 1fr;
  }

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

  .contact-social {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-greeting {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wave {
    font-size: 36px;
  }

  .hero-greeting p {
    font-size: 24px;
  }

  .hero-name {
    font-size: clamp(40px, 10vw, 56px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-secondary {
    font-size: 17px;
  }

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

  .stat-item {
    padding: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .button {
    width: 100%;
    justify-content: center;
  }

  .hero-availability {
    justify-content: center;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle,
  .hero-subtitle {
    font-size: 18px;
  }

  .button {
    padding: 12px 20px;
    font-size: 15px;
  }

  .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
