/* ============================================================
   StackMatch — Home / Landing Page Styles
   ============================================================ */

.home-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Hero Section */
.home-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.home-title {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.home-title .accent { color: var(--accent); }

.home-subtitle {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 36px;
}

.home-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 640px) {
    .home-title { font-size: 32px; }
    .home-subtitle { font-size: 15px; }
    .home-actions { flex-direction: column; width: 100%; }
    .home-actions .btn { width: 100%; justify-content: center; }
}

/* Features Section */
.home-features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.home-features-title {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .home-features-grid { grid-template-columns: 1fr; }
}

.home-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.home-feature:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(212,255,0,0.05);
}

.home-feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.home-feature-title {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.home-feature-text {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* How It Works Section */
.home-steps {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.home-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.home-step-num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    min-width: 50px;
    line-height: 1;
}

.home-step-title {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.home-step-text {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Footer */
.home-footer {
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

.home-footer a { color: var(--text-dim); }
