/* Custom styles for FPH Website */

/* Custom cursor */
*, *::before, *::after {
    cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAAbUExURQAAAC4uR////zE0VLjI9BsbG+z8/IaVzlZkk3Q553cAAAABdFJOUwBA5thmAAAAAWJLR0QCZgt8ZAAAAAlwSFlzAAAAyAAAAMgAY/rnrQAAAAd0SU1FB+kFChUtG+pgfWYAAAABb3JOVAHPoneaAAAAxklEQVQoz72RQQ6DIBBFZcG+NBjX/TXVbY/AZBK2svAgNiR4ABM9dqFVLBfoLF8e8/lQqUtVzvWuSqCBZyE5AgpJMB6FJJhQSFIzWsaPpD3BJ3LbJW0ZHSdi9hgblcAWbb1vtSEq4QUzHDFzUrIQY8KaNkxDvnzYotJNZxs7r4T+BO4Llnx7YWcPxmrONoHajXo63kpqDzsv8MhtqFXNRh1lADO6qGTguK5kE5MOIFILF0tnUH+yOB+RqYVQqvwiOY7jUP1r3mNbLvdfVx2fAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDI1LTA1LTEwVDIxOjQ1OjI2KzAwOjAwtcRAYgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyNS0wNS0xMFQyMTo0NToyNiswMDowMMSZ+N4AAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjUtMDUtMTBUMjE6NDU6MjcrMDA6MDA1+9K1AAAAAElFTkSuQmCC") 0 0, auto !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gradient text animation */
.gradient-text {
    background: linear-gradient(270deg, #3b82f6, #06b6d4, #3b82f6);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Glass morphism effect */
.glass {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

/* Mobile menu animations */
#mobileMenu {
    transition: all 0.3s ease;
}

/* FAQ accordion styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Button animations */
.btn-gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background-size: 100% 100%;
    transform: scale(1.05);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.card-hover:hover::before {
    left: 100%;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    border-top-color: #3b82f6;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Pricing Section Styles from yami.aidensoft.net */
.pricing-section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.pricing-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.underline-blue {
    height: 4px;
    width: 100px;
    background: #3b82f6;
    margin: 0 auto;
    border-radius: 2px;
}

.underline-gold {
    height: 4px;
    width: 100px;
    background: #eab308;
    margin: 0 auto;
    border-radius: 2px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: #202124;
    border: 1px solid #3c4043;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
    background: linear-gradient(180deg, #25282d 0%, #202124 100%);
}

.pricing-card:hover h3,
.pricing-card:hover .price-value {
    color: #60a5fa;
}

.pricing-card:hover .buy-btn {
    background: #2563eb;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-card:hover .features-list li {
    color: #e5e7eb;
}

.pricing-card:hover .features-list li i {
    color: #4ade80;
}

.pricing-card.popular {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e8eaed;
}

.price-box {
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.save-text {
    color: #4ade80;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.features-list {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #bdc1c6;
    font-size: 0.9375rem;
}

.features-list li i {
    color: #4ade80;
}

.buy-btn {
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.buy-btn:hover {
    background: #2563eb;
    transform: scale(1.02);
}

/* Premium Specifics */
.premium-card {
    background: #202124;
    border: 1px solid #eab30866;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(234, 179, 8, 0.6), 0 0 30px rgba(234, 179, 8, 0.2);
    border-color: #eab308;
    background: linear-gradient(180deg, #272520 0%, #202124 100%);
}

.premium-card:hover .price-value {
    color: #fbbf24;
}

.premium-card:hover .buy-btn {
    background: #ca8a04;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.premium-card:hover .features-list li {
    color: #e5e7eb;
}

.premium-card .price-value {
    color: #eab308;
    font-size: 3rem;
}

.premium-card .buy-btn {
    background: #eab308;
    color: #000;
    font-weight: 700;
}

.premium-card .buy-btn:hover {
    background: #ca8a04;
}

.premium-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(45deg, #eab308, #f59e0b);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.requires-badge {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid #eab308;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
}

/* ========== Buy Now Page - Animations & Polish ========== */

/* Staggered fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes underlineExpand {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Page load animations */
.buy-now-hero {
    animation: fadeInUp 0.8s ease-out forwards;
}

.pricing-card-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.pricing-card-animate:nth-child(1) { animation-delay: 0.1s; }
.pricing-card-animate:nth-child(2) { animation-delay: 0.2s; }
.pricing-card-animate:nth-child(3) { animation-delay: 0.3s; }

.premium-card-animate {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.4s forwards;
}

.payment-form-animate {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.5s forwards;
}

.trust-badges-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

/* Underline animation */
.underline-animate {
    animation: underlineExpand 0.6s ease-out 0.3s forwards;
    width: 0;
    overflow: hidden;
}

/* Interactive plan selection */
.pricing-card {
    cursor: pointer;
    position: relative;
}

.pricing-card.selected {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3), 0 10px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.selected::after {
    content: '✓ Selected';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #3b82f6;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.premium-card.selected {
    border-color: #eab308;
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.3), 0 10px 40px rgba(234, 179, 8, 0.15);
}

.premium-card.selected::after {
    content: '✓ Selected';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #eab308;
    color: #000;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

/* Enhanced button animations */
.buy-btn {
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.buy-btn:hover::before {
    left: 100%;
}

.premium-card .buy-btn::before {
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Best Value badge */
.best-value-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

/* Form input focus animation */
.payment-input {
    transition: all 0.3s ease;
}

.payment-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Submit button professional hover */
.submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Trust badge hover */
.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    color: white !important;
}

/* Payment form section subtle entrance */
.payment-section {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.payment-section:focus-within {
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.2);
}

/* ========== Payment Modal ========== */
/* ===== Payment Modal ===== */
.payment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.payment-modal-overlay.modal-open {
    opacity: 1;
    visibility: visible;
}

/* Flex column: header is pinned, content area scrolls */
.payment-modal {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.payment-modal-overlay.modal-open .payment-modal {
    transform: scale(1);
}

.payment-modal.payment-modal--gcash {
    max-width: 560px;
}

/* Header row — always pinned at top, never scrolls */
.payment-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1rem 0 1rem;
    flex-shrink: 0;
}

/* This is the ONLY element that scrolls */
.payment-modal-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 0.5rem 2rem 2rem 2rem;
    flex: 1;
    min-height: 0;
}

/* Close button */
.payment-modal-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(75, 85, 99, 0.5);
    border: 1px solid #4b5563;
    border-radius: 50%;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.payment-modal-close:hover {
    background: #4b5563;
    color: white;
}

@media (max-width: 480px) {
    .payment-modal {
        max-height: 88vh;
        border-radius: 12px;
    }

    .payment-modal-content {
        padding: 0.5rem 1.25rem 1.5rem 1.25rem;
    }
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #374151;
    border: 2px solid #4b5563;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-method-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.gcash-icon {
    background: linear-gradient(135deg, #00a86b, #00d084);
    color: white;
}

.paymaya-icon {
    background: linear-gradient(135deg, #0047ab, #0066cc);
    color: white;
}

.gotyme-icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: white;
}

.paypal-icon {
    background: linear-gradient(135deg, #003087, #009cde);
    color: white;
}

.payment-method-btn[data-method="gcash"]:hover { box-shadow: 0 8px 25px rgba(0, 168, 107, 0.4); }
.payment-method-btn[data-method="paymaya"]:hover { box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4); }
.payment-method-btn[data-method="gotyme"]:hover { box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4); }
.payment-method-btn[data-method="paypal"]:hover { box-shadow: 0 8px 25px rgba(0, 48, 135, 0.4); }

/* GCash QR view inside modal */
.gcash-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0;
}

.gcash-qr-box {
    flex: 1 1 0;
    min-width: 200px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcash-qr-image {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.gcash-details-box {
    flex: 0 1 auto;
    min-width: 180px;
    background: rgba(55, 65, 81, 0.6);
    border: 1px solid #4b5563;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.gcash-back-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gcash-back-btn:hover {
    background: #4b5563;
    color: white;
}

/* ============================================================
   VISUAL IDENTITY — DARK GAMING AESTHETIC
   ============================================================ */

/* Base: dark navy with unique hexagonal dot-grid woven in */
body {
    background-color: #0d1829;
    /* Hex grid: two offset dot layers create a honeycomb pattern */
    background-image:
        radial-gradient(circle, rgba(99, 155, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(99, 155, 255, 0.1) 1px, transparent 1px),
        /* Diagonal shimmer lines for depth */
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 22px,
            rgba(59, 130, 246, 0.018) 22px,
            rgba(59, 130, 246, 0.018) 23px
        );
    background-size: 34px 58px, 34px 58px, 100% 100%;
    background-position: 0 0, 17px 29px, 0 0;
}

/* Vignette — darkens the edges, focuses the eye inward */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(
        ellipse 90% 90% at 50% 40%,
        transparent 40%,
        rgba(5, 10, 22, 0.55) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Canvas grain — sits above everything at very low opacity (the old approach) */
#grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.055;
    mix-blend-mode: overlay;
}

/* Navigation: match deep base */
nav.fixed {
    background: rgba(10, 18, 36, 0.96) !important;
    border-bottom-color: rgba(148, 180, 255, 0.07) !important;
}

/* ---- HERO SECTION ---- */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d1829;
    padding-top: 5rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Vertical + horizontal grid lines, fading radially */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.11) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 78% 72% at 50% 40%, black 15%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 40%, black 15%, transparent 80%);
    pointer-events: none;
}

/* Perspective floor grid — receding vanishing-point lines */
.hero-floor-grid {
    position: absolute;
    bottom: 0;
    left: -35%;
    right: -35%;
    height: 42%;
    background-image:
        linear-gradient(to right, rgba(59, 130, 246, 0.14) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.09) 1px, transparent 1px);
    background-size: 110px 55px;
    transform: perspective(500px) rotateX(62deg);
    transform-origin: bottom center;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 85%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 85%);
    pointer-events: none;
}

/* Ambient glow orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.glow-orb-center {
    width: 900px; height: 900px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 62%);
    filter: blur(40px);
}
.glow-orb-tl {
    width: 420px; height: 420px;
    top: 8%; left: 3%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.16) 0%, transparent 70%);
    filter: blur(60px);
}
.glow-orb-br {
    width: 340px; height: 340px;
    bottom: 18%; right: 5%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, transparent 70%);
    filter: blur(60px);
}

/* Bottom page-fade into next section */
.hero-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, #0d1829 0%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

/* The massive FPH wordmark */
.hero-wordmark {
    font-size: clamp(7rem, 22vw, 17rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.045em;
    background: linear-gradient(148deg, #ffffff 0%, #b8d4ff 42%, #60a5fa 70%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 55px rgba(59, 130, 246, 0.52)) drop-shadow(0 0 110px rgba(6, 182, 212, 0.22));
    user-select: none;
    display: block;
}

/* Decorative rule + product label */
.hero-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.9rem 0 1.6rem;
}
.hero-rule::before,
.hero-rule::after {
    content: '';
    height: 1px;
    width: 64px;
}
.hero-rule::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6));
}
.hero-rule::after {
    background: linear-gradient(270deg, transparent, rgba(59, 130, 246, 0.6));
}
.hero-rule-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #60a5fa;
}

/* Hero CTA buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 0 32px rgba(59, 130, 246, 0.42), 0 4px 22px rgba(0, 0, 0, 0.55);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.68), 0 8px 30px rgba(0, 0, 0, 0.55);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.45);
    transform: translateY(-3px);
}

/* Scroll hint bounce */
.scroll-hint {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.18);
    animation: bounce 2.2s ease-in-out infinite;
}

