.max-w-6xl {
  width: min(calc(100% - 32px), var(--container));
}

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

.px-4 {
  padding-left: 24px;
  padding-right: 24px;
}

.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

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

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

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

.items-start {
  align-items: flex-start;
}

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

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

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

.flex-1 {
  flex: 1;
}

.w-full {
  width: 100%;
}

.max-w-3xl {
  max-width: 860px;
}

.relative {
  position: relative;
}

.text-right {
  text-align: right;
}

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

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

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

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

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

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

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

.text-4xl {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
}

.text-5xl {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.mb-4 {
  margin-bottom: 1rem;
}

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

.mb-12 {
  margin-bottom: 1.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

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

.-mt-20 {
  margin-top: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-5 {
  gap: 1.25rem;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-80 {
  opacity: 0.8;
}

.text-white\/80 {
  color: rgba(245, 247, 251, 0.8);
}

.fade-in {
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

