.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 16px;
  background: rgba(235, 244, 255, .94);
  padding: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.mobile-menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #0d1726;
}

.pref-switcher {
  min-height: 38px;
  max-width: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid rgba(0, 119, 255, .16);
  border-radius: 999px;
  color: #0d396f;
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.pref-switcher:hover,
.pref-switcher:focus-visible {
  border-color: rgba(0, 119, 255, .34);
  color: #005ee8;
  background: #fff;
  outline: none;
  transform: translateY(-1px);
}

.pref-switcher--mobile {
  width: 100%;
  max-width: none;
  min-height: 40px;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(0, 119, 255, .08);
}

.pref-modal-open {
  overflow: hidden;
}

.pref-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 16px;
}

.pref-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 38, .42);
}

.pref-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: min(720px, calc(100vh - 32px));
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  color: #0d1726;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(0, 184, 255, .14), transparent 36%),
    linear-gradient(180deg, #fff, #f2f8ff);
  box-shadow: 0 28px 80px rgba(5, 24, 54, .24), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.pref-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 13px;
  color: #1d2b3e;
  background: rgba(235, 244, 255, .95);
  font: inherit;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.pref-modal__close:hover,
.pref-modal__close:focus-visible {
  color: #005ee8;
  outline: none;
}

.pref-modal__head {
  display: grid;
  gap: 8px;
  padding-right: 38px;
}

.pref-modal__eyebrow {
  margin: 0;
  color: #0077ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.pref-modal__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.pref-modal__head p:not(.pref-modal__eyebrow) {
  margin: 0;
  color: #647388;
  font-size: 15px;
  line-height: 1.45;
}

.pref-form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.pref-field {
  display: grid;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.pref-field legend {
  padding: 0;
  color: #2b3b51;
  font-size: 13px;
  font-weight: 900;
}

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

.pref-option {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  color: #233044;
  background: rgba(255, 255, 255, .78);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}

.pref-option:hover,
.pref-option:focus-visible {
  border-color: rgba(0, 119, 255, .28);
  color: #005ee8;
  outline: none;
}

.pref-option.is-active {
  border-color: rgba(0, 119, 255, .42);
  color: #fff;
  background: linear-gradient(135deg, #0068f5, #00a7f2);
  box-shadow: 0 12px 24px rgba(0, 119, 255, .18);
}

.pref-save {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0068f5, #00a7f2);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 119, 255, .22);
}

.pref-save:hover,
.pref-save:focus-visible {
  outline: none;
  filter: brightness(1.03);
}

.pref-later {
  margin: -4px 0 0;
  color: #708096;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.ua-flights-modal-open {
  overflow: hidden;
}

.ua-flights-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: grid;
  place-items: center;
  padding: 16px;
}

.ua-flights-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 38, .46);
}

.ua-flights-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  color: #0d1726;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(0, 184, 255, .13), transparent 36%),
    linear-gradient(180deg, #fff, #f3f8ff);
  box-shadow: 0 28px 80px rgba(5, 24, 54, .24), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.ua-flights-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 13px;
  color: #1d2b3e;
  background: rgba(235, 244, 255, .96);
  font: inherit;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.ua-flights-modal__close:hover,
.ua-flights-modal__close:focus-visible {
  color: #005ee8;
  outline: none;
}

.ua-flights-modal__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 119, 255, .13), rgba(0, 184, 255, .16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.ua-flights-modal__mark span {
  width: 28px;
  height: 28px;
  display: block;
  border: 2px solid rgba(0, 105, 232, .78);
  border-radius: 999px;
  position: relative;
}

.ua-flights-modal__mark span::before,
.ua-flights-modal__mark span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: rgba(0, 105, 232, .78);
  transform: translateX(-50%);
}

.ua-flights-modal__mark span::before {
  top: 6px;
  width: 2px;
  height: 10px;
}

.ua-flights-modal__mark span::after {
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
}

.ua-flights-modal__copy {
  display: grid;
  gap: 10px;
  padding-right: 36px;
}

