/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #070d14;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background-color: rgba(10, 18, 28, 0.95);
    border-bottom: 1px solid rgba(0, 210, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 162, 255, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px; 
    width: auto; 
    margin-right: 10px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.7));
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.nav-links a.active, 
.nav-links a:hover {
    color: #00d2ff;
    text-shadow: 0 0 12px rgba(0, 210, 255, 0.9);
}

/* Hero Section & Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(7, 18, 30, 0.65) 0%, rgba(4, 10, 18, 0.92) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title NSX Neon Blue */
.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 85px;
    font-weight: 800;
    font-style: italic;
    color: #00d2ff;
    text-transform: uppercase;
    text-shadow: 0 0 20px #00d2ff, 0 0 40px rgba(0, 162, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.brand-title .highlight {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

/* Tombol Oval */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 320px;
    margin-bottom: 30px;
}

.btn-pill {
    display: inline-block;
    padding: 14px 24px;
    border: 2px solid rgba(0, 210, 255, 0.4);
    background: rgba(0, 162, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-pill:hover {
    border-color: #00d2ff;
    background: rgba(0, 210, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.85);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 25px;
}

.social-link {
    color: #ffffff;
    font-size: 26px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00d2ff;
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px #00d2ff);
}

/* Features Section */
.features-section {
    background-color: #040910;
    padding: 100px 5% 80px 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
    align-items: start;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00d2ff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
    margin-bottom: 25px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 260px;
    height: 520px;
    border: 3px solid rgba(0, 210, 255, 0.35);
    border-radius: 36px;
    overflow: hidden;
    background-color: #09121d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 162, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-mockup:hover {
    transform: translateY(-8px);
    border-color: #00d2ff;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.45);
}

/* Section Team & Founder */
.founder-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #040910 0%, #082136 40%, #004e7a 80%, #0088cc 100%);
    padding: 80px 20px 100px 20px;
}

.team-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: #00d2ff;
    text-align: center;
    letter-spacing: 1.5px;
    margin-top: -30px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

/* Layout 2 Developer Utama */
.top-developers {
    display: flex;
    gap: 35px;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.founder-card {
    background-color: rgba(9, 18, 29, 0.92);
    border: 1px solid rgba(0, 210, 255, 0.35);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 210, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    border-color: #00d2ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 210, 255, 0.5);
}

/* Avatar Wrapper & Gambar Logo */
.avatar-wrapper {
    width: 120px;            /* Ukuran bingkai lingkaran */
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Warna dasar hitam jika gambar transparan */
}

.avatar-wrapper img {
    width: 110%;
    height: 108%;
    object-fit: cover;       /* Memastikan gambar/logo memenuhi seluruh lingkaran */
    object-position: center;  /* Memastikan logo berada tepat di tengah */
    display: block;
}

.founder-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.founder-role {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #00d2ff;
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

.founder-desc {
    font-size: 14px;
    color: #c4e4f5;
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
}

/* List Struktur Baris Anggota Tim */
.team-structure-list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.team-row {
    display: flex;
    align-items: center;
    background: rgba(9, 18, 29, 0.85);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-row:hover {
    border-color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: translateX(5px);
}

.team-icon {
    font-size: 18px;
    color: #00d2ff;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 210, 255, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 255, 0.1);
}

.team-username {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 15px;
    width: 160px;
}

.team-divider {
    height: 20px;
    width: 1px;
    background: rgba(0, 210, 255, 0.3);
    margin: 0 15px;
}

.team-job {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #00d2ff;
    letter-spacing: 1px;
    flex: 1;
}

/* Badges di Bawah */
.team-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.team-badges span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #a0d8f8;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text {
    position: absolute;
    bottom: 30px;
    left: 8%;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Modal Pop-up */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #09131f;
    margin: 12% auto;
    padding: 30px;
    border: 2px solid #00d2ff;
    box-shadow: 0 0 35px rgba(0, 210, 255, 0.45);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaaaaa;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #00d2ff;
}

.modal-body {
    margin-top: 20px;
}

.btn-buy {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #0099ff, #00d2ff);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-buy:hover {
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.85);
    transform: translateY(-2px);
}

/* Responsive Layout */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 650px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-title {
        min-height: auto;
    }

    .team-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }

    .team-divider {
        display: none;
    }

    .team-username {
        width: auto;
    }

    .footer-text {
        position: static;
        margin-top: 40px;
        text-align: center;
    }
}
/* Styling Link Kartu Developer Utama */
.developer-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    justify-content: center;
}

.developer-card-link .founder-card {
    width: 100%;
    cursor: pointer;
}

.developer-card-link:hover .founder-card {
    border-color: #00d2ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 210, 255, 0.6);
    transform: translateY(-8px);
}