/* ===== NAVBAR ===== */
/* Fixed overlay on the page (sits on top of the hero while transparent).
   Blur/background live on `.navbar__container` (NOT here) — `backdrop-filter`
   on this element would trap `position: fixed` descendants (the mobile menu)
   and make open/close jump.

   Design tokens live on `.navbar` (not `:root`) so they survive Webflow's
   scoped CSS injection — `:root` rules often never reach the component tree. */
.navbar {
  --nav-text: #0e0d0c;
  --nav-desc: #6a6a6b;
  --nav-purple: #7638fa;
  --nav-purple-hover: #5f28e0;
  --nav-border: #eaeaed;
  --nav-gray-bg: #f7f7f8;
  --nav-hover-bg: #fafafb;
  --nav-dark-bg: #14102b;
  --nav-side-pad: 56px;
  /* Mobile top-bar height: 20px pad + 20px content + 20px pad + 1px border */
  --nav-mobile-h: 60px;
  /* Offset when a sitewide CTA/announcement banner sits above the nav */
  --nav-banner-offset: 0rem;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background-color: transparent;
  font-family: "Intervariable", Inter, sans-serif;
}

.navbar--cta-banner {
  --nav-banner-offset: 3.2rem;
  margin-top: var(--nav-banner-offset);
}

/* Mobile hamburger layout — drop the CTA banner offset so the bar sits flush. */
@media (max-width: 1023px) {
  .navbar--cta-banner {
    --nav-banner-offset: 0rem;
    margin-top: 0;
  }
}

/* ===== INNER CONTAINER ===== */
.navbar__container {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 40px;
  border-bottom: 1px solid var(--nav-border);
  padding: 0 var(--nav-side-pad);
  box-sizing: border-box;
  background-color: transparent;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background-color 0.2s ease, border-color 0.2s ease,
    backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}

/* Match the mega-menu close when returning to transparent over the hero */
.navbar--menu-closing .navbar__container {
  transition-duration: 280ms;
}

.navbar--solid .navbar__container {
  background-color: #ffffff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* ===== DARK VARIANT (over hero) ===== */
/* White (#fafafb) text, logo, and chevrons while transparent. Once solid,
   reverts to the standard dark-text white bar. */
.navbar--dark.navbar--transparent .navbar__container {
  border-bottom-color: rgba(250, 250, 251, 0.16);
}

.navbar--dark.navbar--transparent .navbar__nav-link,
.navbar--dark.navbar--transparent .navbar__nav-link:hover,
.navbar--dark.navbar--transparent .navbar__chevron,
.navbar--dark.navbar--transparent .navbar__login,
.navbar--dark.navbar--transparent .navbar__login:hover,
.navbar--dark.navbar--transparent .navbar__back,
.navbar--dark.navbar--transparent .navbar__logo {
  color: #fafafb;
}

.navbar--dark.navbar--transparent .navbar__login-arrow path {
  stroke: #f5f5f7;
}

.navbar--dark.navbar--transparent .navbar__chevron path {
  stroke: #fafafb;
}

.navbar--dark.navbar--transparent .navbar__burger {
  background-color: #fafafb;
}

.navbar--dark.navbar--solid .navbar__login {
  color: var(--nav-purple);
}

.navbar--dark.navbar--solid .navbar__login:hover {
  color: var(--nav-purple-hover);
}

/* Mobile: 20px top/bottom, 24px left/right */
@media (max-width: 1023px) {
  .navbar__container {
    height: auto;
    padding: 20px 24px;
    position: relative;
    z-index: 2;
  }
}

/* ===== BACK BUTTON (replaces logo when a mobile submenu is open) ===== */
.navbar__back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--nav-text);
  flex-shrink: 0;
}

.navbar__back-arrow {
  width: 18px;
  height: 18px;
}

/* ===== LOGO ===== */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #181819;
  transition: color 0.2s ease;
}

.navbar__logo-img,
.navbar__logo-svg {
  height: 20px;
  width: auto;
  display: block;
}

/* ===== DESKTOP NAV ===== */
.navbar__desktop {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .navbar__desktop {
    display: flex;
  }
}

/* ===== NAV LIST ===== */
.navbar__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ===== NAV ITEM ===== */
/* Hit areas touch (no gap) so moving between links keeps the mega menu open.
   Horizontal padding recreates the visual 32px spacing between labels. */