/* ---- STAT CARDS ---- */
.stat-card {
    background: rgba(10, 16, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
/* Top highlight line */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.45), transparent);
}
.stat-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
}
.stat-num {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-variant-numeric: tabular-nums;
}
.stat-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #374151;
}

/* ---- HOW IT WORKS: step badges ---- */
.step-badge {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(12, 22, 50, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #60a5fa;
    box-shadow: 0 0 28px rgba(59, 130, 246, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---- FEATURE CARDS (What You Get) ---- */
.feature-card {
    background: rgba(10, 16, 34, 0.85) !important;
    border: 1px solid rgba(59, 130, 246, 0.22) !important;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
}
/* Inner glow layer — expands on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(59, 130, 246, 0.22) 0%, rgba(6, 182, 212, 0.06) 50%, transparent 72%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
/* Top edge accent line */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), rgba(6, 182, 212, 0.55), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.55) !important;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.18),
                0 0 44px rgba(59, 130, 246, 0.1),
                0 8px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

/* ---- SECTION DOT-GRID background variant ---- */
.section-dotgrid {
    position: relative;
}
.section-dotgrid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}
.section-dotgrid > * {
    position: relative;
    z-index: 1;
}

/* ---- FEATURES PAGE CARDS (Tailwind-class cards in features.html) ---- */
.border-gray-700.rounded-xl {
    border-color: rgba(59, 130, 246, 0.22) !important;
    background: rgba(10, 16, 34, 0.85) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
    position: relative;
    overflow: hidden;
}
.border-gray-700.rounded-xl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 110%, rgba(59, 130, 246, 0.24) 0%, rgba(6, 182, 212, 0.07) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}
.border-gray-700.rounded-xl::after {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), rgba(6, 182, 212, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}
.border-gray-700.rounded-xl > * {
    position: relative;
    z-index: 1;
}
.border-gray-700.rounded-xl:hover {
    border-color: rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2),
                0 0 50px rgba(59, 130, 246, 0.08),
                0 8px 32px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-4px) !important;
}
.border-gray-700.rounded-xl:hover::before { opacity: 1; }
.border-gray-700.rounded-xl:hover::after  { opacity: 1; }

