
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Share Tech Mono", monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #101015, #1a1a20);
    color: #eaeaea;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

a:hover {
    color: #00d4ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #00d4ff;
}

.logo span {
    color: #aaaaff;
}

.nav a {
    margin: 0 0.8rem;
    font-weight: 500;
}

/* HERO */
.hero {
    position: relative;
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 750px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.hero-bg.layer2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 5px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

.hero-bg.layer3 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 5px 5px;
    animation: moveStars 60s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    padding: 3rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #aaa;
}

.cta-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: rgba(0, 212, 255, 0.3);
}

.interface-wrapper{
    display: flex;
    gap: 1rem;
}

.interface-item img{
    max-height: 170px;
}

.interface-item{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.panel {
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 16px;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.panel h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.panel p{
    margin-bottom: 2rem;
}

.features-grid,
.stats-grid,
.security-grid {
    display: grid;
    gap: 1.5rem;
}


.mirror-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mirror-card {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.green {
    color: #00ff99;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 212, 255, 0.1);
}

.security-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.layer {
    padding: 1.5rem;
    border-left: 3px solid #00d4ff;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
}

.stat-box {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-box p{
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.timeline-item .date {
    display: inline-block;
    font-weight: bold;
    color: #00d4ff;
}

.timeline-item.upcoming .date {
    color: #ffcc00;
}


.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.guide-list li {
    margin-bottom: 0.8rem;
}


@keyframes moveStars {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 2000px;
    }
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -1000px 1000px;
    }
}


.footer {
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .panel {
        padding: 2rem;
    }
    nav{
        display: none;
    }
    .logo{
        display: flex;
        justify-content: center;
        margin:0 auto;
    }
    .interface-wrapper{
        display: flex;
        flex-direction: column;
    }
}
