@font-face {
    font-family: "Alexandria";
    src: url("../fonts/Alexandria.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --navy-900: #062547;
    --navy-800: #08345f;
    --navy-700: #0b4674;
    --teal-700: #087f83;
    --teal-600: #0a9799;
    --teal-500: #16a6a2;
    --gold-600: #b98729;
    --gold-500: #d1a348;
    --gold-100: #faf2e2;
    --ink: #082347;
    --muted: #718092;
    --line: #dde5eb;
    --surface: #ffffff;
    --page: #fbfcfd;
    --container: 1180px;
    --shadow-soft: 0 8px 24px rgba(5, 35, 67, .08);
    --shadow-panel: 0 15px 40px rgba(5, 35, 67, .11);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    font-size: 18px;
    scroll-behavior: smooth;
    background: var(--page);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--page);
    color: var(--ink);
    font-family: "Alexandria", Tahoma, Arial, sans-serif;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.ref-container {
    width: min(calc(100% - 56px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    padding: 9px 15px;
    border-radius: 7px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    font-size: .72rem;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.ref-page {
    min-height: 100vh;
    overflow: clip;
    background:
        linear-gradient(rgba(8, 35, 71, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 35, 71, .018) 1px, transparent 1px),
        var(--page);
    background-size: 30px 30px;
}

/* Header */
.ref-header {
    position: relative;
    z-index: 100;
    border-block-end: 1px solid #edf1f4;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 5px 18px rgba(5, 35, 67, .035);
}

.ref-header__inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(34px, 5vw, 76px);
}

.ref-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ref-brand__mark {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.ref-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ref-brand__copy {
    display: grid;
    line-height: 1.15;
}

.ref-brand__copy strong {
    color: var(--navy-900);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.ref-brand__copy small {
    margin-block-start: 4px;
    color: var(--muted);
    font-size: .56rem;
}

.ref-nav {
    justify-self: start;
    direction: rtl;
}

.ref-nav__links {
    display: flex;
    align-items: center;
    gap: 0;
}

.ref-nav__links li {
    position: relative;
    padding-inline: 18px;
}

.ref-nav__links li:first-child {
    padding-inline-start: 0;
}

.ref-nav__links li + li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #cfd7dd;
    transform: translateY(-50%);
}

.ref-nav__links a {
    position: relative;
    padding-block: 27px 23px;
    color: var(--ink);
    font-size: .66rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.ref-nav__links a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 12px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--teal-600);
    transform: translateX(50%);
    transition: width .2s ease;
}

.ref-nav__links a:hover,
.ref-nav__links a:focus-visible,
.ref-nav__links a.is-active {
    color: var(--teal-700);
}

.ref-nav__links a:hover::after,
.ref-nav__links a:focus-visible::after,
.ref-nav__links a.is-active::after {
    width: 27px;
}

.ref-header-login {
    min-height: 40px;
    padding: 9px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--navy-900);
    border-radius: 6px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    box-shadow: 0 7px 16px rgba(6, 37, 71, .15);
    color: var(--surface);
    font-size: .64rem;
    font-weight: 750;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ref-header-login svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ref-header-login:hover,
.ref-header-login:focus-visible {
    box-shadow: 0 11px 22px rgba(6, 37, 71, .22);
    transform: translateY(-1px);
}

.ref-nav-toggle {
    display: none;
}

/* Hero */
.ref-hero {
    position: relative;
    isolation: isolate;
    min-height: 515px;
    padding-block: 48px 46px;
    overflow: hidden;
    background: var(--surface);
}

.ref-hero__backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
}

.ref-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, .08), rgba(255, 255, 255, .01) 55%, rgba(255, 255, 255, .24)),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, .7), transparent 48%);
    pointer-events: none;
}

