/* INTELLIZAP – shared site styles. All pages link to css/site.css */

html { scroll-behavior: smooth; }

/* Blog post pages: no extra space after footer (body height = content only) */
body.blog-post-page {
  min-height: auto;
}

/* Header logo – ensure always visible */
.site-logo img,
.site-logo svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: block;
  visibility: visible;
  opacity: 1;
  object-fit: contain;
}

.gradient-mesh {
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(34, 211, 238, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(232, 121, 249, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(59, 130, 246, 0.06), transparent),
    #0a0e1a;
}
/* Blogs page background (matches landing) */
.gradient-mesh-blog {
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(168, 85, 247, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(34, 211, 238, 0.05), transparent 70%),
    #0a0e1a;
}

/* Email Us chooser modal – always viewport-centered, any screen size */
#emailChooserDialog {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100dvh;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 9999;
}
#emailChooserContent {
  margin: auto;
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
}

.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer – modern layout, same content */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 14, 26, 0.4) 100%);
  backdrop-filter: blur(16px);
}
.site-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.35), rgba(232, 121, 249, 0.25), transparent);
  opacity: 0.8;
}
.site-footer .footer-policy-link {
  padding: 0.5rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.site-footer .footer-policy-link:hover {
  color: rgb(34 211 238);
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2), 0 0 40px rgba(34, 211, 238, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(34, 211, 238, 0.06);
}
.site-footer .footer-icons a,
.site-footer .footer-icons button {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.site-footer .footer-icons a:hover,
.site-footer .footer-icons button:hover {
  color: rgb(34 211 238);
  background-color: rgba(34, 211, 238, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.15);
}
.site-footer .footer-copyright-row {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
  padding-bottom: 0;
}
.site-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  font-size: 0.8125rem;
}
@media (min-width: 640px) {
  .site-footer .footer-copyright { font-size: 0.875rem; }
}

.section-label {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(34 211 238);
  font-size: 0.9375rem;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.35);
}
@media (min-width: 640px) {
  .section-label { font-size: 1rem; }
}