/* ---- PREMIUM FEATURE CARDS ---- */
.premium-feature-card {
    background: linear-gradient(145deg, rgba(20, 15, 5, 0.9) 0%, rgba(10, 16, 34, 0.85) 100%);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 0.875rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* Ambient gold glow bottom */
.premium-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(234, 179, 8, 0.18) 0%, rgba(251, 146, 60, 0.06) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
/* Gold shimmer top edge */
.premium-feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.7), rgba(251, 191, 36, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.premium-feature-card:hover {
    border-color: rgba(234, 179, 8, 0.65);
    box-shadow:
        0 0 20px rgba(234, 179, 8, 0.2),
        0 0 50px rgba(234, 179, 8, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
.premium-feature-card:hover::before { opacity: 1; }
.premium-feature-card:hover::after  { opacity: 1; }

.premium-feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #f59e0b 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.35), 0 4px 12px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.premium-feature-card:hover .premium-feature-icon {
    box-shadow: 0 0 32px rgba(234, 179, 8, 0.6), 0 4px 16px rgba(0,0,0,0.4);
    transform: scale(1.08);
}
.premium-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fde68a;
}
.premium-feature-card p {
    font-size: 0.875rem;
    color: rgba(180, 160, 100, 0.75);
    line-height: 1.6;
}

/* ---- CTA BLOCK ---- */
.cta-block {
    background: linear-gradient(140deg, rgba(13, 24, 60, 0.65) 0%, rgba(6, 12, 30, 0.75) 100%);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 1.5rem;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Glowing top-edge highlight */
.cta-block::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.7), rgba(6, 182, 212, 0.7), transparent);
}
/* Ambient glow behind content */
.cta-block::after {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- FOOTER ---- */
footer {
    background: rgba(8, 15, 30, 0.97) !important;
    border-top-color: rgba(148, 180, 255, 0.07) !important;
}

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */

/* ── Page progress bar ────────────────────────────────────── */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #8b5cf6);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.7);
}

