:where([class^="ri-"])::before {
  content: "\f3c2";
}

.glow {
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.5);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(163, 230, 53, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 230, 53, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
}

.clover {
  position: fixed;
  font-size: 24px;
  pointer-events: none;
  z-index: 1;
  animation: fall 8s linear;
  opacity: 0;
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
  will-change: transform;
}

@keyframes fall {
  0% {
    transform: translateY(-5vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(105vh) translateX(100px) rotate(720deg);
    opacity: 0;
  }
}

.floating-word {
  position: fixed;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
  animation: float-word 8s linear infinite;
}

@keyframes float-word {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.logo-text::before {
  content: "🍀";
  margin-right: 0.5rem;
}

.clover {
  position: fixed;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  animation: float-clover 8s infinite ease-in-out;
  pointer-events: none;
  z-index: 100;
  transition: transform 0.3s ease-out;
  will-change: transform;
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.5);
}

@keyframes float-clover {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(10px, -10px) rotate(120deg);
  }
  66% {
    transform: translate(-10px, 10px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.animate-scroll-right {
  animation: scroll-right 30s linear infinite;
}

.animate-scroll-left {
  animation: scroll-left 30s linear infinite;
}

:root {
  --primary-color: #a3e635;
  --primary-glow: rgba(163, 230, 53, 0.5);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-gradient-x {
  animation: gradient-x 15s ease infinite;
  background: linear-gradient(to right, rgba(163, 230, 53, 0), rgba(163, 230, 53, 0.3), rgba(163, 230, 53, 0));
  background-size: 200% 200%;
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}

.pain-point {
  position: relative;
  transition: transform 0.3s ease;
}

.pain-point::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.pain-point:hover::before {
  border-color: var(--primary-color);
}

.pain-point:hover {
  transform: translateY(-5px);
}

[data-cursor-animate] .pixel-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-cursor-animate]:hover .pixel-icon::after {
  opacity: 1;
}
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #4b5563;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.custom-checkbox.checked {
  background-color: #a3e635;
  border-color: #a3e635;
}

.custom-checkbox.checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-radio {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #4b5563;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.custom-radio.checked {
  border-color: #a3e635;
}

.custom-radio.checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #a3e635;
}

.custom-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #4b5563;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.custom-switch.checked {
  background-color: #a3e635;
}

.custom-switch::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  transition: all 0.2s ease;
}

.custom-switch.checked::after {
  left: 24px;
}

.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #4b5563;
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a3e635;
  cursor: pointer;
}

.custom-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #a3e635;
  cursor: pointer;
  border: none;
}

.job-card {
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 200%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background-color: #2a2a2a;
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 1.5s infinite;
}

.triangle-animation {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card .check-icon {
  color: #a3e635;
}

.pricing-card .x-icon {
  color: #9ca3af;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes scroll-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.animate-scroll-right {
  animation: scroll-right 30s linear infinite;
}

.animate-scroll-left {
  animation: scroll-left 30s linear infinite;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card .check-icon {
  color: #a3e635;
}

.pricing-card .x-icon {
  color: #9ca3af;
}

:root {
  --primary-color: #a3e635;
  --primary-glow: rgba(163, 230, 53, 0.5);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient-x {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-gradient-x {
  animation: gradient-x 15s ease infinite;
  background: linear-gradient(to right, rgba(163, 230, 53, 0), rgba(163, 230, 53, 0.3), rgba(163, 230, 53, 0));
  background-size: 200% 200%;
}

.animate-fade-in {
  animation: fade-in 1s ease-out forwards;
}

.pain-point {
  position: relative;
  transition: transform 0.3s ease;
}

.pain-point::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.pain-point:hover::before {
  border-color: var(--primary-color);
}

.pain-point:hover {
  transform: translateY(-5px);
}

[data-cursor-animate] .pixel-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

[data-cursor-animate]:hover .pixel-icon::after {
  opacity: 1;
}
