/* ================================
   DESIGN SYSTEM — GLOBAL FOUNDATION
================================ */

/* ---------- Root Tokens ---------- */
:root {
    --primary: #fa33a1;
    --secondary: #553add;
    --text-dark: #111;
    --text-muted: #666;
    --bg-light: #ffffff;
    --radius-lg: 20px;
    --radius-pill: 999px;

    --shadow-soft:
        0 8px 25px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);

    --shadow-strong:
        0 18px 45px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- Section Layout ---------- */
.section {
    padding: 45px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* ---------- Section Header System ---------- */
.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ---------- Headings ---------- */
h1 {
    font-size: 56px;
    font-weight: 800;
}
h2 {
    font-size: 42px;
    font-weight: 800;
}
h3 {
    font-size: 24px;
    font-weight: 700;
}
h4 {
    font-size: 18px;
    font-weight: 600;
}
h5 {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.btn-light {
    background: #fff;
    color: #000;
}

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

/* ---------- Utility ---------- */
.text-center {
    text-align: center;
}
.text-muted {
    color: var(--text-muted);
}
.mt-2 {
    margin-top: 20px;
}
.mt-4 {
    margin-top: 40px;
}
.mb-2 {
    margin-bottom: 20px;
}
.mb-4 {
    margin-bottom: 40px;
}

/* ---------- Animations ---------- */
.fade-in {
    animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
