* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ich-bg);
    color: var(--ich-text);
    font-family: var(--ich-font);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.9rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    max-width: 12ch;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: min(100% - 40px, var(--ich-max));
    margin-inline: auto;
}

.narrow {
    width: min(100% - 40px, 880px);
}

.centered {
    text-align: center;
}

.centered h1,
.centered h2,
.centered p,
.narrow h1,
.narrow h2 {
    margin-inline: auto;
}

.section {
    padding: clamp(72px, 9vw, 132px) 0;
}

.section--hero {
    padding-top: clamp(96px, 14vw, 184px);
    padding-bottom: clamp(84px, 11vw, 152px);
    position: relative;
    overflow: hidden;
}

.section--hero::before {
    content: "";
    position: absolute;
    inset: -30% -20% auto auto;
    width: min(70vw, 760px);
    height: min(70vw, 760px);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(119, 169, 209, 0.28), rgba(119, 169, 209, 0));
    pointer-events: none;
}

.section--muted {
    background: var(--ich-surface-soft);
}

.section--dark {
    background: var(--ich-dark);
    color: #f5fbf8;
}

.section--cta {
    background: linear-gradient(135deg, var(--ich-dark), #14273D);
    color: #f5fbf8;
}

.site-main {
    overflow-x: clip;
}

:is(h1, h2, h3, h4, h5, h6, p, a, strong, span, li) {
    overflow-wrap: normal;
    word-break: normal;
}
