
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #030704;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}


.cyber-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 136, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 136, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.glow-overlay {
    position: fixed;
    top: -10%; right: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    z-index: -1; filter: blur(80px);
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    background: rgba(3, 7, 4, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    position: fixed;
    width: 100%; top: 0; z-index: 100;
}

.logo {
    font-weight: 800; font-size: 1.4rem; cursor: pointer; letter-spacing: -0.5px;
}

.logo span { color: #00ff88; }

.app-tag {
    font-size: 0.7rem; background: #00ff88; color: #000; padding: 2px 6px; border-radius: 4px; margin-left: 5px; vertical-align: middle;
}

nav { display: flex; align-items: center; gap: 32px; }

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-links a { color: #8c968f; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }

.nav-links a:hover, .twitter-link:hover { color: #ffffff; }

.badge-ecosystem {
    border: 1px solid rgba(255, 255, 255, 0.1); padding: 6px 12px; border-radius: 8px; background: rgba(255, 255, 255, 0.03);
}


.btn-launch-nav, .btn-primary {
    background: #00ff88; color: #030704; text-decoration: none; padding: 10px 20px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); display: inline-block; text-align: center; border: none; cursor: pointer;
}

.btn-launch-nav:hover, .btn-primary:hover {
    transform: translateY(-1px); box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04); color: #ffffff; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.08); padding: 14px 28px; border-radius: 10px; font-weight: 500; transition: all 0.2s; display: inline-block; text-align: center;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }


/* ==========================================================================
   HERO 2 KOLOM & ANIMASI KODE BERGERAK (UPDATE)
   ========================================================================== */

.hero { 
    display: flex; 
    align-items: center; 
    min-height: 100vh; 
    padding: 140px 80px 60px 80px; 
}

/* Wrapper Flex untuk membagi ruang kiri dan kanan */
.hero-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

/* Kolom Teks Kiri */
.hero-content { 
    flex: 1.2; 
    max-width: 650px;
}

/* Kolom Gambar/Console Kanan */
.hero-visual {
    flex: 0.9;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Desain Khusus Kotak Console Utama */
.hero-console {
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.hero-title { 
    font-size: 4.5rem; 
    font-weight: 700; 
    line-height: 1.1; 
    letter-spacing: -2px; 
    margin-bottom: 24px; 
}

.hero-title .highlight { 
    color: #00ff88; 
}

.subtitle { 
    font-size: 1.05rem; 
    color: #8c968f; 
    line-height: 1.6; 
    margin-bottom: 40px; 
}

.text-white {
    color: #cbd5e1;
}

/* --- ANIMASI TRACK RUNNING TEXT (LINK BAWAH CONSOLE) --- */
.marquee-wrapper {
    width: 100%;
    overflow: hidden; /* Menyembunyikan text yang keluar dari batas kotak */
    white-space: nowrap;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-text {
    display: inline-block;
    font-size: 0.8rem;
    color: #4a554d; /* Warna abu gelap redup sesuai foto */
    font-family: monospace;
    animation: jalanKiri 15s linear infinite; /* Menjalankan teks terus menerus */
}

/* Keyframes untuk menggeser teks dari kanan ke kiri */
@keyframes jalanKiri {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==========================================================================
   PENGATURAN LAYOUT RESPONSIVE (HP & TABLET)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    .hero-visual {
        justify-content: flex-start;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 60px 24px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}
.subtitle { font-size: 1.1rem; color: #8c968f; line-height: 1.6; margin-bottom: 40px; }

.cta-group { display: flex; gap: 16px; }

.btn-primary { padding: 14px 28px; font-size: 1rem; }


.content-section { padding: 100px 80px; max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255, 255, 255, 0.03); }

.content-section h2 { font-size: 2rem; color: #00ff88; margin-bottom: 16px; }

.content-section p { color: #8c968f; font-size: 1.05rem; line-height: 1.7; }


.wallet-badge {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; color: #8c968f;
}

.app-container {
    display: flex; max-width: 1200px; margin: 140px auto 40px auto; padding: 0 40px; gap: 30px; min-height: 500px;
}

.panel-card {
    flex: 1; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 30px; display: flex; flex-direction: column;
}


.tab-group { display: flex; background: rgba(0, 0, 0, 0.2); padding: 4px; border-radius: 10px; margin-bottom: 24px; }

.tab-btn {
    flex: 1; background: transparent; border: none; color: #8c968f; padding: 12px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border-radius: 8px; transition: all 0.2s;
}

.tab-btn.active { background: rgba(255, 255, 255, 0.05); color: #00ff88; }


.form-content { display: flex; flex-direction: column; gap: 20px; }

.input-box { display: flex; flex-direction: column; gap: 8px; }

.input-box label { font-size: 0.85rem; color: #8c968f; font-weight: 500; }

.input-box input, .input-box select {
    background: #090f0b; border: 1px solid rgba(255, 255, 255, 0.08); padding: 14px; border-radius: 10px; color: #fff; font-size: 1rem; outline: none;
}

.input-box input:focus, .input-box select:focus { border-color: #00ff88; }

.full-width { width: 100%; margin-top: 10px; }


.console-card { background: #030805; border-color: rgba(0, 255, 136, 0.1); font-family: monospace; }

.console-header { display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 15px; margin-bottom: 20px; }

.console-header span[class^="dot-"] { width: 10px; height: 10px; border-radius: 50%; }

.dot-red { background: #ff5f56; } .dot-yellow { background: #ffbd2e; } .dot-green { background: #27c93f; }

.console-title { font-size: 0.85rem; color: #8c968f; margin-left: 10px; font-family: monospace; }

.console-body { font-family: monospace; font-size: 0.9rem; line-height: 1.8; color: #cbd5e1; }

.text-dim { color: #4a554d; }

.text-green { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }

.hidden { display: none !important; }


.nav-twitter{
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  margin-left: 30px;
  transition: 0.3s;
}

.nav-twitter:hover{
  color: #00ff99;
}

/* ==========================================================================
   VAULT COMPARISON TABLE (FOTO 2)
   ========================================================================== */

.vault-section {
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.vault-title {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #00ff88;
    margin-bottom: 30px;
    font-weight: 700;
}

.vault-table-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    overflow-x: auto;
}

.vault-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

/* Header Styling */
.vault-table th {
    padding: 20px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vault-header-col {
    text-align: center;
    width: 40%;
}

.vault-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.vault-header-col h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Badges di dalam table */
.vault-badge-green {
    display: inline-block;
    font-size: 0.75rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-weight: 500;
}

.vault-badge-purple {
    display: inline-block;
    font-size: 0.75rem;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-weight: 500;
}

/* Body Rows Styling */
.vault-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Kolom pertama (Nama Fitur) */
.vault-table td.feature-name {
    color: #8c968f;
    font-weight: 500;
    width: 20%;
}

/* Kolom Private Vault & Safe Vault di body alignment-nya center */
.vault-table tbody td:not(.feature-name) {
    text-align: center;
}

/* Responsif untuk Mobile */
@media (max-width: 900px) {
    .vault-section {
        padding: 40px 20px;
    }
    .vault-table th, .vault-table td {
        padding: 12px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   HOW IT WORKS SECTION (FOTO 3)
   ========================================================================== */

.how-it-works-section {
    padding: 100px 80px;
    max-width: 1000px; /* Dibuat sedikit lebih ramping agar teksnya fokus di tengah */
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.how-it-works-section .section-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #00ff88;
    margin-bottom: 16px;
    font-weight: 700;
}

.how-it-works-section .section-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* Container Linimasa */
.steps-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px; /* Jarak antar baris step */
}

/* Garis vertikal hijau samar di belakang angka */
.timeline-line {
    position: absolute;
    left: 24px; /* Posisi tepat di tengah lingkaran berdiameter 48px */
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(0, 255, 136, 0.15);
    z-index: 1;
}

/* Item Step Baris */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    z-index: 2; /* Agar angka berada di depan garis */
}

/* Lingkaran Angka Hijau Glow */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #030704; /* Menyamai background body agar garis tertutup di dalam lingkaran */
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

/* Konten Teks di Samping Angka */
.step-content {
    padding-top: 10px; /* Meluruskan teks secara visual dengan lingkaran */
    max-width: 680px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.05rem;
    color: #8c968f; /* Warna teks deskripsi agak abu-abu redup sesuai gambar */
    line-height: 1.6;
}

/* Responsif untuk Smartphone */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 24px;
    }
    
    .how-it-works-section .section-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .step-item {
        gap: 20px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}


.architecture-section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.arch-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #00ff88;
    margin-bottom: 16px;
    font-weight: 700;
}

.arch-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: -1px;
}


.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Jarak antar kartu */
}


.arch-card {
    background: #040a06; /* Background gelap dengan tint hijau tipis sesuai gambar */
    border: 1px solid rgba(0, 255, 136, 0.04);
    border-radius: 20px; /* Sudut melengkung halus sesuai gambar */
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s, border-color 0.2s;
}

.arch-card:hover {
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}


.arch-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-icon {
    font-size: 2rem;
}


.arch-card h3 {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 14px;
}


.arch-card p {
    font-size: 0.95rem;
    color: #4a554d; /* Warna teks redup hijau/abu tua agar pas dengan aslinya */
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .arch-grid {
        grid-template-columns: repeat(2, 1fr); /* Menjadi 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .architecture-section {
        padding: 60px 24px;
    }
    .arch-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .arch-grid {
        grid-template-columns: 1fr; /* Menjadi 1 kolom penuh di HP */
        gap: 16px;
    }
    .arch-card {
        padding: 25px;
    }
}


@media (max-width: 900px) {
    header { padding: 20px 40px; }
    .nav-links { display: none; }
    .hero { padding: 120px 40px 60px 40px; }
    .hero-title { font-size: 2.8rem; }
    .app-container { flex-direction: column; margin-top: 120px; padding: 0 20px; }
    .content-section { padding: 60px 40px; }
}