.scroll-reveal {
  opacity: 0.88;
  transform: translateY(28px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scroll-reveal.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home */
#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#canvas3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.glow-cyan { box-shadow: 0 0 40px -10px rgba(34, 211, 238, 0.4); }
.glow-fuchsia { box-shadow: 0 0 40px -10px rgba(232, 121, 249, 0.3); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.card-3d { transform-style: preserve-3d; perspective: 1000px; }
.card-3d:hover { transform: rotateY(-2deg) rotateX(2deg); }
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.approach-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 32px -8px rgba(34, 211, 238, 0.2);
}
@keyframes rotate-cw { to { transform: rotate(360deg); } }
@keyframes rotate-ccw { to { transform: rotate(-360deg); } }
.cta-clip-rotate-cw { animation: rotate-cw 20s linear infinite; transform-origin: 50% 50%; }
.cta-clip-rotate-ccw { animation: rotate-ccw 16s linear infinite; transform-origin: 50% 50%; }
@keyframes card-glow-dim {
  0%, 100% { opacity: 0.92; filter: brightness(0.97); }
  50% { opacity: 1; filter: brightness(1.05); }
}
.value-card-glow { animation: card-glow-dim 4s ease-in-out infinite; }
.value-card-glow:nth-child(2) { animation-delay: 0.6s; }
.value-card-glow:nth-child(3) { animation-delay: 1.2s; }

/* Services / Bento */
.value-card { transition: opacity 0.2s ease, box-shadow 0.2s ease; }
.value-card.value-card-teal:hover { box-shadow: 0 24px 56px -12px rgba(20, 184, 166, 0.5); }
.value-card.value-card-cyan:hover { box-shadow: 0 24px 56px -12px rgba(14, 165, 233, 0.5); }
.value-card.value-card-fuchsia:hover { box-shadow: 0 24px 56px -12px rgba(192, 132, 252, 0.45); }
@keyframes web3-shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.web3-glow {
  background: linear-gradient(90deg, #67e8f9, #c084fc, #67e8f9);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: web3-shine 5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.2));
}
.glass-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20,20,45,0.65) 0%, rgba(10,14,35,0.75) 50%, rgba(25,30,55,0.6) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 0 40px -8px rgba(34,211,238,0.2), 0 0 80px -16px rgba(147,51,234,0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  overflow: hidden;
}
.glass-card:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 0 60px -4px rgba(34,211,238,0.35), 0 0 100px -12px rgba(147,51,234,0.2);
  transform: translateY(-3px);
}
.glass-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,211,238,0.25), rgba(147,51,234,0.2));
  border: 1px solid rgba(34,211,238,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.glass-card-num {
  font-weight: 300;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(34,211,238,0.7);
  text-stroke: 1.5px rgba(34,211,238,0.7);
  filter: drop-shadow(0 0 12px rgba(34,211,238,0.5));
}
.glass-card-link {
  color: rgb(34 211 238);
  text-shadow: 0 0 24px rgba(34,211,238,0.6), 0 0 40px rgba(34,211,238,0.3);
  transition: text-shadow 0.2s ease, color 0.2s ease;
}
.glass-card-link:hover {
  color: rgb(56 189 248);
  text-shadow: 0 0 28px rgba(56,189,248,0.7), 0 0 48px rgba(56,189,248,0.4);
}
@keyframes bento-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(4px, -6px) rotate(2deg); }
  66% { transform: translate(-3px, 4px) rotate(-1deg); }
}
@keyframes bento-shine {
  0% { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
.bento-3d {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(34,211,238,0.08), transparent);
  transform-style: preserve-3d;
  animation: bento-float 12s ease-in-out infinite;
}

/* About page */
.about-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20,20,45,0.6) 0%, rgba(10,14,35,0.7) 50%, rgba(25,30,55,0.5) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 40px -8px rgba(34,211,238,0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.about-card:hover {
  border-color: rgba(34,211,238,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 0 48px -6px rgba(34,211,238,0.2);
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.35), transparent);
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}
.quote-box-about {
  background: linear-gradient(160deg, rgba(30,41,59,0.85) 0%, rgba(15,23,42,0.92) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 24px;
  box-shadow: 0 4px 32px -8px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 48px -12px rgba(34,211,238,0.12);
}
.quote-box-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #22d3ee, #a78bfa);
  border-radius: 24px 24px 0 0;
}
.about-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(147,51,234,0.15));
  border: 1px solid rgba(34,211,238,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@keyframes drive-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); filter: drop-shadow(0 0 3px rgba(34,211,238,0.3)); }
  50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 14px rgba(34,211,238,0.95)) drop-shadow(0 0 28px rgba(34,211,238,0.6)); }
}
@keyframes drive-glow-pulse-violet {
  0%, 100% { opacity: 0.5; transform: scale(1); filter: drop-shadow(0 0 3px rgba(167,139,250,0.3)); }
  50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 14px rgba(167,139,250,0.95)) drop-shadow(0 0 28px rgba(167,139,250,0.6)); }
}
.drive-glow { animation: drive-glow-pulse 2.2s ease-in-out infinite; transform-origin: center; }
.drive-glow-violet { animation: drive-glow-pulse-violet 2.2s ease-in-out infinite; transform-origin: center; }
.drive-glow-center { animation-delay: 0s; }
.drive-glow-top { animation-delay: 0.5s; }
.drive-glow-bottom { animation-delay: 1.8s; }
.drive-glow-left { animation-delay: 1s; }
.drive-glow-right { animation-delay: 2.2s; }
.drive-glow-diag1 { animation-delay: 0.3s; }
.drive-glow-diag2 { animation-delay: 1.3s; }
.drive-glow-diag3 { animation-delay: 2.5s; }
.drive-glow-diag4 { animation-delay: 0.9s; }
.testimonial-card {
  border: 1px solid rgba(34,211,238,0.15);
  background: linear-gradient(145deg, rgba(20,20,45,0.5) 0%, rgba(10,14,35,0.6) 100%);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  border-color: rgba(34,211,238,0.3);
  box-shadow: 0 0 40px -8px rgba(34,211,238,0.15);
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(34,211,238,0.4);
  object-fit: cover;
  background: rgba(15,23,42,0.9);
}

