/* =========================================
   1. CORE ENGINE & RESET
   ========================================= */
:root {
    --sai-blue: #3b82f6;
    --sai-blue-glow: rgba(59, 130, 246, 0.4);
    --bg-dark: #020617;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(15, 23, 42, 0.8);
    --border: rgba(255, 255, 255, 0.1);
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   2. DEEP SPACE BACKGROUND (PARALLAX)
   ========================================= */
/* --- ENHANCED GALACTIC ENGINE --- */
.space-master {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #02040a; /* Darker base for better contrast */
    overflow: hidden;
}

/* THE CORE: Now rotates and pulses noticeably */
.galactic-core {
    position: absolute;
    top: 45%;
    left: 55%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 230, 0.4) 0%, 
        rgba(59, 130, 246, 0.2) 40%, 
        transparent 70%);
    transform: translate(-50%, -50%) rotate(-35deg);
    filter: blur(50px);
    animation: galaxyRotate 60s linear infinite; /* Constant slow spin */
}

@keyframes galaxyRotate {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    to { transform: translate(-50%, -50%) rotate(360deg) scale(1.1); }
}

/* THE STARS: Increased speed and added "Twinkle" */
.stars {
    position: absolute;
    width: 200%; /* Larger to prevent seams during fast movement */
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 100px 150px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 200px 100px, #3b82f6, transparent);
    background-repeat: repeat;
}

/* Star Layer 1: The "Fast" foreground stars */
.stars-fast {
    opacity: 0.7;
    background-size: 250px 250px;
    animation: starFly 40s linear infinite; /* 4x faster than before */
}

/* Star Layer 2: Middle depth with a shimmer */
.stars-medium {
    opacity: 0.4;
    background-size: 400px 400px;
    animation: starFly 80s linear infinite reverse, twinkle 4s ease-in-out infinite;
}

/* Star Layer 3: Deep background drift */
.stars-slow {
    opacity: 0.2;
    background-size: 600px 600px;
    animation: starFly 120s linear infinite;
}

/* ANIMATIONS */
@keyframes starFly {
    from { transform: translate(0, 0); }
    to { transform: translate(-250px, -250px); } /* Larger movement offset */
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* --- THE NEBULA: Drifting 'Glow' streaks --- */
.nebula-cloud {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 60%);
    filter: blur(120px);
    animation: nebulaFloat 20s ease-in-out infinite alternate;
}

@keyframes nebulaFloat {
    from { transform: translate(-5%, -5%) scale(1); }
    to { transform: translate(5%, 5%) scale(1.2); }
}
/* =========================================
   3. HEADER (RESPONSIVE LOGIC)
   ========================================= */
.sa-header {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.sa-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sa-brand { display: flex; align-items: center; text-decoration: none; color: white; gap: 10px; }
.sa-logo-img { height: 35px; filter: drop-shadow(0 0 8px var(--sai-blue)); }
.sa-brand-name { font-weight: 900; font-size: 1.3rem; letter-spacing: -0.5px; }

.sa-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 15px;
    transition: 0.3s;
}

.sa-nav a:hover { color: var(--sai-blue); }

.sa-header-actions { display: flex; gap: 12px; align-items: center; }

/* HEADER BUTTONS */
.sa-btn-nav {
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.sa-btn-nav.secondary {
    border: 1px solid var(--sai-blue);
    color: var(--sai-blue);
}

.sa-btn-nav.secondary:hover {
    background: var(--sai-blue);
    color: white;
    box-shadow: 0 0 15px var(--sai-blue-glow);
}

.sa-btn-nav.discord {
    background: #5865F2;
    color: white;
}

.sa-btn-nav.discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    padding: 140px 1.5rem 60px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.pulse-ring {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.badge-text { font-family: var(--font-mono); font-size: 10px; color: #10b981; font-weight: 700; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .accent {
    color: var(--sai-blue);
    text-shadow: 0 0 20px var(--sai-blue-glow);
}

.description-block p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sa-btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--sai-blue);
    color: white;
    text-decoration: none;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: 0.4s;
    margin-top: 1rem;
}

