/* ============================
        CSS VARIABLES
      ============================*/
:root {
    --bg: #070712;
    --bg-card: #0e0e1f;
    --gold: #f5c518;
    --gold2: #e8a000;
    --purple: #7b2fbe;
    --cyan: #00d4ff;
    --white: #ffffff;
    --gray: #7a8499;
    --border-g: rgba(245, 197, 24, 0.18);
    --border-c: rgba(0, 212, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================
        UTILITY
      ============================*/
.gold-txt {
    background: linear-gradient(135deg, var(--gold), #ff9500, var(--gold));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gshift 4s ease infinite;
}
.cyan-txt {
    color: var(--cyan);
}
@keyframes gshift {
    0% {
        background-position: 0%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: 0%;
    }
}

.section-eye {
    display: inline-block;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-family: "Orbitron", monospace;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-desc {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.85;
    max-width: 600px;
}
.divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin: 10px 0 36px;
}
.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 28px rgba(245, 197, 24, 0.35);
    cursor: pointer;
}
.btn-glow:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 55px rgba(245, 197, 24, 0.65);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cyan);
    font-weight: 600;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1px solid var(--cyan);
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
.btn-ghost:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.35);
    transform: translateY(-3px);
}

/* ============================
        NAVBAR
      ============================*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 14px 0;
    transition: 0.35s;
    background: rgba(7, 7, 18, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.navbar.scrolled {
    background: rgba(7, 7, 18, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-g);
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.08);
}
.nb-brand {
    font-family: "Orbitron", monospace;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.moon-icon-nb {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 16px rgba(245, 197, 24, 0.4);
}
.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.86rem;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: 0.3s;
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
    transform: translateX(-50%);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.nav-link:hover {
    color: var(--gold) !important;
}
.dropdown-menu {
    background: rgba(14, 14, 31, 0.97);
    border: 1px solid var(--border-g);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 10px;
    min-width: 200px;
}
.dropdown-item {
    color: rgba(255, 255, 255, 0.78);
    border-radius: 9px;
    padding: 9px 16px;
    font-size: 0.83rem;
    transition: 0.3s;
}
.dropdown-item:hover {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
}
.btn-connect {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #000 !important;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.3);
    cursor: pointer;
}
.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(245, 197, 24, 0.6);
}
.navbar-toggler {
    border: 1px solid rgba(245, 197, 24, 0.4);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,197,24,0.85)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================
        HERO
      ============================*/
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.hero-wrap {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.72rem;
    color: var(--gold);
    font-family: "Space Mono", monospace;
    letter-spacing: 2px;
    margin-bottom: 22px;
    margin-top: 12px;
}
.pulse {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

.hero-h1 {
    font-family: "Orbitron", monospace;
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 22px;
}
.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 34px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* stats */
.hero-stats {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}
.s-num {
    font-family: "Orbitron", monospace;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gold);
}
.s-lbl {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* node cards right */
.node-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ncard {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 197, 24, 0.14);
    border-radius: 18px;
    padding: 18px 22px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.ncard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.05), transparent);
    opacity: 0;
    transition: 0.4s;
}
.ncard:hover::before {
    opacity: 1;
}
.ncard:hover {
    border-color: var(--gold);
    transform: translateX(-7px);
    box-shadow: 0 0 38px rgba(245, 197, 24, 0.18);
}
.ncard.pop {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.06);
}
.pop-badge {
    position: absolute;
    top: -1px;
    right: 14px;
    background: var(--gold);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: "Orbitron", monospace;
    padding: 3px 11px;
    border-radius: 0 0 8px 8px;
    letter-spacing: 1px;
}
.nc-lbl {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.nc-price {
    font-family: "Orbitron", monospace;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.nc-price sup {
    font-size: 0.9rem;
}
.nc-price small {
    font-size: 0.78rem;
    color: var(--gray);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.nc-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ============================
        ABOUT
      ============================*/
#about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.glow-box {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-c);
    border-radius: 24px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}
.glow-box::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.04), transparent 65%);
    animation: rotatebg 12s linear infinite;
}
@keyframes rotatebg {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}
.ig-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}
.ig-item:hover {
    border-color: var(--cyan);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-4px);
}
.ig-item i {
    font-size: 1.3rem;
    color: var(--cyan);
    display: block;
    margin-bottom: 7px;
}
.ig-item span {
    font-size: 0.67rem;
    color: var(--gray);
    font-family: "Space Mono", monospace;
}
.supply-box {
    margin-top: 26px;
    padding: 16px;
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.18);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

