@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@500;600;700;800;900;950&family=Plus+Jakarta+Sans:wght@600;700;800;900&family=JetBrains+Mono:wght@500;600;700;800&display=swap');

:root {
  --primary-emerald: #059669;
  --emerald-dark: #064e3b;
  --emerald-deep: #022c22;
  --emerald-light: #ecfdf5;
  --teal-accent: #0f766e;
  --teal-deep: #115e59;
  --forest-dark: #064e3b;
  --forest-text: #022c22;
  --forest-sub: #134e4a;
  --forest-muted: #2dd4bf;
  --forest-border: #a7f3d0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--forest-text);
  background-color: #ffffff;
  overflow: hidden !important;
  -webkit-font-smoothing: antialiased;
  height: 100vh;
  width: 100vw;
}

/* Headings (NO BLACK - Pure Deep Evergreen & Teal) */
h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: var(--forest-text);
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Slide Section (Strict 100vh Zero Overflow) */
.section, .fp-section {
  position: relative;
  height: 100vh !important;
  max-height: 100vh !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 24px 60px 24px 60px !important;
  background: #ffffff;
  overflow: hidden !important;
  box-sizing: border-box;
}

.fp-overflow, .fp-tableCell {
  overflow: hidden !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.slide-wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

/* Slide Header (Emerald/Teal Theme) */
.slide-header {
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary-emerald);
  padding-bottom: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.slide-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-emerald);
  margin-bottom: 3px;
}

.slide-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--emerald-dark);
  letter-spacing: -0.02em;
}

/* Top Progress Bar */
#top-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #059669, #0d9488, #10b981);
  z-index: 10000;
  transition: width 0.3s ease;
}

/* Minimal Clean Bottom Navigation Bar */
.slide-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: #ffffff;
  border-top: 1px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 9999;
  font-size: 0.85rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--forest-dark);
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  cursor: pointer;
  transition: all 0.15s ease;
}

.nav-btn:hover {
  background: #d1fae5;
  color: #064e3b;
  border-color: #34d399;
}

.nav-btn-primary {
  background: var(--primary-emerald);
  color: #ffffff;
  border-color: var(--primary-emerald);
}

.nav-btn-primary:hover {
  background: var(--emerald-dark);
  color: #ffffff;
}

/* Clean Academic Tables (Emerald & Teal Themed) */
.academic-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 0.92rem;
}

.academic-table th {
  background: #f0fdf4;
  color: var(--forest-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  padding: 10px 14px;
  text-align: left;
  border-top: 2px solid var(--primary-emerald);
  border-bottom: 2px solid var(--primary-emerald);
}

.academic-table td {
  padding: 8px 14px;
  color: var(--forest-sub);
  border-bottom: 1px solid #e2e8f0;
}

.academic-table tr.highlight-row td {
  background: #ecfdf5;
  font-weight: 800;
  color: var(--emerald-dark);
  border-top: 1.5px solid var(--primary-emerald);
  border-bottom: 1.5px solid var(--primary-emerald);
}

/* Lists */
.clean-list-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--forest-sub);
}

.clean-list-item::before {
  content: '•';
  position: absolute;
  left: 2px;
  top: -3px;
  color: var(--primary-emerald);
  font-size: 1.5rem;
  font-weight: bold;
}

/* Numbered Steps */
.clean-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.clean-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--primary-emerald);
  flex-shrink: 0;
}

#fp-nav {
  display: none !important;
}


/* ============================================================
   SUBTLE ARCHITECTURAL TECH LINES & SILHOUETTE BACKGROUND
   ============================================================ */
