:root {
  --primary-green: #22c55e;
  --primary-dark: #111827;
  --text-gray: #4b5563;
  --bg-light: #f9fafb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--primary-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Utility classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  font-size: 14px;
  color: #15803d;
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #22c55e, #10b981);
  color: white;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  transition: opacity 0.2s;
  box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: white;
  border: 2px solid #e5e7eb;
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  transition: border-color 0.2s;
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #111827, #4b5563);
}