/* features */
.feat-box {
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
}
.feat-box:hover {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.04);
    transform: translateY(-4px);
}
.feat-box i {
    font-size: 1.15rem;
    display: block;
    margin-bottom: 8px;
}

/* ============================
        ECOSYSTEM
      ============================*/
#ecosystem {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.eco-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}
.eco-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(245, 197, 24, 0.13);
}
.eco-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8rem;
    transition: 0.4s;
    position: relative;
}
.eco-card:hover .eco-img {
    transform: scale(1.04);
}
.eco-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(14, 14, 31, 1) 100%);
}
.eco-body {
    padding: 22px;
}
.eco-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.28);
}
.eco-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.eco-card p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.72;
    margin: 0;
}
.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}
.eco-card:hover .eco-link {
    gap: 11px;
}

/* ============================
        ROADMAP
      ============================*/
#roadmap {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.rm-wrap {
    position: relative;
    padding-left: 28px;
}
.rm-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(245, 197, 24, 0.08));
}
.rm-item {
    position: relative;
    padding: 0 0 46px 38px;
}
.rm-item:last-child {
    padding-bottom: 0;
}
.rm-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--bg);
    z-index: 1;
    transition: 0.3s;
}
.rm-item:hover .rm-dot {
    background: var(--gold);
    box-shadow: 0 0 18px rgba(245, 197, 24, 0.6);
}
.rm-phase {
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 7px;
}
.rm-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    transition: 0.4s;
}
.rm-item:hover .rm-card {
    border-color: rgba(245, 197, 24, 0.28);
    box-shadow: 0 0 28px rgba(245, 197, 24, 0.07);
}
.rm-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.88rem;
    margin-bottom: 10px;
}
.rm-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.72;
    margin: 0;
}
.rbadge {
    display: inline-block;
    font-size: 0.62rem;
    padding: 3px 11px;
    border-radius: 20px;
    margin-bottom: 9px;
    font-family: "Space Mono", monospace;
    letter-spacing: 1px;
}
.bd {
    background: rgba(0, 200, 100, 0.12);
    color: #00c864;
    border: 1px solid rgba(0, 200, 100, 0.28);
}
.ba {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.28);
}
.bu {
    background: rgba(123, 47, 190, 0.12);
    color: #b060ff;
    border: 1px solid rgba(123, 47, 190, 0.28);
}
.bf {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.25);
}

/* progress card */
.prog-card {
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.18);
    border-radius: 16px;
    padding: 22px;
}
.prog-bar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    height: 7px;
    overflow: hidden;
    margin-top: 12px;
}
.prog-bar-fill {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ff9500);
    border-radius: 4px;
    animation: growbar 1.5s ease forwards;
}
@keyframes growbar {
    from {
        width: 0;
    }
    to {
        width: 50%;
    }
}

/* ============================
        TOKENOMICS
      ============================*/
#tokenomics {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* top stat strip */
.tk-stat-card {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.35s;
    height: 100%;
}
.tk-stat-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(245, 197, 24, 0.1);
}
.tk-stat-card i {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 9px;
    display: block;
}
.tk-stat-card .tsv {
    font-family: "Orbitron", monospace;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}
.tk-stat-card .tsl {
    font-size: 0.66rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Space Mono", monospace;
    margin-top: 4px;
}

/* donut chart with orbit rings */
.chart-wrap {
    position: relative;
    max-width: 340px;
    margin: 30px auto;
    aspect-ratio: 1/1;
}
.chart-wrap::before,
.chart-wrap::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.chart-wrap::before {
    inset: -26px;
    border: 1px dashed rgba(245, 197, 24, 0.18);
    animation: spin 36s linear infinite;
}
.chart-wrap::after {
    inset: -50px;
    border: 1px dashed rgba(0, 212, 255, 0.12);
    animation: spin 50s linear infinite reverse;
}
@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
.chart-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.16), transparent 70%);
    filter: blur(22px);
    pointer-events: none;
}
#tkChart {
    position: relative;
    z-index: 1;
}
.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(7, 7, 18, 0.92);
    width: 38%;
    height: 38%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 197, 24, 0.18);
    box-shadow: 0 0 32px rgba(245, 197, 24, 0.12);
    z-index: 2;
}
.chart-center .ct {
    font-family: "Orbitron", monospace;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.chart-center .cl {
    font-size: 0.58rem;
    color: var(--gray);
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: "Space Mono", monospace;
}

/* allocation cards */
.tk-card {
    background: rgba(14, 14, 31, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 20px;
    transition: 0.35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.tk-card:hover {
    border-color: var(--tk-c, var(--gold));
    transform: translateY(-4px);
    box-shadow: 0 14px 34px -10px var(--tk-c, rgba(245, 197, 24, 0.4));
}
.tk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}
.tk-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    background: var(--tk-c, var(--gold));
    flex-shrink: 0;
    box-shadow: 0 0 16px -4px var(--tk-c, var(--gold));
}
.tk-pct {
    font-family: "Orbitron", monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--tk-c, var(--gold));
    line-height: 1;
}
.tk-pct span {
    font-size: 0.65rem;
    opacity: 0.7;
}
.tk-name {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin-bottom: 12px;
}
.tk-bar-track {
    height: 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}
