.bg-dots {
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #eee 2px, transparent 2px);
}

.footer-cta {
    margin-top: 1.5rem;
}

.footer-made-by {
    margin-top: 1rem;
}

.footer-made-by-link {
    margin-left: 0.35rem;
    gap: 0.4rem;
}

@media (max-width: 640px) {
    .hero-heading {
        font-size: 2rem !important;
    }
    .hero-desc {
        font-size: 1rem !important;
    }
}

/* Mac-style notification */
.notif-container {
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    z-index: 9999;
    pointer-events: none;
}

.notif-toast {
    --stack-depth: 0;
    position: absolute;
    right: 0;
    top: calc(var(--stack-depth) * -10px);
    display: flex;
    align-items: stretch;
    gap: .625rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .875rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14), 0 1px 4px rgba(0, 0, 0, 0.08);
    padding: .625rem .75rem;
    width: 22rem;
    max-width: calc(100vw - 2rem);
    pointer-events: auto;
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    z-index: calc(100 - var(--stack-depth));
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.28s ease,
                top 0.35s ease;
    transform-origin: center top;
}

.notif-toast.notif-enter {
    transform: translateX(0) scale(calc(1 - var(--stack-depth) * 0.04));
    opacity: calc(1 - var(--stack-depth) * 0.15);
}

.notif-toast.notif-exit {
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    transition: transform 0.3s ease-in, opacity 0.25s ease-in;
}

.notif-icon {
    flex-shrink: 0;
    width: 3rem;
    height: auto;
    border-radius: .5rem;
    object-fit: cover;
    align-self: stretch;
}

.notif-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.notif-text {
    font-size: .72rem;
    color: #3c3c43;
    line-height: 1.4;
}

.notif-close {
    flex-shrink: 0;
    align-self: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    color: #8e8e93;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 0 0 .25rem;
    margin-top: -.05rem;
}

.notif-close:hover {
    color: #1c1c1e;
}

.notif-title {
    font-size: .72rem;
    font-weight: 700;
    color: #1c1c1e;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    gap: .25rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.notif-title-handle {
    font-size: .65rem;
    font-weight: 400;
    color: #8e8e93;
}

@media (max-width: 640px) {
    .notif-container {
        top: auto;
        bottom: 1.25rem;
        right: 1rem;
        left: 1rem;
    }
    .notif-toast {
        right: 0;
        left: 0;
        width: auto;
        top: auto;
        bottom: calc(var(--stack-depth) * 10px);
        transform: translateY(calc(100% + 2rem));
        transform-origin: center bottom;
    }
    .notif-toast.notif-enter {
        transform: translateY(0) scale(calc(1 - var(--stack-depth) * 0.04));
    }
    .notif-toast.notif-exit {
        transform: translateY(calc(100% + 2rem));
    }
}

.notif-text {
    font-size: .72rem;
    color: #3c3c43;
    line-height: 1.4;
    margin-top: .15rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
