/* ==================================================
   CSS Variables
================================================== */

:root {
    --color-black: #070707;
    --color-black-soft: #080808;
    --color-white: #ffffff;
    --color-red: #ee3028;
    --color-text: #000000;
    --color-copy: #525252;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-white-muted: rgba(255, 255, 255, 0.7);
    --color-white-soft: rgba(255, 255, 255, 0.55);
    --color-panel: #f7f7f7;
    --font-primary: "Inter", Arial, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
    --page-gutter: 100px;
    --page-max: 1720px;
    --hero-content-max: 1320px;
    --anchor-offset: 0px;
    --transition-default: 0.25s ease;
    --focus-ring: 0 0 0 3px rgba(238, 48, 40, 0.28);
}

/* ==================================================
   Base Styles
================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

[id] {
    scroll-margin-top: var(--anchor-offset);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-default), background-color var(--transition-default), border-color var(--transition-default), opacity var(--transition-default);
}

a:hover {
    color: var(--color-red);
}

:focus-visible {
    outline: 0;
    box-shadow: var(--focus-ring);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

p {
    margin-bottom: 0;
}

.skip-link {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 2000;
    padding: 12px 18px;
    transform: translateY(-150%);
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-container {
    max-width: var(--page-max);
    margin-inline: auto;
    padding-inline: 0;
}

.reem-admin-content-notice {
    padding: 48px var(--page-gutter);
    background-color: #fff7e6;
    color: #3b2b00;
    font-size: 18px;
    line-height: 1.6;
}

.section-kicker {
    margin-bottom: 27px;
    color: var(--color-red);
    font-size: 20px;
    font-weight: 500;
    line-height: 11px;
    letter-spacing: 2.42px;
    text-transform: uppercase;
}

/* ==================================================
   Header
================================================== */

.site-header {
    position: relative;
    z-index: 1000;
    min-height: 139px;
    border-bottom: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    transition: min-height var(--transition-default), box-shadow var(--transition-default);
}

.site-header--sticky {
    position: sticky;
    top: 0;
}

body.admin-bar .site-header--sticky {
    top: 32px;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.site-header--sticky.is-scrolled {
    min-height: 92px;
    background-color: var(--color-white);
    backdrop-filter: none;
}

.site-header__navbar {
    min-height: 138px;
    padding: 0;
    transition: min-height var(--transition-default);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: none;
    min-height: 138px;
    padding-inline: var(--page-gutter);
    transition: min-height var(--transition-default);
}

.site-header--sticky.is-scrolled .site-header__navbar,
.site-header--sticky.is-scrolled .site-header__container {
    min-height: 92px;
}

.site-logo {
    display: flex;
    align-items: center;
    width: 231px;
    max-width: 28vw;
    height: 72px;
    margin-right: 24px;
    padding: 0;
    transition: width var(--transition-default), height var(--transition-default);
}

.site-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    transition: max-height var(--transition-default);
}

.site-header--sticky.is-scrolled .site-logo {
    width: 190px;
    height: 56px;
}

.site-header--sticky.is-scrolled .site-logo img {
    max-height: 56px;
}

.site-header__divider {
    width: 1px;
    height: 44px;
    margin-right: 24px;
    background-color: rgba(0, 0, 0, 0.2);
}

.site-header__tagline {
    width: 181px;
    max-width: 178px;
    margin-right: auto;
    color: #222222;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.99px;
    text-transform: uppercase;
}

.site-header__navigation {
    align-items: center;
    flex-grow: 0;
    gap: 50px;
    margin-left: auto;
}

.site-header__menu {
    align-items: center;
    gap: 50px;
}

.site-header__link {
    padding: 0;
    color: var(--color-text);
    font-size: 18px;
    line-height: 18px;
    white-space: nowrap;
}

.site-header__link:hover,
.site-header__link:focus {
    color: var(--color-red);
}

.site-header__cta {
    width: 153px;
    min-height: 48px;
    padding: 0 28px;
}

.site-header__toggle {
    border: 1px solid var(--color-border);
    border-radius: 0;
}

.site-header__toggle .navbar-toggler-icon {
    background-image:
        linear-gradient(var(--color-black), var(--color-black)),
        linear-gradient(var(--color-black), var(--color-black)),
        linear-gradient(var(--color-black), var(--color-black));
    background-position: center 8px, center center, center calc(100% - 8px);
    background-repeat: no-repeat;
    background-size: 24px 2px;
}

