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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--ra-font-base);
    font-size: var(--ra-fs-sm);
    line-height: 1.5;
    color: var(--ra-color-text);
    background-color: var(--ra-color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

[hidden] {
    display: none !important;
}

body.is-locked {
    overflow: hidden;
}

img,
svg,
picture,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    background: var(--ra-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

p {
    margin: 0;
}

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

.ra-section {
    padding-top: var(--ra-section-py);
    padding-bottom: var(--ra-section-py);
}

.ra-section-title {
    font-size: var(--ra-fs-xl);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.ra-section-subtitle {
    text-align: center;
    color: var(--ra-color-text-muted);
    font-size: var(--ra-fs-sm);
    max-width: 720px;
    margin: 16px auto 0;
}

.site-main {
    display: block;
}