/* ── Scroll reveal ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* stagger siblings */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(n+7){ transition-delay: 0.46s; }
.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero load sequence ───────────────────────────────────── */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes heroBadgePop {
    0%   { opacity: 0; transform: translateY(-12px) scale(0.9); }
    70%  { transform: translateY(3px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge-anim    { animation: heroBadgePop 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.1s both; }
.hero-word-anim     { animation: heroScaleIn  0.9s cubic-bezier(0.22,1,0.36,1)    0.35s both; }
.hero-rule-anim     { animation: heroFadeUp   0.7s cubic-bezier(0.22,1,0.36,1)    0.7s both; }
.hero-desc-anim     { animation: heroFadeUp   0.7s cubic-bezier(0.22,1,0.36,1)    0.85s both; }
.hero-btns-anim     { animation: heroFadeUp   0.7s cubic-bezier(0.22,1,0.36,1)    1.0s both; }
.hero-scroll-anim   { animation: heroFadeUp   0.7s cubic-bezier(0.22,1,0.36,1)    1.25s both; }

/* ── Wordmark pulse glow ──────────────────────────────────── */
@keyframes wordGlow {
    0%, 100% { filter: drop-shadow(0 0 55px rgba(59,130,246,0.52)) drop-shadow(0 0 110px rgba(6,182,212,0.22)); }
    50%       { filter: drop-shadow(0 0 80px rgba(59,130,246,0.75)) drop-shadow(0 0 140px rgba(6,182,212,0.38)); }
}
.hero-wordmark { animation: wordGlow 4s ease-in-out infinite; }

/* ── Floating ambient particles (full page) ──────────────── */
#bg-particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ── Counter pop ──────────────────────────────────────────── */
@keyframes counterPop {
    0%   { transform: scale(0.7); opacity: 0; }
    60%  { transform: scale(1.12); }
    100% { transform: scale(1); opacity: 1; }
}
.stat-num.counting { animation: counterPop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* ── Step badge pulse ─────────────────────────────────────── */
@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 28px rgba(59,130,246,0.16), inset 0 1px 0 rgba(255,255,255,0.05); }
    50%       { box-shadow: 0 0 40px rgba(59,130,246,0.38), inset 0 1px 0 rgba(255,255,255,0.05); }
}
.step-badge { animation: stepPulse 3s ease-in-out infinite; }
.step-badge:nth-of-type(2) { animation-delay: 1s; }
.step-badge:nth-of-type(3) { animation-delay: 2s; }

/* ── Button ripple ────────────────────────────────────────── */
.ripple-host { position: relative; overflow: hidden; }
.ripple-wave {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.28);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ── Animated section divider ─────────────────────────────── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4));
}
.section-divider::after {
    background: linear-gradient(270deg, transparent, rgba(59,130,246,0.4));
}