.slide1-subtle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* 1. Ultra-Faint Engineering Grid & Diagonal Lines */
.bg-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(5, 150, 105, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(5, 150, 105, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
}

/* 2. Soft Ambient Radial Light Accents */
.bg-ambient-glow {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 92% 15%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(13, 148, 136, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(240, 253, 244, 0.6) 0%, transparent 70%);
}

/* 3. Subtle Corner Circuit Traces / Silhouettes */
.circuit-silhouette {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  color: #059669;
  transition: opacity 0.5s ease;
}

.circuit-top-right {
  top: -20px;
  right: -20px;
  width: 380px;
  height: 380px;
}

.circuit-bottom-left {
  bottom: -20px;
  left: -20px;
  width: 340px;
  height: 340px;
}

/* 4. Subtle Crosshair Register Marks */
.tech-crosshair {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 800;
  color: #059669;
  opacity: 0.22;
  user-select: none;
}

.crosshair-tl { top: 28px; right: 40px; }
.crosshair-tr { top: 28px; left: 40px; }
.crosshair-bl { bottom: 28px; left: 40px; }
.crosshair-br { bottom: 28px; right: 40px; }


/* ============================================================
   FLUID ORGANIC MORPHING ANIMATION ACCENTS (SLIDE 1)
   ============================================================ */
.morph-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.morph-blob {
  position: absolute;
  filter: blur(55px);
  opacity: 0.22;
  pointer-events: none;
  animation: morphFluid 14s ease-in-out infinite alternate;
  will-change: border-radius, transform;
}

.morph-blob-1 {
  top: 5%;
  right: 5%;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 50%, #34d399 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.morph-blob-2 {
  bottom: 8%;
  left: 5%;
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, #059669 0%, #0f766e 60%, #14b8a6 100%);
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.morph-blob-3 {
  top: 40%;
  left: 45%;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
  filter: blur(70px);
  opacity: 0.35;
  animation-duration: 10s;
  animation-delay: -2s;
}

@keyframes morphFluid {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  33% {
    border-radius: 35% 65% 55% 45% / 65% 35% 65% 35%;
    transform: rotate(120deg) translate(25px, -15px) scale(1.12);
  }
  66% {
    border-radius: 70% 30% 45% 55% / 35% 65% 40% 60%;
    transform: rotate(240deg) translate(-20px, 20px) scale(0.94);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(360deg) translate(0, 0) scale(1);
  }
}


/* ============================================================
   PREMIUM EDITORIAL TEXT EFFECTS (SLIDE 1)
   ============================================================ */

/* 1. Iridescent Animated Emerald Sheen Gradient */
.text-shimmer-emerald {
  background: linear-gradient(
    110deg,
    #047857 0%,
    #059669 25%,
    #10b981 50%,
    #34d399 75%,
    #047857 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textSheen 6s linear infinite;
  display: inline-block;
  will-change: background-position;
}

@keyframes textSheen {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* 2. Deep Evergreen Display Text with Precision Depth */
.text-depth-evergreen {
  color: #022c22;
  text-shadow: 0 1px 2px rgba(2, 44, 34, 0.08);
}

/* 3. Luminous Single Emerald Underline */
.luminous-emerald-underline {
  border-bottom: 2.5px solid #059669;
  box-shadow: 0 4px 16px -2px rgba(5, 150, 105, 0.2);
}

/* 4. Interactive Micro-Hover on Names */
.name-interactive-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.name-interactive-card:hover {
  transform: translateY(-2px);
}

.name-interactive-card:hover .nim-tag {
  color: #047857;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}


/* Micro-Dot Matrix Pattern for Title Box */
.bg-title-dot-matrix {
  background-image: radial-gradient(rgba(5, 150, 105, 0.4) 0.9px, transparent 0.9px);
  background-size: 18px 18px;
}


/* ============================================================
   INTERACTIVE MOVING ELEMENTS INSIDE TITLE BOX
   ============================================================ */

/* 1. Rotating Radar Arc */
.rotating-radar-node {
  transform-origin: 80px 70px;
  animation: rotateRadar 16s linear infinite;
}

@keyframes rotateRadar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 2. Pulsing Circuit Data Nodes */
.pulsing-node-1 {
  animation: nodePulse 2.4s ease-in-out infinite alternate;
}

.pulsing-node-2 {
  animation: nodePulse 2.8s ease-in-out infinite alternate 0.8s;
}

.pulsing-node-3 {
  animation: nodePulse 3.2s ease-in-out infinite alternate 1.6s;
}

@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 1; filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8)); }
}

/* 3. Subtle Holographic Scanline Sweep */
.title-box-scanline {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.08) 30%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(16, 185, 129, 0.08) 70%,
    transparent
  );
  transform: skewX(-20deg);
  animation: boxScanline 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes boxScanline {
  0% { left: -100%; }
  35%, 100% { left: 180%; }
}

/* 4. Mouse Interactive Spotlight Glow Container */
#title-box-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.12), transparent 70%);
  transition: opacity 0.3s ease;
  z-index: 1;
}


/* ============================================================
   SLOGAN FOOTER MOVING ANIMATIONS (SLIDE 1)
   ============================================================ */

/* 1. Gentle Floating Breathing Motion for the Entire Slogan Container */
.slogan-floating-container {
  animation: sloganFloat 5s ease-in-out infinite alternate;
}

@keyframes sloganFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-2px); }
}

/* 2. Sequential Wave Pulse for Mantra Badges */
.mantra-pill {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  will-change: transform, box-shadow;
}

.mantra-pill-1 {
  animation: pillWave 4.5s ease-in-out infinite 0.0s;
}

.mantra-pill-2 {
  animation: pillWave 4.5s ease-in-out infinite 1.1s;
}

.mantra-pill-3 {
  animation: pillWave 4.5s ease-in-out infinite 2.2s;
}

.mantra-pill-4 {
  animation: pillWaveHighImpact 4.5s ease-in-out infinite 3.3s;
}

@keyframes pillWave {
  0%, 75%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 1px 2px rgba(5, 150, 105, 0.05);
  }
  25% {
    transform: translateY(-2.5px) scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    background-color: #d1fae5;
  }
}

@keyframes pillWaveHighImpact {
  0%, 75%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.2);
  }
  25% {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.45);
    background-color: #047857;
  }
}

.mantra-pill:hover {
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
}