/* ==================================================
   Buttons
================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 16px 28px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.button img,
.text-link img {
    width: 20px;
    height: 12px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.button--large {
    min-height: 68px;
    padding: 24px 32px;
    font-size: 20px;
}

.button--brand {
    background-color: var(--color-red);
    color: var(--color-white);
}

.button--brand:hover,
.button--brand:focus {
    border-color: var(--color-red);
    background-color: var(--color-black);
    color: var(--color-white);
}

.button--dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.button--dark:hover,
.button--dark:focus {
    background-color: var(--color-red);
    color: var(--color-white);
}

.button--ghost {
    color: var(--color-white);
}

.button--ghost:hover,
.button--ghost:focus {
    color: var(--color-red);
}

.button--ghost:hover img,
.button--ghost:focus img,
.text-link:hover img,
.text-link:focus img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(96%) saturate(3274%) hue-rotate(351deg) brightness(98%) contrast(91%);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.text-link:hover,
.text-link:focus {
    color: var(--color-red);
}

/* ==================================================
   Contact Popup
================================================== */

body.contact-popup-open {
    overflow: hidden;
}

.contact-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.contact-popup.is-open {
    display: flex;
}

.contact-popup__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 13, 13, 0.87);
}

.contact-popup__dialog {
    position: relative;
    width: min(993px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 58px 80px 48px;
    border: 1px solid rgba(0, 0, 0, 0.14);
    background-color: var(--color-white);
    color: var(--color-black);
}

.contact-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 20px;
    line-height: 1;
}

.contact-popup__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    text-align: center;
}

.contact-popup__kicker {
    margin: 0;
    color: var(--color-red);
    font-size: 20px;
    font-weight: 500;
    line-height: 11px;
    letter-spacing: 2.42px;
    text-transform: uppercase;
}

.contact-popup h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 500;
    line-height: 60px;
}


/* ==================================================
   Thank You Page
================================================== */

.thank-you-page {
    background-color: var(--color-white);
}

.thank-you-section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 439px);
    padding: 120px var(--page-gutter);
}

.thank-you-section .page-container {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
}

.thank-you-section .section-kicker {
    justify-content: center;
    margin-bottom: 24px;
}

.thank-you-section h1 {
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 500;
    line-height: 78px;
}

.thank-you-section p:not(.section-kicker) {
    max-width: 680px;
    margin: 0 auto 42px;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
}

/* ==================================================
   Legal Pages
================================================== */

.legal-page {
    background-color: var(--color-white);
}

.legal-hero {
    padding: 118px var(--page-gutter) 72px;
    border-bottom: 1px solid var(--color-border);
}

.legal-hero .page-container,
.legal-content .page-container {
    max-width: 920px;
}

.legal-hero h1 {
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 500;
    line-height: 82px;
}

.legal-hero__intro {
    max-width: 760px;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
}

.legal-hero__updated {
    margin-top: 28px;
    color: var(--color-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    text-transform: uppercase;
}

.legal-content {
    padding: 72px var(--page-gutter) 120px;
}

.legal-content h2 {
    margin: 52px 0 18px;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 44px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content__body {
    color: var(--color-copy);
    font-size: 18px;
    line-height: 31px;
}

.legal-content__body p,
.legal-content__body ul,
.legal-content__body ol {
    margin: 0 0 20px;
}

.legal-content__body :last-child {
    margin-bottom: 0;
}

.legal-content__body ul,
.legal-content__body ol {
    padding-left: 24px;
}

.legal-content__body a {
    color: var(--color-red);
    font-weight: 600;
}

/* ==================================================
   404 Page
================================================== */

.reem-404-body {
    background-color: var(--color-black);
}

.reem-404-page {
    min-height: 100vh;
    background-color: var(--color-black);
}

.reem-404-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 96px var(--page-gutter);
    color: var(--color-white);
}

.reem-404-section__media,
.reem-404-section__overlay {
    position: absolute;
    inset: 0;
}

.reem-404-section__media {
    background-image: url("../images/backgrounds/hero-background.webp");
    background-position: center;
    background-size: cover;
    opacity: 0.55;
}

.reem-404-section__overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.36) 100%),
        radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 22%);
}

.reem-404-section .page-container {
    position: relative;
}

.reem-404-section__content {
    max-width: 760px;
}

.reem-404-section .section-kicker {
    margin-bottom: 24px;
    color: var(--color-red);
}

.reem-404-section h1 {
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-size: 78px;
    font-weight: 500;
    line-height: 88px;
}

.reem-404-section p:not(.section-kicker) {
    max-width: 640px;
    margin: 0 0 44px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 24px;
    line-height: 36px;
}

/* ==================================================
   Hero
================================================== */