/* ── Nav active animated underline ───────────────────────── */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
    border-radius: 1px;
}
.nav-link.text-blue-400::after { width: 100%; }

/* ── FAQ accordion smooth height ─────────────────────────── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s ease;
}
.faq-answer:not(.hidden) {
    max-height: 600px;
}

/* ── Server cards ─────────────────────────────────────────── */
@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes statusBlink {
    0%, 100% { opacity: 1;    transform: scale(1);   }
    50%       { opacity: 0.3; transform: scale(0.65); }
}
@keyframes statusPing {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(2.6); opacity: 0;   }
}
@keyframes barShimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* ── Card shell ── */
.server-card {
    animation: cardSlideIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
    background: linear-gradient(145deg, rgba(10,16,34,0.92) 0%, rgba(6,12,26,0.95) 100%);
    border: 1px solid rgba(59,130,246,0.14);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}
/* subtle top edge highlight */
.server-card::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,179,255,0.35), transparent);
    pointer-events: none;
}
.server-card:hover {
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.08),
                0 0 24px rgba(59,130,246,0.15),
                0 12px 36px rgba(0,0,0,0.55);
    transform: translateY(-4px);
}
.server-card--dim { opacity: 0.5; }
.server-card--dim:hover { transform: none; box-shadow: none; }

