@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f7f8f8;
  --surface-2: #eef1f3;
  --ink: #011624;
  --muted: #5b6b76;
  --accent: #ffd100;
  --accent-dark: #f0c400;
  --accent-text: #8a6a00;
  --accent-soft: rgba(255, 209, 0, 0.14);
  --navy-band: #0f171f;
  --coral: #ff5c38;
  --yellow: #ffd100;
  --radius: 16px;
  --radius-sm: 12px;
  --green: #2f9960;
  --line: rgba(1,22,36,.12);
  --line-soft: rgba(1,22,36,.07);
  --max: 1180px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.site-header {
  height: 58px;
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
}

.wordmark img {
  width: 160px;
  height: auto;
}

.back-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 12px/1 var(--font-body);
  cursor: pointer;
  transition: color 160ms ease;
}

.back-link:hover {
  color: var(--ink);
}

.header-link {
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: var(--accent);
  color: var(--ink);
  font: 700 12px/1 var(--font-body);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.header-link:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.header-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.option-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  z-index: 20;
}

.option-switcher a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font: 600 12px/1 var(--font-body);
}

.option-switcher a:first-child {
  border-left: 0;
}

.option-switcher a:hover,
.option-switcher a[aria-current='page'] {
  background: var(--accent);
  color: var(--ink);
}

.cta {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 14px/1 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--accent);
}

.cta:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.cta:active {
  transform: translateY(1px);
}

.cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cta--wide {
  width: 100%;
}

.mobile-apply-bar {
  display: none;
}

.cta-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #070708;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-control {
  position: absolute;
  inset: 0;
  border: 0;
  color: #fff;
  background: rgba(4, 4, 5, 0.5);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease;
}

.video-control.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-control__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.18em;
}

.play-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.72);
}

.play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
  fill: #fff;
}

.video-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.proof-kicker {
  color: var(--accent-text);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rule-title::before {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 2px;
  background: var(--accent);
}

.application {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  background: var(--bg);
}

.application.is-open {
  display: block;
  animation: application-open 180ms ease-out both;
}

@keyframes application-open {
  from { opacity: 0; }
  to { opacity: 1; }
}

.application__progress-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--surface-2);
}

.application__progress {
  position: relative;
  height: 100%;
  width: 33.333%;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  box-shadow: 0 0 12px rgba(255, 209, 0, .55);
  transition: width 180ms cubic-bezier(.2, .75, .25, 1);
}

.application__top {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.application__progress-label {
  color: var(--ink);
  font: 700 13px/1 var(--font-body);
  letter-spacing: .04em;
}

.application__step-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.application__step-nav {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.application__step-nav:hover {
  border-color: var(--line);
  background: var(--surface);
}

.application__step-nav:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.application__step-nav[hidden] {
  display: none;
}

.application__step-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application--calendar [data-step-forward] {
  display: none;
}

.application__close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}

.application__close:hover {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.application__close:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.application__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.application__body {
  width: min(calc(100% - 40px), 660px);
  min-height: 100dvh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 96px 0;
}

.application__body.is-calendar {
  width: min(calc(100% - 48px), 1152px);
  align-content: start;
  padding: 88px 0 0;
}

[data-screen-view],
[data-success] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 140ms ease, transform 180ms cubic-bezier(.2, .75, .25, 1);
  will-change: opacity, transform;
}

[data-screen-view].is-leaving {
  opacity: 0;
  transform: translate3d(var(--flow-exit-x, -10px), 0, 0);
}

[data-screen-view].is-entering,
[data-success].is-entering {
  opacity: 0;
  transform: translate3d(var(--flow-enter-x, 10px), 0, 0);
  transition: none;
}

.application__question {
  margin: 0;
  font: 600 clamp(30px, 4.3vw, 44px)/1.14 var(--font-display);
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.application__intro {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font: 500 15px/1.65 var(--font-body);
}

.application__intro:empty {
  display: none;
}

.application__form {
  margin-top: 34px;
}

.application__form,
.application__fields {
  display: grid;
  gap: 28px;
}

.application__group {
  min-width: 0;
}

.application__label {
  margin: 0 0 12px;
  font: 600 17px/1.45 var(--font-body);
  letter-spacing: -0.01em;
}

.application__helper {
  margin: -6px 0 14px;
  color: var(--muted);
  font: 500 13px/1.55 var(--font-body);
}

.application__choices {
  display: grid;
  gap: 12px;
}

.application__choice {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 30px 1fr 22px;
  align-items: center;
  gap: 15px;
  border: 1.5px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: 500 16px/1.4 var(--font-body);
  letter-spacing: -0.005em;
  box-shadow: 0 1px 2px rgba(1, 22, 36, .05);
  transition: border-color 140ms ease, background-color 140ms ease,
    box-shadow 160ms ease;
}

.application__choice-key {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--line-soft);
  border-radius: 9px;
  background: var(--surface);
  color: var(--muted);
  font: 700 12px/1 var(--font-body);
  letter-spacing: .02em;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.application__choice-label {
  min-width: 0;
}

.application__choice-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  opacity: 0;
  transform: scale(.6);
  transition: opacity 140ms ease, transform 180ms cubic-bezier(.2, .9, .3, 1.4);
}

.application__choice-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application__choice:hover,
.application__choice:focus-visible {
  border-color: rgba(1, 22, 36, .2);
  box-shadow: 0 4px 12px rgba(1, 22, 36, .08);
  outline: none;
}

.application__choice:hover .application__choice-key,
.application__choice:focus-visible .application__choice-key {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.application__choice:focus-visible {
  border-color: var(--ink);
}

.application__choice:active {
  box-shadow: 0 2px 6px rgba(1, 22, 36, .08);
}

.application__choice.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 6px 18px rgba(255, 209, 0, .22);
}

.application__choice.is-selected .application__choice-key {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.application__choice.is-selected .application__choice-check {
  opacity: 1;
  transform: scale(1);
}

.application__field {
  width: 100%;
  padding: 18px 20px;
  border: 1.5px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
  box-shadow: 0 1px 2px rgba(1, 22, 36, .05);
  font: 500 17px/1.35 var(--font-body);
  transition: border-color 140ms ease, box-shadow 160ms ease;
}

.application__field::placeholder {
  color: rgba(91, 107, 118, .62);
  font-weight: 400;
}

.application__field:hover {
  border-color: rgba(1, 22, 36, .18);
}

.application__field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 209, 0, .28);
}