/* Careers page */
.job-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* Accordion / FAQ */
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
}
.accordion-panel {
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}
.accordion-panel:not(.is-open) { grid-template-rows: 0fr; }
.accordion-panel.is-open { grid-template-rows: 1fr; }
.accordion-panel > div { min-height: 0; overflow: hidden; }
.accordion-icon { flex-shrink: 0; transition: transform 0.25s ease; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover { border-color: rgba(34,211,238,0.3); }
.faq-item:has(.accordion-panel.is-open) {
  border-color: rgba(34,211,238,0.4);
  box-shadow: 0 0 24px -4px rgba(34,211,238,0.15);
}

/* Blog */
.blog-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -19;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Blog post (internal) – match intellizap-landing */
.gradient-mesh-blog {
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(34,211,238,0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(168,85,247,0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(34,211,238,0.06), transparent 70%),
    #0a0e1a;
}
.blog-hero-glass {
  position: relative;
  background: linear-gradient(145deg, rgba(20,20,45,0.5) 0%, rgba(10,14,35,0.65) 50%, rgba(25,30,55,0.45) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(34,211,238,0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 48px -12px rgba(34,211,238,0.15);
  overflow: hidden;
}
.blog-hero-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.5), rgba(168,85,247,0.4), transparent);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}
.blog-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34,211,238,0.25);
  box-shadow: 0 0 40px -8px rgba(34,211,238,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 80px -20px rgba(34,211,238,0.08);
  pointer-events: none;
}
.blog-toc {
  position: relative;
  background: linear-gradient(145deg, rgba(20,20,45,0.6) 0%, rgba(10,14,35,0.7) 50%, rgba(25,30,55,0.5) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 0 32px -8px rgba(34,211,238,0.12);
}
.blog-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.4), transparent);
  border-radius: 16px 16px 0 0;
}
.toc-link {
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.toc-link:hover {
  color: rgb(34 211 238);
  background: rgba(34,211,238,0.08);
}
.toc-link.active {
  color: rgb(34 211 238);
  font-weight: 600;
  border-left-color: rgb(34 211 238);
  background: rgba(34,211,238,0.1);
  box-shadow: 0 0 20px -4px rgba(34,211,238,0.2);
}
.toc-inner {
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
.prose-blockquote {
  border-left: 4px solid rgba(34,211,238,0.6);
  background: linear-gradient(90deg, rgba(34,211,238,0.08) 0%, rgba(168,85,247,0.04) 100%);
  box-shadow: 0 0 24px -8px rgba(34,211,238,0.15);
  border-radius: 0 12px 12px 0;
}
.blog-heading {
  scroll-margin-top: 6rem;
  background: linear-gradient(135deg, #fff 0%, rgba(34,211,238,0.9) 50%, rgba(168,85,247,0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(34,211,238,0.15));
}
.blog-heading-h3 {
  color: rgb(34 211 238);
  text-shadow: 0 0 20px rgba(34,211,238,0.3);
}
.blog-article-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20,20,45,0.35) 0%, rgba(10,14,35,0.45) 50%, rgba(25,30,55,0.3) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(34,211,238,0.12);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.blog-article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, rgba(34,211,238,0.5), rgba(168,85,247,0.3));
  border-radius: 20px 0 0 20px;
}
.author-badge {
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(168,85,247,0.15));
  border: 1px solid rgba(34,211,238,0.3);
  box-shadow: 0 0 20px -4px rgba(34,211,238,0.2);
}
@keyframes blog-shine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}
.blog-hero-glass .shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.03) 40%, transparent 60%);
  background-size: 200% 100%;
  animation: blog-shine 12s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}
@media (min-width: 1024px) {
  .toc-rail {
    position: sticky;
    top: 6rem;
  }
}
.blog-posts-head {
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(34,211,238,0.5);
}
@keyframes blog-clip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes blog-clip-pulse {
  0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 4px rgba(34,211,238,0.3)); }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(34,211,238,0.6)); }
}
@keyframes blog-clip-pulse-violet {
  0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 4px rgba(168,85,247,0.3)); }
  50% { opacity: 1; filter: drop-shadow(0 0 12px rgba(168,85,247,0.5)); }
}
@keyframes blog-clip-sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.15) rotate(5deg); opacity: 1; }
}
@keyframes blog-clip-line {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}
@keyframes blog-clip-doc-glow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.blog-clip-art {
  max-width: 280px;
  margin-left: auto;
}
.blog-clip-art svg {
  animation: blog-clip-float 4.5s ease-in-out infinite;
}
.blog-clip-art .blog-clip-doc-front {
  animation: blog-clip-doc-glow 2.5s ease-in-out infinite;
}
.blog-clip-art .blog-clip-node-1 {
  animation: blog-clip-pulse 2s ease-in-out infinite;
  transform-origin: center;
}
.blog-clip-art .blog-clip-node-2 {
  animation: blog-clip-pulse-violet 2.2s ease-in-out 0.4s infinite;
  transform-origin: center;
}
.blog-clip-art .blog-clip-node-3 {
  animation: blog-clip-pulse 2.4s ease-in-out 0.8s infinite;
  transform-origin: center;
}
.blog-clip-art .blog-clip-sparkle {
  animation: blog-clip-sparkle 3s ease-in-out 0.5s infinite;
  transform-origin: 157px 47px;
}
.blog-clip-art .blog-clip-line {
  stroke-dasharray: 50 20;
  animation: blog-clip-line 3s ease-out infinite;
}
.blog-card-date {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin-right: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(34,211,238,0.95);
  background: linear-gradient(135deg, rgba(34,211,238,0.12) 0%, rgba(168,85,247,0.08) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(34,211,238,0.35);
  border-radius: 6px;
  box-shadow: 0 0 12px -2px rgba(34,211,238,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
