/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

/* Default Variables */
:root {
	--background: 0 0% 100%;
	--foreground: 220 20% 10%;

	--card: 0 0% 100%;
	--card-foreground: 220 20% 10%;

	--popover: 0 0% 100%;
	--popover-foreground: 220 20% 10%;

	--primary: 142 71% 45%;
	--primary-foreground: 0 0% 100%;

	--secondary: 220 14% 96%;
	--secondary-foreground: 220 20% 10%;

	--muted: 220 14% 96%;
	--muted-foreground: 220 10% 46%;

	--accent: 142 71% 45%;
	--accent-foreground: 0 0% 100%;

	--destructive: 0 84% 60%;
	--destructive-foreground: 0 0% 100%;

	--border: 220 13% 91%;
	--input: 220 13% 91%;
	--radius: 0.75rem;
	--dark: 0 0 0;
	--white: 0 0 100%;

	/* Custom tokens */
	--surface-dark: 142 40% 8%;
    --surface-dark-foreground: 142 20% 95%;

	--hero-bg: linear-gradient(135deg, hsl(142 45% 12%) 0%, hsl(142 35% 18%) 50%, hsl(142 30% 22%) 100%);
	--gradient-primary: linear-gradient(135deg, hsl(142 71% 45%), hsl(142 76% 36%));
	--gradient-dark: linear-gradient(180deg, hsl(220 25% 8%), hsl(220 25% 12%));

	--shadow-glow: 0 0 60px hsl(142 71% 45% / 0.3);
	--shadow-card: 0 4px 24px hsl(220 25% 8% / 0.08);
	--shadow-card-hover: 0 8px 32px hsl(220 25% 8% / 0.12);
}

* {
	box-sizing: border-box;
	border-color: hsl(var(--border));
}

a {
	text-decoration: none;
}

body {
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	letter-spacing: -0.02em;
}

.text-fl-primary {
	color: hsl(var(--primary));
}

.bg-fl-primary {
	background-color: hsl(var(--primary)) !important;
}

.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsl(142 71% 45% / 0.4); }
  50% { box-shadow: 0 0 40px hsl(142 71% 45% / 0.6); }
}