/* Sticky back-to-home pill — minimal escape hatch for standalone pages.
   Apple-product-page style: glass-morphic top-left, follows scroll.
   Used on standalone marketing/legal pages without main top nav.
   Pages: terms, privacy, promo, promo-story, swag-rules, join, claim. */

.back-to-home {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.back-to-home:hover {
    background: rgba(168, 85, 247, 0.18);
    border-color: rgba(168, 85, 247, 0.35);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}
.back-to-home svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}
@media (max-width: 480px) {
    .back-to-home {
        top: 12px;
        left: 12px;
        padding: 6px 12px 6px 10px;
        font-size: 13px;
    }
    .back-to-home svg {
        width: 12px;
        height: 12px;
    }
}
