/* ================================
   CRITICAL CSS
   Consolidated above-fold styles for performance
   Includes: tokens, theme-base, layout, navigation,
   buttons, cards, global patterns, hero styles
   ================================ */

/* ========== FONT FACES ========== */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ========== COLOR TOKENS ========== */
:root {
  --color-teal-700: #027373;
  --color-teal-800: #015858;
  --color-teal-900: #014444;
  --color-green-500: #22c55e;
  --color-green-600: #16a34a;
  --color-green-100: #dcfce7;
  --color-green-800: #166534;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;

  --bg-page: var(--color-gray-50);
  --bg-white: var(--color-white);
  --bg-dark: var(--color-gray-900);
  --text-primary: var(--color-gray-900);
  --text-secondary: var(--color-gray-600);
  --text-tertiary: var(--color-gray-500);
  --text-white: var(--color-white);
  --accent-primary: var(--color-teal-700);
  --accent-primary-hover: var(--color-teal-800);
  --border-light: var(--color-gray-200);

  --button-primary-bg: var(--color-teal-700);
  --button-primary-bg-hover: var(--color-teal-800);
  --button-primary-text: var(--color-white);
  --button-green-bg: var(--color-green-500);
  --button-green-bg-hover: var(--color-green-600);
  --button-green-text: var(--color-white);
  --nav-bg: var(--color-white);
  --nav-text: var(--color-gray-600);
  --nav-text-hover: var(--color-gray-900);
  --nav-border: var(--color-gray-200);
  --card-bg: var(--color-white);
  --card-border: var(--color-gray-200);
  --card-border-hover: rgba(2, 115, 115, 0.3);
  --card-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --hero-gradient: linear-gradient(to bottom right, var(--color-teal-700), var(--color-teal-800), var(--color-teal-900));
  --badge-green-bg: var(--color-green-100);
  --badge-green-text: var(--color-green-800);
  --badge-teal-bg: rgba(2, 115, 115, 0.1);
  --badge-teal-text: var(--color-teal-700);
  --overlay-white-10: rgba(255, 255, 255, 0.1);
  --overlay-white-20: rgba(255, 255, 255, 0.2);
  --hero-text-muted: rgba(204, 251, 241, 0.9);
}

/* ========== TYPOGRAPHY TOKENS ========== */
:root {
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/* ========== EFFECTS TOKENS ========== */
:root {
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-colors: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
  --transition-all: all 200ms ease;
  --backdrop-blur: blur(8px);
  --z-sticky: 20;
}

/* ========== THEME BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-xl); }
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-colors);
}

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

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

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

::selection {
  background-color: var(--accent-primary);
  color: var(--text-white);
}

/* ========== LAYOUT STRUCTURE ========== */
.container {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.container-medium { max-width: 56rem; }

.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  overflow: visible;
}

.nav-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
  z-index: 9999;
  position: relative;
}

.logo-img {
  height: 1.75rem;
  width: auto;
  overflow: visible;
}

@media (min-width: 768px) {
  .logo-img { height: 2rem; }
}

.logo-text-teal { color: var(--color-teal-700); }
.logo-text-green { color: var(--color-green-500); }

.nav-links {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--nav-text);
  border-radius: var(--radius-md);
  transition: var(--transition-all);
}

.nav-home:hover {
  color: var(--accent-primary);
  background: var(--badge-teal-bg);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--nav-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-all);
}

.nav-dropdown-btn:hover {
  color: var(--nav-text-hover);
  border-color: var(--accent-primary);
  background: var(--badge-teal-bg);
}

.nav-dropdown-btn svg:first-child {
  width: 1rem;
  height: 1rem;
}

.nav-dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 180px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--nav-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: var(--transition-colors);
}

.nav-dropdown-link:hover {
  color: var(--accent-primary);
  background: var(--badge-teal-bg);
}

.nav-dropdown-link:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.nav-dropdown-link:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.nav-dropdown-link-accent {
  color: var(--accent-primary);
  border-top: 1px solid var(--border-light);
}

.nav-link {
  color: var(--nav-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: var(--transition-colors);
}

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

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-lg);
  transition: var(--transition-colors);
}

.nav-cta:hover {
  background: var(--button-primary-bg-hover);
  color: var(--button-primary-text);
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-mobile { display: none; }
}

.nav-home-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--nav-text);
  border-radius: var(--radius-md);
  transition: var(--transition-all);
}

.nav-home-mobile:hover {
  color: var(--accent-primary);
  background: var(--badge-teal-bg);
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
}

.mobile-menu.active { display: block; }

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  color: var(--nav-text);
  font-weight: var(--weight-medium);
  transition: var(--transition-colors);
}

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

.mobile-cta {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 0.5rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: var(--transition-all);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border-color: var(--button-primary-bg);
}

.btn-primary:hover {
  background: var(--button-primary-bg-hover);
  border-color: var(--button-primary-bg-hover);
  color: var(--button-primary-text);
}