.application__phone {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
}

.application__country-picker {
  position: relative;
  min-width: 0;
}

.application__country-trigger {
  width: 100%;
  height: 100%;
  min-height: 62px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1.5px solid var(--line-soft);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(1, 22, 36, .05);
  font: 600 14px/1 var(--font-body);
  transition: border-color 140ms ease, box-shadow 160ms ease;
}

.application__country-trigger svg {
  width: 13px;
  height: 13px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--muted);
  transition: transform 160ms ease;
}

.application__country-trigger:hover {
  border-color: rgba(1, 22, 36, .18);
}

.application__country-trigger:focus-visible,
.application__country-trigger[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 209, 0, .28);
  outline: none;
}

.application__country-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.application__flag {
  width: 24px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
  object-fit: cover;
}

.application__country-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  max-height: 268px;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(1, 22, 36, .16);
}

.application__country-menu[hidden] {
  display: none;
}

.application__country-option {
  width: 100%;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 11px;
  align-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: 500 13px/1.3 var(--font-body);
  transition: background-color 120ms ease;
}

.application__country-option strong {
  color: var(--muted);
  font-weight: 600;
}

.application__country-option:hover,
.application__country-option:focus-visible {
  background: var(--surface);
  outline: none;
}

.application__country-option[aria-selected="true"] {
  background: var(--accent-soft);
}

.application__country-option[aria-selected="true"] strong {
  color: var(--accent-text);
}

.application__country-native {
  min-width: 0;
}

.application__field--textarea {
  min-height: 156px;
  resize: vertical;
  font-size: 16px;
  line-height: 1.6;
}

.application__character-count {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  text-align: right;
  font: 500 11px/1.4 var(--font-body);
  letter-spacing: .02em;
}

.application__next {
  width: 100%;
  min-height: 58px;
  margin-top: 6px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(255, 209, 0, .34);
}

.application__next:hover {
  box-shadow: 0 10px 24px rgba(1, 22, 36, .18);
}

.application__next[hidden] {
  display: none;
}

.application__error {
  margin: 16px 0 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  background: rgba(255, 92, 56, .09);
  color: #a63b1f;
  font: 600 13px/1.5 var(--font-body);
}

.application__error:empty {
  display: none;
}

.application__error::before {
  content: '';
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
}

.application__field-error {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a63b1f;
  font: 500 12.5px/1.45 var(--font-body);
}

.application__field-error::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--coral);
}

.application__next:disabled {
  cursor: wait;
  opacity: .65;
  box-shadow: none;
}

.application__success {
  display: none;
}

.application__success.is-visible {
  display: block;
}

.application__success h2,
.booking-intro h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font: 600 clamp(30px, 4vw, 48px)/1.08 var(--font-display);
  letter-spacing: -0.02em;
}

