section {
    max-width: 820px;
    background: var(--surface);
    margin: 28px auto;
    padding: 56px 48px;
    border-radius: 22px;
    border: 1px solid var(--border);
}

h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    line-height: 1.65;
    color: var(--ink);
}

/* Skills */
.skills-group-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    margin: 24px 0 10px;
}
.skills-group-label:first-of-type {
    margin-top: 0;
}
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.skills span {
    display: inline-block;
    background: #f2f2f4;
    padding: 8px 14px;
    border-radius: 980px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.35s ease-out, background 0.2s ease;
}
.reveal.is-visible .skills span {
    opacity: 1;
    transform: translateY(0);
}
.skills span:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}
/* stagger, up to 20 pills */
.skills span:nth-child(1) { transition-delay: 0ms; }
.skills span:nth-child(2) { transition-delay: 40ms; }
.skills span:nth-child(3) { transition-delay: 80ms; }
.skills span:nth-child(4) { transition-delay: 120ms; }
.skills span:nth-child(5) { transition-delay: 160ms; }
.skills span:nth-child(6) { transition-delay: 200ms; }
.skills span:nth-child(7) { transition-delay: 240ms; }
.skills span:nth-child(8) { transition-delay: 280ms; }
.skills span:nth-child(9) { transition-delay: 320ms; }
.skills span:nth-child(10) { transition-delay: 360ms; }

/* Comment je travaille */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.workflow-item {
    padding: 20px;
    background: var(--bg);
    border-radius: 14px;
}
.workflow-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.workflow-item p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0;
}

.repo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--hero);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.repo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(30, 51, 92, 0.25);
}
.repo-link-icon {
    display: flex;
    flex-shrink: 0;
}
.repo-link strong {
    display: block;
    font-size: 15px;
}
.repo-link-sub {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.repo-link-arrow {
    margin-left: auto;
    font-size: 18px;
    transition: transform 0.2s ease;
}
.repo-link:hover .repo-link-arrow {
    transform: translateX(4px);
}

/* Offre */
.offer-block {
    margin-top: 8px;
}
.offer-block h3 {
    margin-top: 28px;
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 600;
}
.offer-block h3:first-child {
    margin-top: 0;
}
.offer-block p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-soft);
}

/* Steps */
.steps {
    margin-top: 4px;
}
.step {
    margin-bottom: 15px;
    padding-left: 16px;
    border-left: 2px solid var(--accent);
    font-size: 15px;
}

/* Clients */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.client-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 22px;
    font-size: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(30, 51, 92, 0.12);
}
.client-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}
.client-tag {
    font-size: 12px;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--ink-soft);
    font-size: 13px;
}
