:root {
    --bg: #050508;
    --panel: #0f0f13;
    --text: #e0e0e0;
    --accent: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.2);
    --green: #00ff9d;
    --gold: #ffd700;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.badge {
    font-family: 'JetBrains Mono', monospace;
}

/* LAYOUT */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent);
}

.links a {
    color: #888;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.links a:hover {
    color: var(--accent);
}

/* HERO */
header {
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.hero-content {
    max-width: 500px;
}

.badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--accent-glow);
}

h1 {
    font-size: 4rem;
    line-height: 1;
    margin: 0 0 20px 0;
    letter-spacing: -2px;
}

p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* BUTTON */
button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

.sub-text {
    font-size: 0.8rem;
    color: #555;
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
}

/* TERMINAL GRAPHIC */
.hero-visual {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 450px;
}

.terminal-window {
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.term-header {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.title {
    margin-left: 10px;
    color: #555;
    font-size: 0.8rem;
}

.line {
    margin-bottom: 5px;
}

.prompt {
    color: var(--accent);
}

.success {
    color: var(--green);
}

.typing {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* FEATURES */
#features {
    background: var(--panel);
    padding: 100px 0;
    margin-top: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    padding: 30px;
    border: 1px solid #222;
    background: var(--bg);
    transition: 0.3s;
}

.card:hover {
    border-color: var(--accent);
}

.card h3 {
    color: #fff;
    margin-top: 0;
}

/* ECONOMY SECTION */
#economy {
    padding: 100px 0;
}

.split {
    display: flex;
    align-items: center;
    gap: 50px;
}

.check-list li {
    margin-bottom: 15px;
    color: #ccc;
    list-style: none;
}

.check-list li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 30px;
    width: 100%;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.stat-row:last-child {
    border: none;
}

.green {
    color: var(--green);
}

.gold {
    color: var(--gold);
}

.cyan {
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-visual {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .split {
        flex-direction: column;
    }

    h1 {
        font-size: 3rem;
    }
}