.home { padding: 16px 0 0; }

/* Hero */
.hero { margin-bottom: 44px; }
.hero .pill { margin-bottom: 18px; }
.hero h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
}
.hero-role {
    font-family: var(--mono);
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 18px;
}
.hero-role .at { color: var(--text2); }
.hero-lead {
    font-size: 17px;
    color: var(--text2);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 26px;
}
.hero-lead strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }

/* Terminal window */
.term {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 56px;
    box-shadow: var(--shadow);
}
.term-bar {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    padding: 9px 14px;
    display: flex; align-items: center; gap: 7px;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.term-title {
    flex: 1; text-align: center;
    font-family: var(--mono);
    font-size: 11px; color: var(--text2);
    margin-right: 30px;
}
.term-body { padding: 18px 22px; overflow-x: auto; min-height: 260px; }
.term-out {
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.75;
    color: var(--text);
    white-space: pre;
    margin: 0;
}
.t-prompt { color: var(--green); }
.t-sep    { color: var(--text2); }
.t-path   { color: var(--blue); }
.t-sym    { color: var(--accent); margin: 0 4px; }
.t-key    { color: var(--text); font-weight: 600; }
.t-dim    { color: var(--text2); }
.t-link   { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.t-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--accent);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* Focus areas */
.focus { margin-bottom: 56px; }
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.focus-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 18px;
    transition: border-color 0.15s, transform 0.15s;
}
.focus-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.focus-icon {
    width: 36px; height: 36px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-soft); color: var(--accent);
    margin-bottom: 14px;
}
.focus-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.focus-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.focus-card p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* Stack */
.stack { margin-bottom: 56px; }
.stack-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    font-family: var(--mono);
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);
}

/* CTA band */
.cta-band {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background:
        radial-gradient(600px 200px at 0% 0%, var(--accent-soft), transparent 60%),
        var(--bg2);
}
.cta-band h2 { font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.cta-band p { font-size: 14px; color: var(--text2); max-width: 460px; }
.cta-band .btn { flex-shrink: 0; }

@media (max-width: 700px) {
    .focus-grid { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
    .term-body { padding: 14px 14px; min-height: 220px; }
    .term-out { font-size: 12px; }
}
