:root {
    --bg: #081320;
    --surface: #0d1d31;
    --surface-soft: #132843;
    --card: rgba(255, 255, 255, 0.04);
    --card-strong: rgba(255, 255, 255, 0.08);
    --text: #eff5ff;
    --muted: #adc1de;
    --line: rgba(255, 255, 255, 0.12);
    --primary: #1c4f8f;
    --primary-soft: #2766b3;
    --accent: #f4aa28;
    --accent-strong: #ffbd4a;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius: 24px;
    --container: min(1180px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(39, 102, 179, 0.35), transparent 24%),
        radial-gradient(circle at bottom left, rgba(244, 170, 40, 0.16), transparent 22%),
        linear-gradient(180deg, #06111c 0%, #09182a 30%, #081320 100%);
}

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

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

button {
    font: inherit;
}

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

.section {
    padding: 4.5rem 0;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Chakra Petch", sans-serif;
    line-height: 1;
}

h1 {
    font-size: clamp(2.25rem, 4.1vw, 4.1rem);
    line-height: 0.95;
    max-width: 11ch;
}

h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.1;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #04111d;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0;
}

.section-heading .eyebrow {
    margin-bottom: 0.75rem;
}