/* ── Header ── */
.sc-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
}
.sc-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--ic, #3b82f6) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--ic, #3b82f6) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--ic, #3b82f6);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.server-card:hover .sc-icon-wrap {
    background: color-mix(in srgb, var(--ic, #3b82f6) 22%, transparent);
    box-shadow: 0 0 14px color-mix(in srgb, var(--ic, #3b82f6) 30%, transparent);
}
.sc-name {
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}
/* ── Tier badges ── */
.sc-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 9999px;
    width: fit-content;
}
.sc-tier-premium  { background: rgba(234,179,8,0.15); color: #fbbf24; border: 1px solid rgba(234,179,8,0.35); }
.sc-tier-standard { background: rgba(59,130,246,0.12); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.sc-tier-basic    { background: rgba(100,116,139,0.15); color: #94a3b8; border: 1px solid rgba(100,116,139,0.3); }

/* ── Status pill ── */
.sc-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.server-status-online      { background: rgba(34,197,94,0.1);   color: #4ade80; border: 1px solid rgba(34,197,94,0.28);  }
.server-status-maintenance { background: rgba(234,179,8,0.1);   color: #fbbf24; border: 1px solid rgba(234,179,8,0.28);  }
.server-status-agreement   { background: rgba(59,130,246,0.1);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.28); }
.server-status-pending     { background: rgba(249,115,22,0.1);  color: #fb923c; border: 1px solid rgba(249,115,22,0.28); }

/* ── Status dots ── */
.server-dot {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.server-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: statusPing 1.8s ease-out infinite;
}
.server-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
}
.server-dot-online      { background: #4ade80; }
.server-dot-online::before  { background: #4ade80; }
.server-dot-online::after   { animation: statusBlink 2s ease-in-out infinite; background: #4ade80; }
.server-dot-maintenance { background: #fbbf24; }
.server-dot-maintenance::before { background: #fbbf24; animation-duration: 2.4s; }
.server-dot-maintenance::after  { animation: statusBlink 2.4s ease-in-out infinite; background: #fbbf24; }
.server-dot-agreement   { background: #60a5fa; }
.server-dot-agreement::before { background: #60a5fa; animation-duration: 2.8s; }
.server-dot-agreement::after  { animation: statusBlink 2.8s ease-in-out 0.4s infinite; background: #60a5fa; }
.server-dot-pending     { background: #fb923c; }
.server-dot-pending::before { animation: none; }
.server-dot-pending::after  { animation: statusBlink 1.1s ease-in-out infinite; background: #fb923c; }

/* ── Body (coverage + meta) ── */
.sc-body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.sc-coverage-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.sc-coverage-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sc-coverage-pct {
    font-size: 0.8rem;
    font-weight: 700;
}
.sc-bar-track {
    height: 5px;
    background: rgba(255,255,255,0.06);
    border-radius: 9999px;
    overflow: hidden;
}
.sc-bar-fill {
    height: 100%;
    border-radius: 9999px;
    background-size: 200% auto;
    transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
    position: relative;
}
.sc-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
    background-size: 200% auto;
    animation: barShimmer 2.5s linear infinite;
    border-radius: inherit;
}
.sc-meta-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}
.sc-meta-item {
    font-size: 0.72rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.sc-meta-item i {
    font-size: 0.65rem;
    opacity: 0.7;
}

/* ── View button ── */
.sc-view-btn {
    margin: 0 1.25rem 1.125rem;
    padding: 0.55rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.22);
    color: #93c5fd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    width: calc(100% - 2.5rem);
}
.sc-view-btn:hover {
    background: rgba(59,130,246,0.22);
    border-color: rgba(59,130,246,0.5);
    color: #bfdbfe;
    box-shadow: 0 0 12px rgba(59,130,246,0.18);
}

/* ── Pending placeholder ── */
.sc-pending-msg {
    padding: 1.25rem 1.25rem 1.125rem;
    font-size: 0.78rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-style: italic;
}

/* ── Gradient border animation on section headings ─────────  */
@keyframes gradShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
h1.bg-clip-text, h2.bg-clip-text {
    background-size: 200% 200%;
    animation: gradShift 5s ease infinite;
}

/* ── Floating animation for glow orbs ────────────────────── */
@keyframes floatOrb {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%       { transform: translate(-50%, -50%) translateY(-18px); }
}
.glow-orb-center { animation: floatOrb 8s ease-in-out infinite; }
@keyframes floatOrbTL {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.glow-orb-tl { animation: floatOrbTL 6s ease-in-out infinite; }
.glow-orb-br { animation: floatOrbTL 7s ease-in-out 1.5s infinite; }

/* ── Scroll hint bounce ───────────────────────────────────── */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}
.scroll-hint { animation: bounce 2.2s ease-in-out infinite; }

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > *, .hero-badge-anim, .hero-word-anim,
    .hero-rule-anim, .hero-desc-anim, .hero-btns-anim, .hero-scroll-anim,
    .hero-wordmark, .step-badge, .glow-orb-center, .glow-orb-tl, .glow-orb-br,
    .scroll-hint, h1.bg-clip-text, h2.bg-clip-text { animation: none !important; transition: none !important; }
    .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
