body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

:root {
    --brand-purple: #7C3AED;
    --brand-cyan: #22D3EE;
    --terminal-bg: #111827;
}

.hero-title {
    letter-spacing: -0.03em;
    font-size: 4rem;
}

.text-primary-brand {
    color: var(--brand-purple);
}

.btn-brand {
    background-color: var(--brand-purple);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.2);
    transition: all 0.2s ease-in-out;
}

.btn-brand:hover {
    background-color: #6d28d9; 
    color: white;
    transform: translateY(-1px);
}

.terminal-box {
    background-color: var(--terminal-bg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #1f2937;
    max-width: 800px;
    margin: 0 auto;
}

.terminal-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.5;
}

.text-terminal-command {
    color: var(--brand-cyan);
}

.text-terminal-success {
    color: #10b981; 
    font-weight: bold;
}

.text-terminal-link {
    color: #60a5fa;
    text-decoration: underline;
}


.checklist li {
    position: relative;
    padding-left: 0.5rem;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}