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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 30% 40%, rgba(128, 24, 65, 0.15), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(199, 117, 151, 0.08), transparent 60%),
    #0a0a0a;
}

.container {
  width: 100%;
  max-width: 900px;
}

.content {
  text-align: center;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #c77597 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 40px;
}

.btn-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background: linear-gradient(135deg, #801841 0%, #a02052 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(128, 24, 65, 0.4);
  margin-bottom: 80px;
}

.btn-access:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(128, 24, 65, 0.6);
}

.btn-access:active {
  transform: translateY(0);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #161616 100%);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #801841, #c77597);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-box:hover {
  border-color: #801841;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(128, 24, 65, 0.25);
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(128, 24, 65, 0.15);
  border: 1px solid rgba(128, 24, 65, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c77597;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background: rgba(128, 24, 65, 0.25);
  transform: scale(1.05);
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.feature-box p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    width: 100px;
    height: 100px;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }

  .btn-access {
    width: 100%;
    padding: 16px 32px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }
}
