body {
    background: radial-gradient(circle at 30% 20%, rgba(118, 185, 0, 0.08), transparent 30%), #02060f;
    color: #e2e8f0;
    overflow-x: hidden;
}

.glass-panel {
    background: linear-gradient(145deg, rgba(12, 18, 33, 0.8), rgba(12, 18, 33, 0.65));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: none;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(118, 185, 0, 0.12);
}

.halo {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 50%, rgba(118, 185, 0, 0.12), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(118, 185, 0, 0.08), transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 75%);
    filter: blur(10px);
    opacity: 0.9;
}

.orb-frame {
    position: relative;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(118, 185, 0, 0.25), rgba(10, 15, 30, 0.9));
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.orb-frame::after {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    animation: float 10s ease-in-out infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #76B900 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: screen;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.15;
    background-image: linear-gradient(to right, rgba(148, 163, 184, 0.09) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.glow-point {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.9s cubic-bezier(0.35, 0, 0, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(148, 163, 184, 0.3), transparent);
}

/* Minimize hard edges for a cardless feel */
[class*="border"] {
    border-color: transparent !important;
    border-width: 0 !important;
}

.badge-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.badge-icon-dark {
    background: #020617;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #a3ff4d;
}

/* Sizes */
.icon-xl {
    width: 3rem;
    height: 3rem;
}

/* w-12 */
.icon-lg {
    width: 2.5rem;
    height: 2.5rem;
}

/* w-10 */
.icon-md {
    width: 2rem;
    height: 2rem;
}

/* w-8 */
.icon-sm {
    width: 1.5rem;
    height: 1.5rem;
}

/* w-6 */
