/* ===================================================================
   IOM World - Minimal & Modern Under Construction Page
   =================================================================== */

:root {
  --bg-color: #0b0f19;
  --card-bg: rgba(17, 24, 39, 0.75);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-subtle: #6b7280;
  --accent: #6366f1;
  --accent-cyan: #38bdf8;
  --accent-glow: rgba(99, 102, 241, 0.25);
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
  min-height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Orbs */
.bg-blur-circle {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.blur-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, transparent 70%);
  top: 10%;
  left: 15%;
}

.blur-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
  bottom: 10%;
  right: 15%;
}

/* Center Container */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: auto;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
}

.brand-logo svg {
  width: 20px;
  height: 20px;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.brand-title .highlight {
  color: var(--accent-cyan);
}

/* Icon */
.icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7d2fe;
  box-shadow: 0 0 30px var(--accent-glow);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

.icon-circle svg {
  width: 32px;
  height: 32px;
}

@keyframes pulseGlow {
  0% { transform: scale(1); box-shadow: 0 0 20px var(--accent-glow); }
  100% { transform: scale(1.05); box-shadow: 0 0 35px rgba(99, 102, 241, 0.45); }
}

/* Status Pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #fbbf24;
  border-radius: 50%;
  animation: blinkDot 1.6s infinite ease-in-out;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

/* Headings */
.headline {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Notify Form */
.notify-form {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.notify-form input {
  flex: 1;
  background: rgba(11, 15, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.notify-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
  background: rgba(11, 15, 25, 0.95);
}

.notify-form input::placeholder {
  color: var(--text-subtle);
}

.notify-form button {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -2px rgba(99, 102, 241, 0.4);
}

.notify-form button:active {
  transform: translateY(0);
}

.notify-message {
  min-height: 1.25rem;
  font-size: 0.84rem;
  margin-bottom: 1.5rem;
}

.notify-message.success {
  color: #34d399;
}

.notify-message.error {
  color: #f87171;
}

/* Contact info */
.contact-info {
  font-size: 0.86rem;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}

.contact-info a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-links a svg {
  width: 17px;
  height: 17px;
}

.social-links a:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer Copyright */
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* Mobile responsive */
@media (max-width: 520px) {
  .card {
    padding: 2rem 1.25rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
    padding: 0.85rem;
  }

  .description br {
    display: none;
  }
}