.ref-hero__content {
    position: relative;
    z-index: 1;
    min-height: 437px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ref-hero__copy {
    width: min(760px, 100%);
    min-height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ref-hero h1 {
    margin: 0;
    color: #081b33;
    font-size: clamp(1.75rem, 3.15vw, 2.65rem);
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.ref-hero__title-brand {
    color: var(--teal-600);
}

.ref-hero__copy > p {
    max-width: 650px;
    margin: 10px 0 0;
    color: #65431f;
    font-size: clamp(.63rem, .9vw, .76rem);
    font-weight: 600;
    line-height: 1.9;
}

.ref-hero__actions {
    margin-block-start: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ref-hero__cta {
    min-width: 190px;
    min-height: 44px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--surface);
    font-size: .66rem;
    font-weight: 750;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ref-hero__cta--primary {
    background: linear-gradient(135deg, #159c67, #078a65);
    box-shadow: 0 9px 20px rgba(9, 138, 101, .22);
}

.ref-hero__cta--secondary {
    background: linear-gradient(135deg, #0a2e58, #051f3e);
    box-shadow: 0 9px 20px rgba(5, 31, 62, .2);
}

.ref-hero__cta:hover,
.ref-hero__cta:focus-visible {
    box-shadow: 0 13px 26px rgba(5, 35, 67, .26);
    transform: translateY(-2px);
}

.ref-hero__cards {
    width: calc(100% - 54px);
    margin-block-start: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    transform: translateY(50px);
}

.ref-hero__cards article {
    position: relative;
    min-width: 0;
    min-height: 166px;
    padding: 18px 18px 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(8, 52, 95, .1);
    border-radius: 17px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 12px 28px rgba(5, 35, 67, .12);
    text-align: center;
    backdrop-filter: blur(8px);
}

.ref-hero__cards article::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 44%;
    height: 3px;
    right: 28%;
    top: 0;
    border-radius: 0 0 99px 99px;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
    pointer-events: none;
}

.ref-hero__cards article::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 120px;
    height: 120px;
    left: -66px;
    bottom: -76px;
    border: 18px solid rgba(22, 166, 162, .055);
    border-radius: 50%;
    pointer-events: none;
}

.ref-hero__cards h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    color: #071c34;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.45;
}

.ref-hero__dashboard-preview {
    position: relative;
    z-index: 2;
    width: min(290px, 96%);
    height: 104px;
    margin: auto auto -15px;
    overflow: hidden;
}

.ref-hero__dashboard-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 8px 12px rgba(5, 35, 67, .12));
}

.ref-hero__mini-features {
    position: relative;
    z-index: 2;
    margin-block-start: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.ref-hero__mini-features li {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 6px;
}

.ref-hero__mini-features svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: var(--teal-700);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ref-hero__card--assets .ref-hero__mini-features li:nth-child(2) svg,
.ref-hero__card--opportunities .ref-hero__mini-features li:nth-child(2) svg {
    stroke: var(--gold-600);
}

.ref-hero__card--assets .ref-hero__mini-features li:nth-child(3) svg,
.ref-hero__card--opportunities .ref-hero__mini-features li:nth-child(3) svg {
    stroke: var(--navy-700);
}

.ref-hero__mini-features span {
    color: var(--navy-900);
    font-size: .52rem;
    font-weight: 700;
    line-height: 1.5;
}

/* Main content */
.ref-content {
    width: min(calc(100% - 56px), var(--container));
    margin-inline: auto;
    padding-block: 66px 28px;
    display: grid;
    gap: 18px;
}

.ref-panel {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 3px 12px rgba(5, 35, 67, .025);
}

.ref-section-title h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
}

.ref-section-title p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .59rem;
}

/* Facility discovery */
.ref-facilities {
    position: relative;
    isolation: isolate;
    min-height: 0;
    padding: 26px 26px 28px;
    display: grid;
    gap: 22px;
    overflow: hidden;
    border-color: rgba(8, 127, 131, .14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 96% 0, rgba(22, 166, 162, .11), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(246, 250, 251, .96));
    box-shadow: 0 16px 42px rgba(5, 35, 67, .07);
}

.ref-facilities::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    left: -105px;
    bottom: -115px;
    border: 28px solid rgba(209, 163, 72, .08);
    border-radius: 50%;
}

.ref-facilities__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.ref-facilities__heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.45;
}

.ref-facilities__heading p {
    max-width: 610px;
    margin: 3px 0 0;
    color: #617287;
    font-size: .64rem;
    font-weight: 500;
    line-height: 1.9;
}

.ref-facilities__cta {
    min-height: 43px;
    padding: 10px 17px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(8, 127, 131, .25);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
    box-shadow: 0 9px 22px rgba(8, 127, 131, .18);
    color: var(--surface);
    font-size: .62rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ref-facilities__cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.ref-facilities__cta:hover,
.ref-facilities__cta:focus-visible {
    background: linear-gradient(135deg, var(--navy-800), var(--teal-700));
    box-shadow: 0 12px 27px rgba(5, 35, 67, .2);
    transform: translateY(-2px);
}

.ref-facilities__cta:hover svg,
.ref-facilities__cta:focus-visible svg {
    transform: translateX(-3px);
}

.ref-facility-list {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
    direction: rtl;
}

.ref-facility-list article {
    position: relative;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(8, 52, 95, .1);
    border-radius: 17px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(5, 35, 67, .055);
    text-align: start;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.ref-facility-list article:hover {
    border-color: rgba(8, 127, 131, .3);
    box-shadow: 0 16px 32px rgba(5, 35, 67, .12);
    transform: translateY(-5px);
}

.ref-facility-photo {
    position: relative;
    height: 124px;
    overflow: hidden;
    background: #dce7ed;
}

.ref-facility-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(3, 26, 49, .28));
    pointer-events: none;
}

