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

body {
  background: #050505;
  color: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  background: #0A0A0A;
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background:
    radial-gradient(ellipse at center, rgba(168, 85, 247, 0.32), transparent 62%),
    radial-gradient(ellipse at 50% 40%, rgba(124, 58, 237, 0.22), transparent 70%),
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  flex: 1;
}

.eyebrow {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.title {
  font-family: 'Limelight', 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #D4AF37;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.05;
}

.tagline {
  font-size: 22px;
  color: #E5E7EB;
  font-weight: 400;
  margin: 0 0 12px;
}

.city {
  color: #6B7280;
  font-size: 13px;
  letter-spacing: 2.5px;
  margin: 0 0 56px;
  font-weight: 500;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 56px 0;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
}

.feature-text {
  font-size: 13px;
  color: #9CA3AF;
  max-width: 110px;
  line-height: 1.4;
}

.form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 12px;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 999px;
  padding: 6px;
  transition: border-color 0.2s;
}

.form:focus-within {
  border-color: #D4AF37;
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}

.email-input::placeholder {
  color: #6B7280;
}

.join-btn {
  background: #D4AF37;
  color: #0A0A0A;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
}

.join-btn:hover {
  background: #E8C247;
}

.join-btn:active {
  transform: scale(0.98);
}

.join-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.status {
  font-size: 14px;
  min-height: 22px;
  margin-top: 12px;
  color: #9CA3AF;
}

.status.success {
  color: #4ADE80;
}

.status.error {
  color: #EF4444;
}

.divider {
  color: #6B7280;
  font-size: 11px;
  letter-spacing: 2px;
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  background: #262626;
  flex: 1;
  max-width: 70px;
}

.stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 12px 20px;
  color: #E5E7EB;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.1s;
  cursor: pointer;
}

.store:hover {
  border-color: #D4AF37;
}

.store:active {
  transform: scale(0.98);
}

.store svg {
  color: #D4AF37;
}

.store-text {
  text-align: left;
}

.store-small {
  font-size: 10px;
  color: #9CA3AF;
  letter-spacing: 0.5px;
}

.store-big {
  font-size: 15px;
  font-weight: 600;
}

.footer {
  color: #4B5563;
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #141414;
  max-width: 580px;
  margin: 40px auto 0;
  width: 100%;
}

/* Mobile styles */
@media (max-width: 600px) {
  .page {
    padding: 40px 20px 24px;
  }
  .title {
    font-size: 52px;
  }
  .tagline {
    font-size: 19px;
  }
  .features {
    gap: 24px;
    margin: 40px 0;
  }
  .stores {
    flex-direction: column;
    align-items: center;
  }
  .store {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}
