:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-muted: #f1f5f9;
    --surface-tint: #eff5ff;

    --ink: #0b1530;
    --ink-soft: #334155;
    --ink-muted: #64748b;
    --ink-faint: #94a3b8;
    --line: #e2e8f0;
    --line-soft: #eef2f7;

    --brand-50: #eff6ff;
    --brand-100: #dbe7ff;
    --brand: #2563eb;
    --brand-strong: #1d4ed8;
    --brand-deep: #1736a8;
    --brand-night: #0b1530;

    --accent-50: #ecfdf5;
    --accent: #10b981;
    --accent-strong: #059669;

    --spark: #f37e04;

    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-pill: 999px;

    --shadow-xs: 0 1px 2px rgba(11, 21, 48, 0.06);
    --shadow-sm: 0 2px 8px -2px rgba(11, 21, 48, 0.10), 0 1px 2px rgba(11, 21, 48, 0.05);
    --shadow-md: 0 14px 32px -14px rgba(11, 21, 48, 0.20);
    --shadow-lg: 0 30px 60px -22px rgba(23, 54, 168, 0.28);
    --shadow-brand: 0 16px 34px -12px rgba(37, 99, 235, 0.45);
    --shadow-accent: 0 16px 34px -12px rgba(16, 185, 129, 0.40);

    --ring: 0 0 0 4px rgba(37, 99, 235, 0.18);

    --container: 1180px;
    --gutter: clamp(1.1rem, 4vw, 2.5rem);
    --section-y: clamp(3.5rem, 8vw, 6.5rem);

    --font: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--ink-soft);
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -0.025em;
    font-weight: 800;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.2rem, 1.3rem + 3.9vw, 3.65rem);
}

h2 {
    font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.7rem);
}

h3 {
    font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem);
    font-weight: 700;
}

p {
    text-wrap: pretty;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: var(--r-xs);
}

::selection {
    background: var(--brand-100);
    color: var(--brand-deep);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--section-y);
}

.section--tight {
    padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-head {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
    margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.section-head--left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-strong);
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    padding: 0.4rem 0.85rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.1rem;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.section-head p {
    margin-top: 0.9rem;
    font-size: 1.075rem;
    color: var(--ink-muted);
}

.text-gradient {
    background: linear-gradient(105deg, var(--brand) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