.ref-facility-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.ref-facility-list article:hover .ref-facility-photo img {
    transform: scale(1.045);
}

.ref-facility-card__body {
    min-height: 82px;
    padding: 13px 13px 15px;
    display: flex;
    flex: 1 1 auto;
    align-items: flex-start;
    gap: 10px;
}

.ref-facility-card__body > div {
    min-width: 0;
    padding-block-start: 1px;
}

.ref-facility-card__icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin-block-start: -34px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(8, 127, 131, .18);
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #eaf8f5);
    box-shadow: 0 8px 18px rgba(5, 35, 67, .12);
    color: var(--teal-700);
}

.ref-facility-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ref-facility-list h3 {
    margin: 0 0 2px;
    color: var(--navy-900);
    font-size: .73rem;
    font-weight: 800;
    line-height: 1.55;
}

.ref-facility-list p {
    margin: 0;
    color: var(--muted);
    font-size: .51rem;
    font-weight: 500;
    line-height: 1.7;
}

.ref-facility-list--live {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ref-facility-card {
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.ref-facility-card > article {
    min-height: 100%;
}

.ref-facility-list--live .ref-facility-photo {
    height: 178px;
}

.ref-facility-photo__status {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 127, 104, .9);
    box-shadow: 0 5px 14px rgba(4, 28, 53, .16);
    font-size: .48rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.ref-facility-list--live .ref-facility-card__body {
    display: grid;
    min-height: 190px;
    gap: 13px;
    padding: 17px;
}

.ref-facility-card__heading {
    display: grid;
    gap: 3px;
}

.ref-facility-card__heading > span {
    color: var(--teal-700);
    font-size: .49rem;
    font-weight: 750;
}

.ref-facility-list--live h3 {
    font-size: .78rem;
}

.ref-facility-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ref-facility-card__facts > span {
    display: grid;
    gap: 2px;
    padding: 8px 10px;
    border: 1px solid rgba(8, 52, 95, .08);
    border-radius: 10px;
    background: #f6f9fa;
}

.ref-facility-card__facts small {
    color: var(--muted);
    font-size: .43rem;
}

.ref-facility-card__facts strong {
    overflow: hidden;
    color: var(--navy-900);
    font-size: .52rem;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ref-facility-card__link {
    align-self: end;
    color: var(--teal-700);
    font-size: .5rem;
    font-weight: 760;
}

.ref-facility-card__link::after {
    margin-inline-start: 6px;
    content: "←";
}

.ref-facilities__empty {
    padding: 34px 20px;
    border: 1px dashed rgba(8, 127, 131, .3);
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, .78);
}

.ref-facilities__empty strong {
    display: block;
    color: var(--navy-900);
    font-size: .78rem;
}

.ref-facilities__empty p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .55rem;
}

/* Public facility details */
.public-facility-page {
    min-height: calc(100vh - 160px);
    padding: 42px 0 64px;
    background:
        radial-gradient(circle at 90% 0, rgba(22, 166, 162, .08), transparent 28rem),
        #f6f9fa;
}

.public-facility-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--teal-700);
    font-size: .61rem;
    font-weight: 750;
    text-decoration: none;
}

.public-facility-back::before {
    margin-inline-end: 7px;
    content: "→";
}

.public-facility {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    overflow: hidden;
    border: 1px solid rgba(8, 52, 95, .1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(5, 35, 67, .09);
}

.public-facility__media {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #dce7ed;
}

.public-facility__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-facility__media > span {
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 127, 104, .92);
    font-size: .52rem;
    font-weight: 760;
}

.public-facility__content {
    display: flex;
    flex-direction: column;
    padding: 38px;
}

.public-facility__type {
    color: var(--teal-700);
    font-size: .58rem;
    font-weight: 760;
}

.public-facility__content h1 {
    margin: 6px 0 3px;
    color: var(--navy-900);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.4;
}

.public-facility__location,
.public-facility__description {
    color: var(--muted);
    font-size: .62rem;
    line-height: 1.9;
}

