body {
    background-color: #fafbfc;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}
.hero-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.04) 0%, transparent 40%);
}
.tactical-pitch {
    background-color: #0f172a;
    background-image: 
        radial-gradient(circle at center, transparent 30%, #1e293b 30%, #1e293b 31%, transparent 31%),
        linear-gradient(to right, #1e293b 2px, transparent 2px),
        linear-gradient(to bottom, #1e293b 2px, transparent 2px);
    background-position: center;
}
.white-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.white-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.2);
}
.glow-btn {
    position: relative;
    overflow: hidden;
}
.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
}
.glow-btn:hover::after {
    left: 125%;
    opacity: 1;
}
