/* Huntmob Coming Soon Stylesheet */
:root {
  --bg-dark: #0b0f19;
  --card-bg: rgba(17, 24, 39, 0.7);
  --card-border: rgba(31, 41, 55, 0.8);
  --card-hover-border: rgba(46, 163, 242, 0.5);
  
  --brand-blue: #2ea3f2;
  --brand-purple: #7e3bd0;
  
  --text-white: #ffffff;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;

  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-family);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Glowing Background Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.orb-blue {
  width: 500px;
  height: 500px;
  background: var(--brand-blue);
  top: -100px;
  left: -150px;
}

.orb-purple {
  width: 600px;
  height: 600px;
  background: var(--brand-purple);
  bottom: -150px;
  right: -150px;
}

/* Layout Container */
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(46, 163, 242, 0.4));
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--text-white) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(46, 163, 242, 0.1);
  border: 1px solid rgba(46, 163, 242, 0.25);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  box-shadow: 0 0 8px var(--brand-blue);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero Section */
.hero {
  text-align: center;
  margin: 40px auto 60px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(126, 59, 208, 0.15);
  border: 1px solid rgba(126, 59, 208, 0.3);
  color: #c084fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.icon-sparkle {
  width: 16px;
  height: 16px;
  color: var(--brand-blue);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text-white);
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray-400);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 40px;
}

/* Waitlist Signup Form */
.waitlist-form {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.icon-mail {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-gray-500);
  pointer-events: none;
}

#emailInput {
  width: 100%;
  height: 54px;
  padding: 0 16px 0 48px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.8);
  color: var(--text-white);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

#emailInput:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(46, 163, 242, 0.15);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 100%);
  border: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px -5px rgba(46, 163, 242, 0.3);
  white-space: nowrap;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -5px rgba(46, 163, 242, 0.4);
}

.icon-arrow {
  width: 18px;
  height: 18px;
}

/* Success Message */
.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.success-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.icon-blue {
  background: rgba(46, 163, 242, 0.15);
  color: var(--brand-blue);
}

.icon-purple {
  background: rgba(126, 59, 208, 0.15);
  color: #c084fc;
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-gray-400);
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(31, 41, 55, 0.6);
  font-size: 13px;
  color: var(--text-gray-500);
}

/* Responsive Styles */
@media (max-width: 840px) {
  .hero-title {
    font-size: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .waitlist-form {
    flex-direction: column;
  }
  
  .btn-submit {
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
}