.public-facility__description {
    margin: 18px 0 24px;
    color: #40566e;
}

.public-facility__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 28px;
}

.public-facility__facts > div {
    padding: 13px;
    border: 1px solid rgba(8, 52, 95, .09);
    border-radius: 12px;
    background: #f7fafb;
}

.public-facility__facts dt {
    color: var(--muted);
    font-size: .48rem;
}

.public-facility__facts dd {
    margin: 3px 0 0;
    color: var(--navy-900);
    font-size: .62rem;
    font-weight: 760;
}

.public-facility__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.public-facility-not-found {
    padding: 70px 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    text-align: center;
    background: #fff;
}

.public-facility-not-found h1 {
    margin: 0;
    color: var(--navy-900);
}

.public-facility-not-found p {
    color: var(--muted);
}

.public-facility-not-found a {
    color: var(--teal-700);
    font-weight: 750;
}

@media (max-width: 900px) {
    .ref-facility-list--live {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-facility {
        grid-template-columns: 1fr;
    }

    .public-facility__media {
        min-height: 340px;
    }
}

@media (max-width: 600px) {
    .ref-facility-list--live {
        grid-template-columns: 1fr;
    }

    .ref-facility-list--live .ref-facility-card,
    .ref-facility-list--live .ref-facility-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .ref-facility-list--live .ref-facility-photo {
        height: 190px;
    }

    .public-facility-page {
        padding: 24px 0 40px;
    }

    .public-facility {
        border-radius: 18px;
    }

    .public-facility__media {
        min-height: 250px;
    }

    .public-facility__content {
        padding: 24px 18px;
    }

    .public-facility__facts {
        grid-template-columns: 1fr;
    }

    .public-facility__actions,
    .public-facility__actions .ref-hero__cta {
        width: 100%;
    }
}

/* Platform flow */
.ref-platform-flow {
    position: relative;
    isolation: isolate;
    padding: 26px 26px 28px;
    overflow: hidden;
    border: 1px solid rgba(8, 127, 131, .14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 96% 0, rgba(22, 166, 162, .11), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(246, 250, 251, .96));
    box-shadow: 0 16px 42px rgba(5, 35, 67, .07);
}

.ref-platform-flow::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    left: -105px;
    bottom: -115px;
    border: 28px solid rgba(209, 163, 72, .08);
    border-radius: 50%;
}

.ref-platform-flow__heading {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    text-align: start;
}

.ref-platform-flow__heading::after {
    display: none;
}

.ref-platform-flow__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block-end: 4px;
    color: var(--gold-600);
    font-size: .58rem;
    font-weight: 700;
}

.ref-platform-flow__eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
}

.ref-platform-flow__heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.45;
}

.ref-platform-flow__heading p {
    margin: 3px 0 0;
    color: #617287;
    font-size: .64rem;
    font-weight: 500;
    line-height: 1.9;
}

.ref-platform-flow ol {
    position: relative;
    z-index: 1;
    margin-block-start: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
    direction: rtl;
}

.ref-platform-flow li {
    position: relative;
    min-width: 0;
    min-height: 202px;
    height: 100%;
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    border: 1px solid rgba(8, 52, 95, .1);
    border-radius: 17px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(5, 35, 67, .055);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ref-platform-flow li::before {
    content: "";
    position: absolute;
    inset-inline: 30%;
    top: 0;
    height: 3px;
    border-radius: 0 0 99px 99px;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
}

.ref-platform-flow li:not(:last-child)::after {
    content: "\2039";
    position: absolute;
    z-index: 2;
    left: -15px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 127, 131, .18);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #eef8f6);
    color: var(--gold-600);
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(5, 35, 67, .08);
    transform: translate(-1px, -50%);
}

.ref-platform-flow li:hover {
    border-color: rgba(8, 127, 131, .3);
    box-shadow: 0 16px 32px rgba(5, 35, 67, .12);
    transform: translateY(-5px);
}