/* 3. Continuous Emerald Gradient Shimmer on Indonesian Slogan */
.slogan-animated-text {
  background: linear-gradient(
    110deg,
    #022c22 0%,
    #059669 25%,
    #0d9488 45%,
    #10b981 65%,
    #022c22 85%,
    #022c22 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sloganTextSweep 5s linear infinite;
  display: inline-block;
  will-change: background-position;
}

@keyframes sloganTextSweep {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* 4. Pulsing Dot Separators */
.slogan-dot-pulse {
  animation: dotSpark 2s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes dotSpark {
  0% { opacity: 0.35; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.3); color: #10b981; }
}


/* ============================================================
   LUXURY SOFT ECO-TECH GRADIENT BACKGROUND (SLIDE 1)
   ============================================================ */
.slide1-eco-theme {
  background: 
    radial-gradient(circle at 90% 12%, rgba(16, 185, 129, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 88%, rgba(13, 148, 136, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 244, 0.7) 100%),
    linear-gradient(145deg, #f0fdf4 0%, #f8fafc 35%, #ecfdf5 70%, #f0fdfa 100%) !important;
}

/* Subtle Isometric Ambient Grid */
.slide1-bg-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(5, 150, 105, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(5, 150, 105, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle Glowing Light Orbs */
.bg-ambient-orb-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.bg-ambient-orb-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}


/* ============================================================
   BOTTOM-LEFT & BOTTOM-RIGHT CORNER ACCENTS (SLIDE 1)
   ============================================================ */
.corner-badge-pulse {
  animation: cornerPulse 2.5s ease-in-out infinite alternate;
}

@keyframes cornerPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.8)); }
}

.corner-circuit-svg {
  opacity: 0.14;
  transition: opacity 0.3s ease;
}


/* ============================================================
   ANIMATED SMART WASTE WEIGHING SCENE (SLIDE 1)
   ============================================================ */
.weighing-widget-card {
  background: rgba(240, 253, 244, 0.88);
  border: 1.5px solid #6ee7b7;
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.weighing-widget-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.14);
  border-color: #10b981;
}

.weighing-box-drop {
  animation: wasteBoxDrop 4s ease-in-out infinite;
}

@keyframes wasteBoxDrop {
  0%, 15% { transform: translateY(-7px); opacity: 0.85; }
  35%, 85% { transform: translateY(0px); opacity: 1; }
  100% { transform: translateY(-7px); opacity: 0.85; }
}

.sensor-scan-beam {
  animation: sensorScan 2.2s ease-in-out infinite alternate;
  transform-origin: top center;
}

@keyframes sensorScan {
  0% { opacity: 0.2; transform: scaleY(0.7); }
  100% { opacity: 0.9; transform: scaleY(1.05); filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.8)); }
}

.iot-signal-wave {
  animation: signalWave 2s ease-out infinite;
  transform-origin: 32px 10px;
}

@keyframes signalWave {
  0% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 0.85; }
  100% { opacity: 0; transform: scale(1.3); }
}

.weight-lcd-glow {
  font-family: 'JetBrains Mono', monospace;
  color: #047857;
  text-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}


/* ============================================================
   SEAMLESS ORGANIC FEATHERING FOR TITLE ELEMENTS (ZERO BOX EDGES)
   ============================================================ */
.title-organic-backdrop {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -60px;
  right: -60px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 50%, black 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 50%, black 25%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}


/* ============================================================
   ANIMATED RESIDENT / CUSTOMER WEIGHING SCENE (BOTTOM-LEFT)
   ============================================================ */
.resident-bob-motion {
  animation: residentBob 4s ease-in-out infinite;
}

@keyframes residentBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.phone-screen-glow {
  animation: screenGlow 2.5s ease-in-out infinite alternate;
}

@keyframes screenGlow {
  0% { fill: #34d399; opacity: 0.5; }
  100% { fill: #10b981; opacity: 1; filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.9)); }
}

.floating-eco-leaf {
  animation: leafFloat 3.5s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes leafFloat {
  0% { transform: translateY(0px) rotate(-6deg); }
  100% { transform: translateY(-6px) rotate(8deg); }
}


/* ============================================================
   TOP-LEFT CORNER LOGO ACCENTS (SLIDE 1)
   ============================================================ */
.logo-ambient-halo {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 260px;
  height: 180px;
  background: radial-gradient(ellipse at 40% 40%, rgba(16, 185, 129, 0.18) 0%, rgba(13, 148, 136, 0.08) 50%, transparent 80%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.top-left-grid-accent {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 64px;
  height: 64px;
  border-top: 1.5px solid rgba(5, 150, 105, 0.35);
  border-left: 1.5px solid rgba(5, 150, 105, 0.35);
  pointer-events: none;
  z-index: 2;
}

.top-left-grid-accent::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
}


/* ============================================================
   TOP-RIGHT CORNER ACCENTS (SLIDE 1)
   ============================================================ */
.top-right-grid-accent {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 64px;
  height: 64px;
  border-top: 1.5px solid rgba(5, 150, 105, 0.35);
  border-right: 1.5px solid rgba(5, 150, 105, 0.35);
  pointer-events: none;
  z-index: 2;
}

.top-right-grid-accent::before {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
}
