
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0f1115;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 24px;
}

/* Header Styles */
.header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo {
  height: 36px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.divider {
  color: #334155;
}

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

/* Gradient Text for "Coming Soon" */
.gradient-title {
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 40%, #8a23ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Email Form */
.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  background-color: #1e222d;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #2d3446;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #64748b;
}

.subscribe-form button {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.subscribe-form button:hover {
  opacity: 0.9;
}

.subscribe-form button:active {
  transform: scale(0.98);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .header {
    flex-direction: column;
    gap: 20px;
  }
  
  .gradient-title {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .subscribe-form {
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
  
  .subscribe-form input {
    background-color: #1e222d;
    border: 1px solid #2d3446;
    border-radius: 8px;
  }

  .subscribe-form button {
    width: 100%;
  }
}