.tk-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--tk-c, var(--gold));
    width: 0;
    transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.tk-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px;
}
.tk-val {
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    color: var(--gray);
}

/* ============================
        PARTNERS MARQUEE
      ============================*/
#partners {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.marquee-outer {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.marquee-track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: marquee 24s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.p-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    opacity: 0.55;
    transition: 0.3s;
    filter: grayscale(100%);
}
.p-chip:hover {
    opacity: 1;
    filter: none;
    border-color: var(--gold);
}
.p-chip span {
    font-family: "Orbitron", monospace;
    color: var(--gray);
    font-size: 0.72rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ============================
        TEAM
      ============================*/
#team {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.t-card {
    background: rgba(14, 14, 31, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 32px 22px 26px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
}
.t-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 18px 55px rgba(245, 197, 24, 0.12);
}
.t-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    box-shadow: 0 0 22px rgba(245, 197, 24, 0.28);
}
.t-card h5 {
    font-family: "Orbitron", monospace;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.t-role {
    font-size: 0.7rem;
    color: var(--gold);
    font-family: "Space Mono", monospace;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.t-desc {
    font-size: 0.77rem;
    color: var(--gray);
    line-height: 1.65;
}
.t-soc {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.t-soc a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.72rem;
    text-decoration: none;
    transition: 0.3s;
}
.t-soc a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(245, 197, 24, 0.1);
}

/* ============================
        FAQ
      ============================*/
#faq {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.faq-item {
    background: rgba(14, 14, 31, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    margin-bottom: 11px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open {
    border-color: rgba(245, 197, 24, 0.28);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s;
}
.faq-q:hover,
.faq-item.open .faq-q {
    color: var(--gold);
}
.faq-ic {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    color: var(--gold);
    transition: 0.3s;
}
.faq-item.open .faq-ic {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.82;
}
.faq-item.open .faq-a {
    display: block;
}

/* ============================
        FOOTER
      ============================*/
footer {
    background: rgba(4, 4, 14, 0.88);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245, 197, 24, 0.1);
    padding: 65px 0 30px;
}
.ft-logo {
    font-family: "Orbitron", monospace;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
}
.ft-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.82;
    margin: 15px 0 22px;
}
.ft-soc {
    display: flex;
    gap: 11px;
}
.ft-soc a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
}
.ft-soc a:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 14px rgba(245, 197, 24, 0.3);
}
.ft-h {
    font-family: "Orbitron", monospace;
    font-size: 0.78rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.ft-links {
    list-style: none;
    padding: 0;
}
.ft-links li {
    margin-bottom: 9px;
}
.ft-links a {
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.ft-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.ft-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.ft-bottom p,
.ft-bottom a {
    font-size: 0.78rem;
    color: var(--gray);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}
.ft-bottom a:hover {
    color: var(--gold);
}
.ft-bl {
    display: flex;
    gap: 18px;
}

/* email input */
.email-row {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}
.email-row input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 18px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s;
}
.email-row input:focus {
    border-color: var(--gold);
}

/* BG orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
}
.z1 {
    position: relative;
    z-index: 1;
}

.mt-120 {
    margin-top: 120px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-wrap {
        text-align: center;
    }
    .hero-sub,
    .hero-btns,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .hero-sub {
        max-width: 100%;
    }
    .hero-h1 {
        font-size: 2.2rem;
    }
    .node-stack {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    .ncard {
        padding: 14px 16px;
    }
    .nc-price {
        font-size: 1.5rem;
    }
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 425px) {
    .mt-120 {
        margin-top: 64px;
    }
}