.sa-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px var(--sai-blue-glow);
}

/* =========================================
   5. DATA TERMINAL (VISUALS)
   ========================================= */
.terminal-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.terminal-head {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.terminal-head .label { font-family: var(--font-mono); font-size: 10px; color: #64748b; margin-left: 10px; }

.terminal-body { padding: 30px; }

.graph-container {
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 25px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #1e3a8a, var(--sai-blue));
    height: 0;
    animation: barGrow 2s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@keyframes barGrow { to { height: var(--h); } }

.terminal-metrics {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.metric .m-label { display: block; font-family: var(--font-mono); font-size: 9px; color: #64748b; margin-bottom: 4px; }
.metric .m-value { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--sai-blue); }

/* =========================================
   6. MOBILE RESPONSIVE LOGIC
   ========================================= */
@media (max-width: 968px) {
    /* Hide nav links as requested */
    .desktop-only { display: none !important; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-visual {
        order: -1; /* Graph appears above text on mobile */
    }

    .hero-title { font-size: 2.2rem; }

    .sa-header-inner { padding: 0.8rem 1rem; }

    /* Compact buttons for mobile header */
    .sa-btn-nav span.btn-text { display: none; } /* Hide "Join Discord" text, keep icon */
    .sa-btn-nav { padding: 10px; }
    
    .sa-brand-name { font-size: 1.1rem; }
    
    .description-block p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .sa-btn-nav.secondary { font-size: 10px; padding: 8px 12px; }
}










/* =========================================
   PAYMENTS SECTION
   ========================================= */
.sa-payments {
    padding: 100px 1.5rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* PAYMENT CARDS */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.pay-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.pay-card img {
    height: 40px;
    margin-bottom: 20px;
    filter: grayscale(1) brightness(1.5);
    transition: 0.4s;
}

.pay-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #fff;
}

.pay-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Hover State: Card "Wakes Up" */
.pay-card:hover {
    transform: translateY(-10px);
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--sai-blue);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.pay-card:hover img {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

/* INFINITY SCROLL (MARQUEE) */
.payment-marquee {
    width: 100%;
    overflow: hidden;
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    margin: 0 40px;
    letter-spacing: 5px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .payment-grid { grid-template-columns: 1fr; }
    .pay-card { padding: 30px 20px; }
    .marquee-content span { font-size: 1.1rem; margin: 0 20px; }
}




/* SMOOTH SCROLL ENGINE */
html {
    scroll-behavior: smooth; /* Native smooth scroll */
}

/* REVEAL ANIMATION (Initial State) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active State (Triggered by JS) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* CRYPTO CARD SPECIAL STYLING */
.crypto-card {
    border: 1px solid rgba(247, 147, 26, 0.2); /* Bitcoin Orange hint */
}

.crypto-card:hover {
    border-color: #f7931a;
    box-shadow: 0 15px 30px rgba(247, 147, 26, 0.15);
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.crypto-icons img {
    height: 30px !important;
    filter: grayscale(0) !important; /* Keep crypto colors visible */
}

/* --- THE REMAINING PAYMENTS CSS FROM BEFORE GOES HERE --- */





/* --- 3D PERSPECTIVE SETUP --- */
.sa-about {
    perspective: 1200px;
}

.about-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 50px;
    gap: 40px;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

/* --- THE ALTERNATING LOGIC --- */
.about-box.reverse {
    flex-direction: row-reverse;
}

.about-box:hover {
    transform: translateZ(20px) rotateX(2deg);
    border-color: var(--sai-blue);
    background: rgba(59, 130, 246, 0.04);
}

.about-content { flex: 1.2; }
.about-visual { 
    flex: 0.8; 
    display: flex; 
    justify-content: center; 
    perspective: 800px;
}

.magic-3d-wrap {
    width: 200px; height: 200px;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- VISUAL 1: SPACE ORB --- */
.orb-3d {
    position: relative;
    width: 150px; height: 150px;
    animation: rotate3D 15s linear infinite;
    transform-style: preserve-3d;
}

.ring-3d {
    position: absolute;
    inset: 0;
    border: 2px solid var(--sai-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--sai-blue-glow);
}
.ring-3d:nth-child(2) { transform: rotateY(90deg); }

.core-3d {
    position: absolute;
    top: 50%; left: 50%;
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px #fff;
}

/* --- VISUAL 2: COOL NEURAL CORE (The Brain) --- */
.neural-core {
    position: relative;
    width: 140px; height: 140px;
    transform-style: preserve-3d;
    animation: floatNeural 4s ease-in-out infinite;
}

.brain-sphere {
    position: absolute; inset: 25%;
    background: radial-gradient(circle, #fff 0%, var(--sai-blue) 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--sai-blue);
    animation: pulseGlow 2s ease-in-out infinite;
}

.synapse-ring {
    position: absolute; inset: -10px;
    border: 1px dashed var(--sai-blue);
    border-radius: 50%;
    transform: rotateX(75deg);
    animation: spinZ 10s linear infinite;
}

.data-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    animation: orbitData 3s linear infinite;
}
.data-particle:nth-child(3) { animation-delay: -1s; }
.data-particle:nth-child(4) { animation-delay: -2s; }

/* --- VISUAL 3: WORLD NODE (Global Access) --- */
.world-node {
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.4);
    position: relative;
    transform-style: preserve-3d;
    animation: rotateYOnly 12s linear infinite;
}

.active-node {
    position: absolute;
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 30%; left: 70%;
    box-shadow: 0 0 15px var(--sai-blue);
}

/* --- VISUAL 4: SHIELD 3D (Payments) --- */
.shield-3d {
    width: 100px; height: 130px;
    background: #10b981;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; font-weight: 900;
    animation: flip3D 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* --- VISUAL 5: GROWTH TOWER (Growth) --- */
.growth-tower {
    display: flex; align-items: flex-end; gap: 10px; height: 100px;
}
.pillar {
    width: 25px;
    background: linear-gradient(to top, var(--sai-blue), #fff);
    box-shadow: 0 0 15px var(--sai-blue-glow);
    animation: growHeight 2s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

/* --- KEYFRAMES --- */
@keyframes rotate3D {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes rotateYOnly {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@keyframes floatNeural {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-20px) rotateZ(5deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes spinZ {
    from { transform: rotateX(75deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes orbitData {
    0% { transform: rotate(0deg) translateX(60px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(360deg) translateX(60px); opacity: 0; }
}

@keyframes flip3D {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes growHeight {
    from { height: 0; }
    to { height: var(--h); }
}

/* --- MOBILE COMPATIBILITY --- */
@media (max-width: 850px) {
    .about-box, .about-box.reverse {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .about-visual { order: -1; margin-bottom: 20px; }
}






/* --- HOW IT WORKS SECTION --- */
.sa-how {
    padding: 100px 1.5rem;
    position: relative;
}

.protocol-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    gap: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.step-card:hover {
    border-color: var(--sai-blue);
    transform: translateX(10px);
    background: rgba(59, 130, 246, 0.05);
}

.step-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.2);
    position: absolute;
    right: 30px;
    top: 10px;
}

.step-visual {
    flex: 0 0 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-text { flex: 1; }
.step-text h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.step-text p { color: var(--text-dim); line-height: 1.6; }

/* --- 3D STEP VISUALS --- */

/* Step 1: 3D Hexagon */
.hex-wrap {
    width: 60px; height: 70px;
    background: var(--sai-blue);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: white;
    animation: hexRotate 6s infinite ease-in-out;
}

/* Step 2: Digital Scanner */
.scan-wrap {
    width: 80px; height: 80px;
    border: 1px solid var(--sai-blue);
    position: relative;
    background: rgba(59, 130, 246, 0.1);
}
.scan-bar {
    position: absolute; width: 100%; height: 2px;
    background: #fff; box-shadow: 0 0 15px #fff;
    animation: scanMove 2s infinite linear;
}

/* Step 3: Payout Sync */
.sync-wrap {
    width: 60px; height: 60px;
    border: 3px solid #10b981;
    border-radius: 50%;
    position: relative;
    animation: spin 4s linear infinite;
}
.sync-core {
    position: absolute; inset: 15px;
    background: #10b981; border-radius: 50%;
    box-shadow: 0 0 20px #10b981;
}

/* --- KEYFRAMES --- */
@keyframes hexRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .step-card { flex-direction: column; text-align: center; padding: 50px 20px; }
    .step-number { right: 50%; transform: translateX(50%); top: 5px; font-size: 2rem; }
    .step-card:hover { transform: translateY(-5px); }
}




/* --- HOW IT WORKS GRID LAYOUT --- */
.sa-how { 
    padding: 100px 1.5rem; 
    perspective: 1500px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns to eliminate empty space on PC */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    gap: 25px;
    align-items: center;
    backdrop-filter: blur(12px);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.how-card:hover {
    transform: translateZ(20px) translateY(-5px);
    border-color: var(--sai-blue);
    background: rgba(59, 130, 246, 0.05);
}

.how-visual { 
    flex: 0 0 100px; 
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-text { flex: 1; }
.step-tag { font-family: var(--font-mono); font-size: 11px; color: var(--sai-blue); letter-spacing: 2px; }

/* --- UNIQUE 3D VISUAL ANIMATIONS --- */

/* 1. Project Orb */
.orb-3d { 
    width: 60px; height: 60px; border: 2px solid #fff; border-radius: 50%; 
    animation: rotate3D 10s linear infinite; display: flex; align-items: center; justify-content: center; font-size: 10px;
}

/* 2. Scanning Box */
.scan-box { 
    width: 60px; height: 60px; border: 1px solid var(--sai-blue); position: relative; overflow: hidden; 
}
.scan-line { 
    position: absolute; width: 100%; height: 2px; background: #fff; box-shadow: 0 0 10px #fff; animation: scanMove 2s infinite; 
}

/* 3. Data Form Lines */
.form-3d { width: 50px; display: flex; flex-direction: column; gap: 8px; }
.line-3d { height: 4px; background: var(--sai-blue); border-radius: 2px; animation: pulseForm 2s infinite alternate; }
.line-3d:nth-child(2) { width: 70%; animation-delay: 0.5s; }

/* 4. Linking Chain */
.id-link { font-size: 40px; animation: linkJiggle 3s ease-in-out infinite; }

/* 5. Floating Payment */
.pay-icons-3d { font-size: 40px; animation: floatPay 4s ease-in-out infinite; }

/* 6. Wallet Door */
.wallet-3d { 
    width: 60px; height: 45px; background: rgba(59, 130, 246, 0.2); border: 2px solid var(--sai-blue); border-radius: 6px; position: relative;
}
.wallet-door { 
    position: absolute; right: 5px; top: 15px; width: 20px; height: 10px; background: var(--sai-blue); border-radius: 3px; 
}

/* 7. Gold Shield (Refundable Deposit) */
.shield-3d-gold {
    width: 65px; height: 75px; background: #ffd700; color: #000;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center; font-weight: 900;
    animation: flipShield 6s infinite;
}

/* 8. Key Spin */
.key-3d { font-size: 40px; animation: rotateY 4s linear infinite; }

/* 9. Work Pulse */
.work-anim { 
    width: 50px; height: 50px; border: 2px dashed var(--sai-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.dot-anim { 
    width: 15px; height: 15px; background: #fff; border-radius: 50%; animation: workPulse 1.5s infinite; 
}

/* 10. Friday Calendar Payout */
.payout-3d { font-size: 40px; filter: drop-shadow(0 0 10px #10b981); animation: bounce 2s infinite; }

/* --- ANIMATION KEYFRAMES --- */
@keyframes scanMove { 0% { top: 0; } 100% { top: 100%; } }
@keyframes pulseForm { from { opacity: 0.3; transform: scaleX(0.8); } to { opacity: 1; transform: scaleX(1); } }
@keyframes linkJiggle { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }
@keyframes floatPay { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes flipShield { 0% { transform: rotateY(0deg); } 50% { transform: rotateY(180deg); } 100% { transform: rotateY(360deg); } }
@keyframes rotateY { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes workPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 968px) {
    .how-grid { grid-template-columns: 1fr; } /* Stacks perfectly on mobile */
    .how-card { padding: 30px 20px; }
}

@media (max-width: 600px) {
    .how-card { flex-direction: column; text-align: center; }
}






/* --- SECURITY SECTION --- */
.sa-security {
    padding: 100px 1.5rem;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.05));
}

.security-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 60px;
    border-radius: 40px;
}

.faq-item { margin-bottom: 25px; }
.faq-item h4 { color: #10b981; margin-bottom: 5px; font-size: 1.1rem; }
.faq-item p { color: var(--text-dim); font-size: 0.95rem; }

/* 3D Shield Animation */
.shield-master {
    width: 200px; height: 240px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 4s ease-in-out infinite;
}

.shield-base {
    position: absolute; inset: 0;
    background: rgba(16, 185, 129, 0.1);
    border: 3px solid #10b981;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.3);
}

.shield-scan {
    position: absolute; width: 100%; height: 4px;
    background: #fff; opacity: 0.5;
    animation: scanVertical 3s infinite linear;
}

/* --- FOOTER --- */
.sa-footer {
    padding: 80px 1.5rem 40px;
    border-top: 1px solid var(--border);
    background: #02040a;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand .logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.footer-brand p { color: var(--text-dim); max-width: 300px; margin-top: 15px; }

.footer-links { display: flex; gap: 30px; }
.footer-links a { 
    color: #fff; text-decoration: none; font-size: 0.9rem; 
    transition: 0.3s; opacity: 0.7;
}
.footer-links a:hover { opacity: 1; color: var(--sai-blue); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    color: #10b981;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes scanVertical { 0% { top: 10%; } 100% { top: 90%; } }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

/* Mobile Footer */
@media (max-width: 768px) {
    .security-wrapper { flex-direction: column; padding: 40px 20px; text-align: center; }
    .footer-grid { flex-direction: column; gap: 40px; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}






.sa-security { padding: 100px 1.5rem; background: #05080f; }

.security-policy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main Statement */
.policy-main-box {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--sai-blue);
    padding: 40px;
    border-radius: 0 20px 20px 0;
}

.policy-lead { font-size: 1.25rem; line-height: 1.6; margin-bottom: 20px; color: #fff; }
.policy-highlights { display: flex; gap: 20px; flex-wrap: wrap; }
.policy-highlights span { 
    background: rgba(255,255,255,0.05); 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    color: var(--sai-blue);
    font-family: var(--font-mono);
}

/* List Styling */
.policy-list-box h3, .policy-transparency h3 { 
    color: #fff; margin-bottom: 20px; font-size: 1.4rem; 
}

.policy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    list-style: none;
}

.policy-list li {
    padding-left: 25px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.policy-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sai-blue);
}

/* Violation Grid */
.violation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.v-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
}

.v-item strong { color: #ef4444; display: block; margin-bottom: 10px; }
.v-item p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.4; }

/* Final Note */
.assurance-card {
    text-align: center;
    padding: 40px;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
}

.final-note {
    margin-top: 20px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .policy-main-box { padding: 30px 20px; }
    .policy-lead { font-size: 1.1rem; }
}



.sa-faq {
    padding: 100px 1.5rem;
    background: #02040a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--sai-blue);
    background: rgba(59, 130, 246, 0.03);
    transform: translateX(5px);
}

.faq-card h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h4::before {
    content: "?";
    color: var(--sai-blue);
    font-family: var(--font-mono);
    font-weight: 900;
}

.faq-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}