.page {
  --gray-rgb: 0, 0, 0;
  --gray-alpha-200: rgba(var(--gray-rgb), 0.08);
  --gray-alpha-100: rgba(var(--gray-rgb), 0.05);

  --button-primary-hover: #8B3A54;
  --button-secondary-hover: #f0f0f0;

  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  min-height: 80vh;
  padding: 80px;
  gap: 64px;
  font-family: var(--font-geist-sans);
  background: linear-gradient(135deg, #BC526F 0%, #8B3A54 100%);
}

.main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
}

.hero {
  text-align: center;
  color: white;
}

.titleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.feature {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #BC526F;
  margin: 0 0 12px 0;
}

.feature p {
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.primary,
.secondary {
  border-radius: 12px;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
}

.primary {
  background: white;
  color: #BC526F;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer {
  padding: 24px;
  text-align: center;
  color: white;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .page {
    padding: 32px 16px;
  }

  .titleWrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 48px;
    height: 48px;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .ctas {
    flex-direction: column;
    width: 100%;
  }

  .primary,
  .secondary {
    width: 100%;
    text-align: center;
  }
}