.hero-section {
    position: relative;
    min-height: 899px;
    overflow: hidden;
    background-color: var(--color-black);
    color: var(--color-white);
}

.hero-section__media,
.hero-section__overlay {
    position: absolute;
    inset: -15px 0 0;
}

.hero-section__media {
    background-image: var(--reem-hero-background, none);
    background-position: center top;
    background-size: cover;
}

.hero-section__overlay {
    background:
        radial-gradient(ellipse 340px 430px at 22% 32%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 18%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%),
        linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 31%, rgba(5, 5, 5, 0.5) 58%, rgba(5, 5, 5, 0.18) 100%);
}

.hero-section .page-container {
    position: relative;
    max-width: var(--hero-content-max);
    margin-left: var(--page-gutter);
    margin-right: auto;
}

.hero-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 735px;
    padding-top: 220px;
    padding-bottom: 120px;
}

.hero-section__title {
    margin-bottom: 56px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 87px;
    font-weight: 500;
    line-height: 90px;
    letter-spacing: 0;
}

.hero-section__title span {
    display: block;
}

.hero-section__title span:last-child {
    line-height: 80px;
}

.hero-section__title em {
    color: var(--color-red);
    font-style: italic;
}

.hero-section__description {
    max-width: 771px;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    line-height: 36px;
}

.hero-section__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* ==================================================
   Trust Strip
================================================== */

.trust-strip {
    padding: 60px var(--page-gutter);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-black-soft);
    color: var(--color-white);
}

.trust-strip__title {
    margin-bottom: 40px;
    color: var(--color-white-soft);
    font-size: 20px;
    font-weight: 900;
    line-height: 11px;
    letter-spacing: 2.42px;
    text-transform: uppercase;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 52px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 113px;
}

.trust-item img {
    flex: 0 0 auto;
    object-fit: contain;
}

.trust-item h2 {
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2em;
}

.trust-item p {
    max-width: 185px;
    color: var(--color-white-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

/* ==================================================
   Products
================================================== */

.products-section {
    padding: 84px var(--page-gutter);
    background:
        radial-gradient(ellipse 340px 400px at 14% 24%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0) 16%),
        var(--color-white);
}

.products-section .page-container {
    display: grid;
    grid-template-columns: 713px 1007px;
    min-height: 479px;
}

.products-section__intro {
    max-width: 723px;
    width: 100%;
    min-width: 0;
}

.products-section__intro,
.products-section__cards,
.product-card {
    min-width: 0;
}

.products-section__intro h2,
.process-section__intro h2,
.global-section__content h2,
.security-section__intro h2,
.register-interest-section__intro h2,
.numbers-section h2,
.cta-section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.products-section__intro h2 {
    max-width: 737px;
    margin-bottom: 32px;
    font-size: 54px;
    line-height: 67px;
    overflow-wrap: break-word;
}

.products-section__intro p:not(.section-kicker) {
    max-width: 723px;
    margin-bottom: 32px;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
    overflow-wrap: break-word;
}

.products-section__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    min-height: 479px;
    padding: 37px 33px;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
}

.product-card img {
    width: auto;
    height: 74px;
    margin-bottom: 29px;
    object-fit: contain;
    object-position: left center;
}

.product-card h3 {
    max-width: 254px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
}

.product-card p {
    max-width: 254px;
    color: var(--color-copy);
    font-size: 18px;
    line-height: 28px;
}

/* ==================================================
   Process
================================================== */

.process-section {
    padding: 83px var(--page-gutter);
    background-color: var(--color-panel);
}

.process-section .page-container {
    display: grid;
    grid-template-columns: 563px 1fr;
    gap: 90px;
    min-height: 364px;
}

.process-section__intro h2 {
    margin-bottom: 26px;
    font-size: 54px;
    line-height: 67px;
}

.process-section__intro p:not(.section-kicker) {
    margin-bottom: 24px;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
}

.process-section__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.process-section__steps::before {
    position: absolute;
    top: 80px;
    left: 64px;
    right: 95px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    content: "";
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 156px;
    height: 156px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    background-color: var(--color-white);
}

.process-step__icon img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.process-step__number {
    position: relative;
    margin-bottom: 15px;
    padding-left: 36px;
    color: var(--color-red);
    font-size: 18px;
    font-weight: 500;
    line-height: 11px;
}

.process-step__number::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 28px;
    height: 1px;
    background-color: var(--color-red);
    content: "";
}

.process-step h3 {
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
}

.process-step p:last-child {
    max-width: 243px;
    color: var(--color-copy);
    font-size: 18px;
    line-height: 28px;
}

/* ==================================================
   Global
================================================== */

