/* ===== FITUR PAGE — Dark Theme Premium ===== */

:root {
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--slate-950);
    color: white;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--emerald-600), transparent);
    top: -200px; left: -100px;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}
.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--teal-700), transparent);
    bottom: -150px; right: -100px;
    animation: orbFloat2 15s ease-in-out infinite alternate;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--gold-500), transparent);
    top: 40%; left: 50%;
    opacity: 0.15;
    animation: orbFloat3 10s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { 0% { transform: translate(0,0); } 100% { transform: translate(60px,40px); } }
@keyframes orbFloat2 { 0% { transform: translate(0,0); } 100% { transform: translate(-40px,-60px); } }
@keyframes orbFloat3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,-30px) scale(1.2); } }

.page-content { position: relative; z-index: 1; }

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
}
.top-bar span { color: var(--gold-400); }

/* ===== NAV ===== */
.nav {
    padding: 18px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.nav-logo {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.nav-links { display: flex; gap: 6px; }
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active {
    color: white;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ===== HERO ===== */
.hero {
    padding: 100px 24px 120px;
    text-align: center;
    position: relative;
}
.hero-content { max-width: 800px; margin: 0 auto; position: relative; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--gold-400);
    animation: fadeInDown 0.8s ease-out;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS ROW ===== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== INSTRUCTION ===== */
.instruction {
    max-width: 700px;
    margin: -40px auto 60px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.instruction strong { color: white; }

/* ===== STAKEHOLDER GRID ===== */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stakeholder-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}
.stakeholder-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.stakeholder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(13, 148, 136, 0.04));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
}
.stakeholder-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1), 0 0 0 1px rgba(16, 185, 129, 0.1);
}
.stakeholder-card:hover::before { opacity: 1; }

.card-inner { position: relative; z-index: 1; }

.card-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}
.card-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0.15;
}
.icon-green { background: rgba(16, 185, 129, 0.1); }
.icon-green::after { background: var(--emerald-500); }
.icon-gold { background: rgba(251, 191, 36, 0.1); }
.icon-gold::after { background: var(--gold-500); }
.icon-blue { background: rgba(59, 130, 246, 0.1); }
.icon-blue::after { background: #3b82f6; }
.icon-purple { background: rgba(139, 92, 246, 0.1); }
.icon-purple::after { background: #8b5cf6; }
.icon-rose { background: rgba(244, 63, 94, 0.1); }
.icon-rose::after { background: #f43f5e; }
.icon-teal { background: rgba(20, 184, 166, 0.1); }
.icon-teal::after { background: #14b8a6; }
.icon-orange { background: rgba(249, 115, 22, 0.1); }
.icon-orange::after { background: #f97316; }
.icon-sky { background: rgba(14, 165, 233, 0.1); }
.icon-sky::after { background: #0ea5e9; }
.icon-indigo { background: rgba(99, 102, 241, 0.1); }
.icon-indigo::after { background: #6366f1; }

.stakeholder-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.stakeholder-card .subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}
.card-feature-count {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.feature-dots {
    display: flex;
    gap: 4px;
}
.feature-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--emerald-500);
}
.feature-dot.new-dot { background: #818cf8; }

.card-arrow-btn {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.stakeholder-card:hover .card-arrow-btn {
    background: var(--emerald-600);
    border-color: var(--emerald-500);
    color: white;
    transform: translateX(4px);
}

/* ===== DETAIL OVERLAY ===== */
.detail-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 6, 23, 0.85);
    z-index: 200;
    backdrop-filter: blur(12px);
    padding: 20px;
    overflow-y: auto;
}
.detail-overlay.visible {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: fadeIn 0.25s;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.detail-panel {
    background: var(--slate-900);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 720px;
    margin: 40px auto;
    animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    overflow: hidden;
}

.detail-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}
.detail-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.detail-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.detail-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: white;
}
.detail-header .role-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}
.close-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.close-btn:hover { background: rgba(255,255,255,0.1); color: white; }

.detail-body { padding: 24px 32px 36px; }

.feature-group { margin-bottom: 32px; }
.feature-group:last-child { margin-bottom: 0; }
.feature-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    margin-bottom: 8px;
    border-radius: 14px;
    transition: background 0.2s;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
}
.feature-item:hover { background: rgba(255,255,255,0.04); }

.feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content { flex: 1; }
.feature-name {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.feature-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.badge-active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--emerald-400);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-coming {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-400);
    border: 1px solid rgba(251, 191, 36, 0.15);
}
.badge-new {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* ===== DEVELOPMENT ROADMAP BLOCK ===== */
.dev-roadmap {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 8px;
}
.dev-roadmap-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dev-roadmap-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}
.dev-roadmap-items {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dev-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.dev-item-dot {
    width: 6px; height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
}

/* ===== MODULE SHOWCASE ===== */
.showcase-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}
.showcase-header {
    text-align: center;
    margin-bottom: 48px;
}
.showcase-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 8px;
}
.showcase-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
}

.module-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.module-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}
.module-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}
.module-emoji { font-size: 32px; margin-bottom: 12px; }
.module-name { font-size: 13px; font-weight: 600; color: white; margin-bottom: 4px; }
.module-status { font-size: 11px; color: var(--emerald-400); font-weight: 500; }
.module-status.coming { color: var(--gold-400); }
.module-status.is-new { color: #818cf8; }

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 80px 24px 100px;
    max-width: 600px;
    margin: 0 auto;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--emerald-600), var(--teal-700));
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 32px 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stakeholder-grid { grid-template-columns: repeat(2, 1fr); }
    .module-showcase { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .stakeholder-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stakeholder-card { padding: 24px 20px; }
    .stakeholder-card h3 { font-size: 15px; }
    .card-arrow-btn { display: none; }
    .card-feature-count { display: none; }
    .detail-panel { margin: 16px; border-radius: 20px; }
    .detail-header, .detail-body { padding-left: 20px; padding-right: 20px; }
    .stats-row { gap: 28px; }
    .stat-number { font-size: 28px; }
    .module-showcase { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 70px 24px 90px; }
}
@media (max-width: 480px) {
    .stakeholder-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stakeholder-card { padding: 20px 16px; }
    .card-icon-wrap { width: 48px; height: 48px; font-size: 24px; margin-bottom: 14px; }
    .module-showcase { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stats-row { flex-wrap: wrap; gap: 20px; }
}
