:root {
    --bg: #0c0c0c;
    --surface: #141414;
    --border: #2a2a2a;
    --text: #cccccc;
    --text-dim: #666666;
    --green: #00ff41;
    --green-dim: rgba(0, 255, 65, 0.15);
    --mono: 'Fira Code', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    line-height: 1.6;
}

a {
    color: var(--green);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

code {
    background: var(--surface);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    color: var(--text);
}
.logo::before {
    content: "./";
    color: var(--text-dim);
}
.logo:hover { color: var(--green); text-decoration: none; }

.nav-link {
    font-size: 0.9rem;
    color: var(--text-dim);
    border: 1px solid var(--border);
    padding: 4px 12px;
}
.nav-link:hover {
    color: var(--green);
    border-color: var(--green);
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 4px 14px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--green);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Terminal */
.terminal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: left;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.terminal-bar {
    background: #1a1a1a;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
    margin-left: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.terminal-body {
    padding: 16px 20px;
    font-size: 0.85rem;
    min-height: 220px;
}

.terminal-body .line {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.terminal-body .line.visible {
    opacity: 1;
    transform: translateY(0);
}

.prompt {
    color: var(--green);
    margin-right: 8px;
}

.emoji {
    margin-right: 6px;
}

.line.output {
    color: var(--text-dim);
}

/* Install */
.install-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.install-section h2,
.hooks-section h2,
.features-section h2 {
    color: var(--green);
    font-size: 1.4rem;
    margin-bottom: 32px;
}

.install-option {
    margin-bottom: 28px;
}

.install-option h3 {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.code-block {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    overflow-x: auto;
}

.code-block code {
    background: none;
    padding: 0;
    font-size: 0.85rem;
    white-space: nowrap;
}

.copy-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: var(--mono);
    font-size: 0.75rem;
    padding: 4px 10px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 12px;
}
.copy-btn:hover {
    color: var(--green);
    border-color: var(--green);
}

/* Hooks Grid */
.hooks-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.hooks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hook-card {
    border: 1px solid var(--border);
    padding: 24px;
    transition: border-color 0.2s;
}
.hook-card:hover {
    border-color: var(--green);
}

.hook-emoji {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 12px;
}

.hook-card h3 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 8px;
}

.hook-card p {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* Features */
.features-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-dim);
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--green);
    margin-right: 10px;
}

/* CTA */
.cta-section {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-btn {
    display: inline-block;
    border: 1px solid var(--green);
    color: var(--green);
    padding: 14px 36px;
    font-family: var(--mono);
    font-size: 1rem;
    transition: all 0.2s;
}
.cta-btn:hover {
    background: var(--green);
    color: var(--bg);
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

/* Footer */
.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
.site-footer p {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .hooks-grid { grid-template-columns: 1fr; }
    .terminal-body { font-size: 0.75rem; }
    .hero { padding: 48px 0 40px; }
}
