

:root {
  --site-bg: #f8f9fc;
  --site-surface: #ffffff;
  --site-text: #0f172a;
  --site-muted: #64748b;
  --site-accent: #1d4ed8;

  --bg: #f8f9fc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #1d4ed8;
  --accent2: #ea580c;
  --line: #e2e8f0;
  --tint: #eef2fb;

  --radius: 4px;
  --shadow: 0 1px 2px rgba(15,23,42,.05), 0 6px 20px rgba(15,23,42,.06);
  --shadow-lift: 0 8px 28px rgba(15,23,42,.10);
  --wrap: 1200px;
  --pad: clamp(18px, 4vw, 40px);

  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif}

* { box-sizing: border-box}

html { scroll-behavior: smooth}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden}

img { max-width: 100%}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-align: left}

h1 { font-size: clamp(2rem, 5vw, 3.4rem)}
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem)}
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem)}

p { margin: 0 0 1rem; max-width: 68ch}

a { color: var(--accent); text-decoration: none}
a:hover { text-decoration: underline}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px}

.hvr-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad)}

.hvr-section {
  padding-block: clamp(56px, 8vw, 96px)}
.hvr-section--tint { background: var(--tint)}

.hvr-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem}
.hvr-eyebrow--warm { color: var(--accent2)}

.hvr-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch}

.hvr-wave {
  width: 100%;
  height: 22px;
  display: block;
  color: var(--accent);
  opacity: .5}
.hvr-wave path {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 300;
  animation: signal-run 6s linear infinite}
@keyframes signal-run {
  to { stroke-dashoffset: -612}
}
@media (prefers-reduced-motion: reduce) {
  .hvr-wave path { animation: none; stroke-dasharray: none}
}

.hvr-btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .8em 1.5em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  line-height: 1.1}
.hvr-btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-lift)}
.hvr-btn--warm { --btn-bg: var(--accent2)}
.hvr-btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--line)}
.hvr-btn--ghost:hover { border-color: var(--accent); background: var(--tint)}

.hvr-topbar {
  background: var(--text);
  color: #cbd5e1;
  font-size: .82rem}
.hvr-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.4rem;
  padding-block: .5rem}
.hvr-topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  align-items: center}
.hvr-topbar a { color: #cbd5e1}
.hvr-topbar a:hover { color: #fff}
.hvr-topbar__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff}
.hvr-topbar__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 0 0 rgba(234,88,12,.6);
  animation: live-pulse 1.8s ease-out infinite}
@keyframes live-pulse {
  70% { box-shadow: 0 0 0 7px rgba(234,88,12,0)}
  100% { box-shadow: 0 0 0 0 rgba(234,88,12,0)}
}

#site-head-zep {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease}
#site-head-zep.is-scrolled { box-shadow: var(--shadow)}

.hvr-nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem}

.hvr-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none}
.hvr-brand:hover { text-decoration: none}
.hvr-brand__icon {
  width: 34px; height: 34px;
  display: block;
  color: var(--accent);
  flex: none}
.hvr-brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1}

.hvr-nav-bar__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem 1.4rem;
  margin-left: auto;
  list-style: none;
  padding: 0; margin-block: 0}
.hvr-nav-bar__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--text);
  padding: .35rem 0;
  position: relative}
.hvr-nav-bar__link:hover { color: var(--accent); text-decoration: none}
.hvr-nav-bar__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--accent2);
  transition: right .2s ease}
.hvr-nav-bar__link:hover::after,
.hvr-nav-bar__link.is-current::after { right: 0}

.hvr-nav-bar__cta { margin-left: .4rem}

#hamburger-x6l {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center}

#dim-v44 {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 80}
#dim-v44.is-open { opacity: 1; visibility: visible}

#off-canvas-q75 {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(80vw, 320px);
  background: var(--surface);
  z-index: 90;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: -8px 0 30px rgba(15,23,42,.12)}
#off-canvas-q75.is-open { transform: translateX(0)}
.hvr-drawer__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between}
#drawer-close-mvg {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text)}
.hvr-drawer__menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column}
.hvr-drawer__menu a {
  display: block;
  padding: .85rem .2rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text)}
.hvr-drawer__menu a:hover { color: var(--accent); text-decoration: none}

