* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #eafff4;
  background:
    radial-gradient(circle at top center, rgba(0, 255, 136, 0.08), transparent 32%),
    linear-gradient(180deg, #050807 0%, #020303 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-kicker,
.eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 255, 136, 0.78);
}

.eyebrow {
  position: relative;
  display: inline-block;
  color: #00ff88;
  text-shadow:
    0 0 6px rgba(0, 255, 136, 0.6),
    0 0 12px rgba(0, 255, 136, 0.3);
  transition: 0.3s ease;
  animation: glowPulse 2.5s infinite ease-in-out;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 136, 0.4),
    transparent
  );
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.5s ease;
}

.eyebrow:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.section-kicker {
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 6px rgba(0, 255, 136, 0.45),
    0 0 12px rgba(0, 255, 136, 0.18);
  transition: 0.3s ease;
  animation: kickerPulse 2.8s ease-in-out infinite;
}

.section-kicker:hover {
  text-shadow:
    0 0 10px rgba(0, 255, 136, 0.9),
    0 0 20px rgba(0, 255, 136, 0.5),
    0 0 34px rgba(0, 255, 136, 0.25);
  transform: translateY(-1px);
}

.section-kicker::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 0;
  width: 116%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 255, 136, 0.22),
    transparent
  );
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.5s ease;
  pointer-events: none;
}

.section-kicker:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.section-title {
  max-width: 900px;
  font-size: 44px;
  line-height: 1.12;
  color: #f1fff9;
}

.content-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(0, 255, 136, 0.12);
  background: rgba(0, 255, 136, 0.03);
  box-shadow:
    0 0 24px rgba(0, 255, 136, 0.06),
    inset 0 0 10px rgba(0, 255, 136, 0.02);
}

.content-card p + p {
  margin-top: 16px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  border: 1px solid rgba(0, 255, 136, 0.24);
  background: rgba(0, 255, 136, 0.06);
  color: #00ff88;
  box-shadow:
    0 0 16px rgba(0, 255, 136, 0.1),
    inset 0 0 8px rgba(0, 255, 136, 0.03);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f0fff8;
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 4px rgba(0, 255, 136, 0.4),
      0 0 10px rgba(0, 255, 136, 0.2);
  }
  50% {
    text-shadow:
      0 0 12px rgba(0, 255, 136, 0.9),
      0 0 24px rgba(0, 255, 136, 0.5);
  }
  100% {
    text-shadow:
      0 0 4px rgba(0, 255, 136, 0.4),
      0 0 10px rgba(0, 255, 136, 0.2);
  }
}

@keyframes kickerPulse {
  0% {
    text-shadow:
      0 0 4px rgba(0, 255, 136, 0.28),
      0 0 8px rgba(0, 255, 136, 0.12);
  }
  50% {
    text-shadow:
      0 0 10px rgba(0, 255, 136, 0.65),
      0 0 18px rgba(0, 255, 136, 0.22);
  }
  100% {
    text-shadow:
      0 0 4px rgba(0, 255, 136, 0.28),
      0 0 8px rgba(0, 255, 136, 0.12);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 38px));
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-kicker,
  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-actions {
    flex-direction: column;
  }
}