/* ==============================================
   COMPONENTS — BRUTALIST NARRATIVE
   ============================================== */

/* === ORIGIN STORY === */
.origin-section {
    background: var(--bg);
    border-top: 2px solid var(--border);
}

.origin-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.origin-text:first-of-type {
    font-size: 1.125rem;
    color: var(--text);
}

.origin-text strong {
    color: var(--text);
    font-weight: 600;
}

.origin-highlight {
    background: var(--accent-muted);
    border-left: 4px solid var(--accent);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.origin-highlight p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
}

.origin-highlight strong {
    color: var(--accent);
    font-weight: 600;
}

/* === ORIGIN STATS === */
.origin-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    margin: var(--space-xl) 0;
}

@media (max-width: 600px) {
    .origin-stats {
        grid-template-columns: 1fr;
    }
}

.origin-stat {
    padding: var(--space-lg);
    background: var(--bg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.origin-stat .material-icons {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.origin-stat p {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.origin-stat strong {
    color: var(--text);
    font-weight: 600;
}

/* === STEPS GRID === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    padding: var(--space-xl);
    background: var(--bg);
    border-left: 4px solid var(--accent);
    transition: background var(--duration-fast) var(--ease-out);
}

.step-card:hover {
    background: var(--bg-alt);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.step-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    background: var(--accent-muted);
    margin-bottom: var(--space-md);
}

.step-icon .material-icons {
    font-size: 18px;
    color: var(--accent);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}
