a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--public-focus-color, #22c55e);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--public-focus-color, #22c55e);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.public-focus-orange {
    --public-focus-color: #f97316;
}

.gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vp-honeypot {
    display: none;
}