.ua-flights-modal__copy h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0;
}

.ua-flights-modal__copy p {
  margin: 0;
  color: #5f6f84;
  font-size: 15px;
  line-height: 1.48;
}

.ua-flights-modal__action {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0068f5, #00a7f2);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 119, 255, .22);
}

.ua-flights-modal__action:hover,
.ua-flights-modal__action:focus-visible {
  outline: none;
  filter: brightness(1.03);
}

.ua-flights-modal__note {
  margin: 12px 0 0;
  color: #708096;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
}

.site-header-nav__link,
.site-footer__link,
.mobile-nav-panel__link,
.mobile-nav-panel__legal a {
  text-decoration: none;
}

.site-header-nav__link {
  padding: 9px 12px;
  border-radius: 999px;
  color: #425166;
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease;
}

.site-header-nav__link:hover,
.site-header-nav__link:focus-visible,
.main-nav__link:hover,
.main-nav__link:focus-visible {
  background: rgba(0, 119, 255, .09);
  color: #005ee8;
  outline: none;
}

.site-footer {
  position: relative;
  margin-top: 20px;
  padding: 34px 0 28px;
  color: #233044;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(0, 119, 255, .10), transparent 44%),
    radial-gradient(ellipse at 86% 20%, rgba(0, 184, 255, .12), transparent 42%),
    linear-gradient(180deg, rgba(245, 250, 255, .84), rgba(232, 243, 255, .78));
  border-top: 1px solid rgba(255, 255, 255, .85);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 30px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 22px 60px rgba(11, 36, 71, .08), inset 0 1px 0 rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.site-footer__col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer__col h2 {
  margin: 0 0 4px;
  color: #0d1726;
  font-size: 15px;
  letter-spacing: 0;
}

.site-footer__link {
  width: fit-content;
  color: #5d6c81;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  transition: color .18s ease, transform .18s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #006ee8;
  transform: translateX(2px);
  outline: none;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  margin-top: 18px;
  color: #6b7789;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: start;
  padding: 66px 10px 10px;
  background: rgba(13, 23, 38, .18);
  backdrop-filter: blur(10px);
}

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

.mobile-nav-panel__inner {
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(0, 184, 255, .12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(240, 248, 255, .94));
  box-shadow: 0 28px 80px rgba(11, 36, 71, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.mobile-nav-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-panel__head strong {
  font-size: 18px;
}

.mobile-nav-panel__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  background: rgba(235, 244, 255, .96);
  color: #0d1726;
  font-size: 24px;
  line-height: 1;
}

.mobile-nav-panel__links {
  display: grid;
  gap: 8px;
}

.mobile-nav-panel__link {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 16px;
  color: #182438;
  background: rgba(255, 255, 255, .7);
  font-weight: 850;
}

.mobile-nav-panel__link:hover,
.mobile-nav-panel__link:focus-visible {
  color: #005ee8;
  background: #eef6ff;
  outline: none;
}

.mobile-nav-panel__cta {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0968ee, #00aef5);
}

.mobile-nav-panel__cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
}

.mobile-nav-panel__cta a {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #006ee8;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-nav-panel__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
}

.mobile-nav-panel__legal a {
  color: #647388;
  font-weight: 750;
}

.info-page {
  padding: 42px 0 58px;
}

.info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 92% 0%, rgba(0, 184, 255, .10), transparent 38%),
    rgba(255, 255, 255, .72);
  box-shadow: 0 24px 68px rgba(11, 36, 71, .10), inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.info-card h1 {
  margin: 0 0 16px;
  color: #0d1726;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.info-card p,
.info-card li {
  color: #5f6f84;
  font-size: 16px;
  line-height: 1.55;
}

.info-card p {
  margin: 0 0 12px;
}

.info-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.info-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0068f5, #00b8ff);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 119, 255, .22);
}

