:root {
    --font-body: "Manrope", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-brand: "Plus Jakarta Sans", sans-serif;
    --bg: #f2f7ef;
    --bg-soft: #e8f1e4;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --text: #162217;
    --text-dim: #3a4a3c;
    --line: rgba(19, 36, 23, 0.2);
    --brand-1: #14ab5d;
    --brand-2: #17994f;
    --brand-3: #ffa000;
    --brand-4: #ff7400;
    --success: #15b86a;
    --radius-lg: 26px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: min(1180px, 92vw);
    --shadow-xl: 0 24px 55px rgba(22, 44, 27, 0.24);
    --shadow-md: 0 12px 30px rgba(22, 44, 27, 0.18);
    --gradient-main: linear-gradient(135deg, var(--brand-2), var(--brand-3) 45%, var(--brand-4));
    --gradient-secondary: linear-gradient(120deg, rgba(35, 165, 93, 0.2), rgba(245, 159, 0, 0.24));
}

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

html,
body {
    margin: 0;
    min-height: 100%;
}

html {
    scroll-behavior: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 360;
    letter-spacing: 0.01em;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(20, 171, 93, 0.24), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(255, 116, 0, 0.18), transparent 24%),
        radial-gradient(circle at 80% 72%, rgba(255, 160, 0, 0.17), transparent 22%),
        var(--bg);
    line-height: 1.65;
}

.noise-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: radial-gradient(rgba(22, 40, 25, 0.25) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: -1;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    width: 320px;
    height: 320px;
    top: 8%;
    left: -80px;
    background: rgba(35, 165, 93, 0.18);
}

.orb-2 {
    width: 280px;
    height: 280px;
    bottom: 8%;
    right: -50px;
    background: rgba(255, 122, 0, 0.14);
}

.orb-3 {
    width: 240px;
    height: 240px;
    top: 44%;
    left: 48%;
    background: rgba(245, 159, 0, 0.11);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

section {
    padding: 84px 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 560;
    line-height: 1.15;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    letter-spacing: -0.02em;
    font-weight: 650;
}

h2 {
    font-size: clamp(1.65rem, 3.3vw, 2.7rem);
    letter-spacing: -0.01em;
    font-weight: 610;
}

h3 {
    font-size: clamp(1.2rem, 2.1vw, 1.65rem);
    font-weight: 580;
}

p {
    margin: 0 0 14px;
    color: var(--text-dim);
    font-weight: 390;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #48604d;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--brand-1);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
    position: relative;
    padding-left: 14px;
}

.section-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--brand-2), var(--brand-4));
}

.grid {
    display: grid;
    gap: 22px;
}

.muted {
    color: var(--text-dim);
}

@media (max-width: 920px) {
    section {
        padding: 68px 0;
    }

    .orb-3 {
        display: none;
    }
}
