﻿.torx-unified-header {
  z-index: 9999;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

body:has(.torx-unified-header) {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(.torx-unified-header) #masthead {
  display: none !important;
}

/* Unified site header â€” all pages */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block;
  min-height: auto;
  padding: 0;
  overflow: visible;
  border-bottom: 1px solid rgba(53, 98, 230, .1);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 28px);
  min-height: 84px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 78px);
}

.site-header .logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .logo-wrap img {
  display: block;
  height: 38px;
  width: auto;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 44px);
  flex: 1;
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.torx-unified-header .nav-plain,
.torx-unified-header .nav-trigger,
.torx-unified-header .nav-links a,
.torx-unified-header .nav-links button {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.site-header .nav-links a.nav-plain {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1e293b;
  opacity: .84;
  transition: color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.site-header .nav-links a.nav-plain:hover,
.site-header .nav-links a.nav-plain.active {
  color: #345df4;
  opacity: 1;
  text-decoration: none !important;
}

.site-header .nav-links a.nav-plain.active {
  box-shadow: inset 0 -2px 0 #345df4;
}

.site-header .nav-item {
  position: relative;
}

.site-header .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #1e293b;
  font: inherit;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: .84;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.site-header .nav-trigger:hover,
.site-header .nav-mega.is-open .nav-trigger,
.site-header .nav-mega.is-active .nav-trigger,
.site-header .nav-dropdown.is-open .nav-trigger,
.site-header .nav-dropdown.is-active .nav-trigger {
  color: #345df4;
  opacity: 1;
  text-decoration: none;
}

.site-header .nav-mega.is-active > .nav-trigger,
.site-header .nav-dropdown.is-active > .nav-trigger {
  box-shadow: inset 0 -2px 0 #345df4;
}

.site-header .nav-chevron {
  font-size: 11px;
  transition: transform .2s ease;
}

.site-header .nav-mega.is-open .nav-chevron,
.site-header .nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.site-header .nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 120;
  width: min(340px, calc(100vw - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(53, 98, 230, .1);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .14);
}

.site-header .nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(53, 98, 230, .1);
  border-left: 1px solid rgba(53, 98, 230, .1);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.dropdown-link {
  display: block;
  border-radius: 14px;
  padding: 12px 14px;
  color: inherit;
  transition: background .2s ease, transform .2s ease;
}

.dropdown-link:hover {
  background: rgba(49, 92, 244, .06);
  transform: translateX(2px);
}

.dropdown-link strong {
  display: block;
  margin-bottom: 3px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.dropdown-link span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.dropdown-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  border-top: 1px solid rgba(53, 98, 230, .08);
  padding: 12px 14px 4px;
  color: #345df4;
  font-size: 13px;
  font-weight: 800;
}

.site-header .nav-mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 120;
  width: min(920px, calc(100vw - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(53, 98, 230, .1);
  border-radius: 22px;
  padding: 28px 30px 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.site-header .nav-mega-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(53, 98, 230, .1);
  border-left: 1px solid rgba(53, 98, 230, .1);
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.mega-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(220px, 1fr) minmax(240px, 1.15fr);
  gap: 28px;
}

.mega-col h4 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.mega-link {
  display: block;
  margin-bottom: 18px;
  color: inherit;
  transition: transform .2s ease;
}

.mega-link:last-child {
  margin-bottom: 0;
}

.mega-link:hover {
  transform: translateX(3px);
}

.mega-link strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
}

.mega-link span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.mega-link-enterprise {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(251, 191, 36, .22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(251, 191, 36, .08), rgba(79, 124, 255, .06));
}

.mega-link-enterprise:hover {
  transform: translateX(0) translateY(-2px);
  border-color: rgba(251, 191, 36, .35);
  box-shadow: 0 12px 32px rgba(251, 191, 36, .1);
}

.mega-link-enterprise strong {
  color: #0f172a;
}

.mega-enterprise-tag {
  display: inline-flex;
  margin-left: 6px;
  border-radius: 999px;
  padding: 2px 8px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1200;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.mega-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mega-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 98, 230, .12);
  background: rgba(248, 250, 255, .92);
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.mega-chip:hover {
  border-color: rgba(52, 93, 244, .28);
  background: #fff;
  color: #345df4;
}

.mega-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: #345df4;
  font-size: 14px;
  font-weight: 800;
}

.mega-promo {
  display: grid;
  gap: 14px;
  align-content: start;
}

.mega-card {
  display: block;
  min-height: 132px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  color: inherit;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.mega-card:hover {
  transform: translateY(-2px);
}

.mega-card-light {
  background: linear-gradient(135deg, #f5f0ff, #ebe4ff);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, .08);
}

.mega-card-dark {
  position: relative;
  background: linear-gradient(145deg, #0f1b4d, #1a2f7a 55%, #243d99);
  color: #fff;
  min-height: 148px;
}

.mega-card-enterprise {
  position: relative;
  background: linear-gradient(145deg, #0a0f2c, #151d4a 50%, #1a1048);
  color: #fff;
  min-height: 148px;
  border: 1px solid rgba(251, 191, 36, .18);
  box-shadow: 0 16px 40px rgba(10, 15, 44, .28);
}

.mega-card-enterprise .mega-card-link {
  color: #fcd34d;
}

.mega-card-art-enterprise {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: auto;
}

.mega-card-art-enterprise .enterprise-node {
  display: block;
  border: 1px solid rgba(251, 191, 36, .22);
  border-radius: 10px;
  padding: 6px 8px;
  background: rgba(251, 191, 36, .08);
  color: #fcd34d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.mega-card-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.mega-card-copy p {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
  opacity: .88;
}

.mega-card-light .mega-card-copy p {
  color: #475569;
}

.mega-card-link {
  font-size: 12px;
  font-weight: 800;
  opacity: .92;
}

.mega-card-art {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 118px;
}

.mega-card-art .bubble {
  display: block;
  margin-bottom: 6px;
  border-radius: 12px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

.mega-card-art .bubble.user {
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
}

.mega-card-art .bubble.ai {
  background: rgba(255, 255, 255, .92);
  color: #1e293b;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header .header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #325cf4, #a63ff0);
  color: #fff;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(76, 83, 232, .22);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}

.site-header .header-cta::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  animation: torxHeaderShine 4s ease-in-out infinite;
}

.site-header .header-cta:hover {
  transform: translateY(-2px);
}

.site-header .header-cart {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(53, 98, 230, .14);
  border-radius: 14px;
  background: rgba(248, 250, 255, .92);
  color: #345df4;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.site-header .header-cart:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 98, 230, .28);
  background: #fff;
}

.site-header .header-cart svg {
  display: block;
}

.site-header .header-cart .cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #325cf4, #a63ff0);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.site-header .header-cart .cart-count[data-empty="true"] {
  display: none;
}

@keyframes torxHeaderShine {
  0%, 58% { transform: translateX(0) skewX(-18deg); }
  76%, 100% { transform: translateX(430%) skewX(-18deg); }
}

@media (max-width: 1100px) {
  .mega-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mega-promo {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile drawer navigation */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(53, 98, 230, .14);
  border-radius: 12px;
  background: rgba(248, 250, 255, .92);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1e293b;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 960px) {
  .site-header .nav-links {
    display: none !important;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 64px;
    gap: 10px;
    padding: 0 clamp(12px, 4vw, 20px);
  }

  .nav-mobile-toggle {
    grid-column: 1;
  }

  .site-header .logo-wrap {
    grid-column: 2;
    flex: none;
    min-width: 0;
    justify-self: start;
  }

  .site-header .logo-wrap img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 140px;
  }

  .site-header-actions {
    grid-column: 3;
    flex: 0 0 auto;
    gap: 6px;
    margin-left: 0;
  }

  .site-header .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
    box-shadow: 0 10px 24px rgba(76, 83, 232, .18);
  }

  .site-header .header-cart {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .site-header .header-cta {
    display: none;
  }

  .site-header-inner {
    min-height: 58px;
  }

  .site-header .logo-wrap img {
    height: 30px;
  }
}

.mobile-nav-open .nav-mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-open .nav-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-open .nav-mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  border: 0;
  padding: 0;
  background: rgba(11, 16, 40, .48);
  cursor: pointer;
}

.nav-mobile-overlay[hidden],
.nav-mobile-drawer[hidden] {
  display: none !important;
}

.nav-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  z-index: 10001;
  display: flex;
  width: min(100vw, 360px);
  height: 100dvh;
  flex-direction: column;
  border-right: 1px solid rgba(53, 98, 230, .12);
  background: #fff;
  box-shadow: 24px 0 64px rgba(15, 23, 42, .18);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  overflow: hidden;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s ease;
}

.mobile-nav-open .nav-mobile-drawer,
body.torx-mobile-nav-open > .nav-mobile-drawer {
  transform: translateX(0);
  visibility: visible;
}

@media (min-width: 961px) {
  .nav-mobile-overlay,
  .nav-mobile-drawer {
    display: none !important;
  }
}

/* Drawer/overlay mount on body — escape header backdrop-filter + page theme leaks */
body > .nav-mobile-overlay,
body > .nav-mobile-drawer {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: #1e293b;
}

body > .nav-mobile-drawer a,
body > .nav-mobile-drawer button {
  color: inherit;
}

body > .nav-mobile-drawer .mobile-nav__link,
body > .nav-mobile-drawer .mobile-nav__trigger {
  color: #1e293b;
}

body > .nav-mobile-drawer .mobile-nav__link.is-active,
body > .nav-mobile-drawer .mobile-nav__trigger:hover,
body > .nav-mobile-drawer .mobile-nav__accordion.is-open > .mobile-nav__trigger {
  color: #345df4;
}

body > .nav-mobile-drawer .mobile-nav__trigger--nested {
  color: #475569;
}

body > .nav-mobile-drawer .mobile-nav__sub {
  color: #334155;
}

body > .nav-mobile-drawer .mobile-nav__sub:hover,
body > .nav-mobile-drawer .mobile-nav__sub-more {
  color: #345df4;
}

body > .nav-mobile-drawer .mobile-nav__sub-enterprise {
  color: #92400e;
}

body > .nav-mobile-drawer .mobile-nav__head strong {
  color: #0f172a;
}

body > .nav-mobile-drawer .mobile-nav__chip {
  color: #334155;
}

body > .nav-mobile-drawer .mobile-nav__store-copy {
  color: #0f172a;
}

body > .nav-mobile-drawer .mobile-nav__store.is-active .mobile-nav__store-copy {
  color: #345df4;
}

body > .nav-mobile-drawer .mobile-nav__cta {
  color: #fff;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(53, 98, 230, .08);
}

.mobile-nav__head strong {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.mobile-nav__close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: rgba(248, 250, 255, .92);
  color: #1e293b;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 20px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav__link.is-active {
  background: rgba(52, 93, 244, .08);
  color: #345df4;
}

.mobile-nav__accordion,
.mobile-nav__nested {
  margin-top: 4px;
}

.mobile-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #1e293b;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.mobile-nav__trigger:hover,
.mobile-nav__accordion.is-open > .mobile-nav__trigger {
  background: rgba(52, 93, 244, .06);
  color: #345df4;
}

.mobile-nav__trigger--nested {
  min-height: 44px;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.mobile-nav__chevron {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
}

.mobile-nav__accordion.is-open > .mobile-nav__trigger .mobile-nav__chevron,
.mobile-nav__nested.is-open > .mobile-nav__trigger .mobile-nav__chevron {
  transform: rotate(-135deg);
}

.mobile-nav__panel {
  overflow: hidden;
  padding: 2px 0 8px;
}

.mobile-nav__panel--nested {
  padding-left: 8px;
}

.mobile-nav__store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid rgba(50, 92, 244, .16);
  border-radius: 12px;
  background: rgba(248, 250, 255, .96);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.mobile-nav__store:hover,
.mobile-nav__store.is-active {
  border-color: rgba(50, 92, 244, .28);
  background: #fff;
}

.mobile-nav__store.is-active {
  color: #345df4;
}

.mobile-nav__store-icon {
  display: grid;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #325cf4, #a63ff0);
  color: #fff;
}

.mobile-nav__store-copy {
  flex: 1;
  min-width: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.mobile-nav__store.is-active .mobile-nav__store-copy {
  color: #345df4;
}

.mobile-nav__store-arrow {
  flex-shrink: 0;
  color: #345df4;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.mobile-nav__group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(53, 98, 230, .08);
}

.mobile-nav__label {
  display: block;
  padding: 8px 12px 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px 0 24px;
  border-radius: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.mobile-nav__sub:hover {
  background: rgba(52, 93, 244, .06);
  color: #345df4;
}

.mobile-nav__sub-more {
  margin-top: 4px;
  padding-left: 24px;
  color: #345df4;
  font-weight: 700;
}

.mobile-nav__sub-enterprise {
  color: #92400e;
}

.mobile-nav__tag {
  display: inline-flex;
  margin-left: auto;
  border-radius: 999px;
  padding: 2px 7px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1200;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mobile-nav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 12px 8px 24px;
}

.mobile-nav__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(53, 98, 230, .14);
  background: rgba(248, 250, 255, .96);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.mobile-nav__chip:hover {
  border-color: rgba(52, 93, 244, .28);
  background: #fff;
  color: #345df4;
}

.mobile-nav__foot {
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(53, 98, 230, .08);
}

.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #325cf4, #a63ff0);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