@media (max-width: 1080px) {
  .main-nav,
  .site-header-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  body.site-menu-open {
    overflow: hidden;
  }

  .site-footer {
    margin-top: 12px;
    padding: 22px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 26px;
  }

  .site-footer__col {
    gap: 7px;
  }

  .site-footer__col h2 {
    font-size: 14px;
  }

  .site-footer__link {
    font-size: 13px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
    font-size: 12px;
  }

  .info-page {
    padding: 22px 0 36px;
  }

  .info-card {
    padding: 22px;
    border-radius: 28px;
  }

  .info-card h1 {
    font-size: 32px;
  }

  .info-card p,
  .info-card li {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .mobile-nav-panel {
    padding: 62px 8px 8px;
  }

  .mobile-nav-panel__inner {
    border-radius: 24px;
    padding: 14px;
  }

  .site-footer__grid {
    border-radius: 24px;
  }

  .info-card {
    padding: 18px;
    border-radius: 24px;
  }
}

/* mobile-only compact polish */
@media (max-width: 768px) {
  .mobile-nav-panel {
    padding: 60px 8px 8px;
  }

  .mobile-nav-panel__inner {
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
  }

  .mobile-nav-panel__head strong {
    font-size: 16px;
  }

  .mobile-nav-panel__close {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  .mobile-nav-panel__links {
    gap: 6px;
  }

  .mobile-nav-panel__link {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 14px;
  }

  .mobile-nav-panel__link:first-child {
    color: #006ee8;
    background: rgba(0, 119, 255, .08);
  }

  .mobile-nav-panel__cta {
    gap: 8px;
    padding: 11px;
    border-radius: 18px;
  }

  .mobile-nav-panel__cta p {
    font-size: 14px;
  }

  .mobile-nav-panel__cta a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-nav-panel__legal {
    gap: 6px 10px;
    font-size: 11px;
  }

  .site-footer {
    padding: 16px 0 18px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    padding: 11px;
    border-radius: 22px;
  }

  .site-footer__col {
    gap: 5px;
  }

  .site-footer__col h2 {
    margin-bottom: 2px;
    font-size: 13px;
  }

  .site-footer__link {
    font-size: 12px;
    line-height: 1.14;
  }

  .site-footer__bottom {
    gap: 7px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 430px) {
  .mobile-nav-panel {
    padding-top: 58px;
  }

  .site-footer__grid {
    gap: 10px 8px;
  }
}

/* final narrow mobile polish */
@media (max-width: 768px) {
  .mobile-nav-panel__legal {
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 12px;
    line-height: 1.2;
  }

  .site-footer {
    margin-top: 6px;
  }
}

@media (max-width: 380px) {
  .mobile-nav-panel__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__link {
    overflow-wrap: anywhere;
  }
}

/* chrome_perf_v1: lighter shared glass surfaces on desktop Chrome. */
@media (min-width: 769px) {
  .site-footer__grid,
  .info-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    contain: paint;
  }

  .site-footer__grid {
    box-shadow: 0 18px 46px rgba(11, 36, 71, .07), inset 0 1px 0 rgba(255,255,255,.82);
  }

  .info-card {
    box-shadow: 0 18px 52px rgba(11, 36, 71, .08), inset 0 1px 0 rgba(255,255,255,.82);
  }
}

/* Header domain wordmark */
.brand-title {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  white-space: nowrap;
  color: #0d1726;
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

.brand-main,
.brand-dot {
  display: inline-block;
  line-height: 1;
}

.brand-dot {
  color: #0578ff;
  font-weight: 900;
}

@media (max-width: 420px) {
  .brand-title {
    font-size: 17px;
  }
}

/* frontend_perf_v1: avoid large-area backdrop work during first paint. */
.mobile-nav-panel,
.mobile-nav-panel__cta {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.mobile-nav-panel {
  background: rgba(13, 23, 38, .24);
}

/* no_public_chat_v1: keep public pages free of floating chat overlays. */
iframe[src*="tawk.to"],
iframe[title*="chat" i],
.tawk-min-container,
.tawk-button,
.tawk-widget {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
