* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Flowing border animation */
@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Slide up from bottom animation */
@keyframes slideUpFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Typing effect animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 13ch;
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
}

.header {
  background-color: transparent;
  padding: 1rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  transform: scale(1);
  display: inline-block;
}

.nav a:hover {
  color: #6B46C1;
  transform: scale(1.1);
  font-weight: 600;
}

.nav a.active {
  color: #6B46C1 !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #6B46C1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav {
    gap: 1.5rem;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .nav {
    gap: 1rem;
  }
  
  .nav a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
}

/* Section Styles */
.section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
}

/* Shared card container */
.content-card {
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* About Section Styles */
.about-section {
  background-color: #ffffff;
  padding: 3rem 3rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  margin: 2rem auto;
  max-width: 1200px;
  border: none;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUpFromBottom 0.8s ease-out;
  border: 3px solid #ffffff;
}

.profile-name-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-name {
  font-size: 3rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
  white-space: nowrap;
  display: inline-block;
  font-family: monospace;
  min-height: 3.6rem;
}

.profile-name::after {
  content: '|';
  animation: blink 0.75s step-end infinite;
}

.linkedin-icon {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.linkedin-icon:hover {
  transform: scale(1.1);
}

.about-content {
  max-width: 900px;
}

.about-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p strong {
  color: #1e293b;
  font-weight: 600;
  background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Experience Section Styles */
.experience-section {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  border: none;
}

.experience-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.experience-item {
  margin-bottom: 1.75rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #4338ca;
}

.experience-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(67, 56, 202, 0.15);
  border-left-color: #6366f1;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.job-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.company-info {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.job-period {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.job-responsibilities {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.job-responsibilities li {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.job-responsibilities li::marker {
  color: #4338ca;
  font-size: 1.1em;
}

.job-responsibilities li:last-child {
  margin-bottom: 0;
}

/* Education Section Styles */
.education-section {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  border: none;
}

.education-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.education-intro {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.education-item {
  margin-bottom: 1.75rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #4338ca;
}

.education-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(67, 56, 202, 0.15);
  border-left-color: #6366f1;
}

.education-item:last-child {
  margin-bottom: 0;
}

.degree-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.institution-info {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.education-period {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.education-details {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.education-details li {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.education-details li::marker {
  color: #4338ca;
  font-size: 1.1em;
}

.education-details li:last-child {
  margin-bottom: 0;
}

/* Broader Capabilities Section Styles */
.capabilities-section {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  border: none;
}

.capabilities-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.capabilities-intro {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.capabilities-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.capabilities-list li {
  font-size: 1.05rem;
  color: #334155;
  line-height: 2;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 8px;
  border-left: 3px solid #4338ca;
  transition: all 0.3s ease;
}

.capabilities-list li:hover {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(67, 56, 202, 0.1);
}

.capabilities-list li:last-child {
  margin-bottom: 0;
}

.capabilities-list strong {
  color: #1f2937;
  font-weight: 600;
}

/* Honors & Awards Section Styles */
.awards-section {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  border: none;
}

.awards-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.award-summary-box {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(67, 56, 202, 0.1);
}

.award-summary-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(116, 160, 231, 0.2);
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4338ca;
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.summary-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-applause {
  background-color: #ede9fe;
  color: #6b21a8;
}

.stat-spot {
  background-color: #fef3c7;
  color: #92400e;
}

.stat-vantage {
  background-color: #d1fae5;
  color: #065f46;
}

/* Tooltip styling */
.award-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  z-index: 100;
  min-width: 250px;
}

/* Applause Award tooltip - Purple */
.stat-applause .award-tooltip {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
  box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
}

.stat-applause .award-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #8b5cf6;
}

/* Spot Award tooltip - Gold/Yellow */
.stat-spot .award-tooltip {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  box-shadow: 0 10px 25px rgba(252, 211, 77, 0.4);
}

.stat-spot .award-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #f59e0b;
}

/* Vantage Points tooltip - Green */
.stat-vantage .award-tooltip {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 100%);
  box-shadow: 0 10px 25px rgba(110, 231, 183, 0.4);
}

.stat-vantage .award-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #10b981;
}

.stat-item:hover .award-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.tooltip-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.tooltip-years {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  opacity: 0.95;
}

.stat-icon {
  font-size: 1.2rem;
}

.stat-value {
  font-size: 1.25rem;
  margin-left: 0.25rem;
}

.awards-intro {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.award-item {
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #4338ca;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(107, 70, 193, 0.15);
}

.award-applause {
  background-color: #f5f3ff;
  border-left: 4px solid #a855f7;
}

.award-applause:hover {
  box-shadow: 0 6px 12px rgba(168, 85, 247, 0.2);
}

.award-spot {
  background-color: #fffbeb;
  border-left: 4px solid #f59e0b;
}

.award-spot:hover {
  box-shadow: 0 6px 12px rgba(245, 158, 11, 0.2);
}

.award-vantage {
  background-color: #ecfdf5;
  border-left: 4px solid #10b981;
}

.award-vantage:hover {
  box-shadow: 0 6px 12px rgba(16, 185, 129, 0.2);
}

.award-header {
  margin-bottom: 0.75rem;
}

.award-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.award-applause .award-name {
  color: #7c3aed;
}

.award-spot .award-name {
  color: #d97706;
}

.award-vantage .award-name {
  color: #059669;
}

.award-associated {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.award-associated span {
  font-style: italic;
}

.award-description {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/* Recommendations Section */
.recommendations-section {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
}

.recommendations-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #4338ca;
  display: inline-block;
  letter-spacing: -0.5px;
}

.recommendations-intro {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.recommendation-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 4px solid #4338ca;
}

.recommendation-card.alt {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border: 1px solid #e5e7eb;
  border-left: 4px solid #6366f1;
}

.recommendation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(67, 56, 202, 0.15);
}

.reco-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reco-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f3f4f6;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.15);
}

.reco-name {
  font-size: 1.15rem;
  color: #1e293b;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.2px;
}

.reco-role {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0.25rem 0 0;
  font-style: italic;
  font-weight: 500;
}

.reco-quote {
  font-size: 1rem;
  color: #334155;
  line-height: 1.9;
  margin: 0;
  font-style: italic;
  border-left: 4px solid #4338ca;
  padding-left: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(67, 56, 202, 0.05) 0%, transparent 100%);
}