.hvr-hero {
  padding-block: clamp(48px, 7vw, 88px)}
.hvr-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center}
@media (min-width: 900px) {
  .hvr-hero__grid { grid-template-columns: 1.05fr .95fr}
}
.hvr-hero__signal { min-width: 0}
.hvr-hero__title { margin-bottom: .35em}
.hvr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem}
.hvr-hero__collage {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0,1fr));
  gap: 14px}
.hvr-hero__frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow)}
.hvr-hero__frame img {
  display: block; width: 100%; height: 100%;
  object-fit: cover}
.hvr-hero__frame--tall {
  grid-row: span 2;
  aspect-ratio: 3/4}
.hvr-hero__frame--wide { aspect-ratio: 4/3}

.hvr-page-hero {
  padding-block: clamp(48px, 7vw, 80px)}
.hvr-page-hero--tint { background: var(--tint)}
.hvr-page-hero--center {
  text-align: center}
.hvr-page-hero--center h1,
.hvr-page-hero--center .hvr-eyebrow { text-align: center}
.hvr-page-hero--center .hvr-lead {
  margin-inline: auto}

.hvr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 2.2rem}
.hvr-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .18s ease, box-shadow .2s ease}
.hvr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift)}
.hvr-card__media { aspect-ratio: 16/10; overflow: hidden}
.hvr-card__media img {
  display: block; width: 100%; height: 100%;
  object-fit: cover}
.hvr-card__body { padding: 1.3rem 1.4rem 1.6rem}
.hvr-card__body h3 { margin-bottom: .4rem}
.hvr-card__body p { color: var(--muted); margin-bottom: 0}

.hvr-card__schedule--live::before {
  content: "On air";
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: .5rem}

.hvr-numlist {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden}
.hvr-numlist__item {
  background: var(--surface);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.4rem;
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  align-items: start}
.hvr-numlist__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 0}
.hvr-numlist__body h3 { margin-bottom: .3rem}
.hvr-numlist__body p { margin-bottom: 0; color: var(--muted)}

.hvr-altrows {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
  margin-top: 2.4rem}
.hvr-altrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center}
@media (min-width: 860px) {
  .hvr-altrow { grid-template-columns: 1fr 1fr}
  .hvr-altrow--flip .hvr-altrow__media { order: 2}
}
.hvr-altrow__media {
  min-width: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow)}
.hvr-altrow__media img {
  display: block; width: 100%; height: 100%;
  object-fit: cover}
.hvr-altrow__text { min-width: 0}
.hvr-altrow__text p { color: var(--muted)}

.hvr-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 2.2rem}
.hvr-team__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0}
.hvr-team__photo { aspect-ratio: 3/4; overflow: hidden}
.hvr-team__photo img {
  display: block; width: 100%; height: 100%;
  object-fit: cover}
.hvr-team__meta { padding: 1rem 1.2rem 1.3rem}
.hvr-team__meta h3 { margin-bottom: .1rem; font-size: 1.1rem}
.hvr-team__role {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent2)}

.hvr-newsletter--band {
  background: var(--accent);
  color: #fff}
.hvr-newsletter--band h2,
.hvr-newsletter--band .hvr-eyebrow { color: #fff}
.hvr-newsletter--band .hvr-lead { color: #dbe4ff}
.hvr-newsletter__inline {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.4rem;
  max-width: 560px}
.hvr-newsletter__inline input {
  flex:1 1 auto;
  min-width: 0}

.hvr-newsletter--split .hvr-newsletter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center}
@media (min-width: 820px) {
  .hvr-newsletter--split .hvr-newsletter__grid { grid-template-columns: 1fr 1fr}
}
.hvr-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-width: 0}

.hvr-faq {
  margin-top: 2rem;
  max-width: 820px}
.hvr-faq__item {
  border-top: 1px solid var(--line)}
.hvr-faq__item:last-child { border-bottom: 1px solid var(--line)}
[data-acc-trigger] {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem .2rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text)}
[data-acc-trigger] .hvr-faq__mark {
  flex: none;
  color: var(--accent);
  transition: transform .3s ease;
  font-size: 1rem}