.global-section {
    padding: 100px var(--page-gutter);
    background-color: var(--color-white);
}

.global-section .page-container {
    display: grid;
    grid-template-columns: 947px 1fr;
    gap: 100px;
}

.global-section__map {
    position: relative;
    width: 947px;
    aspect-ratio: 947 / 535;
    height: auto;
    overflow: hidden;
}

.global-section__map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.global-section__content {
    max-width: 673px;
}

.global-section__content h2 {
    margin-bottom: 30px;
    font-size: 54px;
    line-height: 67px;
}

.global-section__content > p:not(.section-kicker) {
    margin-bottom: 30px;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
}

.global-feature-list {
    display: grid;
    gap: 36px;
    margin-bottom: 30px;
}

.global-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.global-feature img {
    flex: 0 0 auto;
    object-fit: contain;
}

.global-feature h3 {
    margin-bottom: 7px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
}

.global-feature p {
    max-width: 458px;
    color: var(--color-copy);
    font-size: 18px;
    line-height: 28px;
}

/* ==================================================
   Security
================================================== */

.security-section {
    position: relative;
    min-height: 681px;
    overflow: hidden;
    padding: 82px var(--page-gutter);
    background-color: var(--color-black);
    color: var(--color-white);
}

.security-section__media,
.security-section__overlay {
    position: absolute;
    inset: 0;
}

.security-section__media {
    opacity: 0.7;
    background-image: var(--reem-security-background, none);
    background-position: center;
    background-size: cover;
}

.security-section__overlay {
    background-image:
        linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 42%, rgba(7, 7, 7, 0.18) 100%), var(--reem-security-gradient, none);
    background-position: center;
    background-size: cover;
}

.security-section .page-container {
    position: relative;
}

.security-section__intro {
    max-width: 663px;
    margin-bottom: 56px;
}

.security-section__intro h2 {
    margin-bottom: 23px;
    font-size: 54px;
    line-height: 67px;
}

.security-section__intro p:not(.section-kicker) {
    max-width: 610px;
    color: var(--color-white);
    font-size: 22px;
    line-height: 36px;
}

.security-section__cards {
    display: grid;
    grid-template-columns: 255px 220px 268px 238px;
    gap: 50px;
}

.security-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.security-card h3 {
    margin-bottom: 11px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 38px;
}

.security-card p {
    color: var(--color-white);
    font-size: 18px;
    line-height: 29px;
}

/* ==================================================
   Register Interest
================================================== */

.register-interest-section {
    position: relative;
    overflow: hidden;
    padding: 80px var(--page-gutter) 30px;
    background-color: var(--color-white);
}

.register-interest-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: var(--reem-register-background, none);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    filter: grayscale(1);
    pointer-events: none;
}

.register-interest-section .page-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 640px) minmax(620px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.register-interest-section__content {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    padding: 42px 0;
}

.register-interest-section__map {
    display: none;
}

.register-interest-section__intro,
.register-interest-section__features {
    position: relative;
    z-index: 1;
}

.register-interest-section__intro {
    max-width: 100%;
    margin-bottom: 70px;
}

.register-interest-section__intro h2 {
    margin-bottom: 23px;
    font-size: 54px;
    line-height: 67px;
}

.register-interest-section__intro p:not(.section-kicker) {
    color: var(--color-text);
    font-size: 22px;
    line-height: 36px;
}

.register-interest-section__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 68px;
    max-width: 520px;
}

.register-interest-feature {
    min-width: 0;
}

.register-interest-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
}

.register-interest-feature__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.register-interest-feature h3 {
    margin-bottom: 11px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.register-interest-feature p {
    color: var(--color-text);
    font-size: 18px;
    line-height: 29px;
}

.register-interest-section__form {
    padding: 28px 50px 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background-color: var(--color-white);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.register-interest-form-notice-field {
    grid-column: 1 / -1;
}

.register-interest-section__form .reem-form__field:has(.reem-turnstile:empty) {
    display: none;
}

.register-interest-section__form .reem-form__status:empty {
    min-height: 0;
    margin: 0;
}

.register-interest-section__form .reem-form__footer {
    margin-top: 10px;
}

.register-interest-form-notice {
    position: relative;
    margin: 0;
    padding-left: 28px;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 21px;
}

.register-interest-form-notice::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 19px;
    border: 2px solid #8b8b8b;
    border-radius: 2px;
}

.register-interest-form-notice::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 4px;
    width: 8px;
    height: 7px;
    border: 2px solid #8b8b8b;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.reem-form {
    margin: 0;
}

.reem-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 30px;
}

