/* ============================================================
   RAHMAD ABABIL — Portfolio CSS
   Responsive + Animations (no functional changes)
   ============================================================ */

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

:root {
  --primary: #3525cd;
  --primary-light: #4f46e5;
  --surface: #faf8ff;
  --on-surface: #131b2e;
  --on-surface-variant: #464555;
  --surface-container: #eaedff;
  --surface-container-low: #f2f3ff;
  --surface-container-high: #e2e7ff;
  --surface-container-highest: #dae2fd;
  --outline-variant: #c7c4d8;

  /* Animation timing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ── Grid Background ──────────────────────────────────────── */
.bg-grid {
  background-image:
    linear-gradient(rgba(53,37,205,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,37,205,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Blobs ────────────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
.blob-1 { background: #c3c0ff; width: 500px; height: 500px; top: -120px; right: -100px; animation-delay: 0s; }
.blob-2 { background: #89ceff; width: 350px; height: 350px; bottom: 0; left: -80px; animation-delay: 3s; }
.blob-3 { background: #dae2fd; width: 280px; height: 280px; top: 40%; left: 40%; animation-delay: 5s; }

@keyframes blobFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.04); }
}

/* ── Scroll Progress ──────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #3525cd, #89ceff, #c3c0ff);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Navbar ───────────────────────────────────────────────── */
nav {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav-scrolled {
  background: rgba(250,248,255,0.92) !important;
  box-shadow: 0 2px 20px rgba(53,37,205,0.08) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  position: relative;
  transition: color 0.25s;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.35s var(--ease-spring);
  border-radius: 99px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); font-weight: 700; }
.nav-link.active::after { width: 100%; }

#mobile-menu { display: none; }
#mobile-menu.open { display: flex; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(53,37,205,0.4); background: #4f46e5; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 13px 30px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-ghost:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(53,37,205,0.25); }
.btn-ghost:active { transform: translateY(0); }

/* ── Glass Card ───────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 24px rgba(53,37,205,0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.glass-card:hover {
  box-shadow: 0 16px 48px rgba(53,37,205,0.14);
  transform: translateY(-4px);
}

/* ── Reveal Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Directional variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-spring), transform 0.7s var(--ease-spring);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ── Hero Specific ────────────────────────────────────────── */
#home .reveal:nth-child(1) { transition-delay: 0ms; }
#home .reveal:nth-child(2) { transition-delay: 100ms; }
#home .reveal:nth-child(3) { transition-delay: 200ms; }
#home .reveal:nth-child(4) { transition-delay: 300ms; }

/* Cursor blink */
.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* Badge float */
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
.badge-float { animation: badgeFloat 3.5s ease-in-out infinite; }

/* Profile ring pulse */
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.2; }
  50%      { transform: scale(1.05); opacity: 0.35; }
}

/* Hero availability badge blink */
@keyframes statusBlink {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ── Stat Strip ───────────────────────────────────────────── */
.stat-strip {
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stat-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%;
  width: 300%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmerLine 4s linear infinite;
}
@keyframes shimmerLine {
  0%   { transform: translateX(0); }
  100% { transform: translateX(33.33%); }
}

/* Stat number count animation (JS-triggered) */
.stat-strip .section-heading {
  display: inline-block;
  transition: transform 0.3s var(--ease-spring);
}
.stat-strip .section-heading.pop {
  animation: statPop 0.4s var(--ease-spring);
}
@keyframes statPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ── Skill Tags ───────────────────────────────────────────── */
.skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--surface-container);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  cursor: default;
}
.skill-tag:hover { background: #dad7ff; transform: scale(1.06) translateY(-2px); box-shadow: 0 4px 12px rgba(53,37,205,0.18); }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline-line { background: linear-gradient(to bottom, transparent, var(--primary), transparent); }

/* Timeline card entrance */
[data-zanim-timeline] .glass-card {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
[data-zanim-timeline] .glass-card:hover {
  box-shadow: 0 20px 60px rgba(53,37,205,0.14);
  transform: translateY(-4px) scale(1.01);
}

/* Timeline dot pulse */
@keyframes dotPulse {
  0%,100% { box-shadow: 0 4px 16px rgba(53,37,205,0.3), 0 0 0 0 rgba(53,37,205,0.25); }
  50%      { box-shadow: 0 4px 16px rgba(53,37,205,0.3), 0 0 0 10px rgba(53,37,205,0); }
}
#experience .absolute[style*="background:var(--primary)"] {
  animation: dotPulse 2.5s ease infinite;
}

/* ── Project Cards ────────────────────────────────────────── */
.project-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--outline-variant);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out), border-color 0.3s ease;
  position: relative;
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 0 0 rgba(53,37,205,0.2);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}
.project-card:hover { box-shadow: 0 24px 64px rgba(53,37,205,0.16); transform: translateY(-8px); border-color: rgba(53,37,205,0.2); }
.project-card:hover::after { box-shadow: 0 0 0 2px rgba(53,37,205,0.15); }

