/* Wardonix Cyber Coming Soon Stylesheet */
:root {
  --bg-primary: #060911;
  --bg-card: rgba(13, 19, 33, 0.75);
  --bg-card-border: rgba(30, 58, 102, 0.5);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.3);
  --amber: #f59e0b;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-display: 'Orbitron', 'Inter', sans-serif;
}

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

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

/* Background Canvas */
#cyberCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Ambient Glow Blobs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
}

.glow-1 {
  top: -100px;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
}

.glow-2 {
  bottom: 5%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
}

.glow-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #0284c7 0%, transparent 70%);
  opacity: 0.12;
}

/* Page Wrapper */
.page-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.cyber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.shield-icon-wrapper {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid var(--cyan);
  border-radius: 12px;
  box-shadow: 0 0 16px var(--cyan-glow);
}

.shield-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1px solid var(--cyan);
  opacity: 0;
  animation: shieldPulse 2.4s infinite ease-out;
}

@keyframes shieldPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.shield-svg {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

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

.brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--cyan);
  font-family: var(--font-mono);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--emerald);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: blinkDot 1.5s infinite ease-in-out;
}

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

/* Language Switcher */
.lang-switch-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--bg-card-border);
  padding: 4px 10px;
  border-radius: 24px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: var(--cyan);
  color: #060911;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.lang-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

/* Main Content */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 16px;
  max-width: 980px;
  margin: 0 auto;
}

/* Badge */
.badge-container {
  margin-bottom: 24px;
}

.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.35);
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.badge-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* Hero Titles */
.hero-title-wrap {
  margin-bottom: 20px;
}

.hero-glitch-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 6px;
  background: linear-gradient(135deg, #ffffff 20%, #67e8f9 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
  position: relative;
  line-height: 1.1;
  text-transform: uppercase;
}

.acronym-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.acronym-meaning {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(13, 19, 33, 0.7);
  border: 1px solid var(--bg-card-border);
  padding: 8px 22px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.acronym-meaning .first-letter {
  color: var(--cyan);
  font-weight: 800;
  font-size: 1.3em;
  text-shadow: 0 0 14px var(--cyan), 0 0 24px rgba(6, 182, 212, 0.7);
  display: inline-block;
  margin-left: 2px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Countdown */
.countdown-wrapper {
  margin-bottom: 48px;
  width: 100%;
}

.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 19, 33, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  padding: 18px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(6, 182, 212, 0.05);
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 0 16px rgba(6, 182, 212, 0.5);
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.6;
  margin-bottom: 12px;
}

/* Visualizer Grid (Terminal + Radar) */
.visualizer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 48px;
  text-align: left;
}

.terminal-cyber-card {
  background: #080d1a;
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid var(--bg-card-border);
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.terminal-mode {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 1px;
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
}

.log-line {
  line-height: 1.5;
  word-break: break-all;
}

.text-cyan { color: #67e8f9; }
.text-emerald { color: #34d399; }
.text-purple { color: #c084fc; }
.text-amber { color: #fbbf24; }

/* Radar Card */
.radar-card {
  background: #080d1a;
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.radar-scope {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.4);
  position: relative;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, rgba(8, 13, 26, 0.9) 80%);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform-origin: top left;
  background: conic-gradient(from 0deg, rgba(6, 182, 212, 0.5) 0deg, rgba(6, 182, 212, 0) 60deg);
  animation: radarRotate 3s infinite linear;
}

@keyframes radarRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(6, 182, 212, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 { width: 45px; height: 45px; }
.ring-2 { width: 95px; height: 95px; }
.ring-3 { width: 135px; height: 135px; }

.radar-cross-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(6, 182, 212, 0.2);
}

.radar-cross-v {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(6, 182, 212, 0.2);
}

.radar-blip {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
  animation: blipFade 3s infinite ease-out;
}

.blip-1 { top: 35px; left: 95px; animation-delay: 0.8s; }
.blip-2 { top: 100px; left: 40px; animation-delay: 1.8s; }
.blip-3 { top: 85px; left: 110px; animation-delay: 2.4s; }

@keyframes blipFade {
  0% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 1; transform: scale(1.3); }
  80%, 100% { opacity: 0.2; transform: scale(1); }
}

.radar-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.radar-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.radar-val {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 1px;
}

/* Early Access Notify Card */
.notify-card {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(180deg, rgba(14, 23, 42, 0.85) 0%, rgba(9, 14, 26, 0.95) 100%);
  border: 1px solid var(--bg-card-border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.08);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.notify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}

.notify-header h2,
.notify-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.notify-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  gap: 12px;
}

.input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.mail-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  background: rgba(6, 10, 18, 0.8);
  border: 1px solid rgba(30, 58, 102, 0.6);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.25s ease;
}

.input-wrap input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.cyber-btn {
  background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
  border: none;
  border-radius: 12px;
  color: #050a14;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.cyber-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.6);
}

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

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s infinite;
}

@keyframes btnShine {
  0%, 60% { left: -100%; }
  100% { left: 180%; }
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.form-feedback.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Feature Teaser Cards */
.features-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  width: 100%;
  text-align: left;
}

.teaser-card {
  background: rgba(13, 19, 33, 0.5);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s ease;
}

.teaser-card:hover {
  background: rgba(17, 26, 46, 0.7);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.teaser-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.teaser-card h3,
.teaser-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.teaser-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Footer */
.cyber-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(30, 58, 102, 0.4);
  font-size: 0.82rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-sub {
  margin-left: 6px;
  color: var(--text-muted);
}

.terminal-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(30, 58, 102, 0.6);
  padding: 4px 12px;
  border-radius: 6px;
  color: var(--cyan);
  letter-spacing: 1px;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--emerald);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 860px) {
  .visualizer-grid {
    grid-template-columns: 1fr;
  }
  .radar-card {
    padding: 24px;
  }
  .notify-form {
    flex-direction: column;
  }
  .cyber-btn {
    padding: 14px 20px;
  }
  .cyber-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .header-right {
    width: 100%;
    justify-content: space-between;
  }
  .cyber-footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
