/* home styles */

/* hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 20px 100px;
}

.hero-subtitle {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.hero-title {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
}

/* section headers */
.section-tag {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    font-family: 'Outfit', sans-serif;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* workflow section */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 40px 0 100px;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    margin-bottom: -2.5rem;
    display: block;
    font-family: 'Outfit', sans-serif;
}

.workflow-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.workflow-item p {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* about section */
.about-section {
    padding: 140px 0;
    background: radial-gradient(circle at 0% 0%, #0a0a0a 0%, #000000 100%);
}

.about-content {
    max-width: 850px;
}

.about-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* responsive */
@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .hero-section {
        padding-top: 200px;
    }
}