/* iframe preview */
.iframe-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #e8ebf8;
}
.iframe-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8ebf8 25%, #dce0f3 100%);
  z-index: 0;
}
.iframe-wrap iframe {
  width: 200%; height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  border: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.iframe-overlay {
  position: absolute; inset: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, background 0.35s ease;
  z-index: 10;
}
.project-card:hover .iframe-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(53,37,205,0.6) 0%, rgba(53,37,205,0.1) 60%, transparent 100%);
}

/* Visit button bounce on hover */
.iframe-overlay a {
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
}
.project-card:hover .iframe-overlay a {
  transform: translateY(0);
}

/* ── Contact Section ──────────────────────────────────────── */
#contact .reveal {
  transition-delay: 0ms;
}

/* CTA card shimmer */
#contact .rounded-3xl {
  position: relative;
  overflow: hidden;
}
#contact .rounded-3xl::before {
  content: '';
  position: absolute;
  top: 0; left: -200%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-15deg);
  animation: ctaShimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes ctaShimmer {
  0%,100% { left: -200%; }
  40%,60%  { left: 200%; }
}

/* ── Footer ───────────────────────────────────────────────── */
footer a {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
footer a:hover { transform: translateY(-2px); }

/* ── Section Heading ──────────────────────────────────────── */
.section-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* ── Tiltable 3D ──────────────────────────────────────────── */
.tiltable { will-change: transform; transition: transform 0.15s ease-out; }

/* ── Stagger helpers ──────────────────────────────────────── */
.stagger-1 { transition-delay: 60ms !important; }
.stagger-2 { transition-delay: 120ms !important; }
.stagger-3 { transition-delay: 180ms !important; }
.stagger-4 { transition-delay: 240ms !important; }
.stagger-5 { transition-delay: 300ms !important; }
.stagger-6 { transition-delay: 360ms !important; }


/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* ── Mobile First: < 480px ────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero */
  #home .grid { grid-template-columns: 1fr; gap: 40px; }
  #home h1 { font-size: 2.2rem; }
  #home p { font-size: 15px; }
  #home .flex.flex-wrap.gap-4 { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; padding: 13px 24px; font-size: 14px; }

  /* Profile image */
  .w-72 { width: 260px !important; height: 260px !important; }
  .badge-float.-bottom-5.-left-6 { left: 0 !important; bottom: -16px !important; }
  .badge-float.-top-4.-right-6 { right: 0 !important; top: -12px !important; }

  /* Stats */
  .stat-strip .grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-strip .section-heading { font-size: 2rem; }

  /* About */
  #about .grid { grid-template-columns: 1fr; }
  #about h2 { font-size: 1.9rem; }

  /* Projects */
  #projects .grid { grid-template-columns: 1fr; }
  .project-card { transform: none !important; }

  /* Experience */
  #experience .relative > div[style*="left:50%"] { left: 16px !important; transform: none !important; }
  #experience .md\:w-5\/12 { width: 100% !important; margin-left: 40px !important; text-align: left !important; }
  [data-zanim-timeline] > .md\:w-5\/12.hidden { display: none; }
  .timeline-line { left: 16px !important; }

  /* Contact */
  #contact [style*="padding:80px 48px"] { padding: 48px 24px !important; }

  /* Nav */
  nav .max-w-6xl { padding: 16px 20px; }
  #mobile-menu { padding: 16px 20px 20px; }
}

/* ── Small Tablet: 480px – 768px ──────────────────────────── */
@media (min-width: 480px) and (max-width: 768px) {
  #home h1 { font-size: 2.6rem; }
  .stat-strip .grid { grid-template-columns: repeat(2,1fr); }
  #projects .grid { grid-template-columns: 1fr 1fr; }
  #about .grid { grid-template-columns: 1fr; }
  #experience .timeline-line { left: 20px; transform: none; }
  [data-zanim-timeline] .md\:w-5\/12 { width: 100%; margin-left: 48px; text-align: left !important; }
  [data-zanim-timeline] > .md\:w-5\/12:first-child { display: none; }
  #contact [style*="padding:80px 48px"] { padding: 56px 32px !important; }
}

/* ── Tablet: 768px – 1024px ───────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  #home .grid { gap: 40px; }
  #home h1 { font-size: 3rem; }
  .w-72.h-72 { width: 300px !important; height: 300px !important; }
  #projects .grid { grid-template-columns: repeat(2,1fr); }
  #about .grid { grid-template-columns: 1fr; }
  #about .space-y-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  #about .space-y-4 > *:first-child { grid-column: 1 / -1; }
}

/* ── Large Desktop ────────────────────────────────────────── */
@media (min-width: 1280px) {
  .max-w-6xl { max-width: 1200px; }
}