.is-open [data-acc-trigger] .hvr-faq__mark { transform: rotate(45deg)}
.hvr-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease}
.is-open .hvr-faq__body { max-height: 600px}
.hvr-faq__body p {
  padding: 0 .2rem 1.2rem;
  color: var(--muted);
  margin: 0}

.hvr-faq--compact {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 36px)}
.hvr-faq--compact .hvr-faq__qa { min-width: 0}
.hvr-faq--compact h3 { font-size: 1.05rem; margin-bottom: .3rem}
.hvr-faq--compact p { color: var(--muted); margin: 0}

.hvr-cta--strip {
  background: var(--text);
  color: #fff}
.hvr-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem}
.hvr-cta--strip h2 { color: #fff; margin-bottom: .3rem}
.hvr-cta--strip p { color: #cbd5e1; margin: 0}

.hvr-cta--card { text-align: center}
.hvr-cta__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 56px);
  max-width: 760px;
  margin-inline: auto}
.hvr-cta__card h2,
.hvr-cta__card .hvr-eyebrow { text-align: center}
.hvr-cta__card p { margin-inline: auto}
.hvr-cta__card .hvr-hero__actions,
.hvr-cta--card .hvr-hero__actions { justify-content: center}

.hvr-cta--split .hvr-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px)}
@media (min-width: 800px) {
  .hvr-cta--split .hvr-cta__grid { grid-template-columns: 1.2fr 1fr}
}
.hvr-cta__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem}
.hvr-cta__info a {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: var(--text);
  font-weight: 600}
.hvr-cta__info i { color: var(--accent); width: 1.2em; text-align: center}

.hvr-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
  min-width: 0}
.hvr-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem}
.hvr-field input,
.hvr-field textarea,
.hvr-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  width: 100%;
  min-width: 0}
.hvr-field input:focus,
.hvr-field textarea:focus,
.hvr-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,.15)}
.hvr-field textarea { resize: vertical; min-height: 140px}

.hvr-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 52px);
  margin-top: 2rem;
  align-items: start}
@media (min-width: 860px) {
  .hvr-contact__grid { grid-template-columns: 1.3fr 1fr}
}
.hvr-contact__form { min-width: 0}
.hvr-contact__aside {
  min-width: 0;
  background: var(--tint);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px)}
.hvr-contact__aside ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem}
.hvr-contact__aside li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  align-items: baseline}
.hvr-contact__aside i { color: var(--accent); width: 1.2em}
.hvr-contact__aside a { color: var(--text); font-weight: 600}

.hvr-footer {
  background: var(--text);
  color: #cbd5e1;
  padding-block: clamp(48px, 7vw, 80px) 0}