@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  
  .profile-name {
    font-size: 2rem;
  }
  
  .profile-photo {
    width: 150px;
    height: 150px;
  }
  
  .about-title,
  .experience-title,
  .education-title,
  .capabilities-title,
  .awards-title,
  .recommendations-title {
    font-size: 1.5rem;
  }
  
  .job-title,
  .degree-title {
    font-size: 1.15rem;
  }
  
  .about-section,
  .experience-section,
  .education-section,
  .capabilities-section,
  .awards-section,
  .recommendations-section,
  .content-card {
    padding: 2rem 1.5rem;
  }
  
  .capabilities-list li {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  
  .summary-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    font-size: 0.9rem;
  }

  .cv-download-section {
    padding: 2.5rem 1.5rem;
    margin: 1.5rem auto;
  }

  .cv-title {
    font-size: 1.5rem;
  }

  .cv-description {
    font-size: 1.1rem;
  }

  .cv-footer {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
}

/* CV Download Section */
.cv-download-section {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #c7d2fe;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cv-title {
  font-size: 2rem;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.cv-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
  gap: 0.25rem;
}

.arrow-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, #4338ca 0%, #6366f1 100%);
  opacity: 0;
  animation: fadeInLine 1.5s ease-in-out infinite;
}

.arrow-line:nth-child(1) {
  animation-delay: 0s;
}

.arrow-line:nth-child(2) {
  animation-delay: 0.3s;
}

.arrow-line:nth-child(3) {
  animation-delay: 0.6s;
}

.arrow-head {
  font-size: 1.5rem;
  color: #4338ca;
  animation: bounce 1.5s ease-in-out infinite;
  animation-delay: 0.9s;
}

@keyframes fadeInLine {
  0%, 100% {
    opacity: 0;
    transform: translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.cv-description {
  font-size: 1.5rem;
  color: #4338ca;
  margin: 0.25rem 0;
  font-weight: 300;
}

.cv-footer {
  font-size: 1.5rem;
  color: #1e293b;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: -0.3px;
}

.btn {
  display: inline-block;
  background: #ffffff;
  padding: 1rem 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #4338ca;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #4338ca;
  cursor: pointer;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
  width: 0;
  height: 0;
  left: var(--xPos, 50%);
  top: var(--yPos, 50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.6s ease-out, height 0.6s ease-out;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 56, 202, 0.4);
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}