/* ── Touch: disable tilt ──────────────────────────────────── */
@media (hover: none) {
  .tiltable { transform: none !important; }
  .glass-card:hover { transform: none; }
  .project-card:hover { transform: translateY(-4px); }
  .badge-float { animation-play-state: paused; }
}

/* ── Reduce Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   SECTION-SPECIFIC ANIMATIONS
   ============================================================ */

/* ── Hero: floating particles ─────────────────────────────── */
#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(53,37,205,0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(53,37,205,0.05) 1.5px, transparent 1.5px);
  background-size: 80px 80px, 130px 130px;
  background-position: 0 0, 40px 40px;
  pointer-events: none;
  animation: particleDrift 20s linear infinite;
}
@keyframes particleDrift {
  0%   { background-position: 0 0, 40px 40px; }
  100% { background-position: 80px 80px, 170px 170px; }
}

/* ── About: card border glow on hover ─────────────────────── */
#about .glass-card:hover {
  border-color: rgba(53,37,205,0.25);
}

/* ── About: skill tags stagger ────────────────────────────── */
#about .skill-tag:nth-child(1)  { animation-delay: 0.05s; }
#about .skill-tag:nth-child(2)  { animation-delay: 0.10s; }
#about .skill-tag:nth-child(3)  { animation-delay: 0.15s; }
#about .skill-tag:nth-child(4)  { animation-delay: 0.20s; }
#about .skill-tag:nth-child(5)  { animation-delay: 0.25s; }
#about .skill-tag:nth-child(6)  { animation-delay: 0.30s; }

/* ── Experience: timeline progress fill ───────────────────── */
#timeline-line {
  transition: background 0.2s ease;
  width: 2px;
}

/* ── Projects: skeleton shimmer while loading ─────────────── */
.iframe-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: skeletonShimmer 2s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.iframe-wrap.loaded::after { display: none; }

@keyframes skeletonShimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* ── Projects: card number badge ─────────────────────────────
   (pure CSS, shows on hover via sibling approach if needed) */
.project-card [style*="padding:24px"] {
  transition: background 0.3s ease;
}
.project-card:hover [style*="padding:24px"] {
  background: linear-gradient(to bottom, #fafbff, #fff);
}

/* ── Contact: link hover ripple ──────────────────────────────*/
#contact a[href^="mailto"],
#contact a[href^="https://wa.me"] {
  position: relative;
  overflow: hidden;
}
#contact a[href^="mailto"]::after,
#contact a[href^="https://wa.me"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
}
#contact a[href^="mailto"]:hover::after,
#contact a[href^="https://wa.me"]:hover::after {
  transform: scaleX(1);
}

/* ── Footer: fade in ──────────────────────────────────────── */
footer {
  opacity: 0;
  animation: footerFadeIn 0.8s var(--ease-spring) 0.3s forwards;
}
@keyframes footerFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section divider accent ───────────────────────────────── */
.section-heading + div[style*="width:60px"] {
  position: relative;
  overflow: visible;
}
.section-heading + div[style*="width:60px"]::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, #89ceff, #3525cd);
  border-radius: 99px;
  animation: underlineGrow 0.8s var(--ease-spring) 0.4s both;
}
@keyframes underlineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* ── Image fallback fade ──────────────────────────────────── */
.img-fallback img {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.img-fallback.loaded img { opacity: 1; }

/* ── Smooth section transitions ───────────────────────────── */
section { position: relative; }

/* ── Floating scroll indicator ───────────────────────────── */
#home .absolute.bottom-8 {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ── Experience card achievement icon ─────────────────────── */
#experience .material-symbols-outlined[style*="color:#f59e0b"] {
  animation: trophySpin 3s ease-in-out infinite;
  display: inline-block;
}
@keyframes trophySpin {
  0%,100% { transform: rotate(0deg) scale(1); }
  20%      { transform: rotate(-10deg) scale(1.15); }
  40%      { transform: rotate(10deg) scale(1.15); }
  60%      { transform: rotate(0deg) scale(1); }
}

/* ── Primary colored cards (Frontend skill) ──────────────── */
#about [style*="background:var(--primary)"] {
  position: relative;
  overflow: hidden;
}
#about [style*="background:var(--primary)"]::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
  animation: cardGlow 6s ease-in-out infinite;
}
@keyframes cardGlow {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ── Hero profile image border animation ─────────────────── */
#home .relative .w-72,
#home .relative .lg\:w-96 {
  transition: box-shadow 0.4s ease;
}
#home .relative:hover .w-72,
#home .relative:hover .lg\:w-96 {
  box-shadow: 0 32px 80px rgba(53,37,205,0.22);
}

/* ── Availability badge pulse ─────────────────────────────── */
#home .w-2.h-2.rounded-full.bg-green-500 {
  animation: statusBlink 2s ease-in-out infinite;
}