.navbar__nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  height: 100%;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms;
  padding: 0 16px;
  box-sizing: border-box;
}

.navbar__nav-item:first-child {
  padding-left: 0;
}

.navbar__nav-item:last-child {
  padding-right: 0;
}

.navbar__nav-item--active {
  border-bottom-color: var(--nav-purple);
}

/* ===== NAV LINK ===== */
.navbar__nav-link {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.16px;
  line-height: 1.5;
  color: var(--nav-text);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.navbar__nav-link:hover {
  color: var(--nav-text);
  text-decoration: none;
}

/* ===== CHEVRON SVG (desktop nav items) ===== */
.navbar__chevron {
  height: 5px;
  width: 8px;
  color: var(--nav-text);
  transition: transform 200ms, color 0.2s ease;
  flex-shrink: 0;
}

.navbar__chevron path {
  transition: stroke 0.2s ease;
}

.navbar__nav-item--active .navbar__chevron {
  transform: rotate(180deg);
}

/* ===== RIGHT SIDE ACTIONS ===== */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* ===== LOG IN LINK ===== */
.navbar__login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 450;
  letter-spacing: -0.16px;
  color: var(--nav-purple);
  transition: color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.navbar__login:hover {
  color: var(--nav-purple-hover);
}

.navbar__login-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 200ms ease;
}

.navbar__login-arrow path {
  transition: stroke 0.2s ease;
}

.navbar__login:hover .navbar__login-arrow {
  transform: translate3d(3px, 0, 0);
}

/* Match mega-menu close for text/icons returning to transparent */
.navbar--menu-closing .navbar__nav-link,
.navbar--menu-closing .navbar__chevron,
.navbar--menu-closing .navbar__login,
.navbar--menu-closing .navbar__logo,
.navbar--menu-closing .navbar__chevron path,
.navbar--menu-closing .navbar__login-arrow path {
  transition-duration: 280ms;
}

/* ===== CTA BUTTON ===== */
.navbar__cta {
  font-size: 16px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: -0.16px;
  background-color: var(--nav-purple);
  color: #ffffff;
  transition: background-color 200ms;
  text-decoration: none;
  border-radius: 4px;
  padding: 10px 16px;
  white-space: nowrap;
}

.navbar__cta:hover {
  background-color: var(--nav-purple-hover);
}

/* ===== MEGA MENU ===== */
.navbar__mega {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 16px 24px -8px rgba(24, 24, 25, 0.08),
    0 4px 8px -4px rgba(24, 24, 25, 0.06);
  border-bottom: 1px solid var(--nav-border);
  z-index: 40;
  opacity: 0;
  transition: height 400ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.navbar__mega--open {
  opacity: 1;
}

.navbar__mega--closing {
  opacity: 0;
}

.navbar__mega-body {
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease-in-out, transform 180ms ease-in-out;
}

.navbar__mega-body--swap {
  opacity: 0;
  transform: translateY(4px);
}

/* ===== WIDE LAYOUT (full-width columns) ===== */
.navbar__mega-wide {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 40px var(--nav-side-pad);
  box-sizing: border-box;
}

.navbar__mega-wide .navbar__section {
  flex: 1 1 0;
  min-width: 0;
}

/* ===== SPLIT LAYOUT (left links + right panel) ===== */
.navbar__mega-inner {
  display: flex;
  width: 100%;
}

/* Two 50/50 halves */
.navbar__mega-half {
  flex: 1 1 50%;
  min-width: 0;
  padding: 40px;
  box-sizing: border-box;
}

/* Left half aligns its content with the logo/side padding */
.navbar__mega-half:first-child {
  padding-left: var(--nav-side-pad);
}

.navbar__mega-half:last-child {
  padding-right: var(--nav-side-pad);
}

.navbar__mega-half--white {
  background-color: #ffffff;
}

.navbar__mega-half--gray {
  background-color: var(--nav-gray-bg);
}

.navbar__mega-half--dark {
  background-color: #ffffff;
}

/* Left group can host multiple sections side by side */
.navbar__mega-left {
  display: flex;
  gap: 40px;
}

.navbar__mega-left .navbar__section {
  flex: 1 1 0;
  min-width: 0;
}

/* ===== SECTION ===== */
.navbar__section {
  min-width: 0;
}

.navbar__section-cols {
  display: grid;
  gap: 24px;
}

/* ===== PANEL / SECTION TITLE ===== */
.navbar__panel-title {
  color: var(--nav-purple);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 12px;
  margin: 0 0 20px;
}

/* ===== IN-COLUMN SUBHEADING (e.g. RESIDENTAI) ===== */
.navbar__subheading {
  color: var(--nav-purple);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 12px;
  margin: 16px 0 4px;
}

.navbar__link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* ===== MENU LINK ITEM ===== */
.navbar__link {
  display: block;
  padding: 0.625rem 0.75rem 0.625rem;
  transition: background-color 160ms;
  text-decoration: none;
}

.navbar__link:hover {
  background-color: var(--nav-hover-bg);
}

.navbar__mega-half--gray .navbar__link:hover {
  background-color: #f5f5f7;
}

.navbar__link-title {
  display: block;
  letter-spacing: -0.16px;
  color: #0e0d0c;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%; /* 24px */
  letter-spacing: 0.16px;
  margin-bottom: 2px;
}

.navbar__link-desc {
  display: block;
  font-size: 12px;
  font-style: "Intervariable", Inter, sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.14px;
  color: var(--nav-desc);
  margin-top: 2px;
}

/* ===== FEATURED CARDS (LATEST POSTS) ===== */
.navbar__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.navbar__card {
  display: block;
  text-decoration: none;
}

.navbar__card-img-wrap {
  width: 100%;
  aspect-ratio: 296 / 160;
  background-color: #e6e6ea;
  border-radius: 8px;
  overflow: hidden;
}

.navbar__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms;
}