.btn-secondary {
  background: transparent;
  color: var(--color-teal-700);
  border-color: var(--color-teal-700);
}

.btn-secondary:hover {
  background: rgba(2, 115, 115, 0.05);
  color: var(--color-teal-700);
}

.btn-green {
  background: var(--button-green-bg);
  color: var(--button-green-text);
  border-color: var(--button-green-bg);
}

.btn-green:hover {
  background: var(--button-green-bg-hover);
  border-color: var(--button-green-bg-hover);
  color: var(--button-green-text);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-teal-700);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-100);
  color: var(--color-teal-700);
}

.btn-ghost {
  background: var(--overlay-white-10);
  color: var(--text-white);
  border-color: var(--overlay-white-20);
  backdrop-filter: var(--backdrop-blur);
}

.btn-ghost:hover {
  background: var(--overlay-white-20);
  color: var(--text-white);
}

/* ========== HERO SECTION ========== */
.hero {
  background: var(--hero-gradient);
  color: var(--text-white);
  position: relative;
}

.hero-content {
  max-width: 42rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-content { padding: 6rem 0; }
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .hero-title { font-size: var(--text-5xl); }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(204, 251, 241, 0.9);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: var(--text-xl); }
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: var(--text-sm);
  position: relative;
}

.proof-badges { display: flex; }

.proof-badge {
  width: 2rem;
  height: 2rem;
  background: rgba(2, 115, 115, 0.7);
  border: 2px solid var(--color-teal-700);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  margin-left: -0.5rem;
}

.proof-badge:first-child { margin-left: 0; }
.proof-text { color: rgba(153, 246, 228, 0.9); }

@keyframes rocket-liftoff {
  0%, 33% { transform: translate(0, 50px); opacity: 1; }
  38% { transform: translate(3px, 55px); opacity: 1; }
  50% { transform: translate(15px, 10px); opacity: 1; }
  70% { transform: translate(50px, -100px); opacity: 0.9; }
  85% { transform: translate(100px, -250px); opacity: 0.5; }
  100% { transform: translate(160px, -450px); opacity: 0; }
}

@keyframes rocket-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.hero-rocket-wrapper {
  position: absolute;
  right: -60px;
  top: 0;
  animation: rocket-liftoff 6s ease-in-out forwards;
}

.hero-rocket {
  width: 120px;
  height: auto;
  animation: rocket-shake 0.1s ease-in-out infinite;
}

@media (max-width: 640px) {
  .hero-rocket { width: 70px; }
  .hero-rocket-wrapper { right: auto; left: 10px; z-index: 10; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rocket-wrapper { animation: none; }
  .hero-rocket { animation: none; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.waves {
  position: relative;
  width: 100%;
  height: 5rem;
  margin-bottom: -0.5rem;
}

.waves > use {
  animation: wave-move 100s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.waves > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 56s;
}

.waves > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 80s;
}

.waves > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 104s;
}

.waves > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 64s;
}

@keyframes wave-move {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

@media (min-width: 768px) {
  .waves { height: 6rem; }
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: var(--text-3xl); }
}

.section-subtitle {
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SECTION BACKGROUNDS ========== */
.bg-white { background-color: var(--bg-white); }
.bg-gray { background-color: var(--color-gray-200); }

/* ========== CARDS ========== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--transition-all);
}

.card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--badge-teal-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-700);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
}

.feature-description {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ========== CHECK LIST ========== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-green-500);
  margin-top: 0.125rem;
}

.check-text { font-weight: var(--weight-medium); color: var(--text-secondary); }

/* ========== BADGE ========== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
}

.badge-green {
  background: var(--badge-green-bg);
  color: var(--badge-green-text);
}

/* ========== SPACING UTILITIES ========== */
.mt-6 { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }

/* ========== TEXT UTILITIES ========== */
.underline { text-decoration: underline; }

/* ========== DARK CARD (PageSpeed Showcase) ========== */
.card-dark {
  background: var(--bg-dark);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  color: var(--text-white);
}

.card-dark-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: 0.5rem;
}

.card-dark-subtitle {
  color: var(--color-gray-400);
  margin-bottom: 1rem;
}

.score-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.score-item {
  background: var(--color-gray-800);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
}

.score-value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-green-500);
}

.score-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-top: 0.25rem;
}

.card-dark-challenge {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
}

.card-dark-disclaimer {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

/* Glowing Button */
.btn-glow {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-green-500);
  color: var(--bg-dark);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.4), 0 0 60px rgba(34, 197, 94, 0.2);
  transition: var(--transition-all);
  text-decoration: none;
  animation: glow-pulse 2s ease-in-out infinite;
}

.btn-glow:hover {
  background: var(--color-green-400);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 60px rgba(34, 197, 94, 0.5), 0 0 80px rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.4), 0 0 60px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8), 0 0 50px rgba(34, 197, 94, 0.5), 0 0 70px rgba(34, 197, 94, 0.3);
  }
}
