:root {
  --bg-dark: #07090e;
  --bg-card: rgba(18, 24, 38, 0.7);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-card-hover: rgba(245, 158, 11, 0.4);
  --primary-amber: #f59e0b;
  --primary-gold: #fbbf24;
  --glow-accent: rgba(245, 158, 11, 0.15);
  --cyan-accent: #38bdf8;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
}

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

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

/* Ambient glow backgrounds */
.glow-sphere {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  transition: transform 0.2s cubic-bezier(0.1, 1, 0.1, 1);
}

.glow-sphere-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0.02) 70%, transparent);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-sphere-2 {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.01) 70%, transparent);
  bottom: 50px;
  right: -100px;
}

.light-beam-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.page-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--primary-amber);
  font-weight: 600;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

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

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0;
  gap: 3.5rem;
}

.hero-section {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: #fcd34d;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #fbbf24 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 20px rgba(245, 158, 11, 0.25));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Countdown */
.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-amber);
  margin-top: 0.3rem;
  font-weight: 600;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dim);
}

/* Notify Form */
.notify-container {
  max-width: 520px;
  margin: 0 auto;
}

.notify-form {
  position: relative;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.35rem;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.input-group:focus-within {
  border-color: var(--primary-amber);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
}

.input-group input::placeholder {
  color: var(--text-dim);
}

.submit-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #07090e;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
  transform: translateY(-1px);
}

.form-feedback {
  font-size: 0.85rem;
  margin-top: 0.6rem;
  min-height: 1.2rem;
  transition: all 0.2s ease;
}

.form-feedback.success {
  color: #34d399;
}

.form-feedback.error {
  color: #f87171;
}

.notify-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  padding: 1.75rem 1.5rem;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.08);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-amber);
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Inquiry Bar */
.inquiry-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.inquiry-content h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.inquiry-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.3rem;
  border-radius: 9999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.contact-pill:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary-amber);
  color: #fcd34d;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

/* Footer */
.footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--primary-amber);
}

.footer-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.bullet {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-container {
    padding: 1.5rem 1rem;
  }

  .countdown-card {
    min-width: 65px;
    padding: 0.75rem 0.8rem;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .input-group {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .submit-btn {
    justify-content: center;
    width: 100%;
  }

  .inquiry-bar {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }

  .inquiry-actions {
    width: 100%;
  }

  .contact-pill {
    justify-content: center;
    width: 100%;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