.ref-flow-step {
    position: absolute;
    right: 13px;
    top: 12px;
    min-width: 38px;
    height: 25px;
    padding-inline: 9px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(209, 163, 72, .28);
    border-radius: 99px;
    background: linear-gradient(145deg, #fffaf0, var(--gold-100));
    color: var(--gold-600);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.ref-flow-icon {
    width: 78px;
    height: 78px;
    margin-block-end: 14px;
    flex: 0 0 auto;
    filter: drop-shadow(0 9px 12px rgba(5, 35, 67, .1));
}

.ref-flow-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ref-platform-flow li > div {
    min-width: 0;
}

.ref-platform-flow h3 {
    margin: 0 0 6px;
    color: var(--navy-900);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.5;
}

.ref-platform-flow p {
    margin: 0;
    color: var(--muted);
    font-size: .53rem;
    font-weight: 500;
    line-height: 1.8;
}

/* Management suite */
.ref-suite {
    position: relative;
    isolation: isolate;
    min-height: 330px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    border: 1px solid rgba(8, 127, 131, .14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 96% 0, rgba(22, 166, 162, .11), transparent 31%),
        linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(246, 250, 251, .96));
    box-shadow: 0 16px 42px rgba(5, 35, 67, .07);
}

.ref-suite::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 210px;
    height: 210px;
    left: -112px;
    bottom: -124px;
    border: 30px solid rgba(209, 163, 72, .08);
    border-radius: 50%;
}

.ref-suite__copy {
    position: relative;
    z-index: 2;
}

.ref-suite__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block-end: 4px;
    color: var(--gold-600);
    font-size: .58rem;
    font-weight: 700;
}

.ref-suite__eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-500), var(--teal-500));
}

.ref-suite__copy h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.45;
}

.ref-suite__copy > p {
    max-width: 640px;
    margin: 5px 0 0;
    color: #617287;
    font-size: .62rem;
    font-weight: 500;
    line-height: 1.9;
}

.ref-suite__copy ul {
    margin-block: 20px 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ref-suite__copy li {
    min-width: 0;
    min-height: 72px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(8, 52, 95, .09);
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 7px 18px rgba(5, 35, 67, .045);
}

.ref-suite__copy li > span {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(8, 127, 131, .15);
    border-radius: 13px;
    background: linear-gradient(145deg, #ffffff, #eaf8f5);
    color: var(--teal-700);
}

.ref-suite__copy li > span svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ref-suite__copy li > div {
    min-width: 0;
}

.ref-suite__copy li strong {
    display: block;
    color: var(--navy-900);
    font-size: .58rem;
    font-weight: 800;
    line-height: 1.55;
}

.ref-suite__copy li small {
    display: block;
    color: var(--muted);
    font-size: .46rem;
    font-weight: 500;
    line-height: 1.65;
}

.ref-suite__visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    height: 280px;
    display: grid;
    place-items: center;
}

.ref-suite__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(5, 35, 67, .08));
}

/* Custom footer */
.ref-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #05264a, #07365e);
    color: var(--surface);
}

.ref-footer__pattern {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(30deg, transparent 48%, rgba(65, 201, 194, .7) 49% 51%, transparent 52%),
        linear-gradient(-30deg, transparent 48%, rgba(65, 201, 194, .7) 49% 51%, transparent 52%);
    background-size: 68px 118px;
    mask-image: linear-gradient(90deg, #000 0 15%, transparent 35% 70%, #000 90%);
}

.ref-footer__grid {
    position: relative;
    z-index: 2;
    min-height: 185px;
    padding-block: 27px 20px;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 0;
}

.ref-footer__grid > div {
    padding-inline: 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-inline-start: 1px solid rgba(255, 255, 255, .2);
}

.ref-footer__grid > div:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
}

.ref-footer .ref-brand__copy strong {
    color: var(--surface);
}

.ref-footer .ref-brand__copy small {
    color: rgba(255, 255, 255, .56);
}

.ref-footer__brand > p {
    max-width: 250px;
    margin: 10px 0 12px;
    color: rgba(255, 255, 255, .67);
    font-size: .57rem;
    line-height: 1.9;
}

.ref-socials {
    display: flex;
    gap: 9px;
    direction: ltr;
}

.ref-socials a {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    font-size: .47rem;
    transition: background .2s ease, color .2s ease;
}

.ref-socials a:hover,
.ref-socials a:focus-visible {
    background: var(--surface);
    color: var(--navy-900);
}

.ref-footer__grid h2 {
    margin: 4px 0 10px;
    font-size: .74rem;
}

.ref-footer__grid > div > a,
.ref-footer__grid > div > span {
    margin-block: 2px;
    color: rgba(255, 255, 255, .7);
    font-size: .55rem;
}

.ref-footer__grid > div > a:hover,
.ref-footer__grid > div > a:focus-visible {
    color: var(--surface);
}

.ref-footer__copyright {
    position: relative;
    z-index: 2;
    margin: 0;
    padding-block: 11px 18px;
    color: rgba(255, 255, 255, .55);
    font-size: .5rem;
    text-align: center;
}

