/* ── UTILITY ── */
.hidden {
    display: none !important;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    background: var(--mint);
    color: var(--forest);
}

/* ── HERO ── */
.hero {
    padding-top: 80px;
    min-height: 50svh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background: var(--forest);
}

/* Animated organic blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--leaf);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}
.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--gold);
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
    opacity: 0.2;
}
.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--sage);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
    opacity: 0.15;
}
@keyframes blobFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-15px, 15px) scale(0.97);
    }
}

/* Dot grid texture */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem clamp(1.25rem, 5vw, 3.5rem);
    display: block;
}
.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: white;
    margin-bottom: 1.2rem;
    animation: slideDown 0.7s 0.08s ease both;
    opacity: 0;
}

.hero-title .accent {
    color: var(--gold);
}

.empty-state-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.empty-state-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937; /* Sesuaikan dengan warna teks tema Anda */
    margin-bottom: 0.75rem;
}
.empty-state-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280; /* Warna abu-abu yang nyaman dibaca */
    margin-bottom: 2rem;
}