.hvr-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(28px, 4vw, 48px)}
.hvr-footer__brand { min-width: 0}
.hvr-footer__brand .hvr-brand__name { color: #fff}
.hvr-footer__blurb { color: #94a3b8; margin-top: .8rem}
.hvr-footer__col { min-width: 0}
.hvr-footer__col h4 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase}
.hvr-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem}
.hvr-footer__col a { color: #cbd5e1}
.hvr-footer__col a:hover { color: #fff}
.hvr-footer__news .hvr-newsletter__form { margin-top: .9rem}
.hvr-footer__news input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: #fff}
.hvr-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem}
.hvr-footer__social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  color: #cbd5e1}
.hvr-footer__social a:hover { color: #fff; border-color: var(--accent2)}

.hvr-footer__bar {
  margin-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem}
.hvr-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  list-style: none;
  margin: 0; padding: 0}
.hvr-footer__legal a { color: #94a3b8}
.hvr-footer__legal a:hover { color: #fff}

#float-bar-2x1 {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50}
#back-top-7qa {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform .15s ease, background .2s ease}
#back-top-7qa.is-visible { display: inline-flex}
#back-top-7qa:hover { transform: translateY(-2px); background: var(--accent2)}

.hvr-legal {
  padding-block: clamp(48px, 7vw, 88px)}
.hvr-legal__body {
  max-width: 780px}
.hvr-legal__body h2 { margin-top: 2.2rem}
.hvr-legal__body h3 { margin-top: 1.6rem}
.hvr-legal__body p,
.hvr-legal__body li { color: #334155}
.hvr-legal__body dl { display: grid; gap: .3rem 1rem}
.hvr-legal__body dt { font-weight: 600}

.swipe-deck-gry { padding-bottom: 3rem !important}
.swipe-deck-gry .swiper-slide { height: auto}
.swiper-pagination-bullet { background: var(--muted); opacity: .5}
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1}
.swipe-deck-gry .swiper-button-prev,
.swipe-deck-gry .swiper-button-next {
  color: var(--accent)}
.swipe-deck-gry .swiper-button-prev::after,
.swipe-deck-gry .swiper-button-next::after { font-size: 1.4rem}

.modal-7b8,
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  background: rgba(15,23,42,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease}
.modal-7b8.is-open,
.site-modal.is-open { opacity: 1; visibility: visible}
.modal-7b8__dialog,
.site-modal__dialog {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  max-width: 460px;
  width: 100%;
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
  transform: translateY(12px);
  transition: transform .2s ease}
.modal-7b8.is-open .modal-7b8__dialog,
.site-modal.is-open .site-modal__dialog { transform: translateY(0)}
.modal-7b8__dialog h3,
.site-modal__dialog h3 { text-align: center}
.modal-7b8__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem}
.modal-7b8__dialog p { margin-inline: auto; color: var(--muted)}

@media (max-width: 860px) {
  .hvr-nav-bar__menu,
  .hvr-nav-bar__cta { display: none}
  #hamburger-x6l { display: inline-flex}
}

@media (min-width: 861px) {
  #off-canvas-q75, #dim-v44 { display: none}
}

.cbar-t07-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998}
.cbar-t07-overlay.is-open{opacity:1;visibility:visible}
.cbar-t07-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999}
.cbar-t07-panel.is-open{opacity:1;visibility:visible}
.cbar-t07-panel h3{margin:0 0 8px;font-size:1.2rem}
.cbar-t07-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem}
.cbar-t07-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2)}
.cbar-t07-cat h4{margin:0 0 2px;font-size:.98rem}
.cbar-t07-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem}
.cbar-t07-switch{position:relative;flex:0 0 auto;width:44px;height:24px}
.cbar-t07-switch input{opacity:0;width:0;height:0;position:absolute}
.cbar-t07-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer}
.cbar-t07-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s}
.cbar-t07-switch input:checked+span{background:var(--site-accent,#2b7)}
.cbar-t07-switch input:checked+span::before{transform:translateX(20px)}
.cbar-t07-switch input:disabled+span{opacity:.6;cursor:not-allowed}
.cbar-t07-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.cbar-t07-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer}
.cbar-t07-actions #cbar-t07-all{background:var(--site-accent,#2b7);color:#fff}
.cbar-t07-actions #cbar-t07-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4)}
.cbar-t07-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem}
.cbar-t07-links a{color:var(--site-accent,#2b7);text-decoration:underline}
.cbar-t07-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem}

.cbar-t07-overlay{background:transparent;pointer-events:none}
.cbar-t07-panel{left:24px;bottom:24px;width:min(380px,calc(100% - 32px));border-radius:16px;transform:translateY(24px)}
.cbar-t07-panel.is-open{transform:translateY(0)}
@media(max-width:520px){.cbar-t07-panel{left:16px;right:16px;width:auto}}
@media(max-width:520px){.cbar-t07-actions button{min-width:100%}}
#float-bar-2x1{left:auto !important;right:18px !important}
@media(max-width:520px){#float-bar-2x1{right:12px !important}}

.thanks-pop-onx{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,10,14,.55);backdrop-filter:blur(2px)}
.thanks-pop-onx.is-open{display:flex}
.thanks-pop-onx__box{width:min(420px,100%);background:var(--site-surface,#fff);color:var(--site-text,#15181d);
  border-radius:16px;padding:32px 28px;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.28);
  animation:thanks-pop-onx-in .22s ease-out}
@keyframes thanks-pop-onx-in{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:none}}
.thanks-pop-onx__mark{width:56px;height:56px;margin:0 auto 18px;border-radius:50%;display:flex;
  align-items:center;justify-content:center;font-size:26px;line-height:1;
  background:var(--site-accent,#2e7d5b);color:#fff}
.thanks-pop-onx__title{margin:0 0 10px;font-size:1.35rem;line-height:1.25}
.thanks-pop-onx__text{margin:0 0 24px;line-height:1.6;color:var(--site-muted,#5b6472)}
.thanks-pop-onx__close{display:inline-block;cursor:pointer;border:0;border-radius:999px;
  padding:12px 30px;font:inherit;font-weight:600;background:var(--site-accent,#2e7d5b);color:#fff}
.thanks-pop-onx__close:hover{filter:brightness(1.08)}
.thanks-pop-onx__close:focus-visible{outline:2px solid var(--site-text,#15181d);outline-offset:3px}
@media(prefers-reduced-motion:reduce){.thanks-pop-onx__box{animation:none}}

*,*::before,*::after{box-sizing:border-box}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%}
img,svg,video,iframe,canvas{max-width:100%}
table{max-width:100%}

.simpleParallax{display:block;width:100%;height:100%}
.simpleParallax img{width:100%;height:100%;object-fit:cover}

blockquote, figure { margin-left: 0; margin-right: 0}

figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0}

html.no-aos [data-aos]{opacity:1 !important;transform:none !important}

@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important}
}

.legal-doc{max-width:72ch;margin:0 auto;padding:64px 20px;line-height:1.7}
.legal-doc h1{margin:0 0 .6em}
.legal-doc h2{margin:1.8em 0 .5em}
.legal-doc h3{margin:1.4em 0 .4em}
.legal-doc p,.legal-doc li{margin:0 0 .8em}
.legal-doc ul,.legal-doc ol{padding-left:1.4em;margin:0 0 1em}
.legal-doc table{width:100%;border-collapse:collapse;margin:0 0 1.2em}
.legal-doc th,.legal-doc td{border:1px solid currentColor;padding:.5em;text-align:left}

@media (max-width: 720px) {
  body { overflow-x: hidden}
  h1, h2, h3, p, li, td { overflow-wrap: break-word}
  
  input, select, textarea { max-width: 100%; min-width: 0}
  
  img, svg, video, iframe, table { max-width: 100%}
}

@media (max-width: 720px) {
  
.hvr-btn,
.hvr-topbar__live,
.hvr-brand,
#off-canvas-q75,
.hvr-drawer__menu,
.hvr-card,
.hvr-card__schedule--live::before,
.hvr-altrows,
.hvr-newsletter__form,
.hvr-cta__info,
.hvr-cta__info a,
.hvr-field,
.hvr-contact__aside ul,
.hvr-footer__col ul,
.hvr-footer__social a,
#back-top-7qa.is-visible,
.modal-7b8, .site-modal,
.modal-7b8__icon,
.cbar-t07-cat,
.cbar-t07-links,
.thanks-pop-onx.is-open,
.thanks-pop-onx__mark { flex-wrap: wrap}
  
.hvr-btn > *,
.hvr-topbar__live > *,
.hvr-brand > *,
#off-canvas-q75 > *,
.hvr-drawer__menu > *,
.hvr-card > *,
.hvr-card__schedule--live::before > *,
.hvr-altrows > *,
.hvr-newsletter__form > *,
.hvr-cta__info > *,
.hvr-cta__info a > *,
.hvr-field > *,
.hvr-contact__aside ul > *,
.hvr-footer__col ul > *,
.hvr-footer__social a > *,
#back-top-7qa.is-visible > *,
.modal-7b8, .site-modal > *,
.modal-7b8__icon > *,
.cbar-t07-cat > *,
.cbar-t07-links > *,
.thanks-pop-onx.is-open > *,
.thanks-pop-onx__mark > * { min-width: 0}
}

.cbar-t07-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998;}
.cbar-t07-overlay.is-open{opacity:1;visibility:visible;}
.cbar-t07-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999;}
.cbar-t07-panel.is-open{opacity:1;visibility:visible;}
.cbar-t07-panel h3{margin:0 0 8px;font-size:1.2rem;}
.cbar-t07-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem;}
.cbar-t07-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2);}
.cbar-t07-cat h4{margin:0 0 2px;font-size:.98rem;}
.cbar-t07-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem;}
.cbar-t07-switch{position:relative;flex:0 0 auto;width:44px;height:24px;}
.cbar-t07-switch input{opacity:0;width:0;height:0;position:absolute;}
.cbar-t07-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer;}
.cbar-t07-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;}
.cbar-t07-switch input:checked+span{background:var(--site-accent,#2b7);}
.cbar-t07-switch input:checked+span::before{transform:translateX(20px);}
.cbar-t07-switch input:disabled+span{opacity:.6;cursor:not-allowed;}
.cbar-t07-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.cbar-t07-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer;}
.cbar-t07-actions #cbar-t07-all{background:var(--site-accent,#2b7);color:#fff;}
.cbar-t07-actions #cbar-t07-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4);}
.cbar-t07-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem;}
.cbar-t07-links a{color:var(--site-accent,#2b7);text-decoration:underline;}
.cbar-t07-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem;}

.cbar-t07-overlay{background:transparent;pointer-events:none;}
.cbar-t07-panel{left:24px;bottom:24px;width:min(380px,calc(100% - 32px));border-radius:16px;transform:translateY(24px);}
.cbar-t07-panel.is-open{transform:translateY(0);}
@media(max-width:520px){.cbar-t07-panel{left:16px;right:16px;width:auto;}}
@media(max-width:520px){.cbar-t07-actions button{min-width:100%;}}
#float-bar-2x1{left:auto !important;right:18px !important;}
@media(max-width:520px){#float-bar-2x1{right:12px !important;}}

.thanks-pop-onx{position:fixed;inset:0;z-index:10000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,10,14,.55);backdrop-filter:blur(2px);}
.thanks-pop-onx.is-open{display:flex;}
.thanks-pop-onx__box{width:min(420px,100%);background:var(--site-surface,#fff);color:var(--site-text,#15181d);
  border-radius:16px;padding:32px 28px;text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.28);
  animation:thanks-pop-onx-in .22s ease-out;}
@keyframes thanks-pop-onx-in{from{opacity:0;transform:translateY(12px) scale(.97);}to{opacity:1;transform:none;}}
.thanks-pop-onx__mark{width:56px;height:56px;margin:0 auto 18px;border-radius:50%;display:flex;
  align-items:center;justify-content:center;font-size:26px;line-height:1;
  background:var(--site-accent,#2e7d5b);color:#fff;}
.thanks-pop-onx__title{margin:0 0 10px;font-size:1.35rem;line-height:1.25;}
.thanks-pop-onx__text{margin:0 0 24px;line-height:1.6;color:var(--site-muted,#5b6472);}
.thanks-pop-onx__close{display:inline-block;cursor:pointer;border:0;border-radius:999px;
  padding:12px 30px;font:inherit;font-weight:600;background:var(--site-accent,#2e7d5b);color:#fff;}
.thanks-pop-onx__close:hover{filter:brightness(1.08);}
.thanks-pop-onx__close:focus-visible{outline:2px solid var(--site-text,#15181d);outline-offset:3px;}
@media(prefers-reduced-motion:reduce){.thanks-pop-onx__box{animation:none;}}

*,*::before,*::after{box-sizing:border-box;}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}
img,svg,video,iframe,canvas{max-width:100%;}
table{max-width:100%;}

.simpleParallax{display:block;width:100%;height:100%;}
.simpleParallax img{width:100%;height:100%;object-fit:cover;}

blockquote, figure { margin-left: 0; margin-right: 0; }

figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0; }

html.no-aos [data-aos]{opacity:1 !important;transform:none !important;}

@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important;}
}

.legal-doc{max-width:72ch;margin:0 auto;padding:64px 20px;line-height:1.7;}
.legal-doc h1{margin:0 0 .6em;}
.legal-doc h2{margin:1.8em 0 .5em;}
.legal-doc h3{margin:1.4em 0 .4em;}
.legal-doc p,.legal-doc li{margin:0 0 .8em;}
.legal-doc ul,.legal-doc ol{padding-left:1.4em;margin:0 0 1em;}
.legal-doc table{width:100%;border-collapse:collapse;margin:0 0 1.2em;}
.legal-doc th,.legal-doc td{border:1px solid currentColor;padding:.5em;text-align:left;}

@media (max-width: 720px) {
  body { overflow-x: hidden; }
  h1, h2, h3, p, li, td { overflow-wrap: break-word; }
  
  input, select, textarea { max-width: 100%; min-width: 0; }
  
  img, svg, video, iframe, table { max-width: 100%; }
}