.navbar__card:hover .navbar__card-img {
  transform: scale(1.03);
}

.navbar__card-category {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  color: #6a6a6b;
  margin-top: 12px;
}

.navbar__card-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.14px;
  color: #0e0d0c;
  margin-top: 2px;
}

/* ===== CTA CARD (Company) ===== */
.navbar__cta-card {
  position: relative;
  width: 100%;
  min-height: 199px;
  border-radius: 12px;
  background: var(--nav-dark-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Gradient keeps the copy on solid dark and fades in the graphic on the right */
.navbar__cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--nav-dark-bg) 0%,
    var(--nav-dark-bg) 64%,
    rgba(20, 16, 43, 0.7) 80%,
    rgba(20, 16, 43, 0) 96%
  );
  pointer-events: none;
}

.navbar__cta-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  max-width: 320px;
}

.navbar__cta-card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  color: #ffffff;
  margin: 0;
}

.navbar__cta-card-desc {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(250, 250, 251, 0.7);
  margin: 8px 0 20px;
}

.navbar__cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: gap 160ms;
}

.navbar__cta-card-link:hover {
  gap: 12px;
}

.navbar__cta-card-arrow {
  width: 16px;
  height: 16px;
}

/* Configurable graphic on the right of the CTA card */
.navbar__cta-card-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  width: 60%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
}

/* Decorative diamond mark on the right of the CTA card (fallback) */
.navbar__cta-card-decor {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.45);
  opacity: 0.9;
}

/* Full card art (copy baked into the image) */
.navbar__cta-card--image {
  display: block;
  padding: 0;
  min-height: 0;
  text-decoration: none;
}

.navbar__cta-card--image::before {
  display: none;
}

.navbar__cta-card-full-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== MOBILE MENU BUTTON ===== */
.navbar__mobile-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 30px;
  height: 20px;
  margin-left: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.navbar__burger {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--nav-text);
  border-radius: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.navbar__burger:nth-child(1) {
  top: 2px;
}

.navbar__burger:nth-child(2) {
  top: 9px;
}

.navbar__burger:nth-child(3) {
  top: 16px;
}

/* Open: middle fades out, top + bottom rotate into an X */
.navbar__mobile-btn--open .navbar__burger:nth-child(1) {
  top: 9px;
  transform: translateX(-50%) rotate(45deg);
}

.navbar__mobile-btn--open .navbar__burger:nth-child(2) {
  opacity: 0;
}