.application__success p {
  margin: 0;
  color: var(--muted);
  font: 500 13px/1.55 var(--font-body);
}

.booking-intro {
  width: min(100%, 672px);
  margin: 0 auto 24px;
  text-align: center;
}

.booking-intro > p {
  max-width: 672px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.5;
}

.journey-progress {
  width: min(100%, 672px);
  margin: 0 auto 30px;
}

.journey-progress__label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font: 700 12px/1 var(--font-body);
  letter-spacing: .04em;
}

.journey-progress__track {
  height: 4px;
  overflow: hidden;
  background: var(--surface-2);
}

.journey-progress__fill {
  display: block;
  height: 100%;
  background: var(--accent);
}

.journey-progress--booking .journey-progress__fill { width: 80%; }
.journey-progress--confirmation .journey-progress__fill { width: 90%; }

.calendar-embed {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.calendar-embed__mount {
  min-width: 320px;
  height: 860px;
  overflow: hidden;
}

.calendar-embed__mount iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  overflow: auto;
}

.calendar-embed__error {
  margin: 0;
  padding: 48px 20px;
  color: var(--muted);
  text-align: center;
  font: 500 13px/1.5 var(--font-body);
}

.hub {
  min-height: 100dvh;
  padding: 70px 24px 90px;
  background: #ededeb;
  color: #171719;
  font-family: var(--font-body);
}

.hub__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.hub__top {
  max-width: 720px;
  margin-bottom: 52px;
}

.hub__label {
  margin: 0 0 16px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hub h1 {
  margin: 0;
  font: 600 clamp(40px, 6vw, 72px)/0.98 var(--font-display);
  letter-spacing: -0.02em;
}

.hub__intro {
  margin: 22px 0 0;
  max-width: 650px;
  color: #5d5d63;
  font-size: 17px;
  line-height: 1.65;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #c9c9c5;
  border-left: 1px solid #c9c9c5;
}

.hub-card {
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid #c9c9c5;
  border-bottom: 1px solid #c9c9c5;
  background: #f5f5f2;
  display: flex;
  flex-direction: column;
  transition: background-color 160ms ease;
}

.hub-card:hover {
  background: #fff;
}

.hub-card__number {
  color: #9a9a9b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hub-card h2 {
  margin: 54px 0 12px;
  font: 600 31px/1.05 var(--font-display);
  letter-spacing: -0.02em;
}

.hub-card p {
  margin: 0;
  max-width: 43ch;
  color: #66666c;
  line-height: 1.6;
}

.hub-card__meta {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 700;
}

.hub-card__meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 760px) {
  .mobile-apply-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
    transition:
      opacity 160ms ease,
      transform 180ms cubic-bezier(.2, .75, .25, 1),
      visibility 0s linear 180ms;
  }

  .mobile-apply-bar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .mobile-apply-bar .cta {
    width: 100%;
  }

  body.modal-open .mobile-apply-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
  }

  .site-header {
    display: none;
  }

  .option-switcher {
    right: 10px;
    bottom: 10px;
  }

  .application__top {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .application__body {
    width: min(calc(100% - 36px), 720px);
    align-content: start;
    padding: 118px 0 70px;
  }

  .application__body.is-calendar {
    width: min(calc(100% - 32px), 1152px);
    padding: 80px 0 0;
  }

  .booking-intro { margin-bottom: 24px; }
  .application__success h2 { font-size: 30px; }
  .booking-intro > p { font-size: 14px; line-height: 1.5; }

  .calendar-embed__mount {
    height: 780px;
  }

  .application__question {
    font-size: 29px;
    line-height: 1.18;
  }

  .application__phone {
    grid-template-columns: 96px 1fr;
    gap: 8px;
  }

  .application__country-trigger {
    min-height: 56px;
    padding: 0 10px;
    gap: 7px;
    font-size: 13px;
  }

  .application__country-menu {
    width: min(78vw, 290px);
  }

  .application__intro {
    margin-bottom: 0;
    font-size: 14px;
  }

  .application__form {
    margin-top: 26px;
  }

  .application__choice {
    min-height: 62px;
    padding: 13px 15px;
    gap: 12px;
    grid-template-columns: 28px 1fr 20px;
    font-size: 15px;
  }

  .application__choice-key {
    width: 28px;
    height: 28px;
  }

  .application__field {
    padding: 16px 17px;
    font-size: 16px;
  }

  .application__close {
    width: 38px;
    height: 38px;
  }

  .hub {
    padding: 48px 18px 72px;
  }

  .hub__top {
    margin-bottom: 36px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 300px;
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
