:root {
    --bg: #f3e8da;
    --bg-strong: #fff9f1;
    --surface: rgba(255, 249, 241, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #241336;
    --text: #231729;
    --text-soft: #5e4c63;
    --primary: #7e2db5;
    --primary-strong: #56137e;
    --accent: #f5bf2d;
    --accent-soft: #ffe08a;
    --border: rgba(61, 35, 77, 0.12);
    --shadow: 0 20px 50px rgba(52, 27, 68, 0.14);
    --radius: 24px;
    --radius-sm: 16px;
    --container: min(1120px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(126, 45, 181, 0.22), transparent 28%),
        radial-gradient(circle at right 20%, rgba(245, 191, 45, 0.18), transparent 24%),
        linear-gradient(180deg, #fcf7ef 0%, #f1e2d1 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
ul {
    margin-top: 0;
}

ul {
    padding-left: 0;
    list-style: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 249, 241, 0.8));
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--primary-strong);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 800;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 2.5rem;
}

.section-heading h2,
.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.02em;
    line-height: 0.95;
}

.section-heading h2 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-soft);
    line-height: 1.7;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #9f3bd6 100%);
    box-shadow: 0 14px 30px rgba(105, 39, 148, 0.28);
}

.button--ghost {
    color: var(--surface-strong);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 720px) {
    .section {
        padding: 4rem 0;
    }
}