/* =========================
   FONT
========================= */
@font-face {
    font-family: "Ethnocentric";
    src: url("./Ethnocentric.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.install-box {
    margin-top: 18px;
    width: 340px;
    padding: 14px 16px;
    border-radius: 16px;
    margin: 18px auto 0 auto;
    text-align: left;
    animation: floatSoft 3.6s ease-in-out infinite;

    background: rgba(40, 0, 70, 0.45);
    border: 1px solid rgba(155, 61, 255, 0.35);
    backdrop-filter: blur(10px);

    color: #e6ddff;
    font-size: 12.5px;
    line-height: 1.6;

    box-shadow: 0 0 18px rgba(155, 61, 255, 0.25);
    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            background 0.35s ease;
}

@keyframes floatSoft {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.install-box strong {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #caa9ff;
    margin-bottom: 10px;
}

/* LIST STYLING */
.install-box ol {
    margin: 0;
    padding-left: 18px;
}

.install-box li {
    margin-bottom: 6px;
}

.install-box li::marker {
    color: #b68cff;
    font-weight: 600;
}

.install-box code {
    background: rgba(155, 61, 255, 0.15);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
}

.install-box em {
    color: #c39bff;
    font-style: normal;
    font-weight: 600;
}

.install-box:hover {
    transform: translateY(-8px) scale(1.015);
        background: rgba(55, 0, 90, 0.55);
        box-shadow:
            0 0 35px rgba(155, 61, 255, 0.6),
            0 0 60px rgba(90, 40, 255, 0.35);
}


.install-box {
    animation: fadeUp 0.8s ease forwards;
}

/* =========================
   RESET & BODY
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    background: radial-gradient(circle at top, #3b0070 0%, #0b0016 45%, #050008 100%);
    overflow-x: hidden;
}

/* =========================
   NAV
========================= */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 10%;
    backdrop-filter: blur(12px);
    background: rgba(10, 0, 20, 0.6);
    z-index: 10;

    display: flex;
    justify-content: center;
    /* CENTER NAV */
}
.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    color: #d9c6ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(155, 61, 255, 0.8);
}

/* =========================
   PARTICLES (BACKGROUND)
========================= */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 30%, rgba(155, 61, 255, .25) 1px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(155, 61, 255, .2) 1px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(155, 61, 255, .15) 1px, transparent 2px);
    background-size: 120px 120px;
    animation: drift 20s linear infinite;
    z-index: 0;
}

@keyframes drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200px);
    }
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(133, 32, 241, 0.7));
}

.hero-content {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
}


.hero h1 {
    font-family: "Ethnocentric";
    font-size: 52px;
    letter-spacing: 3px;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
}

.hero-sub {
    max-width: 680px;
    margin: 18px auto 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 420px;
    width: 100%;
    animation: floatUpDown 4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image img {
        max-width: 300px;
        margin-top: 30px;
    }
}

/* =========================
   CTA BUTTON
========================= */
.cta-btn {
    margin-top: 32px;
    padding: 14px 34px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #9b3dff, #6f3cff);
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 12px 30px rgba(155, 61, 255, .6);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.cta-btn:hover {
    box-shadow: 0 0 30px rgba(155, 61, 255, .9);
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 120px 10%;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-family: "Ethnocentric";
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    text-shadow: 0 0 18px rgba(155, 61, 255, .8);
}

/* =========================
   GLASS BOX
========================= */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: 22px;
    border: 1px solid rgba(155, 61, 255, .35);
    box-shadow: 0 0 40px rgba(80, 0, 160, .35);
}

/* =========================
   ABOUT
========================= */
.about-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.about-card {
    flex: 1;
    max-width: 220px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(30, 0, 60, .45);
    border: 1px solid rgba(155, 61, 255, .4);
    text-align: center;
    box-shadow: 0 0 20px rgba(155, 61, 255, .35);
}

/* =========================
   FEATURES
========================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 26px;
    border-radius: 18px;
    background: rgba(30, 0, 60, .45);
    border: 1px solid rgba(155, 61, 255, .35);
    line-height: 1.6;
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(155, 61, 255, .7);
}

/* =========================
   ROADMAP
========================= */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.roadmap-card {
    padding: 28px;
    border-radius: 20px;
    background: rgba(25, 0, 50, .45);
    border: 1px solid rgba(155, 61, 255, .35);
    position: relative;
    transition: box-shadow .3s ease, transform .3s ease;
}

.roadmap-card:hover {
    transform: translateY(-6px);
}

.status-pill {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 12px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.status-pill.green {
    color: #3cff9e;
    border: 1px solid rgba(60, 255, 158, .6);
}

.status-pill.blue {
    color: #6ecbff;
    border: 1px solid rgba(110, 203, 255, .6);
}

.status-pill.purple {
    color: #c084ff;
    border: 1px solid rgba(192, 132, 255, .6);
}

.status-pill.yellow {
    color: #ffe066;
    border: 1px solid rgba(255, 224, 102, .6);
}

/* =========================
   FAQ
========================= */
details {
    margin-bottom: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(30, 0, 60, .35);
    border: 1px solid rgba(155, 61, 255, .35);
    cursor: pointer;
}

summary {
    font-weight: 600;
}

details p {
    margin-top: 10px;
    opacity: 0.85;
    line-height: 1.6;
}

.site-footer {
    text-align: center;
    padding: 40px 10%;
    font-size: 12px;
    opacity: 0.65;
    color: #cfc3ff;
}

/* =========================
   MOBILE HERO FIX
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-sub {
        font-size: 13px;
        max-width: 90%;
    }

    .hero {
        padding-top: 100px;
    }
}

/* =========================
   ABOUT MOBILE STACK
========================= */
@media (max-width: 768px) {
    .about-icons {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        max-width: 100%;
        width: 100%;
    }
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #d9c6ff;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When menu is open */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   NAV OVERLAY
========================= */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 0, 15, 0.75);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 8;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}



/* MOBILE NAV */
@media (max-width: 768px) {
    .nav {
        justify-content: space-between;
        padding: 18px 6%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(15, 0, 30, 0.95);
        backdrop-filter: blur(14px);
        border-radius: 18px;
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
        display: none;
        box-shadow: 0 0 40px rgba(155, 61, 255, 0.6);
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .hamburger {
        display: flex;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