.navbar__mobile-btn--open .navbar__burger:nth-child(3) {
  top: 9px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (min-width: 1024px) {
  .navbar__mobile-btn {
    display: none;
  }
}

/* ===== MOBILE MENU ===== */
/* Fixed to the viewport (parent must NOT have backdrop-filter/transform).
   Nav list scrolls; CTA/login stay sticky at the bottom over the content. */
.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-banner-offset);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #ffffff;
  padding: calc(var(--nav-mobile-h) + 16px) 0 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.navbar__mobile-menu--open {
  display: flex;
  animation: navbar-mobile-in 180ms ease-out;
}

@keyframes navbar-mobile-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .navbar__mobile-menu,
  .navbar__mobile-menu--open {
    display: none !important;
  }
}

/* ===== MOBILE NAV LINK (top-level) ===== */
.navbar__mobile-nav {
  flex: 1 0 auto;
  min-height: 0;
  box-sizing: border-box;
}

/* Side padding only on the drill-down submenu, not the top-level hamburger list */
.navbar__mobile-nav--submenu {
  padding: 0 24px;
}

.navbar__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--nav-text);
  padding: 20px 24px;
  border-bottom: 1px solid var(--nav-border);
  transition: color 200ms;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 16px;
  font-family: "Intervariable", Inter, sans-serif;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.16px;
}

.navbar__mobile-link-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== MOBILE SUBMENU SECTION ===== */
.navbar__mobile-section {
  width: 100%;
}

.navbar__mobile-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 0 8px;
}

/* ===== MOBILE SUBMENU ITEM ===== */
.navbar__mobile-item {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

.navbar__mobile-item-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--nav-text);
}

.navbar__mobile-item-desc {
  font-size: 14px;
  color: var(--nav-desc);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== MOBILE LATEST POSTS (Resources right panel) ===== */
.navbar__mobile-posts {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--nav-border);
  box-sizing: border-box;
}

.navbar__mobile-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.navbar__mobile-post {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.navbar__mobile-post-img-wrap {
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}

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

.navbar__mobile-post-copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__mobile-post-category {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.14px;
  color: var(--nav-desc);
  text-transform: uppercase;
}

.navbar__mobile-post-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: var(--nav-text);
}

/* ===== MOBILE COMPANY CTA CARD ===== */
.navbar__mobile-cta-card {
  position: relative;
  width: 100%;
  margin: 20px 0 8px;
  border-radius: 12px;
  background: var(--nav-dark-bg);
  overflow: hidden;
  min-height: 180px;
  box-sizing: border-box;
}

.navbar__mobile-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--nav-dark-bg) 0%,
    var(--nav-dark-bg) 55%,
    rgba(20, 16, 43, 0.7) 78%,
    rgba(20, 16, 43, 0) 100%
  );
}

.navbar__mobile-cta-card-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 280px;
}

.navbar__mobile-cta-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  color: #ffffff;
}

.navbar__mobile-cta-card-desc {
  margin: 8px 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(250, 250, 251, 0.7);
}

.navbar__mobile-cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

.navbar__mobile-cta-card-arrow {
  width: 16px;
  height: 16px;
}

.navbar__mobile-cta-card-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
}

.navbar__mobile-cta-card-decor {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 18px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.45);
  opacity: 0.9;
  z-index: 0;
}

.navbar__mobile-cta-card--image {
  display: block;
  margin: 20px 0 8px;
  min-height: 0;
  text-decoration: none;
}

.navbar__mobile-cta-card--image::before {
  display: none;
}

.navbar__mobile-cta-card-full-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== MOBILE SIGN IN + CTA ===== */
/* Sticky footer: pinned to the bottom of the menu; list scrolls behind it. */
.navbar__mobile-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: auto;
  padding: 16px 24px 20px;
  box-sizing: border-box;
  flex-shrink: 0;
  background-color: #ffffff;
}

.navbar__mobile-cta {
  display: block;
  background-color: var(--nav-purple);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: background-color 200ms;
  text-decoration: none;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.navbar__mobile-cta:hover {
  background-color: var(--nav-purple-hover);
}

.navbar__mobile-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  color: var(--nav-purple);
  text-align: center;
  font-family: "Intervariable", Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: -0.16px;
  padding: 16px 0 4px;
  transition: color 200ms;
  text-decoration: none;
  box-sizing: border-box;
}

.navbar__mobile-login:hover {
  color: var(--nav-purple-hover);
}

.navbar__mobile-login-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

