:root {
  --primary: #006a3c;
  --primary-dim: #005c34;
  --on-primary: #cbffd8;
  --surface: #f6f6f6;
  --on-surface: #2d2f2f;
  --on-surface-variant: #5a5c5c;
  --surface-container-low: #eaffe6;
  --surface-container-lowest: #ffffff;
  --surface-variant: #dbdddd;
  --outline: #767777;
  --secondary-fixed: #fdd34d;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--surface);
  color: var(--on-surface);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.bg-emerald-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
}

.text-primary {
  color: var(--primary);
}

.text-on-surface {
  color: var(--on-surface);
}

.text-on-surface-variant {
  color: var(--on-surface-variant);
}

.text-on-primary {
  color: var(--on-primary);
}

.bg-surface-container-lowest {
  background-color: var(--surface-container-lowest);
}

.bg-surface-container-low {
  background-color: var(--surface-container-low);
}

.rounded-xl {
  border-radius: 1.5rem;
}

.rounded-DEFAULT {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Grid Layout */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:p-16 {
    padding: 4rem;
  }
}

@media (min-width: 1024px) {
  .lg\:p-24 {
    padding: 6rem;
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-sm {
  max-width: 24rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.my-10 {
  margin: 2.5rem 0;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

.leading-tight {
  line-height: 1.25;
}

/* Custom elements */
.blur-3xl {
  filter: blur(64px);
}

.blur-2xl {
  filter: blur(40px);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:underline:hover {
  text-decoration: underline;
}

input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  background-color: var(--surface-container-low);
  border-radius: 1rem;
  font-size: 1rem;
}

input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 106, 60, 0.1);
  background-color: var(--surface-container-lowest);
}

button {
  cursor: pointer;
  border: none;
}

button:active {
  transform: scale(0.95);
}

.opacity-90 {
  opacity: 0.9;
}

.object-cover {
  object-fit: cover;
}

.rotate-2 {
  transform: rotate(2deg);
}

.translate-x-12 {
  --tw-translate-x: 3rem;
  transform: translateX(var(--tw-translate-x)) rotate(2deg);
}

.border-t {
  border-top: 1px solid var(--surface-variant);
}

.border-zinc-200 {
  border-color: #e4e4e7;
}

.bg-zinc-50 {
  background-color: #fafafa;
}

.text-zinc-500 {
  color: #71717a;
}