/* === css/layout.css === */
body {
    background: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237C3AED' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ★ Floating organic blob — adds warmth and movement */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: floatBlob 20s ease-in-out infinite alternate;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.2); }
}

/* ── Section scaffolding ── */
.section {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 24px;
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 40px;
}