/* ==========================================================================
   INCULCATE WORLD - MINIMAL UNDER CONSTRUCTION DESIGN
   Simple, ultra-clean, elegant, and mobile-responsive
   ========================================================================== */

:root {
  --bg-dark: #060913;
  --primary: #6366f1;
  --secondary: #38bdf8;
  --accent-purple: #a855f7;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --glow-1: rgba(99, 102, 241, 0.22);
  --glow-2: rgba(56, 189, 248, 0.18);
  --glow-3: rgba(168, 85, 247, 0.15);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  height: 100%;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background Canvas & Ambient Orbs */
#network-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.glow-top-left {
  top: -150px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--glow-2), transparent 70%);
}

.glow-bottom-right {
  bottom: -150px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--glow-3), transparent 70%);
  animation-delay: -7s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, 25px) scale(1.06); }
  100% { transform: translate(-25px, 45px) scale(0.96); }
}

/* Page Wrapper */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header & Logo */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-icon-wrapper {
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
}

.logo-icon {
  width: 34px;
  height: 34px;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.07em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--secondary);
}

/* Main Content Body */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pulse-indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
}

.pulse-ring {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(56, 189, 248, 0.45);
  animation: pulseRing 2.2s cubic-bezier(0.2, 0, 0, 1) infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.copyright strong {
  color: #cbd5e1;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 1.5rem 1rem;
  }

  .main-content {
    padding: 2rem 0.5rem;
  }

  .hero-title {
    font-size: 2.35rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .logo-icon-wrapper {
    width: 46px;
    height: 46px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .brand-title {
    font-size: 1.15rem;
  }
}
