/* ===================================================
   DENTRONIZE — Coming Soon | style.css
   Futuristic · Neon Blue · Dark Theme
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

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

:root {
  --neon-blue: #00d4ff;
  --neon-glow: #0090cc;
  --neon-dim: #005f8a;
  --bg-black: #030610;
  --bg-navy: #050c1a;
  --white: #ffffff;
  --muted: #7ea8c4;
  --grid-line: rgba(0, 212, 255, 0.06);
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-black);
  color: var(--white);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Grid Background ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette over grid */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
      transparent 30%,
      var(--bg-black) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Canvas (floating icons) ---------- */
#canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Page Wrapper ---------- */
.page-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

/* ---------- Fade-in groups ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--neon-dim);
  background: rgba(0, 212, 255, 0.06);
  color: var(--neon-blue);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

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

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ---------- Logo / Brand Title ---------- */
.brand-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 7.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-blue) 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.45));
  margin-bottom: 6px;
  position: relative;
}

/* Glitch flicker */
.brand-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-blue) 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glitch 6s infinite;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
  opacity: 0;
}

@keyframes glitch {

  0%,
  94%,
  100% {
    opacity: 0;
    transform: none;
  }

  95% {
    opacity: 0.6;
    transform: translate(-3px, 2px);
  }

  96% {
    opacity: 0.4;
    transform: translate(3px, -2px);
  }

  97% {
    opacity: 0;
    transform: none;
  }
}

/* ---------- Divider Line ---------- */
.neon-divider {
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  margin: 20px auto 28px;
  box-shadow: 0 0 12px var(--neon-blue);
  border: none;
  border-radius: 2px;
}

/* ---------- Slogan ---------- */
.slogan {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 2.8vw, 1.3rem);
  letter-spacing: 0.12em;
  color: var(--neon-blue);
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
  margin-bottom: 24px;
}

/* ---------- Description ---------- */
.description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin: 0 auto 52px;
}

/* ---------- Countdown ---------- */
.countdown-wrapper {
  display: flex;
  gap: clamp(16px, 4vw, 36px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.countdown-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 12px;
  padding: 12px 20px;
  min-width: clamp(70px, 14vw, 100px);
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1), inset 0 0 20px rgba(0, 212, 255, 0.04);
  transition: box-shadow 0.3s;
}

.countdown-number:hover {
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.3), inset 0 0 20px rgba(0, 212, 255, 0.08);
}

.countdown-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--neon-dim);
  text-transform: uppercase;
}

/* ---------- Email Form ---------- */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
  margin: 0 auto 52px;
  position: relative;
}

.notify-input {
  flex: 1;
  background: rgba(5, 12, 26, 0.8);
  border: 1px solid var(--neon-dim);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.notify-input::placeholder {
  color: var(--neon-dim);
}

.notify-input:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
}

.notify-btn {
  background: var(--neon-blue);
  color: var(--bg-black);
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 14px 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
  white-space: nowrap;
}

.notify-btn:hover {
  background: #33ddff;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.6);
  transform: translateY(-1px);
}

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

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--neon-blue);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
  justify-content: center;
}

/* ---------- Social Links ---------- */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 48px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--neon-dim);
  background: rgba(0, 212, 255, 0.04);
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.social-link:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}

/* ---------- Footer ---------- */
.footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(126, 168, 196, 0.5);
  letter-spacing: 0.06em;
}

.footer span {
  color: var(--neon-dim);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .notify-form {
    flex-direction: column;
    gap: 10px;
  }

  .notify-input {
    border-right: 1px solid var(--neon-dim);
    border-radius: 8px;
  }

  .notify-btn {
    border-radius: 8px;
    padding: 14px;
  }

  .countdown-wrapper {
    gap: 12px;
  }

  .countdown-number {
    padding: 10px 14px;
    min-width: 60px;
  }
}