/* ============================
   TORZON MARKET — Neon Redesign
   ============================ */

:root {
    --bg-1: #050510;
    --bg-2: #0d0d1f;
    --panel: rgba(255, 255, 255, 0.05);
    --accent-blue: #00d4ff;
    --accent-purple: #7a00ff;
    --accent-green: #00ff9c;
    --text-muted: #9ba3b5;
}

.link{

}
/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Share Tech Mono", monospace;
    background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
    color: #eaeaea;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--text-muted);
    transition: 0.3s;
}

a:hover {
    color: var(--accent-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    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: var(--accent-blue);
}

.logo span {
    color: var(--accent-purple);
}

.nav a {
    margin: 0 0.8rem;
    font-weight: 500;
}

/* Hero */
.hero {
    position: relative;
    padding: 8rem 2rem;
    height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon Grid Background */
.neon-grid {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1), transparent 60%),
            radial-gradient(circle at 80% 70%, rgba(122, 0, 255, 0.1), transparent 60%);
    overflow: hidden;
}

.neon-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            repeating-linear-gradient(0deg, rgba(0, 212, 255, 0.13) 0 1px, transparent 1px 40px),
            repeating-linear-gradient(90deg, rgba(0, 212, 255, 0.18) 0 1px, transparent 1px 60px);
    transform: perspective(800px) rotateX(68deg) translateY(55%);
    animation: gridMove 30s linear infinite;
    opacity: 0.35;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    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);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.cta-btn {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(122, 0, 255, 0.6);
}

/* Panels */
.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;
    color: var(--accent-blue);
}

.panel p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.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: var(--accent-green);
}

.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 var(--accent-blue);
    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 h3 {
    color: var(--accent-blue);
}

.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: var(--accent-blue);
}

.timeline-item.upcoming .date {
    color: #ffcc00;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.interface-wrapper {
    display: flex;
    gap: 1rem;
}

.interface-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.interface-item img {
    max-height: 170px;
    border-radius: 8px;
}

.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);
}

/* Responsive */
@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 {
        flex-direction: column;
    }
}