.contact-popup .reem-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
}

.contact-popup .reem-turnstile:empty,
.contact-popup .reem-form__status:empty {
    min-height: 0;
}

.contact-popup .reem-form__field:has(.reem-turnstile:empty) {
    display: none;
}

.contact-popup .reem-form__status:empty {
    margin: 0;
}

.reem-form__field {
    min-width: 0;
}

.reem-form__field--full {
    grid-column: 1 / -1;
}

.reem-form__field label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-black);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.reem-form__field label span {
    color: var(--color-red);
}

.reem-form input[type="text"],
.reem-form input[type="email"],
.reem-form input[type="tel"],
.reem-form select,
.reem-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1.404px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    padding: 10px 16px;
    outline: none;
    background: #fff;
    color: #525252;
    font-size: 18px;
    line-height: 28px;
    box-shadow: none;
}

.reem-form select {
    padding-right: 44px;
    background: #fff url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23525252' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center / 12px 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.reem-form textarea {
    min-height: 124px;
    resize: vertical;
}

.reem-form input::placeholder,
.reem-form textarea::placeholder {
    color: #525252;
    opacity: 1;
}

.reem-form input:focus,
.reem-form select:focus,
.reem-form textarea:focus {
    border-color: rgba(0, 0, 0, 0.32);
}

.reem-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.reem-turnstile {
    min-height: 65px;
}

.reem-form__status {
    min-height: 24px;
    margin: 14px 0 0;
    color: #525252;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}

.reem-form__status[data-status="success"] {
    color: #176c3a;
}

.reem-form__status[data-status="error"] {
    color: var(--color-red);
}

.reem-form__footer {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.reem-form button[type="submit"] {
    min-height: 54px;
    padding: 16px 32px;
}

.reem-form button[type="submit"]:disabled {
    cursor: wait;
    opacity: 0.72;
}

/* ==================================================
   Numbers
================================================== */

.numbers-section {
    padding: 110px var(--page-gutter) 100px;
    text-align: center;
    background-color: var(--color-white);
}

.numbers-container {
    max-width: 1506px;
    margin-inline: auto;
    padding-inline: 0;
}

.numbers-section .section-kicker {
    margin-bottom: 30px;
}

.numbers-section h2 {
    margin-bottom: 90px;
    font-size: 54px;
    line-height: 67px;
}

.numbers-section__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.number-item {
    min-height: 121px;
    padding-inline: 36px;
    border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.number-item:last-child {
    border-right: 0;
}

.number-item h3 {
    margin-bottom: 19px;
    color: var(--color-red);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
}

.number-item p {
    max-width: 242px;
    margin-inline: auto;
    color: var(--color-copy);
    font-size: 20px;
    line-height: 30px;
}

/* ==================================================
   CTA
================================================== */

.cta-section {
    padding: 41px var(--page-gutter);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-panel);
}

.cta-section .page-container {
    display: grid;
    grid-template-columns: 420px 1fr auto;
    align-items: center;
    gap: 60px;
}

.cta-section h2 {
    margin-bottom: 0;
    font-size: 34px;
    line-height: 44px;
}

.cta-section p {
    justify-self: center;
    color: var(--color-copy);
    font-size: 22px;
    line-height: 36px;
}

/* ==================================================
   Footer
================================================== */

.site-footer {
    position: relative;
    min-height: 301px;
    padding: 60px var(--page-gutter) 44px;
    background-color: var(--color-black);
    background-image: var(--reem-footer-background, none);
    background-size: cover;
    color: rgba(255, 255, 255, 0.6);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 278px minmax(0, 1fr) auto;
    align-items: start;
    gap: 80px;
    min-height: 106px;
}

.site-footer .page-container {
    position: relative;
    min-height: 197px;
}

.site-footer__brand {
    grid-column: 1;
    width: 278px;
    max-width: 100%;
}

.site-footer__logo {
    display: block;
    width: 100%;
}

.site-footer__logo img {
    width: 100%;
    height: auto;
    max-height: 106px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__tagline {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.site-footer__navigation {
    grid-column: 2;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    padding-top: 15px;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    white-space: nowrap;
}

.site-footer__social-list {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
}

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.site-footer__social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__contact {
    position: absolute;
    top: 74px;
    right: 0;
    display: flex;
    justify-content: flex-end;
    gap: 23px;
    margin: 0;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
}

.site-footer__contact span + span {
    padding-left: 23px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__bottom {
    position: absolute;
    top: 146px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 18px;
    line-height: 28px;
}

.site-footer__legal {
    display: flex;
    gap: 47px;
}
