/* ═══════════════════════════════════════════
   NEXMENT — blog.css
   Blog "Coming Soon" page
═══════════════════════════════════════════ */

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
  50%       { box-shadow: 0 0 0 7px rgba(124,58,237,0); }
}
@keyframes shimmerBg {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ══════════════════════════════════════════
   BLOG SOON — FULL PAGE LAYOUT
══════════════════════════════════════════ */
.blog-soon {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 32px) 20px 48px;
  overflow: hidden;
  background: var(--bg);
}

/* Background orbs */
.blog-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blog-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.13) 0%, transparent 70%);
  top: -120px; right: -140px;
  animation: floatSlow 12s ease-in-out infinite;
}
.blog-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, transparent 70%);
  bottom: -80px; left: -100px;
  animation: floatSlow 16s ease-in-out infinite reverse;
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -20px); }
  66%       { transform: translate(-10px, 12px); }
}

/* Grid */
.blog-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124,58,237,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0; pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 100%);
}

/* ── CARD ── */
.blog-soon-card {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── FLOATING ICON ── */
.blog-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--accent-pale), var(--surface));
  border: 1.5px solid var(--accent-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: 0 8px 32px var(--accent-glow);
  animation: floatIcon 4s ease-in-out infinite, fadeUp 0.5s ease both;
}

/* ── BADGE ── */
.blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-pale);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp 0.52s 0.07s ease both;
}
.badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* ── HEADING ── */
.blog-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: fadeUp 0.56s 0.12s ease both;
}
.blog-heading-accent {
  background: linear-gradient(135deg, var(--accent) 10%, var(--accent-light) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerBg 4s linear infinite;
}

/* ── DESC ── */
.blog-desc {
  font-size: clamp(14px, 2.4vw, 16px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
  animation: fadeUp 0.58s 0.17s ease both;
}

/* ── CHIPS ── */
.blog-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.18s;
  cursor: default;
}
.blog-chip i {
  font-size: 12px;
  color: var(--accent-light);
}
.blog-chip:hover {
  background: var(--accent-pale);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-2px);
}
.blog-chip:hover i { color: var(--accent); }

/* ── ACTIONS ── */
.blog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.62s 0.28s ease both;
}

/* Reuse global button styles if available, else define here */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-mid);
  box-shadow: 0 8px 28px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
  transform: translateY(-2px);
}

/* ── SOCIAL ROW ── */
.blog-social-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  animation: fadeUp 0.64s 0.33s ease both;
}
.blog-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: fadeUp 0.66s 0.36s ease both;
}
.blog-social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  text-decoration: none;
}
.blog-social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--accent-glow);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .blog-soon {
    padding: calc(var(--nav-h) + 24px) 16px 36px;
    min-height: auto;
  }
  .blog-icon-wrap {
    width: 68px; height: 68px;
    font-size: 26px;
    border-radius: 20px;
  }
  .blog-heading { letter-spacing: -0.6px; }
  .blog-chips { gap: 8px; }
  .blog-chip { padding: 7px 13px; font-size: 12.5px; }
  .btn { padding: 11px 20px; font-size: 14px; }
}

@media (max-width: 380px) {
  .blog-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
}
