/* Subtitle for gateway boxes */
.subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.age {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  margin-top: 2px;
}
/* Gospel 444 Design System */
body {
  background: #0f0f1a;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.header {
  display: flex;
  align-items: center;
  padding: 32px 24px 16px 24px;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
}
.logo {
  height: 40px;
  margin-right: 24px;
}
.header-text h1 {
  color: #f59e0b;
  margin: 0 0 4px 0;
  font-size: 2rem;
  font-weight: 700;
}
.header-text h2 {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.main-gateway {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  padding: 32px 0;
}
.gateway-container {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
}
.gateway {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
  min-width: 0;
  transition:
    box-shadow 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}
.gateway:hover {
  box-shadow: 0 8px 48px 0 #a855f7;
  transform: translateY(-4px) scale(1.02);
}
.hero-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  margin-bottom: 24px;
  object-fit: cover;
  box-shadow: 0 2px 16px 0 rgba(168, 85, 247, 0.18);
}
.gateway-content {
  text-align: center;
}
.gold {
  color: #f59e0b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.vi {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.cta {
  margin-top: 18px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease-in-out,
    background 0.2s;
  box-shadow: 0 2px 12px 0 rgba(168, 85, 247, 0.18);
}
.soul-purple {
  background: #a855f7;
  color: #fff;
  box-shadow: 0 0 16px 0 #a855f7;
}
.soul-purple:hover {
  background: #9333ea;
  box-shadow: 0 0 32px 0 #a855f7;
}
.gold-glow {
  background: #f59e0b;
  color: #0f0f1a;
  box-shadow: 0 0 16px 0 #f59e0b;
}
.gold-glow:hover {
  background: #d97706;
  box-shadow: 0 0 32px 0 #f59e0b;
}
@media (max-width: 900px) {
  .gateway-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .main-gateway {
    padding: 16px 0;
  }
  .gateway {
    margin-bottom: 0;
  }
}
