/* ===== Design Tokens ===== */
:root {
    --color-brand:        #008b0d;
    --color-brand-hover:  #00a010;
    --color-blue:         #0071e3;
    --color-danger:       #ff3b30;
    --color-text:         rgba(0, 0, 0, 0.88);
    --color-muted:        rgba(0, 0, 0, 0.48);
    --color-surface:      #f5f5f7;
    --color-bg:           #f4f6f9;
    --color-border:       rgba(0, 0, 0, 0.1);
    --color-card-bg:      #ffffff;
    --radius-sm:          8px;
    --radius-md:          12px;
    --radius-lg:          18px;
    --radius-pill:        980px;
    --shadow-card:        0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-elevated:    0 8px 32px rgba(0, 0, 0, 0.10);
    --font-sans:          "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-display:       "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --transition-fast:    0.2s ease;
    --transition-std:     0.32s cubic-bezier(0.4, 0, 0.6, 1);
}

* { box-sizing: border-box; }
body { font-family: var(--font-sans); margin: 0; padding: 0; background: var(--color-bg); color: var(--color-text); }

/* --- Site Footer --- */
.site-footer {
    background: #f5f5f7;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 22px;
    text-align: center;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.site-footer-inner {
    max-width: 980px;
    margin: 0 auto;
}
.site-footer-address {
    color: rgba(0, 0, 0, 0.56);
    font-size: 12px;
    margin: 0 0 4px 0;
    line-height: 1.5;
}
.site-footer-nav {
    margin: 0 0 8px 0;
    padding: 0 0 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 24px;
}
.site-footer-link {
    color: rgba(0, 0, 0, 0.56);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.site-footer-link:hover {
    color: rgba(0, 0, 0, 0.88);
}
.site-footer-copyright {
    color: rgba(0, 0, 0, 0.44);
    font-size: 12px;
    margin: 0;
    line-height: 1.5;
}

/* --- Login Toast --- */
.login-toast {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid rgba(0, 139, 13, 0.25);
    border-radius: var(--radius-md, 12px);
    box-shadow: var(--shadow-elevated, 0 8px 32px rgba(0, 0, 0, 0.10));
    padding: 0.9rem 1.1rem 0.9rem 1rem;
    z-index: 99999;
    max-width: 360px;
    width: 90%;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    animation: loginToastIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
}
@keyframes loginToastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.login-toast-text { flex: 1; }
.login-toast-title { font-weight: 600; color: #1a7a3c; font-size: 0.9rem; }
.login-toast-sub   { color: var(--color-muted, rgba(0,0,0,0.5)); font-size: 0.82rem; margin-top: 0.15rem; }
.login-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted, rgba(0,0,0,0.35));
    font-size: 1.15rem;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.15s;
}
.login-toast-close:hover { color: var(--color-text, rgba(0,0,0,0.88)); }

/* --- Button Links --- */
.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #008b0d;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 980px;
    font-size: 17px;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.17648;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.btn-cta:hover {
    background-color: #00a010;
}