@media (max-width: 1160px) {
    .ref-header__inner {
        gap: 22px;
    }

    .ref-nav__links li {
        padding-inline: 12px;
    }

    .ref-brand__copy small {
        display: none;
    }

    .ref-suite {
        padding: 28px 30px;
        gap: 26px;
    }
}

@media (max-width: 920px) {
    body {
        background: #f3f7f8;
    }

    .ref-page {
        background-size: 24px 24px;
    }

    .ref-header {
        position: sticky;
        top: 0;
        border-block-end-color: rgba(8, 52, 95, .08);
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 8px 24px rgba(5, 35, 67, .07);
        backdrop-filter: blur(16px);
    }

    .ref-header__inner {
        width: min(calc(100% - 32px), var(--container));
        min-height: 72px;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .ref-header-login {
        display: none;
    }

    .ref-nav-toggle {
        min-width: 92px;
        min-height: 44px;
        padding: 9px 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid rgba(8, 127, 131, .16);
        border-radius: 13px;
        background: #f6fbfb;
        color: var(--navy-900);
        box-shadow: 0 5px 14px rgba(5, 35, 67, .07);
        cursor: pointer;
    }

    .ref-nav-toggle > span {
        width: 19px;
        display: grid;
        gap: 4px;
    }

    .ref-nav-toggle i {
        height: 2px;
        border-radius: 99px;
        background: currentColor;
    }

    .ref-nav-toggle b {
        font-size: .62rem;
    }

    .ref-nav {
        position: absolute;
        z-index: 10;
        width: min(calc(100% - 32px), 420px);
        right: 16px;
        top: calc(100% + 8px);
    }

    .ref-nav__links {
        display: none;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        overflow: hidden;
        border: 1px solid rgba(8, 52, 95, .1);
        border-radius: 20px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 18px 44px rgba(5, 35, 67, .18);
        backdrop-filter: blur(18px);
    }

    .ref-nav__links.is-open,
    html:not(.js) .ref-nav__links {
        display: flex;
    }

    .ref-nav__links a {
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        display: flex;
        align-items: center;
        border-radius: 12px;
        font-size: .68rem;
    }

    .ref-nav__links a:hover,
    .ref-nav__links a:focus-visible,
    .ref-nav__links a.is-active {
        background: var(--teal-100, #e7f6f5);
    }

    .ref-nav__links li {
        padding-inline: 0;
    }

    .ref-nav__links li + li::before {
        display: none;
    }

    .ref-nav__links a::after {
        display: none;
    }

    .ref-hero {
        width: calc(100% - 32px);
        min-height: 560px;
        margin: 16px auto 0;
        padding: 38px 24px 28px;
        border: 1px solid rgba(8, 127, 131, .09);
        border-radius: 30px;
        background: #f8fbfb;
        box-shadow: 0 18px 46px rgba(5, 35, 67, .1);
    }

    .ref-hero__backdrop {
        border-radius: inherit;
    }

    .ref-hero__content {
        width: 100%;
        min-height: 494px;
    }

    .ref-hero__copy {
        min-height: 250px;
    }

    .ref-hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .ref-hero__copy > p {
        font-size: .67rem;
    }

    .ref-hero__cta {
        border-radius: 13px;
    }

    .ref-hero__cards {
        width: 100%;
        margin-block-start: 34px;
        gap: 12px;
        transform: none;
    }

    .ref-hero__cards article {
        min-height: 174px;
        padding: 18px 15px 14px;
        border-radius: 21px;
        box-shadow: 0 12px 28px rgba(5, 35, 67, .11);
    }

    .ref-content {
        padding-block: 24px 30px;
        gap: 20px;
    }

    #facilities,
    #how-it-works,
    #about,
    #contact {
        scroll-margin-top: 88px;
    }

    .ref-panel,
    .ref-platform-flow,
    .ref-suite {
        border-radius: 26px;
        box-shadow: 0 12px 32px rgba(5, 35, 67, .07);
    }

    .ref-facilities {
        padding: 24px;
    }

    .ref-facility-list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .ref-facility-list article {
        grid-column: span 2;
        border-radius: 19px;
        box-shadow: 0 8px 22px rgba(5, 35, 67, .07);
    }

    .ref-facility-list article:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .ref-facility-list article:nth-child(5) {
        grid-column: 4 / span 2;
    }

    .ref-platform-flow {
        padding: 24px;
    }

    .ref-platform-flow ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .ref-platform-flow li:not(:last-child)::after {
        display: none;
    }

    .ref-platform-flow li {
        border-radius: 20px;
        box-shadow: 0 8px 22px rgba(5, 35, 67, .07);
    }

    .ref-suite {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .ref-suite__visual {
        width: min(520px, 100%);
        height: 260px;
        margin-inline: auto;
    }

}

@media (max-width: 680px) {
    .ref-container,
    .ref-content {
        width: min(calc(100% - 24px), var(--container));
    }

    .ref-header__inner {
        width: min(calc(100% - 24px), var(--container));
        min-height: 64px;
    }

    .ref-brand__mark {
        width: 44px;
        height: 44px;
    }

    .ref-brand__copy strong {
        font-size: 1.25rem;
    }

    .ref-nav-toggle {
        min-width: 44px;
        width: 44px;
        min-height: 44px;
        padding: 9px;
    }

    .ref-nav-toggle b {
        display: none;
    }

    .ref-nav {
        width: calc(100% - 24px);
        right: 12px;
    }

    .ref-hero {
        width: calc(100% - 20px);
        min-height: auto;
        margin-block-start: 10px;
        padding: 28px 14px 20px;
        border-radius: 26px;
    }

    .ref-hero__backdrop {
        height: 340px;
        top: 170px;
        bottom: auto;
        object-fit: cover;
        object-position: center bottom;
        opacity: .88;
    }

    .ref-hero::after {
        background:
            linear-gradient(to bottom, #f8fbfb 0 24%, rgba(248, 251, 251, .32) 49%, rgba(248, 251, 251, .82) 69%, #f8fbfb 83%),
            linear-gradient(90deg, rgba(255, 255, 255, .18), transparent 50%, rgba(255, 255, 255, .16));
    }

    .ref-hero__content {
        width: 100%;
        min-height: 0;
    }

    .ref-hero__copy {
        min-height: 0;
    }

    .ref-hero h1 {
        max-width: 360px;
        font-size: clamp(1.38rem, 7vw, 1.8rem);
        line-height: 1.48;
        letter-spacing: -.035em;
    }

    .ref-hero h1 br {
        display: none;
    }

    .ref-hero__copy > p {
        max-width: 350px;
        margin-block-start: 9px;
        font-size: .61rem;
        line-height: 1.9;
    }

    .ref-hero__actions {
        width: 100%;
        margin-block-start: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        transform: none;
    }

    .ref-hero__cta {
        min-width: 0;
        min-height: 50px;
        padding: 9px 7px;
        border-radius: 14px;
        font-size: .55rem;
        line-height: 1.6;
    }

    .ref-hero__cards {
        width: calc(100% + 28px);
        margin-block-start: 166px;
        margin-inline: -14px;
        padding: 4px 14px 12px;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 14px;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
        transform: none;
    }

    .ref-hero__cards::-webkit-scrollbar {
        display: none;
    }

    .ref-hero__cards article {
        min-width: 0;
        min-height: 174px;
        flex: 0 0 calc(100% - 46px);
        padding: 18px 16px 14px;
        scroll-snap-align: start;
    }

    .ref-hero__cards h2 {
        margin-block-end: 12px;
        font-size: .86rem;
    }

    .ref-hero__dashboard-preview {
        width: min(310px, 98%);
        height: 112px;
    }

    .ref-hero__mini-features svg {
        width: 52px;
        height: 52px;
    }

    .ref-hero__mini-features span {
        font-size: .58rem;
    }

    .ref-content {
        padding-block: 18px 26px;
        gap: 16px;
    }

    .ref-facilities {
        padding: 20px 14px 18px;
        gap: 16px;
        border-radius: 24px;
    }

    .ref-facilities__intro {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .ref-facilities__heading h2 {
        font-size: 1.12rem;
    }

    .ref-facilities__heading p {
        font-size: .6rem;
    }

    .ref-facilities__cta {
        width: 100%;
        min-height: 48px;
        border-radius: 14px;
    }

    .ref-facility-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ref-facility-list article,
    .ref-facility-list article:nth-child(4),
    .ref-facility-list article:nth-child(5) {
        grid-column: auto;
    }

    .ref-facility-list article:last-child {
        grid-column: 1 / 3;
        width: calc((100% - 12px) / 2);
        justify-self: center;
    }

    .ref-facility-photo {
        height: 126px;
    }

    .ref-facility-card__body {
        min-height: 78px;
        padding-inline: 12px;
    }

    .ref-facility-card__icon {
        width: 42px;
        height: 42px;
    }

    .ref-facility-list h3 {
        font-size: .67rem;
    }

    .ref-facility-list p {
        font-size: .48rem;
    }

    .ref-platform-flow ol {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ref-platform-flow {
        padding: 20px 14px 18px;
        border-radius: 24px;
    }

    .ref-platform-flow__heading h2 {
        font-size: 1.12rem;
    }

    .ref-platform-flow__heading p {
        font-size: .6rem;
    }

    .ref-platform-flow__eyebrow {
        font-size: .55rem;
    }

    .ref-platform-flow li {
        min-height: 118px;
        padding: 16px 14px;
        display: grid;
        grid-template-columns: 68px 1fr;
        gap: 13px;
        border-radius: 18px;
        text-align: start;
    }

    .ref-flow-step {
        right: auto;
        left: 12px;
        top: 11px;
    }

    .ref-flow-icon {
        width: 64px;
        height: 64px;
        margin: 0;
    }

    .ref-platform-flow li > div {
        align-self: center;
    }

    .ref-platform-flow h3 {
        font-size: .74rem;
    }

    .ref-suite {
        padding: 20px 14px 18px;
        border-radius: 24px;
        text-align: start;
    }

    .ref-suite__copy ul {
        grid-template-columns: 1fr;
        gap: 9px;
        text-align: start;
    }

    .ref-suite__eyebrow {
        font-size: .55rem;
    }

    .ref-suite__copy h2 {
        font-size: 1.12rem;
    }

    .ref-suite__copy > p {
        font-size: .6rem;
    }

    .ref-suite__copy li {
        min-height: 72px;
        border-radius: 16px;
    }

    .ref-suite__visual {
        height: 210px;
    }

    .ref-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ref-footer__grid > div {
        min-height: 150px;
        padding: 20px;
        border-block-start: 1px solid rgba(255, 255, 255, .15);
    }

    .ref-footer__grid > div:nth-child(-n+2) {
        border-block-start: 0;
    }

    .ref-footer__grid > div:nth-child(odd) {
        border-inline-start: 0;
    }

    .ref-footer__grid > div:first-child {
        padding-inline-start: 20px;
    }

}

@media (max-width: 430px) {
    .ref-hero__cta {
        font-size: .5rem;
    }

    .ref-hero__cards article {
        flex-basis: calc(100% - 38px);
    }

    .ref-facility-photo {
        height: 112px;
    }

    .ref-facility-card__body {
        min-height: 74px;
    }

    .ref-facility-card__icon {
        width: 38px;
        height: 38px;
    }

    .ref-footer__grid {
        grid-template-columns: 1fr;
    }

    .ref-footer__grid > div,
    .ref-footer__grid > div:nth-child(-n+2) {
        min-height: auto;
        padding: 23px 0;
        border-inline-start: 0;
        border-block-start: 1px solid rgba(255, 255, 255, .15);
    }

    .ref-footer__grid > div:first-child {
        padding-inline-start: 0;
        border-block-start: 0;
    }
}

@media (max-width: 360px) {
    html,
    body {
        min-width: 0;
    }

    .ref-hero__actions {
        grid-template-columns: 1fr;
    }

    .ref-hero__cards {
        margin-block-start: 145px;
    }

    .ref-facility-list {
        grid-template-columns: 1fr;
    }

    .ref-facility-list article:last-child {
        grid-column: auto;
        width: 100%;
    }

    .ref-facility-photo {
        height: 156px;
    }
}

/* Keep live facility cards readable on phones. This must remain after the
   generic responsive card rules above so they cannot restore two columns. */
@media (max-width: 680px) {
    .ref-facility-list.ref-facility-list--live {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: auto;
        gap: 14px;
    }

    .ref-facility-list--live .ref-facility-card,
    .ref-facility-list--live .ref-facility-card:last-child {
        grid-column: auto;
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .ref-facility-list--live .ref-facility-card > article {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

    .ref-facility-list--live .ref-facility-photo {
        height: clamp(170px, 55vw, 230px);
    }

    .ref-facility-list--live .ref-facility-card__body {
        min-height: 0;
        gap: 12px;
        padding: 16px;
    }

    .ref-facility-list--live h3 {
        font-size: .88rem;
        line-height: 1.5;
    }

    .ref-facility-list--live .ref-facility-card__heading > span,
    .ref-facility-list--live .ref-facility-card__heading p {
        font-size: .56rem;
        line-height: 1.75;
    }

    .ref-facility-list--live .ref-facility-card__facts small {
        font-size: .48rem;
    }

    .ref-facility-list--live .ref-facility-card__facts strong,
    .ref-facility-list--live .ref-facility-card__link {
        font-size: .58rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
