@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;600;700;800&display=swap');

:root {
    --arf-color-white: #ffffff;
    --arf-color-neutral-lightest: #eeeeee;
    --arf-color-neutral-lighter: #cccccc;
    --arf-color-neutral: #666666;
    --arf-color-neutral-darker: #222222;
    --arf-color-neutral-darkest: #000000;
    --arf-color-primary-purple: #730093;
    --arf-color-accent-purple: #8660e7;
    --arf-color-neutral-blue: #1e6be8;
    --arf-color-light-blue: #d3efff;
    --arf-color-light-purple: #f6ecff;
    --arf-gradient-brand: linear-gradient(131.69deg, #1e6be8 5.15%, #730093 100%);
    --arf-hero-gradient-light: radial-gradient(45.14% 165.81% at 56.68% 53.02%, #d3efff 0%, #f6ecff 100%);
    --arf-hero-gradient-dark: radial-gradient(45.14% 165.81% at 56.68% 53.02%, #1e6be8 0%, #8660e7 100%);
    --arf-gradient-blue-soft: linear-gradient(180deg, #d3efff 0%, #ffffff 100%);
    --arf-gradient-purple-soft: linear-gradient(180deg, #f6ecff 0%, #ffffff 100%);
    --arf-font-heading: "Red Hat Display", "Segoe UI", Arial, sans-serif;
    --arf-font-body: Tahoma, Arial, sans-serif;
    --arf-font-ui: "Poppins", "Segoe UI", Arial, sans-serif;
    --arf-space-1: 0.25rem;
    --arf-space-2: 0.5rem;
    --arf-space-3: 0.75rem;
    --arf-space-4: 1rem;
    --arf-space-5: 1.25rem;
    --arf-space-6: 1.5rem;
    --arf-space-8: 2rem;
    --arf-space-10: 2.5rem;
    --arf-space-12: 3rem;
    --arf-space-16: 4rem;
    --arf-radius-sm: 0.5rem;
    --arf-radius-md: 0.875rem;
    --arf-radius-lg: 1.0625rem;
    --arf-radius-xl: 1.5rem;
    --arf-radius-pill: 17.01px;
    --arf-shadow-sm: 0 4px 12px rgba(12, 13, 20, 0.08);
    --arf-shadow-md: 0 8px 24px rgba(12, 13, 20, 0.12);
    --arf-shadow-lg: 0 16px 36px rgba(11, 24, 43, 0.16);
    --arf-shadow-focus: 0 0 0 3px rgba(134, 96, 231, 0.24);
    --arf-container-xl: 86.9375rem;
    --arf-breakpoint-mobile: 47.99rem;
    --arf-breakpoint-tablet: 63.99rem;
    --arf-breakpoint-small-desktop: 79.99rem;
    --arf-breakpoint-large-desktop: 80rem;
    --arf-duration-fast: 150ms;
    --arf-duration-base: 220ms;
    --arf-easing-standard: cubic-bezier(0.2, 0, 0, 1);
    --arf-icon-xs: 0.75rem;
    --arf-icon-sm: 1rem;
    --arf-icon-md: 1.25rem;
    --arf-icon-lg: 1.5rem;
}

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

html,
body {
    margin: 0;
    padding: 0;
    color: var(--arf-color-neutral-darkest);
    background: var(--arf-color-white);
    font-family: var(--arf-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: var(--arf-space-4);
    color: var(--arf-color-neutral-darkest);
    font-family: var(--arf-font-heading);
}

h1 { font-size: 3.5rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 3rem; line-height: 1.2; font-weight: 700; }
h3 { font-size: 2.5rem; line-height: 1.2; font-weight: 700; }
h4 { font-size: 2rem; line-height: 1.3; font-weight: 700; }
h5 { font-size: 1.25rem; line-height: 1.4; font-weight: 700; }
h6 { font-size: 1.125rem; line-height: 1.4; font-weight: 700; }

p,
li,
a,
span,
input,
textarea,
button {
    font-family: var(--arf-font-body);
    font-size: 1rem;
    line-height: 1.5;
}

a {
    color: var(--arf-color-neutral-blue);
    text-underline-offset: 0.12em;
    text-decoration-color: var(--arf-color-accent-purple);
}

a:hover,
a:focus-visible {
    color: var(--arf-color-primary-purple);
}

:focus-visible {
    outline: none;
    box-shadow: var(--arf-shadow-focus);
}

.arf-wrap,
.arf-container {
    width: min(var(--arf-container-xl), calc(100% - (var(--arf-space-4) * 2)));
    margin-left: auto;
    margin-right: auto;
}

.arf-section {
    padding-top: var(--arf-space-16);
    padding-bottom: var(--arf-space-16);
}

.arf-section-light { background: var(--arf-color-white); }
.arf-section-blue { background: var(--arf-gradient-blue-soft); }

.arf-btn,
.arf-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: var(--arf-space-2);
    min-height: 2.75rem;
    padding: 0 1.75rem;
    border-radius: var(--arf-radius-pill);
    border: 1px solid transparent;
    font-family: var(--arf-font-body);
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--arf-duration-base) var(--arf-easing-standard), border-color var(--arf-duration-base) var(--arf-easing-standard), color var(--arf-duration-base) var(--arf-easing-standard), box-shadow var(--arf-duration-fast) var(--arf-easing-standard);
}

.arf-btn-primary,
.arf-cookie-btn-accept {
    color: var(--arf-color-white);
    background: var(--arf-gradient-brand);
    border-color: transparent;
    font-weight: 700;
}

.arf-btn-outline,
.arf-cookie-btn-decline {
    color: var(--arf-color-neutral-blue);
    border-color: var(--arf-color-neutral-blue);
    background: var(--arf-color-white);
}

input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
    width: 100%;
    min-height: 3.125rem;
    padding: 0 var(--arf-space-4);
    border: 1px solid #dfe4ef;
    border-radius: var(--arf-radius-lg);
    background: var(--arf-color-white);
    color: var(--arf-color-neutral-darkest);
}

.arf-legal-page-section {
    background: var(--arf-gradient-blue-soft);
    border-top: 1px solid #ececf4;
    border-bottom: 1px solid #ececf4;
}

.arf-legal-wrap {
    max-width: 48rem;
}

.arf-legal-updated {
    color: var(--arf-color-neutral);
}

.u-text-center { text-align: center; }
.u-text-muted { color: var(--arf-color-neutral); }
.u-bg-white { background: var(--arf-color-white); }
.u-bg-blue-soft { background: var(--arf-gradient-blue-soft); }
.u-bg-purple-soft { background: var(--arf-gradient-purple-soft); }
.u-rounded-lg { border-radius: var(--arf-radius-lg); }
.u-shadow-md { box-shadow: var(--arf-shadow-md); }
.u-mt-0 { margin-top: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-mb-4 { margin-bottom: var(--arf-space-4); }
.u-mb-8 { margin-bottom: var(--arf-space-8); }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

@media (max-width: 79.99rem) {
    .arf-section {
        padding-top: var(--arf-space-12);
        padding-bottom: var(--arf-space-12);
    }
}

@media (max-width: 63.99rem) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 2rem; }
    h4 { font-size: 1.5rem; line-height: 1.4; }
    h6 { font-size: 1rem; line-height: 1.5; }
}

@media (max-width: 47.99rem) {
    .arf-wrap,
    .arf-container {
        width: calc(100% - (var(--arf-space-3) * 2));
    }

    .arf-btn,
    .arf-cookie-btn {
        min-height: 2.375rem;
        padding: 0 1rem;
        font-size: 0.875rem;
    }

    .arf-section {
        padding-top: var(--arf-space-10);
        padding-bottom: var(--arf-space-10);
    }
}
