/* =========================================
   PROBOX ALLIANCE THEME (PROPOSAL)
   ========================================= */

:root {
    --bg-deep: #030305;
    --primary: #ae00ff;
    --secondary: #ff00b8;
    --text-main: #ffffff;
    --text-muted: #9494a8;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0; padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- BACKGROUND (RISING STARS) --- */
.partner-cosmos {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
    background: radial-gradient(circle at bottom, #1a0524 0%, #030305 70%);
}
.nebula-cloud {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(174, 0, 255, 0.15), transparent 70%);
    filter: blur(100px);
}
/* Stars (Versi Ringan) */
.stars-small {
    position: absolute; width: 1px; height: 1px; background: transparent;
    box-shadow: 10vw 10vh #fff, 30vw 25vh #fff, 50vw 15vh #fff, 70vw 35vh #fff, 90vw 5vh #fff;
    animation: starsRise 60s linear infinite;
}
.stars-medium {
    position: absolute; width: 2px; height: 2px; background: transparent; opacity: 0.7;
    box-shadow: 20vw 15vh var(--primary), 80vw 25vh #fff, 40vw 45vh var(--secondary);
    animation: starsRise 40s linear infinite;
}
@keyframes starsRise { from { transform: translateY(0); } to { transform: translateY(-100vh); } }


/* --- NAVBAR --- */
.glass-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(5, 5, 8, 0.9); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}
.nav-container {
    max-width: 1000px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.brand-link {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
}
.brand-link img { width: 32px; }
.brand-link small { color: var(--secondary); font-size: 0.7rem; margin-left: 5px; letter-spacing: 2px; }

.org-badge {
    background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: #ccc;
    border: 1px solid rgba(255,255,255,0.2);
}

/* --- MAIN CONTENT --- */
.main-content {
    max-width: 900px; margin: 0 auto; padding: 40px 20px;
}

/* Hero Section */
.hero-proposal { text-align: center; margin-bottom: 80px; padding-top: 40px; }
.status-pill {
    display: inline-block; padding: 6px 16px; background: rgba(174,0,255,0.1);
    color: var(--primary); border: 1px solid var(--primary); border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px;
}
.hero-proposal h1 {
    font-family: var(--font-heading); font-size: 3rem; margin: 0 0 20px; line-height: 1.1;
}
.text-gradient {
    background: linear-gradient(90deg, #fff, var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.text-highlight { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--primary); }

/* --- CARD STYLE --- */
.glass-card {
    background: rgba(15, 15, 20, 0.6); border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px); border-radius: 24px; padding: 40px;
    margin-bottom: 40px; position: relative; overflow: hidden;
}

.section-title {
    font-family: var(--font-heading); font-size: 1.5rem; color: #fff;
    margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px;
}
.section-title.center { border: none; text-align: center; padding: 0; margin-bottom: 40px; }

/* 1. About Grid */
.grid-2-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.text-col p { color: #ccc; margin-bottom: 15px; }
.stats-row { display: flex; gap: 30px; margin-top: 20px; }
.stat-item strong { display: block; font-size: 1.8rem; color: var(--secondary); font-family: var(--font-heading); }
.stat-item span { font-size: 0.8rem; color: #888; }

.img-frame {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.img-frame img { width: 100%; display: block; }
.img-glow {
    position: absolute; inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* 2. Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-item {
    background: rgba(255,255,255,0.03); padding: 20px; border-radius: 16px;
    text-align: center; transition: 0.3s;
}
.feature-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.icon-box { font-size: 2rem; margin-bottom: 15px; }
.feature-item h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.feature-item p { font-size: 0.9rem; color: #aaa; }

/* 3. Timeline */
.timeline { position: relative; max-width: 600px; margin: 0 auto; padding-left: 30px; }
.line { position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); }

.step { position: relative; margin-bottom: 30px; }
.step-dot {
    position: absolute; left: -44px; top: 0; width: 30px; height: 30px;
    background: #000; border: 2px solid var(--primary); border-radius: 50%;
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem;
}
.step-content {
    background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px;
}
.step-content h4 { color: #fff; margin: 0 0 5px; }
.step-content p { color: #aaa; font-size: 0.9rem; margin: 0; }
.step code { background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 4px; font-family: monospace; }

.step.highlight .step-dot { border-color: var(--secondary); box-shadow: 0 0 10px var(--secondary); }
.step.highlight .step-content { border: 1px solid var(--secondary); background: rgba(255,0,184,0.05); }
.profit-list { margin-top: 10px; padding-left: 20px; color: #fff; }

/* 4. Support */
.support-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.s-item {
    background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: 50px;
    font-size: 0.9rem; color: #ddd; display: flex; align-items: center;
}
.s-item.highlight { background: var(--primary); color: #fff; font-weight: 600; }

/* 5. CTA */
.cta-section { text-align: center; margin-top: 60px; }
.cta-box {
    background: linear-gradient(135deg, #150020, #000);
    border: 1px solid var(--primary); border-radius: 24px; padding: 50px;
}
.cta-box h2 { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 10px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.btn-wa {
    padding: 14px 30px; background: #25d366; color: #fff; font-weight: 700;
    text-decoration: none; border-radius: 12px; transition: 0.3s;
}
.btn-wa:hover { background: #1ebd59; transform: translateY(-3px); }

.btn-web {
    padding: 14px 30px; background: transparent; border: 1px solid #fff;
    color: #fff; font-weight: 600; text-decoration: none; border-radius: 12px;
}
.btn-web:hover { background: #fff; color: #000; }

.simple-footer { text-align: center; padding: 30px; color: #555; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .support-list { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .hero-proposal h1 { font-size: 2.2rem; }
    .img-frame { margin-top: 20px; }
}