:root {
  --primary-color: #7cc7a2;
  --secondary-color: #a9b5ae;
  --dark-color: #eef4f1;
  --light-color: #101418;
  --lighter-color: #18201c;
  --white: #fff;
  --black: #000;
  --font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont", "Segoe UI", sans-serif;
  --border-radius: 6px;
  --transition-speed: 0.2s;
  --card-border: rgba(255, 255, 255, 0.12);
  --card-bg: rgba(19, 25, 23, 0.82);
  --card-footer-text: #a9b5ae;
  --button-primary-bg: var(--primary-color);
  --button-primary-color: #101418;
  --button-secondary-bg: #a8d8bf;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--light-color);
  color: var(--dark-color);
  font-family: var(--font-family);
}

h1,
h2,
h3,
h4 {
  color: var(--dark-color);
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--button-secondary-bg);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.py-8 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

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

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

.text-xl {
  font-size: 1.25rem;
}

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

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

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

.font-sans {
  font-family: var(--font-family);
}

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

.text-muted {
  color: var(--secondary-color);
}

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

.button {
  align-items: center;
  background-color: var(--button-primary-bg);
  border: 1px solid var(--button-primary-bg);
  border-radius: var(--border-radius);
  color: var(--button-primary-color);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.button:hover {
  background-color: var(--button-secondary-bg);
  border-color: var(--button-secondary-bg);
  color: var(--button-primary-color);
}

.button-outline {
  background-color: transparent;
  color: var(--primary-color);
}

.button-outline:hover {
  background-color: rgba(124, 199, 162, 0.12);
  border-color: var(--button-secondary-bg);
  color: var(--button-secondary-bg);
}

.badge {
  background: rgba(124, 199, 162, 0.1);
  border: 1px solid rgba(124, 199, 162, 0.28);
  border-radius: 999px;
  color: var(--dark-color);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  padding: 0.45rem 0.7rem;
}

.list-disc {
  list-style-type: disc;
}

.list-inside {
  list-style-position: inside;
}

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

@media (width <= 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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